body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--white-bg);
    overflow: auto;
    margin: 0;
    padding: 0;
}

*{
    box-sizing: border-box;
}



:root {
    --header-bg: #e07527;
    /* Burnt Orange */
    --header-text: #ffffff;
    /* White */
    --border-color: #d0d0d0;
    /* Light Gray */
    --text-color: #333333;
    /* Dark Gray */
    --bg-light-gray: #f8f8f8;
    /* Light Gray Background */
    --essential-bg: #253d8d;
    /* Deep Blue */
    --enhanced-bg: #4a6fc0;
    /* Bright Blue */
    --professional-bg: #1d1c2b;
    /* Dark Navy */
    --white-bg: #ffffff;
    /* Pure White */
}

h1 {
    color: var(--essential-bg);
}

.pricing-container {
    width: 80%;
    margin: auto;
}

table {
    width: 100%;
    border-collapse: separate;
    /* Change from collapse to separate */
    border-spacing: 0;
    /* Ensures no unwanted gaps */
    background: var(--white-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    /* Ensures rounded corners clip properly */
}


th {
    background-color: var(--header-bg);
    /* Burnt Orange */
    color: var(--header-text);
    padding: 12px;
    border-left: 2px solid var(--border-color);
    font-size: 18px;
    text-align: center;
}

td {
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: center !important;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    background-color: white;
    line-height: 20px;
}

ul {
    text-align: left;
}

/* Header Styling */
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    background: #ffffff;
    /* White background */
    position: relative;
}


/* Orange Lines */
.header-line {
    flex-grow: 1;
    height: 8px;
    /* Adjust height to match */
    background: #f7941d;
    /* Orange color */
    position: relative;
    clip-path: polygon(0% 50%, 100% 0%, 100% 100%, 0% 50%);
    /* Creates the triangular cut */
}

/* Space between lines and logo */
.header-line.left {
    margin-right: 15px;
}

.header-line.right {
    margin-left: 15px;
}

/* Logo Styling */
.logo-container img {
    height: 50px;
    /* Adjust size to match exactly */
    display: block;
}

.all-features {
    color: var(--essential-bg);
}

/* Plan Section Background Colors */
.plan-row {
    font-weight: bold;
    color: white;
    text-align: center;
}

.essential {
    background-color: var(--essential-bg);
    /* Deep Blue */
    color: #e07527;
}

.enhanced {
    background-color: var(--header-bg);
    /* Bright Blue */
    color: var(--essential-bg);
}



/* Feature List Cells */
.feature-list {
    background-color: var(--white-bg);
    /* White */
}

/* Users, Per User, Annual Cost Column */
.light-bg {
    background-color: var(--bg-light-gray);
    /* Light Gray */
}

.small-text {
    font-size: 12px;
    color: #555;
}

/* Note Row */
.note-row {
    background-color: #f8f8f8;
    /* Light Gray Background */
    border-top: 2px solid #253d8d;
    /* Blue Border at Top */
    border-bottom-left-radius: 8px;
    /* Rounded Corners */
    border-bottom-right-radius: 8px;
}

/* Text Styling */
.note-row td {
    padding: 10px;
    text-align: left !important;
    font-size: 14px;
    font-weight: 600;
    color: black;
    /* Default text color */
}

/* Red Text for Prices Mentioned */
.red-text {
    color: red;
    font-weight: bold;
    text-align: left;
}

/* footer */
/* Footer Container */
.footer {
    background: linear-gradient(to right, #1d3b8b, #0f2a67);
    /* Dark Blue Gradient */
    color: #ffffff;
    text-align: center;
    width: 97.8%;
    margin: auto;
}

/* Footer Content */
.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 850px;
    margin: auto;
    text-align: left;
    overflow-x: hidden;
}



/* Header Section */
.footer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
}

.footer-header h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0 10px;
}

.footer-header p {
    font-size: 14px;
    margin-top: 5px;
}

/* Plane Decorators */
.plane-decorator {
    background: url('plane-icon.png') no-repeat center;
    background-size: contain;
    width: 80px;
    height: 40px;
}

.left {
    transform: rotateY(180deg);
}

.right {
    transform: rotateY(0);
}



/* Plane Icons */
.plane-decorator {
    background: #ffffff;
    padding: 5px 15px;
    border-radius: 5px;
    position: relative;
}

.plane-decorator i {
    font-size: 18px;
    color: #1d3b8b;
}

