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

        body {
            font-family: poppins, sans-serif;
            background-color: #ffff;
        }

    /* Navbar  */
        .navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0 30px;
    position: fixed;  
    top: 0;            
    left: 0;
    width: 100%;    
    z-index: 1000;     
}


        .nav-container {
            margin: 0 30px ;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #333;
        }

        .logoimg {
            width: 50px;
            height: 50px;
            object-fit: contain;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: white;
            font-weight: bold;
            font-size: 16px;
        }

        .logo-text {
            font-size: 20px;
            font-weight: 600;
            color: #333;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            text-decoration: none;
            color: #6b7280;
            font-weight: 500;
            padding: 10px 0;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: #10b981;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #10b981;
            transition: width 0.3s ease;
        }

        .cta-button {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
        }

        .cta-button::after {
            content: '→';
            font-size: 16px;
            transition: transform 0.3s ease;
        }

        .cta-button:hover::after {
            transform: translateX(3px);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .mobile-menu {
            position: absolute;
            top: 103%;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .mobile-menu.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-menu {
            list-style: none;
            padding: 20px;
        }

        .mobile-nav-item {
            margin: 10px 0;
        }

        .mobile-nav-link {
            text-decoration: none;
            color: #6b7280;
            font-weight: 500;
            padding: 15px 0;
            display: block;
            border-bottom: 1px solid #f3f4f6;
            transition: color 0.3s ease;
        }

        .mobile-nav-link:hover {
            color: #10b981;
        }

        .mobile-cta {
            margin-top: 20px;
        }

        .mobile-cta .cta-button {
            width: 100%;
            justify-content: center;
        }

        /* Responsive breakpoints for logoimg */
        @media (min-width: 1200px) and (max-width: 1400px) {
            .logoimg {
                width: 55px;
                height: 55px;
            }
        }

        @media (min-width: 992px) and (max-width: 1199px) {
            .logoimg {
                width: 50px;
                height: 50px;
            }
        }

        @media (min-width: 768px) and (max-width: 991px) {
            .logoimg {
                width: 55px;
                height: 55px;
            }
            
            .nav-menu {
                gap: 30px;
            }
        }

        @media (max-width: 767px) {
            .logoimg {
                width: 50px;
                height: 50px;
            }

            .nav-menu {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .nav-container {
                padding: 12px 0;
            }

            .logo-text {
                font-size: 18px;
            }
        }

        @media (max-width: 640px) {
            .logoimg {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 576px) {
            .logoimg {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 480px) {
            .logoimg {
                width: 50px;
                height: 50px;
            }

            .navbar {
                padding: 0 15px;
            }

            .logo-icon {
                width: 28px;
                height: 28px;
                font-size: 14px;
            }

            .logo-text {
                font-size: 16px;
            }
        }

        @media (max-width: 420px) {
            .logoimg {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 375px) {
            .logoimg {
                width: 50px;
                height: 50px;
            }

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

        @media (max-width: 330px) {
            .logoimg {
                width: 40px;
                height: 40px;
                margin-left: 15px;
            }

            .navbar {
                padding: 0 10px;
            }

            .logo-text {
                font-size: 14px;
            }

            .nav-container {
                padding: 10px 0;
            }
        }

/* End Navbar section */

/* Banner Section */
.banner {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 180px;
    max-width: 1400px;
    padding: 0 20px;
    box-sizing: border-box;
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 400px;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-bannerprimary {
    background: #06895D;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-bannerprimary a {
    color: #fff;
    text-decoration: none;
}

.btn-bannersecondary {
    background: #fff;
    color: #000;
    border: solid 1px #272727;
    border-radius: 20px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-bannersecondary a {
    color: #000;
    text-decoration: none;
}
.stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
    border: 0.2px solid #000;
    background-color: #fff;
    padding: 15px;
    border-radius: 20px;
    flex: 1;
    min-width: 120px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 5px;
}

.right-content {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.location-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-icon {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

/* Large devices (1200px to 1400px) */
@media (max-width: 1400px) {
    .banner {
        max-width: 1250px;
        margin-top: 160px;
        padding: 0 15px;
    }
    
    .banner-content {
        gap: 30px;
    }
    
    .title {
        font-size: 2.3rem;
    }
}

/* Large devices (1200px to 1300px) */
@media (max-width: 1300px) {
    .banner {
        max-width: 1150px;
        margin-top: 160px;
        padding: 0 15px;
    }
    
    .banner-content {
        gap: 30px;
    }
    
    .title {
        font-size: 2.3rem;
    }
}

/* Medium devices (992px to 1199px) */
@media (max-width: 1199px) {
    .banner {
        margin-top: 140px;
        max-width: 1110px;
    }
    
    .title {
        font-size: 2.1rem;
    }
    
    .description {
        font-size: 1.05rem;
    }
    
    .stats {
        gap: 30px;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* Tablets (768px to 991px) */
@media (max-width: 991px) {
    .banner {
        margin-top: 140px;
        max-width: 900px;
    }
    
    .banner-content {
        gap: 25px;
        min-height: 350px;
    }
    
    .title {
        font-size: 1.9rem;
    }
    
    .description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .buttons {
        margin-bottom: 30px;
    }
    
    .right-content {
        height: 350px;
    }
    
    .stats {
        gap: 20px;
    }
    
    .stat-item {
        min-width: 110px;
        padding: 10px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
}

/* Small tablets and large phones (576px to 767px) */
@media (max-width: 767px) {
    .banner {
        margin-top: 100px;
        padding: 0 15px;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: auto;
        margin-top: 100px;
    }
    
    .left-content {
        order: 1;
    }
    
    .right-content {
        order: 2;
        height: 300px;
    }
    
    .title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .description {
        font-size: 1rem;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .buttons {
        margin-bottom: 25px;
        justify-content: center;
    }
    
    .btn-bannerprimary,
    .btn-bannersecondary {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .stats {
        gap: 15px;
        justify-content: center;
    }
    
    .stat-item {
        text-align: center;
        flex: 0 0 calc(50% - 15px);
        min-width: auto;
    }
    
    .location-badge {
        bottom: 15px;
        left: 15px;
        font-size: 0.85rem;
    }
}

/* Mobile devices (481px to 575px) */
@media (max-width: 575px) {
    .banner {
        margin-top: 80px;
        padding: 0 10px;
    }
    
    .title {
        font-size: 1.7rem;
    }
    
    .description {
        font-size: 0.95rem;
    }
    
    .buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-bannerprimary,
    .btn-bannersecondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .right-content {
        height: 250px;
    }
    
    .stats {
        gap: 10px;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 10px);
        padding: 8px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

/* Small mobile devices (330px to 480px) */
@media (max-width: 480px) {
    .banner {
        margin-top: 70px;
    }
    
    .title {
        font-size: 1.5rem;
    }
    
    .description {
        font-size: 0.9rem;
    }
    
    .buttons {
        margin-bottom: 20px;
    }
    
    .btn-bannerprimary,
    .btn-bannersecondary {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .right-content {
        height: 220px;
    }
    
    .stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .stat-item {
        flex: 1;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .location-badge {
        bottom: 10px;
        left: 10px;
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* Extra small devices (below 330px) */
@media (max-width: 330px) {
    .banner {
        margin-top: 60px;
        padding: 0 5px;
    }
    
    .title {
        font-size: 1.4rem;
    }
    
    .description {
        font-size: 0.85rem;
    }
    
    .buttons {
        gap: 10px;
    }
    
    .btn-bannerprimary,
    .btn-bannersecondary {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .right-content {
        height: 200px;
    }
    
    .stat-item {
        padding: 6px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .location-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

/* Animations */
.banner {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item {
    opacity: 0;
    transform: translateY(10px);
    animation: slideInUp 0.6s ease forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.3s; }
.stat-item:nth-child(3) { animation-delay: 0.4s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* End Banner Section */

/* Why Choose US Section */
.Choose-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}

.section-header {
    text-align: left;
    margin-bottom: 20px;
    margin-top: 50px;
}

.Choose-title {
    font-size: 30px;
    color: #000;
    margin-bottom: 20px;
}

.section-description {
    text-align: left;
    font-size: 18px;
    color: #000;
    margin: 0 auto 50px;
    line-height: 1.6;
    max-width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #28a745;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-left: -15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon.secure {
    color: #06895D;
}

.feature-icon.access {
    color: #06895D;
}

.feature-icon.payment {
    color: #06895D;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Large devices (1200px to 1400px) */
@media (max-width: 1400px) {
    .Choose-section {
        padding: 60px 15px;
        max-width: 1250px;
        margin-top: 80px;
    }
}

/* Large devices (1200px to 1300px) */
@media (max-width: 1300px) {
   .Choose-section {
        max-width: 1150px;
        margin-top: 80px;
        padding: 0 15px;
    }
}



/* Medium devices (992px to 1199px) */
@media (max-width: 1199px) {
    .Choose-section {
        padding: 50px 15px;
        max-width: 1110px;
        margin-top: 30px;
    }
    
    .Choose-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 17px;
        margin-bottom: 40px;
    }
    
    .features-grid {
        gap: 25px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}

/* Tablets (768px to 991px) */
@media (max-width: 991px) {
    .Choose-section {
        padding: 45px 15px;
        max-width: 900px;
        margin-top: 30px;
    }
    
    .section-header {
        margin-top: 40px;
    }
    
    .Choose-title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .section-description {
        font-size: 16px;
        margin-bottom: 35px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 10px;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
}

/* Small tablets and large phones (576px to 767px) */
@media (max-width: 767px) {
    .Choose-section {
        padding: 40px 15px;
        margin-top: 30px;
    }
    
    .section-header {
        margin-top: 30px;
        text-align: center;
    }
    
    .Choose-title {
        font-size: 24px;
    }
    
    .section-description {
        text-align: center;
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 15px;
        margin-left: 0;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
}

/* Mobile devices (481px to 575px) */
@media (max-width: 575px) {
    .Choose-section {
        padding: 35px 10px;
        margin-top: 40px;
    }
    
    .section-header {
        margin-top: 20px;
    }
    
    .Choose-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .section-description {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .features-grid {
        margin-top: 25px;
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .feature-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
}

/* Small mobile devices (330px to 480px) */
@media (max-width: 480px) {
    .Choose-section {
        padding: 30px 10px;
        margin-top: 30px;
    }
    
    .Choose-title {
        font-size: 20px;
    }
    
    .section-description {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .feature-card {
        padding: 18px 12px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
}

/* Extra small devices (below 330px) */
@media (max-width: 330px) {
    .Choose-section {
        padding: 25px 8px;
        margin-top: 20px;
    }
    
    .Choose-title {
        font-size: 18px;
    }
    
    .section-description {
        font-size: 12px;
    }
    
    .feature-card {
        padding: 15px 10px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
    }
}
/* End Why Choose US Section */

/* how it works Section */
.work-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}

.work-title {
    font-size: 30px;
    color: #000;
    margin-bottom: 20px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.step-card {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #28a745;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    color: #2d5a2d;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.step-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

/* CTA Banner Section */
.cta-banner {
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 20px;
    padding: 40px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 150px;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    transform: rotate(45deg);
    pointer-events: none;
}

.cta-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    z-index: 2;
    position: relative;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 140px;
}

.btn-primary {
    background: white;
    color: #28a745;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary a{
    color: #28a745;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* Large devices (1200px to 1400px) */
@media (max-width: 1400px) {
    .work-section {
        padding: 60px 15px;
         max-width: 1250px;
    }
}

/* Large devices (1200px to 1300px) */
@media (max-width: 1300px) {
   .work-section {
        max-width: 1150px;
        margin-top: 80px;
        padding: 0 15px;
    }
}


/* Medium devices (992px to 1199px) */
@media (max-width: 1199px) {
    .work-section {
        padding: 50px 15px;
         max-width: 1110px;
    }
    
    .work-title {
        font-size: 28px;
    }
    
    .steps-container {
        gap: 25px;
        margin-bottom: 70px;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .cta-banner {
        margin-top: 120px;
        padding: 35px;
    }
    
    .cta-title {
        font-size: 1.7rem;
    }
}

/* Tablets (768px to 991px) */
@media (max-width: 991px) {
    .work-section {
        padding: 45px 15px;
        max-width: 900px;
        margin-top: 30px;
    }
    
    .work-title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .step-card {
        padding: 25px 20px;
    }
    
    .step-title {
        font-size: 1.4rem;
    }
    
    .cta-banner {
        margin-top: 100px;
        padding: 30px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 1.05rem;
    }
}

/* Small tablets and large phones (576px to 767px) */
@media (max-width: 767px) {
    .work-section {
        padding: 40px 15px;
        margin-top: 30px;
    }
    
    .work-title {
        font-size: 24px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .step-card {
        padding: 25px 20px;
        text-align: center;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
        margin-top: 80px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
}

/* Mobile devices (481px to 575px) */
@media (max-width: 575px) {
    .work-section {
       padding: 35px 10px;
        margin-top: 40px;
    }
    
    .work-title {
        font-size: 22px;
    }
    
    .step-card {
        padding: 20px 15px;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-description {
        font-size: 0.95rem;
    }
    
    .cta-banner {
        padding: 25px 15px;
        border-radius: 15px;
        margin-top: 60px;
    }
    
    .cta-title {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: auto;
    }
}

/* Small mobile devices (330px to 480px) */
@media (max-width: 480px) {
    .work-section {
        padding: 30px 10px;
    }
    
    .work-title {
        font-size: 20px;
    }
    
    .step-card {
        padding: 18px 12px;
    }
    
    .step-badge {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
    
    .step-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .cta-banner {
        padding: 20px 12px;
        margin-top: 50px;
    }
    
    .cta-title {
        font-size: 1.2rem;
    }
    
    .cta-subtitle {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Extra small devices (below 330px) */
@media (max-width: 330px) {
    .work-section {
        padding: 25px 8px;
        margin-top: 20px;
    }
    
    .work-title {
        font-size: 18px;
    }
    
    .step-card {
        padding: 15px 10px;
    }
    
    .step-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    .step-title {
        font-size: 1rem;
    }
    
    .step-description {
        font-size: 0.85rem;
    }
    
    .cta-banner {
        padding: 18px 10px;
        margin-top: 40px;
        border-radius: 12px;
    }
    
    .cta-title {
        font-size: 1.1rem;
    }
    
    .cta-subtitle {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 7px 14px;
        font-size: 0.8rem;
    }
}
/* End of How It Works Section */
/* Contact Form Section */
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 20px;
    box-sizing: border-box;
}

.header {
    background: white;
    padding: 40px 40px 20px 40px;
}

.header h1 {
    font-size: 2rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.header p {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
}

.contact-info {
    background: #fff;
    padding: 40px;
    border: 1px solid #e9ecef;
    border-radius: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.phone-icon {
    color: #28a745;
}

.email-icon {
    color: #28a745;
}

.website-icon {
    color: #28a745;
}

.info-content {
    flex: 1;
}

.info-label {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 4px;
    font-weight: 400;
}

.info-value {
    color: #333;
    font-weight: 600;
    font-size: 1rem;
}

.form-section {
    padding: 40px;
    background: white;
    border: 1px solid #e9ecef;
    margin-left: 40px;
    border-radius: 20px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 20px;
}

.form-row-three {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 20px;
}

input, select, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: #fff;
    color: #333;
    box-sizing: border-box;
}

input::placeholder, textarea::placeholder {
    color: #999;
    font-weight: 400;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.1);
}

textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.submit-btn {
    background: #28a745;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #218838;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.privacy-text {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    margin-top: 15px;
    line-height: 1.4;
}

.loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff40;
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Footer Section */
.footer {
    background: #ffffff;
    border-top: 1px solid #e9ecef;
    margin-top: 40px;
    padding: 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.footer-left {
    display: flex;
    align-items: center;
    flex: 1;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.copyright-icon {
    font-size: 0.8rem;
    color: #888;
}

.brand-name {
    font-weight: 600;
    color: #333;
}

.tagline {
    color: #888;
    margin-left: 8px;
}

.footer-center {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #333;
}

.footer-right {
    display: flex;
    align-items: center;
}

.contact-infos {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
    padding: 8px 12px;
    border-radius: 10px;
    margin-left: 20px;
}

.phone-icon {
    width: 16px;
    height: 16px;
    color: #000;
}

.phone-number {
    color: #000;
    font-weight: 600;
}

/* Large devices (1200px to 1400px) */
@media (max-width: 1400px) {
    .contact-section {
        padding: 0 15px;
    }
    
    .header {
        padding: 35px 35px 15px 35px;
    }
    
    .contact-info,
    .form-section {
        padding: 35px;
    }
    
    .form-row {
        gap: 40px;
    }
    
    .form-row-three {
        gap: 30px;
    }
}

/* Medium devices (992px to 1199px) */
@media (max-width: 1199px) {
    .contact-section {
        padding: 0 15px;
    }
    
    .header {
        padding: 30px 30px 15px 30px;
    }
    
    .header h1 {
        font-size: 1.8rem;
    }
    
    .contact-info,
    .form-section {
        padding: 30px;
    }
    
    .form-row {
        gap: 30px;
    }
    
    .form-row-three {
        gap: 25px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-center {
        gap: 25px;
    }
}

/* Tablets (768px to 991px) */
@media (max-width: 991px) {
    .content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        order: 1;
    }
    
    .form-section {
        order: 2;
        margin-left: 0;
    }
    
    .form-row-three {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .footer-container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
        flex: 1 1 100%;
        justify-content: center;
    }
    
    .footer-center {
        order: 2;
    }
    
    .footer-right {
        order: 1;
    }
    
    .footer-left {
        order: 3;
    }
    
    .copyright {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .tagline {
        margin-left: 0;
        margin-top: 4px;
        width: 100%;
        text-align: center;
    }
}

/* Small tablets and large phones (576px to 767px) */
@media (max-width: 767px) {
    .contact-section {
        margin: 0;
        border-radius: 0;
        padding: 0 10px;
    }
    
    .header {
        padding: 25px 20px 15px 20px;
    }
    
    .header h1 {
        font-size: 1.6rem;
    }
    
    .header p {
        font-size: 0.95rem;
    }
    
    .contact-info,
    .form-section {
        padding: 25px 20px;
    }
    
    .form-row-three,
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-item {
        margin-bottom: 25px;
    }
    
    .footer {
        margin-top: 30px;
        padding: 15px 0;
    }
    
    .footer-container {
        padding: 0 15px;
        gap: 12px;
    }
    
    .footer-center {
        flex-direction: column;
        gap: 12px;
    }
    
    .contact-infos {
        margin-left: 0;
        justify-content: center;
    }
}

/* Mobile devices (481px to 575px) */
@media (max-width: 575px) {
    .header {
        padding: 20px 15px 10px 15px;
    }
    
    .header h1 {
        font-size: 1.5rem;
    }
    
    .header p {
        font-size: 0.9rem;
    }
    
    .contact-info,
    .form-section {
        padding: 20px 15px;
    }
    
    input, select, textarea {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .info-label {
        font-size: 0.85rem;
    }
    
    .info-value {
        font-size: 0.95rem;
    }
    
    .copyright {
        font-size: 0.85rem;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
    
    .contact-infos {
        font-size: 0.85rem;
    }
    
    .tagline {
        font-size: 0.85rem;
    }
}

/* Small mobile devices (330px to 480px) */
@media (max-width: 480px) {
    .header {
        padding: 18px 12px 8px 12px;
    }
    
    .header h1 {
        font-size: 1.4rem;
    }
    
    .header p {
        font-size: 0.85rem;
    }
    
    .contact-info,
    .form-section {
        padding: 18px 12px;
        border-radius: 15px;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    
    .info-icon {
        margin-bottom: 8px;
        margin-right: 0;
    }
    
    input, select, textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .privacy-text {
        font-size: 0.8rem;
    }
    
    .footer {
        padding: 12px 0;
    }
    
    .footer-container {
        padding: 0 10px;
        gap: 10px;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
    
    .footer-link {
        font-size: 0.8rem;
    }
    
    .contact-infos {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .tagline {
        font-size: 0.8rem;
    }
}

/* Extra small devices (below 330px) */
@media (max-width: 330px) {
    .contact-section {
        padding: 0 8px;
    }
    
    .header {
        padding: 15px 10px 5px 10px;
    }
    
    .header h1 {
        font-size: 1.3rem;
    }
    
    .header p {
        font-size: 0.8rem;
    }
    
    .contact-info,
    .form-section {
        padding: 15px 10px;
        border-radius: 12px;
    }
    
    .info-item {
        margin-bottom: 15px;
    }
    
    .info-label {
        font-size: 0.8rem;
    }
    
    .info-value {
        font-size: 0.9rem;
    }
    
    input, select, textarea {
        padding: 8px;
        font-size: 0.85rem;
    }
    
    .submit-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .privacy-text {
        font-size: 0.75rem;
    }
    
    .footer-container {
        padding: 0 8px;
    }
    
    .copyright {
        font-size: 0.75rem;
    }
    
    .footer-link {
        font-size: 0.75rem;
    }
    
    .contact-infos {
        font-size: 0.75rem;
        padding: 5px 8px;
    }
    
    .tagline {
        font-size: 0.75rem;
    }
    
    .phone-icon {
        width: 14px;
        height: 14px;
    }
}
/* End Contact Section */
/* End Footer Section */
/* Popup Overlay */
.overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 15px;
    box-sizing: border-box;
}

/* Popup Box */
.popup {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    width: 400px;
    max-width: 100%;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.2);
    animation: popupScale 0.3s ease-in-out;
    transition: all 0.3s ease;
    position: relative; /* Added for close button positioning */
}

/* Close Button - Responsive Positioning */
.close-btn { 
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #000;
    transition: color 0.2s;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 2001;
}

.close-btn:hover {
    color: #ff0000;
    background: #f5f5f5;
}

/* Heading */
.popup h2 {
    margin-top: 0;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #333;
    padding-right: 20px; /* Prevents text from overlapping with close button */
}

/* Input & Select */
.popup input, .popup select {
    width: 100%;
    padding: 12px 14px;
    margin: 12px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
    transition: all 0.3s ease;
}

.popup input:focus, 
.popup select:focus {
    border-color: #28a745;
    box-shadow: 0 0 6px rgba(40, 167, 69, 0.3);
    outline: none;
}

/* Unified Duration Box */
.duration-box {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;   /* keeps borders clean */
    margin: 12px 0;
}

.duration-box input,
.duration-box select {
    border: none;
    outline: none;
    padding: 12px 14px;
    font-size: 15px;
}

.duration-box input {
    flex: 2; /* input takes more space */
}

.duration-box select {
    flex: 1;
    background: #f9f9f9;
    border-left: 1px solid #ccc;
}

/* Button */
.popup button {
    width: 100%;
    padding: 14px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.popup button:hover {
    background: #218838;
    transform: scale(1.02);
}

/* Animation */
@keyframes popupScale {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .popup {
        width: 80%;
        padding: 25px 20px;
    }
    .popup h2 {
        font-size: 20px;
    }
    .close-btn {
        top: 10px;
        right: 12px;
        font-size: 18px;
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 768px) {
    .popup {
        width: 90%;
        padding: 20px;
    }
    .popup h2 {
        font-size: 18px;
    }
    .popup input, .popup select,
    .duration-box input, .duration-box select {
        font-size: 14px;
        padding: 10px 12px;
    }
    .close-btn {
        top: 8px;
        right: 10px;
        font-size: 16px;
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .popup {
        width: 95%;
        padding: 18px 15px;
        border-radius: 12px;
    }
    .popup h2 {
        font-size: 16px;
    }
    .popup input, .popup select,
    .duration-box input, .duration-box select {
        font-size: 13px;
        padding: 9px 10px;
    }
    .popup button {
        font-size: 14px;
        padding: 12px;
    }
    .close-btn {
        top: 6px;
        right: 8px;
        font-size: 14px;
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 330px) {
    .popup {
        width: 100%;
        padding: 15px;
        border-radius: 10px;
    }
    .popup h2 {
        font-size: 15px;
    }
    .popup input, .popup select,
    .duration-box input, .duration-box select {
        font-size: 12px;
    }
    .popup button {
        font-size: 13px;
        padding: 10px;
    }
    .close-btn {
        top: 5px;
        right: 7px;
        font-size: 13px;
        width: 20px;
        height: 20px;
    }
}
