  
        /* BodhiTv Theme - Simple & Clean */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #f8f9fa;
            color: #333;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
        }

        /* Custom Colors */
        :root {
            --primary: #2C5F2D;      /* Forest Green */
            --secondary: #FFE77A;     /* Soft Yellow */
            --accent: #97BC62;        /* Mint Green */
            --dark: #2C3E50;
            --light: #F5F5F5;
        }

        /* ===== NEW NAVBAR STYLE - ALL ITEMS IN ONE LINE ===== */
        .navbar {
            background: linear-gradient(135deg, var(--primary) 0%, #1e4420 100%) !important;
            padding: 10px 0;
            animation: slideDown 0.8s ease;
            border-bottom: 3px solid var(--secondary);
            min-height: 70px;
        }

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

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: nowrap;
        }

        .navbar-brand {
            margin-right: 20px;
            flex-shrink: 0;
        }

       .navbar-brand img{
          height: 50px;
          width: 80px;
          filter:none !important;
          opacity:1 !important;
        }
        .navbar-collapse {
            flex-grow: 0;
            margin-left: auto;
        }

        .navbar-nav {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 5px;
        }

        .navbar-nav .nav-item {
            white-space: nowrap;
        }

        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 8px 12px !important;
            transition: all 0.3s ease;
            position: relative;
            border-radius: 25px;
            font-size: 0.9rem;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 70%;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--secondary) !important;
        }

        .navbar .d-flex {
            display: flex !important;
            flex-direction: row;
            align-items: center;
            gap: 10px;
            margin-left: 15px;
            flex-shrink: 0;
        }

        .navbar .btn-custom-primary,
        .navbar .btn-custom-secondary {
            padding: 8px 16px;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        .navbar-toggler {
            background-color: var(--secondary);
            border: none;
            display: none;
        }

        .navbar-toggler-icon {
            filter: invert(1);
        }

        /* Desktop view - all items in one line */
        @media (min-width: 992px) {
            .navbar-nav {
                flex-wrap: nowrap;
            }
            
            .navbar .container {
                flex-wrap: nowrap;
            }
        }

        /* Mobile view - stack vertically */
        @media (max-width: 991px) {
            .navbar-toggler {
                display: block;
            }
            
            .navbar-collapse {
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, var(--primary) 0%, #1e4420 100%);
                padding: 20px;
                border-bottom: 3px solid var(--secondary);
                z-index: 1000;
            }
            
            .navbar-nav {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                width: 100%;
            }
            
            .navbar-nav .nav-link {
                width: 100%;
            }
            
            .navbar .d-flex {
                margin-left: 0;
                margin-top: 15px;
                width: 100%;
                justify-content: flex-start;
            }
        }
        /* ===== END OF NAVBAR STYLE ===== */

        /* Button Animations */
        .btn-custom-primary {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn-custom-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-custom-primary:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-custom-primary:hover {
            background-color: #1e4420;
            color: white;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 20px rgba(44, 95, 45, 0.4);
        }

        .btn-custom-secondary {
            background-color: var(--secondary);
            color: var(--dark);
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn-custom-secondary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.1);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-custom-secondary:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-custom-secondary:hover {
            background-color: #e6d166;
            color: var(--dark);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 20px rgba(255, 231, 122, 0.4);
        }

        /* Hero Section - Single Image Style */
       .hero-section {
            position: relative;
            height: 600px;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('img/hero.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            animation: zoomEffect 10s infinite alternate;
        }
        @keyframes zoomEffect {
            from { background-size: 100%; }
            to { background-size: 110%; }
        }

        .hero-content {
            max-width: 800px;
            padding: 40px;
            background: rgba(44, 95, 45, 0.8);
            border-radius: 20px;
            backdrop-filter: blur(5px);
            animation: fadeInUp 1.5s ease;
        }

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

        .hero-content h5 {
            color: var(--secondary);
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        /* Stats Section Animations */
        .stats-section {
            background-color: var(--primary);
            padding: 40px 0;
            animation: gradientShift 8s infinite alternate;
        }

        @keyframes gradientShift {
            0% { background-color: var(--primary); }
            50% { background-color: #1e4420; }
            100% { background-color: var(--primary); }
        }

        .stats-slider {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .stat-item {
            flex: 0 0 auto;
            width: 150px;
            animation: float 3s ease infinite;
        }

        .stat-item:nth-child(2) { animation-delay: 0.2s; }
        .stat-item:nth-child(3) { animation-delay: 0.4s; }
        .stat-item:nth-child(4) { animation-delay: 0.6s; }
        .stat-item:nth-child(5) { animation-delay: 0.8s; }
        .stat-item:nth-child(6) { animation-delay: 1s; }
        .stat-item:nth-child(7) { animation-delay: 1.2s; }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .stat-box {
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            color: white;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            backdrop-filter: blur(5px);
        }

        .stat-box:hover {
            transform: rotateY(180deg) scale(1.1);
            background: rgba(255,255,255,0.2);
            border-color: var(--secondary);
        }

        .stat-box h5 {
            color: var(--secondary);
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .stat-box p {
            margin: 0;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .stat-box img {
            width: 80px;
            transition: all 0.4s ease;
        }

        .stat-box:hover img {
            transform: rotate(360deg) scale(1.2);
        }

        /* QR Card Animations */
        .qr-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 3px solid var(--primary);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            animation: slideInRight 1s ease;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .qr-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 40px rgba(44, 95, 45, 0.3);
            border-color: var(--secondary);
        }

        .qr-card img {
            max-width: 200px;
            margin: 20px 0;
            transition: all 0.4s ease;
            animation: pulse 2s infinite;
        }

        .qr-card:hover img {
            transform: rotate(5deg) scale(1.1);
        }

        /* Feature Cards Animations */
        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            animation: fadeIn 1s ease;
            position: relative;
            overflow: hidden;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(44, 95, 45, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 20px 40px rgba(44, 95, 45, 0.2);
        }

        .feature-icon {
            background: var(--accent);
            border-radius: 50%;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.4s ease;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .feature-card:hover .feature-icon {
            transform: rotate(360deg) scale(1.1);
            background: var(--primary);
        }

        .feature-icon i {
            font-size: 40px;
            color: white;
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-icon i {
            transform: rotate(-360deg);
        }

        /* Pricing Cards Animations */
        .pricing-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            animation: slideInUp 1s ease;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .pricing-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 60px rgba(44, 95, 45, 0.3);
        }

        .pricing-header {
            background: var(--primary);
            color: white;
            padding: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .pricing-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) rotate(45deg); }
            20% { transform: translateX(100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
        }

        .pricing-header h3 {
            color: var(--secondary);
            font-size: 2.5rem;
            margin: 0;
            animation: pulse 2s infinite;
        }

        .pricing-body {
            padding: 30px;
        }

        .pricing-body ul {
            list-style: none;
            padding: 0;
        }

        .pricing-body li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
            animation: slideInRight 0.5s ease;
            animation-fill-mode: both;
        }

        .pricing-body li:nth-child(1) { animation-delay: 0.1s; }
        .pricing-body li:nth-child(2) { animation-delay: 0.2s; }
        .pricing-body li:nth-child(3) { animation-delay: 0.3s; }
        .pricing-body li:nth-child(4) { animation-delay: 0.4s; }
        .pricing-body li:nth-child(5) { animation-delay: 0.5s; }
        .pricing-body li:nth-child(6) { animation-delay: 0.6s; }
        .pricing-body li:nth-child(7) { animation-delay: 0.7s; }

        .pricing-body li:hover {
            transform: translateX(10px);
            color: var(--primary);
        }

        .pricing-body i {
            color: var(--primary);
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .pricing-body li:hover i {
            transform: scale(1.2) rotate(360deg);
        }

        /* Support Box Animations */
        .support-box {
            background: white;
            border-radius: 30px;
            padding: 50px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            border: 3px solid var(--secondary);
            margin: 40px 0;
            animation: zoomIn 1s ease;
            position: relative;
            overflow: hidden;
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .support-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 231, 122, 0.1) 0%, transparent 70%);
            animation: rotate 10s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .whatsapp-badge {
            background: #25D366;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 20px;
            animation: pulse 2s infinite;
            position: relative;
            z-index: 1;
        }

        .contact-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin: 20px 0;
            animation: slideInLeft 1s ease;
        }

        .whatsapp-link {
            background: #25D366;
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            margin: 20px 0;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .whatsapp-link::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .whatsapp-link:hover::before {
            width: 300px;
            height: 300px;
        }

        .whatsapp-link:hover {
            background: #128C7E;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
            color: white;
        }

        /* FAQ Accordion Animations */
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px !important;
            overflow: hidden;
            transition: all 0.3s ease;
            animation: slideInLeft 0.5s ease;
            animation-fill-mode: both;
        }

        .accordion-item:nth-child(1) { animation-delay: 0.1s; }
        .accordion-item:nth-child(2) { animation-delay: 0.2s; }
        .accordion-item:nth-child(3) { animation-delay: 0.3s; }
        .accordion-item:nth-child(4) { animation-delay: 0.4s; }
        .accordion-item:nth-child(5) { animation-delay: 0.5s; }
        .accordion-item:nth-child(6) { animation-delay: 0.6s; }
        .accordion-item:nth-child(7) { animation-delay: 0.7s; }

        .accordion-button {
            background: var(--light);
            color: var(--dark);
            font-weight: 600;
            padding: 20px;
            transition: all 0.3s ease;
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary);
            color: white;
        }

        .accordion-button:hover {
            transform: translateX(5px);
        }

        /* Footer Animations */
        .footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 30px;
            animation: fadeIn 1.5s ease;
        }

        .footer a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 0;
        }

        .footer a::before {
            content: '→';
            position: absolute;
            left: -20px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .footer a:hover {
            color: var(--secondary);
            transform: translateX(20px);
        }

        .footer a:hover::before {
            opacity: 1;
            left: 0;
        }

        .footer h4 {
            color: var(--secondary);
            margin-bottom: 20px;
            animation: slideInLeft 1s ease;
        }

        .copyright {
            background: #1a2632;
            color: rgba(255,255,255,0.5);
            padding: 20px 0;
            text-align: center;
            animation: fadeIn 2s ease;
        }

        /* WhatsApp Floating Button Animation */
        .whatsapp-float {
            position: fixed;
            right: 20px;
            bottom: 100px;
            z-index: 1000;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25D366;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            text-decoration: none;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            animation: pulse-whatsapp 2s infinite;
        }

        @keyframes pulse-whatsapp {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        .whatsapp-float:hover {
            transform: scale(1.2) rotate(360deg);
            color: white;
            background: #128C7E;
        }

        /* Back to Top Button Animation */
        .back-to-top {
            position: fixed;
            right: 20px;
            bottom: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 999;
            animation: bounce 2s infinite;
        }

        .back-to-top:hover {
            background: var(--accent);
            transform: translateY(-10px) scale(1.1);
            color: white;
        }

        /* Spinner Animation */
        #spinner {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .spinner-border {
            color: var(--primary) !important;
            width: 3rem;
            height: 3rem;
            animation: spin 1s linear infinite;
        }

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

        /* Image Animations */
        img {
            transition: all 0.4s ease;
        }

        img:hover {
            transform: scale(1.05);
            filter: brightness(1.1);
        }

        /* Section Animations */
        section {
            animation: fadeIn 1s ease;
        }

        /* ===== ENHANCED MOBILE RESPONSIVENESS ===== */
        /* (Only additions – everything above stays exactly as you had it) */
        @media (max-width: 768px) {
            /* Hero section adjustments */
            .hero-section {
                height: 500px;
            }
            .hero-content {
                padding: 25px;
                margin: 0 15px;
            }
            .hero-content h1 {
                font-size: 2.8rem;
            }
            .hero-content p {
                font-size: 1rem;
            }

            /* Stats: 2 columns instead of fixed 150px */
            .stats-slider {
                gap: 15px;
            }
            .stat-item {
                width: calc(50% - 15px);
                flex: 0 0 auto;
            }
            .stat-box {
                padding: 15px;
            }
            .stat-box h5 {
                font-size: 1.2rem;
            }
            .stat-box p {
                font-size: 0.8rem;
            }
            .stat-box img {
                width: 30px;
            }

            /* QR card */
            .qr-card {
                padding: 30px 20px;
            }
            .qr-card h2 {
                font-size: 2rem;
            }
            .qr-card img {
                max-width: 150px;
            }

            /* Feature cards */
            .feature-card {
                padding: 20px 15px;
            }
            .feature-icon {
                width: 60px;
                height: 60px;
            }
            .feature-icon i {
                font-size: 30px;
            }
            .feature-card h4 {
                font-size: 1.2rem;
            }
            .feature-card .btn-custom-secondary {
                padding: 6px 12px;
                font-size: 0.8rem;
            }

            /* Pricing cards */
            .pricing-card {
                margin-bottom: 20px;
            }
            .pricing-header h3 {
                font-size: 2rem;
            }
            .pricing-body {
                padding: 20px;
            }
            .pricing-body li {
                font-size: 0.9rem;
            }

            /* Support box */
            .support-box {
                padding: 30px 20px;
                margin: 30px 15px;
            }
            .support-box h1 {
                font-size: 1.8rem;
            }
            .contact-number {
                font-size: 1.6rem;
                word-break: break-word;
            }
            .whatsapp-link {
                padding: 12px 25px;
                font-size: 1rem;
                width: 100%;
                max-width: 300px;
            }

            /* FAQ */
            .accordion-button {
                padding: 15px;
                font-size: 0.95rem;
            }
            .accordion-body {
                padding: 15px;
                font-size: 0.9rem;
            }

            /* Footer */
            .footer {
                padding: 40px 0 20px;
            }
            .footer h4 {
                margin-top: 20px;
            }
            .footer a {
                font-size: 0.9rem;
            }

            /* Copyright */
            .copyright p {
                font-size: 0.8rem;
                padding: 0 15px;
            }

            /* Floating buttons */
            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 25px;
                right: 15px;
                bottom: 80px;
            }
            .back-to-top {
                width: 40px;
                height: 40px;
                font-size: 18px;
                right: 15px;
                bottom: 20px;
            }

            /* Container padding for small screens */
            .container {
                padding-left: 15px;
                padding-right: 15px;
            }

            /* Adjust display-4 on mobile */
            .display-4 {
                font-size: 2.2rem;
            }
            .lead {
                font-size: 1rem;
            }
        }

        /* Extra small devices (phones under 480px) */
        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }
            .stat-item {
                width: 100%;
            }
            .display-4 {
                font-size: 1.8rem;
            }
            .support-box h1 {
                font-size: 1.5rem;
            }
            .contact-number {
                font-size: 1.3rem;
            }
        }
        /* ===== END OF MOBILE FIXES ===== */
        @keyframes zoomEffect {
            from {
                background-size: 100%;
            }

            to {
                background-size: 110%;
            }
        }

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

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

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        .btn-custom-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-custom-primary:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-custom-primary:hover {
            background-color: #1e4420 !important;
            color: white;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 20px rgba(44, 95, 45, 0.4);
        }

        .btn-custom-secondary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.1);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-custom-secondary:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-custom-secondary:hover {
            background-color: #e6d166 !important;
            color: #2C3E50;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 20px rgba(255, 231, 122, 0.4);
        }

        @media (max-width: 768px) {
            .hero-section {
                height: 500px !important;
            }

            .hero-content {
                padding: 25px !important;
                margin: 0 15px !important;
            }

            .hero-content h1 {
                font-size: 2.8rem !important;
            }

            .hero-content p {
                font-size: 1rem !important;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2.2rem !important;
            }
        }

        /* Mobile Responsive Fixes - Only these styles added, nothing else changed */
        
        @media (max-width: 991px) {
            /* Navbar mobile fix */
            .navbar-collapse {
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, var(--primary, #2C5F2D) 0%, #1e4420 100%);
                padding: 20px;
                z-index: 1000;
                border-bottom: 3px solid var(--secondary, #FFE77A);
            }
            
            .navbar-nav {
                flex-direction: column;
                width: 100%;
                gap: 10px;
            }
            
            .navbar-nav .nav-link {
                width: 100%;
                text-align: left;
                padding: 10px 15px !important;
            }
            
            .navbar .d-flex {
                flex-direction: column;
                width: 100%;
                margin-top: 15px;
                gap: 10px;
            }
            
            .navbar .d-flex .btn-custom-primary,
            .navbar .d-flex .btn-custom-secondary {
                width: 100%;
                text-align: center;
                margin: 0 !important;
            }
        }
        
        @media (max-width: 768px) {
            /* Hero section */
            .hero-section {
                height: 500px !important;
                background-attachment: scroll !important;
            }
            
            .hero-content {
                padding: 25px !important;
                margin: 0 15px !important;
            }
            
            .hero-content h1 {
                font-size: 2.5rem !important;
            }
            
            .hero-content h5 {
                font-size: 0.9rem !important;
            }
            
            .hero-content p {
                font-size: 0.9rem !important;
            }
            
            /* Stats section - 2 columns */
            .stats-slider {
                gap: 15px;
            }
            
            .stat-item {
                width: calc(50% - 15px);
                flex: 0 0 auto;
            }
            
            .stat-box {
                padding: 15px;
            }
            
            .stat-box h5 {
                font-size: 1.1rem;
            }
            
            .stat-box p {
                font-size: 0.8rem;
            }
            
            .stat-box img {
                width: 30px;
            }
            
            /* QR card */
            .qr-card {
                padding: 25px 20px;
                margin: 0 15px;
            }
            
            .qr-card h2 {
                font-size: 1.8rem;
            }
            
            .qr-card img {
                max-width: 150px;
            }
            
            /* Feature cards */
            .feature-card {
                padding: 20px 15px;
            }
            
            .feature-card h4 {
                font-size: 1.1rem;
            }
            
            .feature-card .btn-custom-secondary {
                padding: 6px 12px;
                font-size: 0.8rem;
            }
            
            .feature-card img {
                width: 100px !important;
            }
            
            /* Pricing cards */
            .pricing-card {
                margin-bottom: 20px;
            }
            
            .pricing-header {
                padding: 20px;
            }
            
            .pricing-header h3 {
                font-size: 2rem;
            }
            
            .pricing-body {
                padding: 20px;
            }
            
            .pricing-body li {
                font-size: 0.9rem;
            }
            
            /* Support box */
            .support-box {
                padding: 30px 20px;
                margin: 30px 15px;
            }
            
            .support-box h1 {
                font-size: 1.8rem;
            }
            
            .contact-number {
                font-size: 1.5rem;
                word-break: break-word;
            }
            
            .whatsapp-link {
                padding: 12px 25px;
                font-size: 1rem;
                width: 100%;
                max-width: 300px;
            }
            
            /* FAQ */
            .accordion-button {
                padding: 15px;
                font-size: 0.95rem;
            }
            
            .accordion-body {
                padding: 15px;
                font-size: 0.9rem;
            }
            
            /* Footer */
            .footer {
                padding: 40px 0 20px;
            }
            
            .footer h4 {
                margin-top: 20px;
            }
            
            .footer a {
                font-size: 0.9rem;
            }
            
            .footer img {
                max-width: 120px;
            }
            
            /* Copyright */
            .copyright p {
                font-size: 0.8rem;
                padding: 0 15px;
            }
            
            /* Container padding */
            .container {
                padding-left: 15px;
                padding-right: 15px;
            }
            
            /* Row gutters */
            .row {
                margin-left: -10px;
                margin-right: -10px;
            }
            
            .col, [class*="col-"] {
                padding-left: 10px;
                padding-right: 10px;
            }
            
            /* Text sizes */
            .display-4 {
                font-size: 2rem;
            }
            
            .lead {
                font-size: 1rem;
            }
            
            /* About section images */
            .py-5 img {
                margin-bottom: 20px;
            }
            
            /* WhatsApp button */
            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 25px;
                right: 15px;
                bottom: 80px;
            }
            
            /* Back to top */
            .back-to-top {
                width: 40px;
                height: 40px;
                font-size: 18px;
                right: 15px;
                bottom: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem !important;
            }
            
            .stat-item {
                width: 100%;
            }
            
            .display-4 {
                font-size: 1.6rem;
            }
            
            .support-box h1 {
                font-size: 1.4rem;
            }
            
            .contact-number {
                font-size: 1.2rem;
            }
            
            .pricing-header h3 {
                font-size: 1.8rem;
            }
        }