/* Footer Styling */
.footer {
    background: linear-gradient(to right, #1d3b8b, #0f2a67);
    /* Dark Blue Gradient */
    color: #ffffff;
    text-align: center;
    padding: 20px 15px;
    font-family: 'Arial', sans-serif;
    border-bottom: 15px solid #f7941d;
    /* margin-top: 2%; */
    /* Orange bottom border */
}

/* Header Section */
.footer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

/* Header Text */
.header-text {
    text-align: center;
    flex: 1;
}

.header-text h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

.header-text p {
    font-size: 12px;
    margin-top: 5px;
}

/* Plane Decorators */
.plane-decorator {
    display: flex;
    align-items: center;
    width: 20%;
}

.plane-decorator.left {
    flex-direction: row-reverse;
    /* Aligns the plane icon to the right */
}


.plane-decorator.right {
    flex-direction: row;
}

.plane-decorator i {
    font-size: 18px;
    color: #1d3b8b;
    background: white;
    padding: 10px 10px;
    border-radius: 5px;
}

.plane-line {
    flex-grow: 1;
    height: 2px;
    border-top: 2px dashed black;
    margin: 0 10px;
}

.plane-img {
    height: 40px;
    transform: rotate(180deg);
    /* Rotate the icon to face right */
}


/* Contact & Address Sections */
.contact-info,
.address-info {
    flex: 1;
    padding: 0 20px;
}

.contact-info h3,
.address-info h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

/* FontAwesome Icons */
.contact-info p i,
.address-info p i {
    margin-right: 8px;
    color: #ffffff;
    line-height: 10px;
    /* Yellow for icons */
}

/* Vertical Divider */
.divider {
    width: 2px;
    height: 80px;
    background: #ffffff;
    opacity: 0.5;
}

/* Container for Heading & Button */
.pricing-header {
    display: flex;
    justify-content: space-around;
    /* Pushes button to right */
    align-items: center;
    /* Aligns items in center */
    width: 100%;
    /* Takes full width */
    gap: 10%;
}

@media screen and (min-width:1024px) and (max-width:1280px) {
    .pricing-header {
        gap: 5%;
    }
}

/* Button Styling */
.filled-orange-btn {
    text-align: center;
    border: 0.08em solid var(--theme-color-orange);
    background-color: #e07527;
    padding: 8px 20px;
    /* Increased padding for better appearance */
    font-weight: 400;
    color: #fff;
    border-radius: 50em;
    font-size: 16px;
    cursor: pointer;
    /* Ensures proper clickable effect */
}

/* our services */

.services-section {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    background: transparent;
    width: 80%;
    margin: auto;
}

.services-section h3 {
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    color: var(--essential-bg);
    padding-left: 10px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
}

.services-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.services-row span {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border: 1px solid rgb(139, 139, 139);
    border-radius: 5px;
}

.plane-icon {
    height: 14px;
    width: 14px;

    /* Ensure plane faces right */
}

/* Add on services module */
.add-on-service-section{
    width: 80%;
    margin: auto;
}

.add-on-service-section *{
    padding: 0;
    margin: 0;
}

.add-on-service-section .inner-container{
    border: 1px solid gray;
    padding: 15px 20px;
    border-radius: 10px;
}

.add-on-service-section .title-container{
    padding: 10px 0;
    padding-left: 10px;
}

.add-on-service-section .title-container .title {
    color: var(--essential-bg);
    font-size: 20px;
    font-weight: 800;
}

.add-on-service-section .modules-main-container .module-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 600;
}

.add-on-service-section .modules-main-container .module-title .title{
    font-size: 20px;
    font-weight: 600;
}

.add-on-service-section .modules-main-container .module-title .cost{
    background-color: var(--header-bg);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
}

.add-on-service-section .modules-main-container .module-description{
    padding: 0 5px;
}
.add-on-service-section .modules-main-container .module-description .text{
    font-size: 14px;
}
.add-on-service-section .module-divider{
    width: 30%;
    margin: 15px auto 5px;
    height: 1px;
    background-color: rgb(184, 184, 184);
}
/* Responsive Fix: Ensure Button Stays Aligned */
@media (max-width: 768px) {
    .pricing-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .filled-orange-btn {
        margin-top: 10px;
        /* Adds spacing in smaller screens */
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header {
        margin-top: 5px;
    }

    .plane-decorator {
        width: 12%;
    }

    .pricing-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

    .pricing-container {
        width: 90%;
        margin: auto;
    }

    h1 {
        padding: 0;
        margin-top: 0;
        margin-bottom: 0px;
        font-size: 20px;
    }

    body {
        margin: 0;
    }

    /* Compress table layout */
    table {
        width: 100%;
        display: table;
        border-radius: 10px;
        margin: auto;
    }

    th,
    td {
        font-size: 11px;
        /* Reduce text size */
        padding: 5px;
        /* Reduce padding */
        word-wrap: break-word;
        white-space: normal;
        /* Allow text wrapping */
    }

    /* Reduce spacing in feature list */
    .features-list ul {
        padding-left: 10px;
        font-size: 10px;
        /* Smaller text for mobile */
    }

    /* Stack rows to save space */
    .plan-row {
        font-size: 12px;
    }

    /* Optimize buttons */
    .filled-orange-btn {
        width: 100%;
        max-width: 200px;
        font-size: 12px;
        padding: 8px;
        margin-bottom: 12px;
    }

    /* Reduce image size */
    .logo-container img {
        height: 35px;
    }

    /* Hide extra spaces in header */
    .header-line {
        display: none;
    }

    /* Footer adjustments */
    .footer-content {
        flex-direction: column;
        text-align: center;
        font-size: 12px;
    }
    .footer-container{
        width: 95%;
    }

    .contact-info h3,
    .address-info h3 {
        font-size: 20px;
        font-weight: bold;
        /* margin-bottom: 5px; */
        padding: 0px;
        margin: 0px;

    }

    .divider {
        display: none;
    }

    .services-section {
        font-size: 12px;
        font-weight: 500;
        color: #000;
        background: transparent;
        width: 80%;
        margin: auto;
    }
}