:root {
    --primary: #2e7d32;
    --primary-light: #38a169;
    --primary-lighter: #c6f6d5;
    --dark: #2c3e50;
    --light: #ffffff;
    --gray: #666;
    --gray-light: #f8f9fa;
    --error: #f44336;
    --warning: #ff9800;
    --info: #2196f3;
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    /* background-color: var(--primary-light); */
    overflow-x: hidden;
}

        h1, h2, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        p {
            margin-bottom: 1rem;
            color: var(--gray);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .section {
            padding: 4rem 0;
        }

        .section-title {
            font-size: 2.4rem;
            text-align: center;
            margin-bottom: 2rem;
        }

        .section-title mark {
            background-color: rgba(46, 125, 50, 0.15);
            color: var(--primary);
            padding: 0 5px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.7rem 1.5rem;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--primary-light);
            color: var(--light);
        }

        .btn-primary:hover {
            background-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(56, 161, 105, 0.4);
        }

        /* ===== Header Styles ===== */
       /* Header Grid Layout */
.header-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1px;
    align-items: center;
}

.header-col {
    grid-column: span 12;
}

.contact-col {
    order: 1;
}

.social-col {
    order: 2;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .header-col {
        grid-column: span 6;
    }
    
    .contact-col {
        order: 1;
    }
    
    .social-col {
        order: 2;
        display: flex;
        justify-content: flex-end;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .contact-col {
        grid-column: span 8;
    }
    
    .social-col {
        grid-column: span 4;
    }
}

/* Existing header styles (keep these from your current CSS) */
.top-header {
    background-color: var(--primary-light);
    color: var(--light);
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.contact-item:hover {
    transform: translateY(-2px);
    color: var(--primary-lighter);
}

.social-icons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(56, 161, 105, 0.2);
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    background-color: rgba(56, 161, 105, 0.3);
}

        /* ===== Navbar Styles ===== */
        .navbar {
            background-color: var(--light);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1020;
            transition: all 0.3s ease;
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            cursor: pointer;
        }

        .logo i {
            margin-right: 10px;
            color: var(--primary-light);
            font-size: 1.8rem;
        }

        .nav-links {
            display: flex;
            gap: 25px;
        }

        .nav-links a {
            position: relative;
            padding: 5px 0;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: var(--primary-light);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary-light);
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .hamburger {
            font-size: 1.8rem;
            color: var(--dark);
            cursor: pointer;
            display: none;
        }

        /* ===== Mobile Menu Styles ===== */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--light);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            z-index: 1050;
            transition: right 0.3s ease;
            padding: 20px;
            overflow-y: auto;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .close-menu {
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
        }

        .mobile-nav-links li {
            margin-bottom: 20px;
        }

        .mobile-nav-links a {
            font-size: 1.1rem;
            font-weight: 500;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1040;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* ===== Banner Section ===== */
        .banner-section {
            background: linear-gradient(to bottom, rgba(238, 255, 240, 0.9), rgba(224, 242, 226, 0.9));
            padding: 4rem 0;
        }

        .banner-container {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

        .banner-content, .banner-cards {
            flex: 1;
            min-width: 300px;
        }

        .banner-badge {
            display: inline-block;
            background-color: #e8f5e9;
            color: var(--primary);
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .banner-title  {
            font-size: 2.2rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        .banner-title span {
          color: black;
         font-size: 2rem;

         }


        .banner-text {
            color: var(--gray);
            margin-bottom: 1.5rem;
        }

        .banner-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
        }

        .banner-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .service-card {
            flex: 1;
            min-width: 250px;
            background: var(--light);
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(46, 125, 50, 0.1);
        }

        .card-icon {
            margin-bottom: 1rem;
            text-align: center;
        }

        .card-icon i {
            font-size: 2.5rem;
            color: var(--primary-light);
        }

        .card-title {
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
        }

        .card-description {
            font-size: 0.875rem;
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }

        .discount-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* ===== How It Works Section ===== */
        .steps-section {
            background-color: var(--light);
            padding: 5rem 0;
            position: relative;
        }

        .steps-section::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: linear-gradient(to bottom, transparent, rgba(46, 125, 50, 0.03));
        }

        .small_txt {
            display: block;
            text-align: center;
            color: var(--primary);
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
            position: relative;
        }

        .step-card {
            background: var(--light);
            border-radius: 12px;
            padding: 2rem 1.5rem;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            border: 1px solid var(--primary-lighter);
            position: relative;
            overflow: hidden;
        }

        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--primary-light));
            transition: height 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(46, 125, 50, 0.1);
        }

        .step-card:hover::before {
            height: 6px;
        }

        .step-card figure {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(56, 142, 60, 0.1) 0%, rgba(129, 199, 132, 0.1) 100%);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .step-card:hover figure {
            transform: scale(1.1);
            background: linear-gradient(135deg, rgba(56, 142, 60, 0.2) 0%, rgba(129, 199, 132, 0.2) 100%);
        }

        .step-card figure i {
            font-size: 2rem;
            color: var(--primary);
        }

        .step-card strong {
            display: block;
            font-size: 1.25rem;
            color: var(--dark);
            margin-bottom: 0.75rem;
            font-weight: 600;
        }

        .step-card p {
            color: var(--gray);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 0;
        }

        .text-center {
            text-align: center;
        }

        .mt-4 {
            margin-top: 2rem;
        }

        /* ===== GST Section ===== */
        .gst-section {
            background-color: var(--light);
        }

        .gst-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .gst-card {
            background: var(--light);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--primary-lighter);
            transition: all 0.3s ease;
            text-align: center;
        }

        .gst-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 20px -5px rgba(0, 0, 0, 0.1);
        }

        .gst-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(56, 161, 105, 0.1) 0%, rgba(47, 133, 90, 0.1) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.2rem;
            color: var(--primary-light);
            font-size: 1.8rem;
        }

        .gst-price {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary-light);
            margin-bottom: 1.2rem;
        }

        .gst-features {
            max-width: 1000px;
            margin: 3rem auto 0;
            background: var(--light);
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--primary-lighter);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.2rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
        }

        .feature-icon {
            color: var(--primary-light);
            font-size: 1.1rem;
            margin-top: 0.2rem;
        }

        /* ===== Benefits Section ===== */
        .benefits-section {
            background: linear-gradient(to bottom, rgba(248, 250, 252, 0.9), rgba(240, 253, 244, 0.9));
            padding: 5px 0;
            position: relative;
            overflow: hidden;
        }

        .benefits-section::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path fill="%23e6f7ea" d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25"/><path fill="%23e6f7ea" d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5"/><path fill="%23e6f7ea" d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z"/></svg>');
            background-size: cover;
            background-repeat: no-repeat;
            z-index: 0;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .benefit-card {
            background: white;
            border-radius: 16px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: 0 5px 20px rgba(46, 125, 50, 0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            border: 1px solid rgba(46, 125, 50, 0.1);
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--primary-light));
            transition: height 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(46, 125, 50, 0.1);
        }

        .benefit-card:hover::before {
            height: 6px;
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(46, 125, 50, 0.1) 0%, rgba(129, 199, 132, 0.1) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--primary);
            font-size: 1.8rem;
            transition: all 0.3s ease;
        }

        .benefit-card:hover .benefit-icon {
            transform: scale(1.1);
            background: linear-gradient(135deg, rgba(46, 125, 50, 0.2) 0%, rgba(129, 199, 132, 0.2) 100%);
            color: var(--primary);
        }

        .benefit-card h3 {
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .benefit-card p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* ===== Support Section ===== */
        .support-section {
            background: linear-gradient(to bottom, rgba(238, 255, 240, 0.9), rgba(224, 242, 226, 0.9));
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .support-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23e8f5e9" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"/></svg>');
            background-size: 100% auto;
            background-repeat: no-repeat;
            background-position: bottom;
            opacity: 0.6;
            z-index: -1;
        }

        .support-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .support-badge {
            display: inline-block;
            background-color: rgba(46, 125, 50, 0.15);
            color: #2e7d32;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .support-subtitle {
            color: #546e7a;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .support-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .support-option {
            background: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(46, 125, 50, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(46, 125, 50, 0.1);
        }

        .support-option::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #2e7d32, #81c784);
            transition: width 0.3s ease;
        }

        .support-option:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(46, 125, 50, 0.15);
        }

        .support-option:hover::after {
            width: 6px;
        }

        .support-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(46, 125, 50, 0.1) 0%, rgba(129, 199, 132, 0.1) 100%);
            color: #2e7d32;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }

        .support-option:hover .support-icon {
            transform: scale(1.05);
            background: linear-gradient(135deg, rgba(46, 125, 50, 0.2) 0%, rgba(129, 199, 132, 0.2) 100%);
        }

        .pulse-dot {
            position: absolute;
            top: -5px;
            right: -5px;
            width: 20px;
            height: 20px;
            background-color: #4CAF50;
            border-radius: 50%;
            animation: pulse 2s infinite;
            border: 3px solid white;
        }

        @keyframes pulse {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
        }

        .availability-badge {
            position: absolute;
            top: 30px;
            right: 30px;
            background-color: rgba(76, 175, 80, 0.1);
            color: #2e7d32;
            padding: 6px 12px 6px 8px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .online-dot {
            width: 8px;
            height: 8px;
            background-color: #4CAF50;
            border-radius: 50%;
        }

        .support-form .form-group {
            margin-bottom: 20px;
        }

        .support-form input,
        .support-form textarea {
            width: 100%;
            padding: 14px 18px;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            background-color: #f5f5f5;
            color: #333;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .support-form input:focus,
        .support-form textarea:focus {
            outline: none;
            border-color: #81c784;
            background-color: white;
            box-shadow: 0 0 0 3px rgba(129, 199, 132, 0.2);
        }

        .faq-preview {
            margin-bottom: 25px;
        }

        .faq-item {
            padding: 16px 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-item h4 {
            color: #263238;
            font-size: 1rem;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .faq-item p {
            color: #546e7a;
            font-size: 0.9rem;
            margin-bottom: 0;
            line-height: 1.6;
        }

        .support-hotline {
            background: linear-gradient(to right, #2e7d32, #388e3c);
            color: white;
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(46, 125, 50, 0.2);
        }

        .hotline-content {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            max-width: 800px;
            margin: 0 auto;
        }

        .hotline-content i {
            font-size: 2.5rem;
            color: white;
            background-color: rgba(255, 255, 255, 0.15);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .hotline-text {
            text-align: left;
            flex: 1;
            min-width: 200px;
        }

        .hotline-text h5 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .hotline-text p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            margin-bottom: 0;
        }

        .hotline-number {
            display: inline-flex;
            align-items: center;
            background-color: white;
            color: #2e7d32;
            padding: 16px 30px;
            border-radius: 8px;
            font-size: 1.25rem;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            gap: 10px;
        }

        .hotline-number:hover {
            background-color: #f5f5f5;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }

        /* ===== Footer Styles ===== */
        .footer {
            background: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(27, 94, 32, 0.9) 100%);
            color: #ffffff;
            padding: 60px 0 0;
            position: relative;
            backdrop-filter: blur(5px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-main {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-column {
            margin-bottom: 30px;
        }

        .logo-container {
            margin-bottom: 20px;
        }

        .footer-logo {
            font-size: 1.2rem;
            font-weight: 700;
            color: #ffffff;
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .footer-logo .logo-icon {
            font-size: 2.2rem;
            margin-right: 10px;
            color: #ffeb3b;
        }

        .footer-logo .highlight {
            color: #ffeb3b;
            font-weight: 700;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .footer-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            color: #ffffff;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: #ffeb3b;
            border-radius: 3px;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: #ffffff;
            padding-left: 5px;
        }

        .footer-links i {
            margin-right: 8px;
            font-size: 0.8rem;
            color: #ffeb3b;
        }

        .footer-contact .contact-item {
            display: flex;
            margin-bottom: 15px;
        }

        .contact-icon {
            width: 36px;
            height: 36px;
            background-color: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #ffeb3b;
            flex-shrink: 0;
        }

        .contact-text {
            display: flex;
            flex-direction: column;
        }

        .contact-text span {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .newsletter {
            margin-bottom: 25px;
        }

        .newsletter h5 {
            font-size: 1rem;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .newsletter-form {
            display: flex;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            background-color: rgba(255, 255, 255, 0.15);
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            outline: none;
            font-size: 0.9rem;
            background-color: transparent;
            color: white;
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .subscribe-btn {
            background-color: #ffeb3b;
            color: #333;
            border: none;
            padding: 0 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .subscribe-btn:hover {
            background-color: #fdd835;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .social-link {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            transition: all 0.3s ease;
            background-color: rgba(255, 255, 255, 0.15);
        }

        .social-link.facebook:hover { background-color: #3b5998; }
        .social-link.twitter:hover { background-color: #1da1f2; }
        .social-link.linkedin:hover { background-color: #0077b5; }
        .social-link.instagram:hover { background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); }
        .social-link.whatsapp:hover { background-color: #25d366; }

        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 25px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        .copyright strong {
            color: #ffffff;
            font-weight: 600;
        }

        .legal-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .legal-links a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.85rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .legal-links a:hover {
            color: #ffffff;
        }

        .legal-links i {
            margin-right: 5px;
            font-size: 0.9rem;
            color: #ffeb3b;
        }

        .payment-methods {
            display: flex;
            gap: 10px;
        }

        .payment-icon {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
        }

        .payment-icon:hover {
            color: #ffeb3b;
        }

        .back-to-top .top-btn {
            background-color: rgba(255, 255, 255, 0.15);
            color: #ffffff;
            padding: 8px 15px;
            border-radius: 30px;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
        }

        .back-to-top .top-btn:hover {
            background-color: #ffeb3b;
            color: #333;
            transform: translateY(-3px);
        }

        .whatsapp-float {
            position: fixed;
            width: 50px;
            height: 50px;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: #ffffff;
            border-radius: 50%;
            text-align: center;
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        }
        

        /* ===== Responsive Styles ===== */
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .hamburger {
                display: block;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .top-header {
                justify-content: center;
                gap: 0.8rem;
                padding: 0.5rem 1rem;
            }
            
            .contact-info {
                justify-content: center;
            }
            
            .social-icons {
                justify-content: center;
                width: 100%;
                margin-top: 0.5rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .banner-container, .steps-grid, 
            .benefits-grid, .gst-cards,
            .support-options {
                grid-template-columns: 1fr;
            }
            
            .service-card, .step-card,
            .benefit-card, .gst-card {
                min-width: 100%;
            }
            
            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 25px;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.5rem;
            }
            
            .footer-main {
                grid-template-columns: 1fr;
            }
        }