        :root {
            --primary-blue: #273474;
            --accent-blue: #14396C;
            --accent-orange: #32C035;
            --bg-white: #FFFFFF;
            --bg-light-grey: #F8F9FA;
            --section-blue-bg: #F0F7FF;
            /* --section-blue-bg: #dcedff; */
            --section-green-bg: #ebf9eb;
            --footer-bg: #212529;
            --text-primary: #343A40;
            --text-secondary: #6c757d;
            --border-color: #DEE2E6;
            --header-height: 75px;
            --font-family-poppins: 'Poppins', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-family-poppins);
            line-height: 1.6;
            color: var(--text-primary);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- HEADER --- */
.main-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: 0px;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

/* --- NAVIGATION --- */
.main-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.main-nav>ul>li {
    position: relative;
}

.main-nav>ul>li>a {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 500;
    padding: 25px 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.main-nav>ul>li>a:hover {
    color: var(--accent-blue);
}

.main-nav>ul>li>a .fa-chevron-down {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.main-nav>ul>li:hover>a .fa-chevron-down {
    transform: rotate(180deg);
}

.btn {
    display: inline-block;
    padding: 6px 14px !important;
    background: var(--accent-orange);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #45ac58;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--accent-blue);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    min-width: 240px;
    z-index: 1001;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.main-nav>ul>li:hover>.dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a,
.dropdown-menu li span {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.95rem;
    white-space: nowrap;
    transition: background-color 0.3s, color 0.3s;
}

.dropdown-menu li a:hover {
    background-color: var(--section-blue-bg);
    color: var(--primary-blue);
}

.dropdown-menu li span {
    color: var(--text-secondary);
    font-weight: 500;
}

.dropdown-menu li span i {
    margin-right: 8px;
    color: var(--accent-blue);
    width: 16px;
}


/* --- Hamburger (nav-toggle) --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  width: 30px;
  height: 25px;
  background: none;
  border: none;
  padding: 0;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--primary-blue);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.main-nav.nav-active ~ .nav-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.main-nav.nav-active ~ .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.main-nav.nav-active ~ .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--bg-white);
    position: fixed;              
    top: 70px;                    
    left: 0;
    right: 0;
    height: calc(100vh - 70px);   
    overflow-y: auto;             
    border-top: 1px solid var(--border-color);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1001;
  }

  .main-nav.nav-active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }

  .main-nav ul {
    flex-direction: column;
    width: 100%;
  }

  .main-nav > ul > li {
    width: 100%;
    position: relative;
  }

  .main-nav > ul > li > a {
    padding: 15px 20px;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
  }

  .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    position: static;
    border: none;
    box-shadow: none;
    padding-left: 15px;
  }

  .main-nav > ul > li.dropdown-active > .dropdown-menu {
    max-height: 500px; 
  }

  .btn {
    width: 100%;
    margin: 10px 0;
    text-align: center;
  }

  /* Inside @media (max-width: 1024px) */
.main-nav > ul > li.dropdown-active > .dropdown-menu {
    max-height: 500px; 
    display: block; 
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav > ul > li.dropdown-active > a .fa-chevron-down {
    transform: rotate(180deg); 
}

.main-nav .dropdown-menu {
    position: static;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out; 
    border: none; 
    box-shadow: none; 
    padding-left: 25px; 
    background-color: var(--bg-light-grey); 
    border-radius: 0;
    border-top: none;
    padding-top: 0;
    padding-bottom: 0;
}

.main-nav .dropdown-menu li a {
    padding-left: 35px; 
    border-bottom: 1px solid var(--border-color); 
}

.main-nav .dropdown-menu li:last-child a {
    border-bottom: none;
}
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

        /* Main Content */
        .main-content {
            margin-top:0px;
            padding: 40px 0 20px 0;
        }

        /* Hero Section */
        .hero-section {
            /* background: linear-gradient(135deg, var(--section-blue-bg) 0%, var(--bg-white) 100%); */
            /* background: var(--section-blue-bg); */
            background-color: var(--bg-white);
            padding:  0px 0 40px 0;;
            text-align: center;
             margin-bottom: 10px;
        }

        .hero-title-wrapper {
            position: relative;
            height: 120px;
            margin-bottom: 25px;
            overflow: hidden;
        }

        .hero-title {
            font-size: 42px;
            font-weight: 700;
            color: var(--primary-blue);
            line-height: 1.2;
            position: absolute;
            width: 100%;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;
            transition: all 1.2s ease-in-out;
            white-space: normal;
        }

        /* Text 1: Starts visible, fades out and slides up */
        .hero-title.text1.show {
            opacity: 1;
            transform: translateY(-50%) translateX(0);
        }

        .hero-title.text1.hide {
            opacity: 0;
            transform: translateY(-80%) translateX(0);
            /* Slide up and fade out */
        }

        /* Text 2: Starts hidden, fades in and slides down */
        .hero-title.text2.show {
            opacity: 1;
            transform: translateY(-50%) translateX(0);
        }

        .hero-title.text2.hide {
            opacity: 0;
            transform: translateY(0%) translateX(0);
            /* Slide down and fade out */
        }

        /* Initial state for text2 to appear from bottom */
        .hero-title.text2.initial-hidden {
            opacity: 0;
            transform: translateY(0%) translateX(0);
        }


        .hero-subtitle {
            font-size: 18px;
            color: var(--accent-blue);
            max-width: 800px;
            margin: 0 auto 30px;
            line-height: 1.7;
        }

        /* Service Section */
        .service-section {
            padding: 40px 0;
            background: var(--section-green-bg);
        }

        .section-title {
            font-size: 36px;
            font-weight: 600;
            color: var(--primary-blue);
            text-align: center;
            margin-bottom: 30px;
        }

        .service-content {
            background: var(--bg-light-grey);
            padding: 40px;
            border-radius: 15px;
            border: 2px solid var(--border-color);
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(1, 1, 1, 1);
        }

        .service-description {
            font-size: 18px;
            line-height: 1.8;
            color: var(--accent-blue);
            margin-bottom: 30px;
            text-align: center;
            margin-left: auto;
            margin-right: auto;


        }

        .service-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 50px;
        }

        .feature-card {
            background: var(--bg-white);
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border-left: 4px solid var(--accent-orange);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 70px;
            height: 70px;
            margin: 0 auto 15px;
            background: var(--section-blue-bg);
            border-radius: 50%;
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }

        .feature-title {
            font-size: 19px;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }

        .feature-text {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Benefits Section Specific Styles (Timeline) */
        .benefits-timeline {
            position: relative;
            padding-left: 40px;
            margin-top: 80px;
        }

        .benefits-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 15px;
            width: 3px;
            height: 100%;
            background: var(--primary-blue);
        }

        .benefits-timeline .feature-card {
            position: relative;
            margin-bottom: 25px;
            padding: 15px 25px 15px 50px;
            text-align: left;
            border-left: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            background: var(--bg-white);
        }

        .benefits-timeline .feature-card:last-child {
            margin-bottom: 0;
        }

        .benefits-timeline .feature-card::before {
            content: '';
            position: absolute;
            left: -10px;
            top: 20px;
            width: 25px;
            height: 25px;
            background: var(--accent-orange);
            border: 3px solid var(--section-blue-bg);
            border-radius: 50%;
            z-index: 1;
        }

        .benefits-timeline .feature-icon {
            position: absolute;
            left: 5px;
            top: 17px;
            width: 30px;
            height: 30px;
            background: none;
            margin: 0;
            z-index: 2;
        }

        .benefits-timeline .feature-icon svg {
            width: 25px;
            height: 25px;
        }

        .benefits-timeline .feature-title {
            margin-bottom: 8px;
            font-size: 20px;
            text-align: left;
        }

        .benefits-timeline .feature-text {
            text-align: left;
        }


        /* CTA Section */
        .cta-section {
            background: var(--accent-blue);
            padding: 40px 0;
            text-align: center;
            color: var(--bg-white);
        }

        .cta-title {
            font-size: 30px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .cta-subtitle {
            font-size: 17px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 12px 30px;
            border: none;
            border-radius: 8px;
            font-size: 20px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            font-family: var(--font-family-poppins);
        }

        .btn-primary {
            background: var(--accent-orange);
            color: var(--bg-white);
        }

        .btn-primary:hover {
            background: #28a02b;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(50, 192, 53, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--bg-white);
            border: 2px solid var(--bg-white);
        }

        .btn-secondary:hover {
            background: var(--bg-white);
            color: var(--primary-blue);
            transform: translateY(-2px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero-title {
                font-size: 30px;
            }

            .hero-title-wrapper {
                height: 90px;
            }

            .hero-subtitle {
                font-size: 15px;
                margin-bottom: 20px;
            }

            .section-title {
                font-size: 26px;
                margin-bottom: 25px;
            }

            .service-content {
                padding: 25px 15px;
                margin-bottom: 15px;
            }

            .service-description {
                font-size: 16px;
                margin-bottom: 15px;
            }

            .service-features {
                gap: 20px;
                margin: 20px 0;
            }

            .feature-card {
                padding: 20px;
            }

            .feature-icon {
                width: 60px;
                height: 60px;
                margin-bottom: 10px;
            }

            .feature-title {
                font-size: 18px;
                margin-bottom: 8px;
            }

            .feature-text {
                font-size: 15px;
            }

            .cta-title {
                font-size: 26px;
                margin-bottom: 15px;
            }

            .cta-subtitle {
                font-size: 16px;
                margin-bottom: 25px;
            }

            .cta-buttons {
                gap: 10px;
            }

            .btn {
                width: 90%;
                max-width: 280px;
                padding: 10px 25px;
                font-size: 14px;
            }

            .benefits-timeline {
                padding-left: 25px;
            }

            .benefits-timeline::before {
                left: 8px;
                width: 2px;
            }

            .benefits-timeline .feature-card {
                padding: 15px 15px 15px 40px;
                margin-bottom: 20px;
            }

            .benefits-timeline .feature-card::before {
                left: -8px;
                top: 18px;
                width: 20px;
                height: 20px;
                border: 2px solid var(--section-blue-bg);
            }

            .benefits-timeline .feature-icon {
                left: -2px;
                top: 15px;
                width: 25px;
                height: 25px;
            }

            .benefits-timeline .feature-icon svg {
                width: 20px;
                height: 20px;
            }

            .benefits-timeline .feature-title {
                font-size: 18px;
            }
        }

        /* Animation */
        .fade-in {
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
/* Footer */
 
.main-footer {
    background-color: var(--accent-blue);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 0 10px;
}

.main-footer .container {
    display: grid;
    grid-template-areas:
        "services contact-info"
        "addresses addresses"
        "bottom bottom";
    grid-template-columns: 1fr 1fr; 
    gap: 20px;
    position: relative;
    padding: 20px;
}

.footer-col.our-services-col {
    grid-area: services;
}

.footer-contact-info-group {
    grid-area: contact-info;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-addresses-group {
    grid-area: addresses;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer-bottom {
    grid-area: bottom;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-col.our-services-col a { 
    color: var(--bg-white); 
    display: block;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-col.our-services-col a:hover {
    color: var(--accent-orange);
}

.footer-col h5 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-item i {
    color: var(--accent-orange);
    font-size: 1.2rem;
}

.contact-item p, .contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-orange);
}

.address-card {
    background-color: rgba(0, 0, 0, 0.1); 
    padding: 20px;
    border-radius: 8px;
}

.address-card h6 {
    color: var(--bg-white);
    font-size: 1rem;
    margin-bottom: 10px;
}

.address-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom p {
    font-size: 0.9rem;
}

.social-icons a {
    color: var(--bg-white);
    font-size: 1.4rem;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-orange);
}

@media (max-width: 900px) {
    .main-footer .container {
        grid-template-areas:
            "services"
            "addresses"
            "contact-info"
            "bottom";
        grid-template-columns: 1fr; 
    }

    .footer-addresses-group {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .social-icons {
        margin-top: 10px;
    }
}

/* --- Inquiry Form Modal Styles --- */
.form-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.form-modal-overlay.modal-visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s;
}

.form-modal {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-modal-overlay.modal-visible .form-modal {
    transform: scale(1);
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.close-modal-btn:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.modal-header p {
    color: var(--text-secondary);
}

.inquiry-form .form-group {
    margin-bottom: 20px;
}

.inquiry-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-blue);
}

.inquiry-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.inquiry-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(39, 52, 116, 0.1);
}

.inquiry-form .submit-btn {
    width: 100%;
    padding: 14px !important;
    font-size: 1.1rem;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .form-modal {
        padding: 25px;
        max-width: 90%;
    }

    .modal-header {
        margin-bottom: 20px;
    }

    .modal-header h2 {
        font-size: 1.6rem;
    }

    .inquiry-form .form-group {
        margin-bottom: 15px;
    }

    .inquiry-form label {
        font-size: 0.9rem;
    }

    .inquiry-form .submit-btn {
        padding: 12px !important;
        font-size: 1rem;
    }
}

/* --------------------
     terms
    --------------------*/

    .page-header {
    text-align: center; 
    padding: 60px 0; 
    background-color: var(--section-blue-bg); 
    margin-bottom: 0px;
    margin-top: 40px;
}

.page-header h1 {
    color: var(--primary-blue);
    font-size: 3rem; 
    margin-bottom: 15px; 
}

.page-header p {
    color: var(--accent-blue);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .page-header p {
        font-size: 1rem;
    }
}

    .content-section {
            padding: 40px 0;
             font-family: var(--font-family-poppins) !important;
             margin-top: 10px;
        }

        .content-section h2 {
            font-size: 1.8rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--border-color);
            font-family: var(--font-family-poppins) !important;
        }

        .content-section h3 {
            font-size: 1.3rem;
            color: var(--accent-blue);
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-family: var(--font-family-poppins) !important;
        }
        
        .content-section p, .content-section li {
            color: var(--accent-blue);
            margin-bottom: 1rem;
            font-family: var(--font-family-poppins) !important;
        }

        .content-section ul {
            list-style-position: inside;
            padding-left: 1rem;
            font-family: var(--font-family-poppins) !important;
        }

        .content-section ul li {
            margin-bottom: 0.5rem;
            font-family: var(--font-family-poppins) !important;
        }

        .content-section strong {
            color: var(--text-primary);
            font-weight: 600;
            font-family: var(--font-family-poppins) !important;
        }

        @media (max-width: 480px) {
    .content-section {
        padding: 30px 0;
    }

    .content-section h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .content-section h3 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .content-section p, 
    .content-section li {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .content-section ul {
        padding-left: 0.5rem;
    }
}