        :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:60px;
        }

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

        /* Hero Section */
        .hero-section {
            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);
        }

        /* 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;
}


.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);
}

/* --------------------
     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;
    }
    .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;
    }
    
    /* Responsive Design */
    @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;
        }
    }
    @media (max-width: 768px) {
        .nav-menu {
            display: none;
        }

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

        .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;
        }
    
        .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;
        }

        .page-header {
            padding: 40px 0;
        }

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

        .page-header p {
            font-size: 1rem;
        }
    }
    @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;
        }
    }