        /* 
         * Index Page Stylesheet
         * Version: 3.0 - 2026 New Year Theme
         * Updated: Black, White, Yellow Theme
         */
        
        :root {
            /* 2026 Theme - Main Colors */
            --color-black: #000000;
            --color-white: #ffffff;
            --color-yellow: #FFD700;
            --color-yellow-light: #FFE44D;
            --color-yellow-dark: #FFC107;
            
            /* Additional Colors */
            --color-gray-light: #f5f5f5;
            --color-gray: #e5e5e5;
            --color-gray-medium: #cccccc;
            --color-gray-dark: #333333;
            --color-green-light: #d4edda;
            --color-red-light: #f8d7da;
            --color-blue-light: #d1ecf1;
            
            /* Theme Variables */
            --primary-color: var(--color-black);
            --primary-hover: var(--color-gray-dark);
            --secondary-color: var(--color-yellow);
            --secondary-hover: var(--color-yellow-dark);
            --accent-yellow: var(--color-yellow);
            --golden-yellow: var(--color-yellow);
            
            --bg-color: var(--color-white);
            --text-color: var(--color-black);
            --text-muted: var(--color-gray-dark);
            --border-color: var(--color-gray);
            --success-color: #10b981;
            --danger-color: #ef4444;
            --warning-color: var(--color-yellow);
            --info-color: #3b82f6;
            --card-bg: var(--color-white);
            
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15);
            --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.2);
            --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.25);
            
            --radius-sm: 0.375rem;
            --radius-md: 0.5rem;
            --radius-lg: 0.75rem;
            
            --gradient-primary: linear-gradient(135deg, var(--color-black) 0%, var(--color-gray-dark) 100%);
            --gradient-yellow: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-yellow-dark) 100%);
            --gradient-dark: linear-gradient(135deg, var(--color-black) 0%, var(--color-gray-dark) 100%);
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background: var(--bg-color);
            padding-top: 76px; /* Standard navbar height */
            font-size: 0.9rem;
        }

        /* 2026 Hero Section - Black & White Theme */
        .hero {
            position: relative;
            min-height: 60vh;
            background: var(--color-black);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 0;
            margin: 0 0 0 0;
        }

        /* 2026 Background Pattern - Subtle */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
            opacity: 1;
        }

        .hero::after {
            display: none;
        }



        .hero-container {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Split Layout Container */
        .hero-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
            min-height: auto;
            padding: 0;
        }

        /* Left Content - 2026 Theme */
        .hero-content {
            position: relative;
            z-index: 2;
            color: var(--color-white);
        }

        /* Status Badge - 2026 Theme */
        .hero-status {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 215, 0, 0.15);
            border: 2px solid var(--color-yellow);
            border-radius: 50px;
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--color-yellow);
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
            animation: pulse-glow 3s ease-in-out infinite;
        }

        .hero-status::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--color-yellow);
            border-radius: 50%;
            animation: status-blink 2s ease-in-out infinite;
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
        }

        @keyframes status-blink {
            0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--color-yellow); }
            50% { opacity: 0.5; box-shadow: 0 0 5px var(--color-yellow); }
        }

        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
            50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.5); }
        }

        /* Compact Typography */
        .hero-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            position: relative;
        }

        .title-primary {
            color: var(--color-white);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            display: block;
        }

        .title-accent {
            background: linear-gradient(135deg, #4f46e5 0%, #22d3ee 50%, #9333ea 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% auto;
            animation: gradient-flow 3s ease-in-out infinite;
            display: block;
            position: relative;
        }

        @keyframes gradient-flow {
            0%, 100% { background-position: 0% center; }
            50% { background-position: 100% center; }
        }

        .hero-description {
            font-size: 1rem;
            color: var(--color-gray-medium);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            max-width: 480px;
        }

        /* Compact Action Buttons */
        .hero-actions {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            justify-content: flex-start;
        }

        .hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.625rem 1.25rem;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.2s ease;
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
        }

        .hero-btn-login {
            background: var(--color-yellow);
            color: var(--color-black);
            border: 2px solid var(--color-yellow);
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
            font-weight: 700;
        }

        .hero-btn-login:hover {
            background: var(--color-yellow-dark);
            border-color: var(--color-yellow-dark);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
            transform: translateY(-2px);
        }

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

        .hero-btn-signup:hover {
            background: var(--color-white);
            color: var(--color-black);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
        }

        /* Right Visual Section */
        .hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        /* Feature Grid */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            width: 100%;
            max-width: 400px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-lg);
            padding: 1.25rem 0.75rem;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            border-color: var(--color-yellow);
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
            background: rgba(255, 255, 255, 0.15);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 0.75rem auto;
            background: var(--color-yellow);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: var(--color-black);
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
        }

        .feature-title {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--color-white);
            margin-bottom: 0.25rem;
            position: relative;
            z-index: 1;
        }

        .feature-subtitle {
            font-size: 0.85rem;
            color: var(--color-gray-medium);
            position: relative;
            z-index: 1;
            font-weight: 500;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-split {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: left;
            }
            
            .feature-grid {
                max-width: 500px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .hero-split {
                padding: 1rem 0;
            }
            
            .feature-grid {
                grid-template-columns: repeat(2, 1fr);
                max-width: 400px;
                gap: 1rem;
            }
            
            .feature-card {
                padding: 1.5rem 1rem;
            }
            
            .feature-title {
                font-size: 1.1rem;
            }
            
            .feature-subtitle {
                font-size: 0.8rem;
            }
            
            .hero-btn {
                padding: 0.875rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        /* Beautiful Section Headings */
        .section-heading {
            position: relative;
            text-align: center;
            margin-bottom: 2rem;
        }

        .section-heading h2 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            color: var(--text-color);
        }

        .section-heading-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: var(--color-black);
            border-radius: var(--radius-md);
            color: var(--color-white);
            font-size: 1.1rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .section-heading-icon::after {
            display: none;
        }

        .section-subtitle {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 0;
            font-weight: 500;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Dark Section Headings - 2026 Theme */
        .dark-section .section-heading h2 {
            color: var(--color-white);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .dark-section .section-subtitle {
            color: var(--color-gray-medium);
        }

        /* Mobile Responsive Styles for Section Headings */
        @media (max-width: 768px) {
            .section-heading h2 {
                font-size: clamp(1.5rem, 4vw, 2.2rem);
                flex-direction: column;
                gap: 0.8rem;
                text-align: center;
            }
            
            .section-heading-icon {
                width: 50px;
                height: 50px;
                font-size: 1.25rem;
                margin: 0 auto;
            }
            
            .section-subtitle {
                font-size: 1rem;
                padding: 0 1rem;
            }
            
            .section-heading {
                margin-bottom: 3rem;
            }
        }

        @media (max-width: 480px) {
            .section-heading h2 {
                font-size: 1.8rem;
            }
            
            .section-heading-icon {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
            
            .section-subtitle {
                font-size: 0.95rem;
            }
        }

        /* Enhanced Hero Content */
        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 900px;
            margin: 0 auto;
            text-align: left;
        }

        @media (max-width: 991.98px) {
            .hero {
                min-height: 60vh;
                padding: 2rem 1rem;
            }
            .hero-title {
                font-size: clamp(2rem, 6vw, 3rem);
                margin-bottom: 1rem;
                line-height: 1.2;
            }
            .hero-subtitle {
                font-size: 1.1rem;
                margin-bottom: 1.8rem;
                max-width: 100%;
                padding: 0 1rem;
            }
            .hero-buttons {
                justify-content: center;
                gap: 1rem;
                margin-bottom: 2.5rem;
                padding: 0 1rem;
            }
            .hero-buttons .btn {
                min-width: 150px;
                padding: 0.8rem 1.8rem;
                font-size: 1rem;
            }
            .hero-stats {
                justify-content: center;
                gap: 1.2rem;
                padding: 0 1rem;
            }
            .stat-item {
                padding: 1.2rem 1rem;
                min-width: 110px;
            }
            .stat-item h3 {
                font-size: 1.9rem;
            }
            .stat-item p {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 767.98px) {
            .hero {
                min-height: 50vh;
                padding: 1.5rem 0.5rem;
            }
            .hero-badge {
                padding: 0.6rem 1.4rem;
                font-size: 0.85rem;
                letter-spacing: 1.2px;
                margin-bottom: 1.2rem;
            }
            .hero-title {
                font-size: clamp(1.8rem, 8vw, 2.4rem);
                margin-bottom: 1rem;
                line-height: 1.3;
            }
            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 1.8rem;
                padding: 0 0.5rem;
                line-height: 1.6;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
                margin-bottom: 2.2rem;
                padding: 0 1rem;
            }
            .hero-buttons .btn {
                width: 100%;
                max-width: 280px;
                padding: 0.9rem 2rem;
                font-size: 0.95rem;
                letter-spacing: 0.8px;
                min-width: auto;
            }
            .hero-stats {
                gap: 1rem;
                justify-content: center;
                padding: 0 0.5rem;
            }
            .stat-item {
                padding: 1.1rem 0.8rem;
                min-width: 90px;
                border-radius: 14px;
            }
            .stat-item h3 {
                font-size: 1.6rem;
            }
            .stat-item p {
                font-size: 0.85rem;
                letter-spacing: 1.2px;
            }
        }

        @media (max-width: 575.98px) {
            .hero {
                min-height: 45vh;
                padding: 1.2rem 0.3rem;
            }
            .hero-badge {
                padding: 0.5rem 1.2rem;
                font-size: 0.8rem;
                letter-spacing: 1px;
                margin-bottom: 1rem;
            }
            .hero-title {
                font-size: clamp(1.6rem, 10vw, 2rem);
                margin-bottom: 0.8rem;
                line-height: 1.4;
            }
            .hero-subtitle {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
                padding: 0 0.3rem;
                line-height: 1.7;
            }
            .hero-buttons {
                gap: 0.8rem;
                margin-bottom: 2rem;
                padding: 0 0.5rem;
            }
            .hero-buttons .btn {
                max-width: 260px;
                padding: 0.8rem 1.8rem;
                font-size: 0.9rem;
                letter-spacing: 0.6px;
            }
            .hero-stats {
                gap: 0.8rem;
                justify-content: center;
                padding: 0 0.3rem;
            }
            .stat-item {
                padding: 1rem 0.7rem;
                min-width: 80px;
                border-radius: 12px;
            }
            .stat-item h3 {
                font-size: 1.4rem;
            }
            .stat-item p {
                font-size: 0.8rem;
                letter-spacing: 1px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                min-height: 40vh;
                padding: 1rem 0.2rem;
            }
            .hero-badge {
                padding: 0.4rem 1rem;
                font-size: 0.75rem;
                letter-spacing: 0.8px;
                margin-bottom: 0.8rem;
            }
            .hero-title {
                font-size: clamp(1.4rem, 12vw, 1.8rem);
                margin-bottom: 0.6rem;
                line-height: 1.5;
            }
            .hero-subtitle {
                font-size: 0.9rem;
                margin-bottom: 1.3rem;
                padding: 0 0.2rem;
                line-height: 1.8;
            }
            .hero-buttons {
                gap: 0.7rem;
                margin-bottom: 1.8rem;
                padding: 0 0.3rem;
            }
            .hero-buttons .btn {
                max-width: 240px;
                padding: 0.7rem 1.6rem;
                font-size: 0.85rem;
                letter-spacing: 0.5px;
                min-height: 44px; /* Ensure touch target on small screens */
            }
            .hero-stats {
                gap: 0.6rem;
                justify-content: center;
                padding: 0 0.2rem;
            }
            .stat-item {
                padding: 0.9rem 0.6rem;
                min-width: 70px;
                border-radius: 10px;
                min-height: 70px; /* Ensure touch target on small screens */
            }
            .stat-item h3 {
                font-size: 1.2rem;
            }
            .stat-item p {
                font-size: 0.75rem;
                letter-spacing: 0.8px;
            }
        }

        /* Extra small devices (phones, 360px and down) */
        @media (max-width: 360px) {
            .hero {
                min-height: 35vh;
                padding: 0.8rem 0.1rem;
            }
            .hero-badge {
                padding: 0.3rem 0.8rem;
                font-size: 0.7rem;
                letter-spacing: 0.6px;
                margin-bottom: 0.6rem;
            }
            .hero-title {
                font-size: clamp(1.2rem, 14vw, 1.6rem);
                margin-bottom: 0.5rem;
                line-height: 1.6;
            }
            .hero-subtitle {
                font-size: 0.85rem;
                margin-bottom: 1.2rem;
                padding: 0 0.1rem;
                line-height: 1.9;
            }
            .hero-buttons {
                gap: 0.6rem;
                margin-bottom: 1.6rem;
                padding: 0 0.2rem;
            }
            .hero-buttons .btn {
                max-width: 220px;
                padding: 0.6rem 1.4rem;
                font-size: 0.8rem;
                letter-spacing: 0.4px;
                min-height: 42px;
            }
            .hero-stats {
                gap: 0.5rem;
                justify-content: center;
                padding: 0 0.1rem;
            }
            .stat-item {
                padding: 0.8rem 0.5rem;
                min-width: 65px;
                border-radius: 8px;
                min-height: 65px;
            }
            .stat-item h3 {
                font-size: 1.1rem;
            }
            .stat-item p {
                font-size: 0.7rem;
                letter-spacing: 0.6px;
            }
        }

        /* Hide buttons on mobile devices */
        @media (max-width: 767.98px) {
            .hero-buttons {
                display: none !important;
            }
        }

        /* Landscape orientation on mobile */
        @media (max-width: 767.98px) and (orientation: landscape) {
            .hero {
                min-height: 35vh;
                padding: 1rem 0.5rem;
            }
            .hero-title {
                font-size: clamp(1.6rem, 6vw, 2rem);
                margin-bottom: 0.5rem;
            }
            .hero-subtitle {
                font-size: 0.9rem;
                margin-bottom: 1rem;
            }
            .hero-buttons {
                margin-bottom: 1.5rem;
            }
            .hero-stats {
                gap: 0.8rem;
            }
            .stat-item {
                padding: 0.8rem 0.6rem;
                min-width: 80px;
            }
        }

        /* AI Suite Section */
        /* 2026 AI Section - Compact Design */
        .ai-suite {
            padding: 2.5rem 0;
            background: var(--color-white);
            position: relative;
            overflow: hidden;
            margin: 0;
            border-top: 1px solid var(--color-gray);
            border-bottom: 1px solid var(--color-gray);
        }

        .ai-suite::before {
            display: none;
        }

        .ai-card {
            position: relative;
            z-index: 2;
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 1.75rem;
            border: 2px solid var(--color-gray);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }

        .ai-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--color-black);
            border: 2px solid var(--color-yellow);
            border-radius: 999px;
            padding: 0.4rem 1rem;
            color: var(--color-yellow);
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            font-size: 0.75rem;
        }

        .ai-badge i {
            color: var(--color-yellow);
        }

        .ai-card h2 {
            color: var(--color-black);
            font-size: clamp(1.8rem, 3vw, 2.2rem);
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .ai-card p {
            color: rgba(255,255,255,0.85);
            font-size: 1rem;
            margin-bottom: 1.25rem;
        }

        .ai-feature-list {
            list-style: none;
            padding: 0;
            margin: 0 0 1rem 0;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .ai-feature-list li {
            color: var(--color-black);
            font-weight: 600;
            font-size: 0.85rem;
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            line-height: 1.5;
        }

        .ai-feature-list i {
            color: var(--color-yellow);
            font-size: 0.9rem;
            margin-top: 0.15rem;
            flex-shrink: 0;
        }

        .ai-highlight {
            background: var(--color-gray-light);
            border-radius: var(--radius-lg);
            padding: 1.25rem;
            border: 2px solid var(--color-gray);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }

        .ai-highlight-title {
            color: var(--color-black);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.1rem;
            font-size: 0.75rem;
            margin-bottom: 0.875rem;
        }

        .ai-highlight-chip {
            background: var(--color-white);
            border: 2px solid var(--color-gray);
            border-radius: var(--radius-md);
            padding: 0.6rem 0.875rem;
            color: var(--color-black);
            font-weight: 600;
            font-size: 0.8rem;
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            transition: all 0.2s ease;
            line-height: 1.4;
        }

        .ai-highlight-chip:last-of-type {
            margin-bottom: 0;
        }

        .ai-highlight-chip i {
            color: var(--color-yellow);
            font-size: 0.85rem;
            margin-top: 0.1rem;
            flex-shrink: 0;
        }

        .ai-highlight-chip:hover {
            border-color: var(--color-yellow);
            box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
            transform: translateX(2px);
        }

        .ai-footnote {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--color-gray);
            color: var(--color-gray-dark);
            font-size: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            line-height: 1.4;
        }

        .ai-footnote i {
            color: var(--color-yellow);
            font-size: 0.8rem;
        }

        /* Visual Claims Section Styles */
        .visual-claims-section {
            padding: 60px 0;
        }

        .visual-claims-card {
            transition: all 0.3s ease;
        }

        .visual-claims-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        .claim-type-card:hover {
            transform: translateY(-4px);
            border-color: var(--color-yellow);
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
        }

        /* Responsive Visual Claims Section */
        @media (max-width: 991.98px) {
            .visual-claims-section {
                padding: 40px 0;
            }
            .visual-claims-card {
                padding: 1.5rem;
            }
            .visual-claims-card h3 {
                font-size: 1.25rem;
            }
        }

        @media (max-width: 767.98px) {
            .visual-claims-section {
                padding: 30px 0;
            }
            .visual-claims-card {
                padding: 1.25rem;
            }
            .claim-type-card {
                padding: 1.25rem;
            }
            .claim-type-card h4 {
                font-size: 0.9rem;
            }
            .claim-type-card p {
                font-size: 0.75rem;
            }
        }

        /* Responsive AI Section */
        @media (max-width: 991.98px) {
            .ai-suite {
                padding: 2rem 0;
            }
            .ai-card {
                padding: 1.5rem;
            }
            .ai-card h2 {
                font-size: clamp(1.35rem, 4vw, 1.65rem);
                margin-bottom: 0.625rem;
            }
            .ai-description {
                font-size: 0.85rem;
                margin-bottom: 0.875rem;
            }
            .ai-feature-list {
                margin-bottom: 0.875rem;
            }
            .ai-feature-list li {
                font-size: 0.8rem;
            }
            .ai-highlight {
                margin-top: 0;
                padding: 1rem;
            }
            .ai-highlight-title {
                font-size: 0.7rem;
                margin-bottom: 0.75rem;
            }
            .ai-highlight-chip {
                padding: 0.5rem 0.75rem;
                font-size: 0.75rem;
            }
            .ai-footnote {
                margin-top: 0.875rem;
                padding-top: 0.875rem;
                font-size: 0.7rem;
            }
        }

        @media (max-width: 767.98px) {
            .ai-suite {
                padding: 1.5rem 0;
            }
            .ai-card {
                padding: 1.25rem;
            }
            .ai-badge {
                padding: 0.35rem 0.875rem;
                font-size: 0.7rem;
                margin-bottom: 0.875rem;
            }
            .ai-card h2 {
                font-size: clamp(1.25rem, 5vw, 1.5rem);
                margin-bottom: 0.5rem;
            }
            .ai-description {
                font-size: 0.8rem;
                margin-bottom: 0.75rem;
            }
            .ai-feature-list {
                gap: 0.4rem;
                margin-bottom: 0.75rem;
            }
            .ai-feature-list li {
                font-size: 0.75rem;
            }
            .ai-highlight {
                padding: 0.875rem;
            }
            .ai-highlight-chip {
                padding: 0.5rem 0.625rem;
                font-size: 0.7rem;
                margin-bottom: 0.4rem;
            }
        }

        @media (max-width: 575.98px) {
            .ai-suite {
                padding: 1.25rem 0;
            }
            .ai-card {
                padding: 1rem;
            }
            .ai-badge {
                padding: 0.3rem 0.75rem;
                font-size: 0.65rem;
            }
            .ai-card h2 {
                font-size: 1.2rem;
            }
            .ai-description {
                font-size: 0.75rem;
            }
            .ai-feature-list li {
                font-size: 0.7rem;
            }
            .ai-highlight {
                padding: 0.75rem;
            }
            .ai-highlight-chip {
                padding: 0.45rem 0.5rem;
                font-size: 0.65rem;
            }
        }

        /* Public Join Floating Widget */
        .join-floating-widget {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9998;
        }

        .join-floating-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0B4C8C, #1976D2);
            color: #fff;
            border: none;
            box-shadow: 0 12px 32px rgba(11, 76, 140, 0.35);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease;
        }

        .join-floating-btn:hover {
            transform: translateY(-2px) scale(1.02);
        }

        .join-floating-btn .material-icons-outlined {
            font-size: 1.75rem;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1;
        }

        .join-widget-panel {
            position: absolute;
            bottom: 70px;
            right: 0;
            width: 340px;
            max-width: calc(100vw - 30px);
            background: #fff;
            border-radius: 1.1rem;
            border: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 25px 50px rgba(15, 23, 42, 0.35);
            overflow: hidden;
            display: none;
            flex-direction: column;
            max-height: 520px;
        }

        .join-widget-panel.open {
            display: flex;
            animation: joinWidgetSlide 0.2s ease-out;
        }

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

        .join-widget-header {
            padding: 1rem 1.25rem;
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
            display: flex;
            align-items: center;
            gap: 0.7rem;
            background: linear-gradient(135deg, #0B4C8C, #1565C0);
            color: #fff;
        }

        .join-widget-header .title {
            font-weight: 700;
            font-size: 1rem;
        }

        .join-widget-header .subtitle {
            font-size: 0.8rem;
            opacity: 0.85;
        }

        .join-widget-header .material-icons-outlined {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1;
        }

        .join-widget-body {
            padding: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            flex: 1;
            overflow: hidden;
            min-height: 0;
        }

        .join-widget-messages {
            flex: 1;
            overflow-y: auto;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
            min-height: 0;
            padding-right: 0.25rem;
        }
        
        /* Custom scrollbar for chat messages */
        .join-widget-messages::-webkit-scrollbar {
            width: 6px;
        }
        
        .join-widget-messages::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.05);
            border-radius: 10px;
        }
        
        .join-widget-messages::-webkit-scrollbar-thumb {
            background: rgba(11, 76, 140, 0.3);
            border-radius: 10px;
        }
        
        .join-widget-messages::-webkit-scrollbar-thumb:hover {
            background: rgba(11, 76, 140, 0.5);
        }

        .join-widget-message {
            display: flex;
            gap: 0.6rem;
            font-size: 0.9rem;
        }

        .join-widget-message.user {
            flex-direction: row-reverse;
        }

        .join-widget-bubble {
            padding: 0.65rem 0.85rem;
            border-radius: 0.85rem;
            border: 1px solid rgba(15, 76, 140, 0.15);
            background: #f8fafc;
            max-width: 85%;
            color: var(--text-color);
        }

        .join-widget-message.user .join-widget-bubble {
            background: #0B4C8C;
            color: #fff;
            border-color: #0B4C8C;
        }

        .join-widget-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 0.45rem;
            flex-shrink: 0;
        }

        .join-chip {
            border: 1px solid rgba(15, 76, 140, 0.2);
            border-radius: 999px;
            padding: 0.3rem 0.75rem;
            font-size: 0.78rem;
            background: rgba(15, 76, 140, 0.05);
            color: var(--primary-color);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .join-chip:hover {
            background: rgba(15, 76, 140, 0.15);
        }

        .join-widget-input {
            display: flex;
            gap: 0.5rem;
            border-top: 1px solid rgba(226, 232, 240, 0.9);
            padding-top: 0.75rem;
            flex-shrink: 0;
        }

        .join-widget-input input {
            flex: 1;
            border-radius: 999px;
            border: 1px solid rgba(226, 232, 240, 1);
            padding: 0.55rem 0.85rem;
            font-size: 0.9rem;
        }

        .join-widget-input button {
            border: none;
            border-radius: 999px;
            background: linear-gradient(135deg, #0B4C8C, #1565C0);
            color: #fff;
            padding: 0 1.1rem;
            font-weight: 600;
            cursor: pointer;
        }

        /* Services Section - Compact */
        .services {
            padding: 4rem 0;
            background-color: var(--color-white);
            position: relative;
            overflow: hidden;
            border-top: 1px solid var(--color-gray);
            border-bottom: 1px solid var(--color-gray);
        }

        .services::before {
            display: none;
        }

        .service-card {
            padding: 2rem;
            border-radius: var(--radius-lg);
            transition: all 0.3s ease;
            background: var(--color-white);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border: 2px solid var(--color-gray);
            position: relative;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            background: var(--color-white);
            border-color: var(--color-yellow);
        }

        .service-card::before {
            display: none;
        }

        .service-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-md);
            background: var(--color-black);
            color: var(--color-white);
            font-size: 1.5rem;
            margin-bottom: 1.25rem;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
            background: var(--color-yellow);
            color: var(--color-black);
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
        }

        .service-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--color-black);
        }

        .service-card p {
            color: var(--color-gray-dark);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* Callertunes Section */
        .callertunes {
            padding: 3rem 0;
            background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
            position: relative;
            overflow: hidden;
            margin: 1.5rem 0;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
        }

        .callertunes::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
            background-size: 40px 40px, 100%;
            opacity: 0.5;
            pointer-events: none;
        }

        .callertunes::after {
            display: none;
        }

        .callertunes-container {
            position: relative;
            z-index: 2;
        }

        .callertunes-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: var(--radius-lg);
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .callertunes-title {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.75rem;
            line-height: 1.2;
        }

        .callertunes-subtitle {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.5rem;
            font-weight: 500;
            line-height: 1.5;
        }

        .callertunes-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
            justify-content: flex-start;
        }

        .callertunes-feature-item {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-md);
            padding: 0.625rem 1rem;
            color: white;
            font-weight: 600;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            transition: all 0.2s ease;
            position: relative;
            overflow: hidden;
        }

        .callertunes-feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .callertunes-feature-item:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

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

        .callertunes-feature-icon {
            font-size: 1.2rem;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        .telecom-providers {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 2rem;
            justify-content: flex-start;
        }

        .telecom-provider {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 1.5rem;
            padding: 1rem 1.5rem;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .telecom-provider::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .telecom-provider:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .telecom-provider:hover::before {
            left: 100%;
        }

        .telecom-provider img {
            height: 28px;
            width: auto;
            filter: brightness(1.2) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        /* Telecom Provider Brand Colors */
        .telecom-jio {
            background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%) !important;
            border-color: rgba(30, 58, 138, 0.3) !important;
        }

        .telecom-jio:hover {
            background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%) !important;
            box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4) !important;
        }

        .telecom-vi {
            background: linear-gradient(135deg, #86efac 0%, #22c55e 100%) !important;
            border-color: rgba(34, 197, 94, 0.3) !important;
        }

        .telecom-vi:hover {
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
            box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4) !important;
        }

        .telecom-bsnl {
            background: linear-gradient(135deg, #67e8f9 0%, #22d3ee 100%) !important;
            border-color: rgba(34, 211, 238, 0.3) !important;
        }

        .telecom-bsnl:hover {
            background: linear-gradient(135deg, #22d3ee 0%, #0891b2 100%) !important;
            box-shadow: 0 8px 20px rgba(34, 211, 238, 0.4) !important;
        }

        .telecom-airtel {
            background: linear-gradient(135deg, #4b5563 0%, #374151 100%) !important;
            border-color: rgba(75, 85, 99, 0.3) !important;
        }

        .telecom-airtel:hover {
            background: linear-gradient(135deg, #374151 0%, #1f2937 100%) !important;
            box-shadow: 0 8px 20px rgba(75, 85, 99, 0.4) !important;
        }

        .callertunes-image-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        .callertunes-image-wrapper {
            position: relative;
            max-width: 500px;
            width: 100%;
        }

        .callertunes-image-wrapper::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
            border-radius: 2rem;
            filter: blur(20px);
            z-index: 0;
        }

        .callertunes-image {
            position: relative;
            z-index: 1;
            width: 100%;
            border-radius: 2rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: white;
        }

        .callertunes-image:hover {
            transform: scale(1.05) rotateY(-5deg);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

        /* Floating elements for callertune theme */
        .callertune-floating {
            position: absolute;
            z-index: 1;
            pointer-events: none;
            opacity: 0.15;
            font-size: 3rem;
            color: white;
            animation: floatCallertune 15s ease-in-out infinite;
        }
        .callertune-floating.phone { top: 10%; left: 5%; animation-delay: 0s; }
        .callertune-floating.sim { top: 20%; right: 8%; animation-delay: 3s; }
        .callertune-floating.call { bottom: 25%; left: 10%; animation-delay: 6s; }
        .callertune-floating.tower { bottom: 15%; right: 12%; animation-delay: 9s; }
        .callertune-floating.music { top: 50%; left: 3%; animation-delay: 12s; }
        @keyframes floatCallertune {
            0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
            50% { transform: translateY(-25px) scale(1.1) rotate(10deg); }
        }

        @media (max-width: 991.98px) {
            .callertunes {
                padding: 60px 0;
                border-radius: 1.5rem;
                margin: 1rem 0;
            }
            .callertunes::before, .callertunes::after {
                border-radius: 1.5rem;
            }
            .callertunes-title {
                font-size: 2.5rem;
                text-align: center;
            }
            .callertunes-subtitle {
                font-size: 1.1rem;
                text-align: center;
            }
            .callertunes-features {
                flex-direction: column;
                align-items: center;
            }
            .callertunes-feature-item {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            .telecom-providers {
                flex-direction: column;
                align-items: center;
            }
            .telecom-provider {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            .callertunes-image-container {
                margin-top: 2rem;
            }
        }

        @media (max-width: 767.98px) {
            .callertunes-title {
                font-size: 2rem;
            }
            .callertunes-subtitle {
                font-size: 1rem;
            }
            .callertunes-features {
                gap: 1rem;
            }
            .callertunes-feature-item {
                font-size: 0.9rem;
                padding: 0.8rem 1.2rem;
            }
            .telecom-providers {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
                justify-content: center;
                align-items: center;
            }
            .telecom-provider {
                width: 100%;
                max-width: none;
                justify-content: center;
                padding: 0.8rem 1rem;
                font-size: 1rem;
            }
            .telecom-provider img {
                height: 24px;
            }
        }



        /* About Section - 2026 Compact Theme */
        .about-section-compact {
            padding: 50px 0;
        }

        .about-content-compact {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Description Card */
        .about-description-compact {
            display: flex;
            align-items: flex-start;
        }

        .about-description-card {
            background: var(--color-white);
            border: 2px solid var(--color-gray);
            border-radius: var(--radius-lg);
            padding: 1.75rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            width: 100%;
            transition: all 0.3s ease;
        }

        .about-description-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            border-color: var(--color-yellow);
        }

        /* Stats & Features Container */
        .about-stats-features-compact {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        /* Stats Row */
        .about-stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.75rem;
        }

        .about-stat-compact {
            background: var(--color-white);
            border: 2px solid var(--color-gray);
            border-radius: var(--radius-md);
            padding: 1rem 0.75rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .about-stat-compact.highlight {
            background: var(--color-yellow);
            border-color: var(--color-yellow);
        }

        .about-stat-compact:hover {
            transform: translateY(-2px);
            border-color: var(--color-yellow);
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
        }

        .about-stat-compact.highlight:hover {
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
        }

        .about-stat-compact .about-stat-number {
            font-size: 1.75rem;
            font-weight: 900;
            color: #000000 !important;
            line-height: 1;
            margin-bottom: 0.25rem;
            background: none !important;
            -webkit-background-clip: unset !important;
            -webkit-text-fill-color: #000000 !important;
            background-clip: unset !important;
        }

        .about-stat-compact.highlight .about-stat-number {
            color: #000000 !important;
            background: none !important;
            -webkit-background-clip: unset !important;
            -webkit-text-fill-color: #000000 !important;
            background-clip: unset !important;
        }

        .about-stat-compact .about-stat-label {
            font-size: 0.7rem;
            color: #000000 !important;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            opacity: 1 !important;
        }

        .about-stat-compact.highlight .about-stat-label {
            color: #000000 !important;
            opacity: 1 !important;
        }

        /* Features Grid */
        .about-features-compact {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
        }

        .about-feature-compact {
            background: var(--color-white);
            border: 2px solid var(--color-gray);
            border-radius: var(--radius-md);
            padding: 0.875rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .about-feature-compact:hover {
            transform: translateY(-2px);
            border-color: var(--color-yellow);
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
        }

        .about-feature-icon {
            width: 36px;
            height: 36px;
            background: var(--color-black);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--color-white);
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .about-feature-icon.highlight {
            background: var(--color-yellow);
            color: var(--color-black);
        }

        .about-feature-compact:hover .about-feature-icon {
            background: var(--color-yellow);
            color: var(--color-black);
        }

        .about-feature-compact span {
            color: var(--color-black);
            font-weight: 700;
            font-size: 0.85rem;
        }

        /* Responsive About Section */
        @media (max-width: 991.98px) {
            .about-content-compact {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .about-stats-row {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-features-compact {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 767.98px) {
            .about-section-compact {
                padding: 40px 0;
            }

            .about-description-card {
                padding: 1.25rem;
            }

            .about-stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.5rem;
            }

            .about-stat-compact {
                padding: 0.875rem 0.5rem;
            }

            .about-stat-compact .about-stat-number {
                font-size: 1.5rem;
                color: #000000 !important;
                background: none !important;
                -webkit-background-clip: unset !important;
                -webkit-text-fill-color: #000000 !important;
                background-clip: unset !important;
            }

            .about-stat-compact .about-stat-label {
                font-size: 0.65rem;
                color: #000000 !important;
                opacity: 1 !important;
            }

            .about-features-compact {
                grid-template-columns: 1fr;
                gap: 0.5rem;
            }

            .about-feature-compact {
                padding: 0.75rem;
            }

            .about-feature-icon {
                width: 32px;
                height: 32px;
                font-size: 0.85rem;
            }

            .about-feature-compact span {
                font-size: 0.8rem;
            }
        }

        /* Legacy About Section (kept for compatibility) */
        .about {
            padding: 3rem 0;
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
            margin: 1.5rem 0;
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
            background-size: 40px 40px, 100%;
            opacity: 0.5;
            pointer-events: none;
        }

        .about::after {
            display: none;
        }

        .about-container {
            position: relative;
            z-index: 2;
        }

        .about-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: var(--radius-lg);
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .about-title {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.75rem;
            line-height: 1.2;
        }

        .about-subtitle {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.5rem;
            font-weight: 500;
            line-height: 1.5;
        }

        .about-card {
            background: rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            padding: 1.5rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            position: relative;
            z-index: 2;
            transition: all 0.2s ease;
        }

        .about-card::before {
            display: none;
        }

        .about-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.25);
        }

        .about-card:hover::before {
            display: none;
        }

        .about-content {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .about-stats {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .about-stat-item {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 1.5rem;
            padding: 1rem 1.5rem;
            color: white;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            min-width: 120px;
        }

        .about-stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .about-stat-item:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .about-stat-item:hover::before {
            left: 100%;
        }

        .about-stat-number {
            font-size: 2rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 0.25rem;
            background: linear-gradient(45deg, #ffffff, #e2e8f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-stat-label {
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.9;
        }

        .about-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .about-feature-item {
            background: rgba(79, 70, 229, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(79, 70, 229, 0.3);
            border-radius: 1.5rem;
            padding: 0.75rem 1.25rem;
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .about-feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.3), transparent);
            transition: left 0.5s;
        }

        .about-feature-item:hover {
            transform: translateY(-2px);
            background: rgba(79, 70, 229, 0.3);
            box-shadow: 0 6px 15px rgba(79, 70, 229, 0.2);
        }

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

        .about-feature-icon {
            font-size: 1.1rem;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        .about-image-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        .about-image-wrapper {
            position: relative;
            max-width: 500px;
            width: 100%;
        }

        .about-image-wrapper::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.3), rgba(34, 211, 238, 0.2));
            border-radius: 2rem;
            filter: blur(20px);
            z-index: 0;
        }

        .about-image {
            position: relative;
            z-index: 1;
            width: 100%;
            border-radius: 2rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: white;
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .about-image:hover {
            transform: scale(1.03) rotateY(-3deg);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

        /* Floating elements for about theme */
        .about-floating {
            position: absolute;
            z-index: 1;
            pointer-events: none;
            opacity: 0.15;
            font-size: 3rem;
            color: white;
            animation: floatAbout 15s ease-in-out infinite;
        }
        .about-floating.music { top: 10%; left: 5%; animation-delay: 0s; }
        .about-floating.star { top: 20%; right: 8%; animation-delay: 3s; }
        .about-floating.heart { bottom: 25%; left: 10%; animation-delay: 6s; }
        .about-floating.rocket { bottom: 15%; right: 12%; animation-delay: 9s; }
        .about-floating.diamond { top: 50%; left: 3%; animation-delay: 12s; }
        @keyframes floatAbout {
            0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
            50% { transform: translateY(-25px) scale(1.1) rotate(10deg); }
        }

        @media (max-width: 991.98px) {
            .about {
                padding: 60px 0;
                border-radius: 1.5rem;
                margin: 1rem 0;
            }
            .about::before, .about::after {
                border-radius: 1.5rem;
            }
            .about-title {
                font-size: 2.5rem;
                text-align: center;
            }
            .about-subtitle {
                font-size: 1.1rem;
                text-align: center;
            }
            .about-card {
                border-radius: 1.5rem;
                padding: 2rem 1.5rem;
                margin-top: 2rem;
            }
            .about-stats {
                justify-content: center;
            }
            .about-features {
                justify-content: center;
            }
            .about-image-container {
                margin-top: 2rem;
            }
            .about-image {
                border-radius: 1.5rem;
            }
        }

        @media (max-width: 767.98px) {
            .about-title {
                font-size: 2rem;
            }
            .about-subtitle {
                font-size: 1rem;
            }
            .about-card {
                padding: 1.5rem 1rem;
            }
            .about-stats {
                gap: 1rem;
            }
            .about-stat-item {
                padding: 0.8rem 1rem;
                min-width: 100px;
            }
            .about-stat-number {
                font-size: 1.5rem;
            }
            .about-feature-item {
                font-size: 0.85rem;
                padding: 0.6rem 1rem;
            }
        }


        /* Contact Section */
        .contact {
            padding: 3rem 0;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
            margin: 1.5rem 0;
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
            background-size: 40px 40px, 100%;
            opacity: 0.5;
            pointer-events: none;
        }

        .contact::after {
            display: none;
        }

        .contact-floating {
            display: none;
        }

        .contact-container {
            position: relative;
            z-index: 2;
        }

        .contact-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: var(--radius-lg);
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .contact-title {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.75rem;
            line-height: 1.2;
        }

        .contact-subtitle {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.5rem;
            font-weight: 500;
            line-height: 1.5;
        }

        .contact-info-card {
            background: rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            padding: 1.5rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            position: relative;
            z-index: 2;
            margin-bottom: 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: all 0.2s ease;
        }

        .contact-info-card::before {
            display: none;
        }

        .contact-info-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.25);
        }

        .contact-info-card:hover::before {
            display: none;
        }

        .contact-info-card .mb-2, .contact-info-card div {
            color: #fff !important;
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .contact-info-item {
            color: #fff !important;
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .contact-info-card i {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .contact-action-buttons {
            display: flex;
            gap: 1rem;
            margin: 1.5rem 0;
            width: 100%;
        }

        .contact-action-btn {
            flex: 1;
            border-radius: 1.5rem;
            padding: 1rem 1.5rem;
            font-weight: 600;
            border: none;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            font-size: 1rem;
        }

        .contact-action-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .contact-action-btn:hover::before {
            transform: translateX(100%);
        }

        .whatsapp-btn {
            background: linear-gradient(135deg, #25d366, #128c7e);
            color: white;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            color: white;
            text-decoration: none;
        }

        .call-btn {
            background: linear-gradient(135deg, #4f46e5, #22d3ee);
            color: white;
            box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
        }

        .call-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
            color: white;
            text-decoration: none;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            padding: 1.5rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            position: relative;
            z-index: 2;
            transition: all 0.2s ease;
        }

        .contact-form::before {
            display: none;
        }

        .contact-form:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.25);
        }

        .contact-form:hover::before {
            display: none;
        }

        .contact-form label {
            color: #fff;
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .contact-form label i {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .contact-form .form-control, .contact-form .form-select {
            border-radius: var(--radius-md);
            padding: 0.625rem 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.2s ease;
            font-size: 0.9rem;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            backdrop-filter: blur(5px);
        }

        .contact-form .form-control::placeholder, .contact-form .form-select::placeholder {
            color: rgba(255, 255, 255, 0.6) !important;
            opacity: 1;
        }

        .contact-form .form-control:focus, .contact-form .form-select:focus {
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.12);
        }

        .contact-form textarea.form-control {
            resize: none;
            min-height: 80px;
        }

        .contact-form .btn-primary {
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            border-radius: var(--radius-md);
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: var(--shadow-sm);
            font-size: 0.9rem;
            position: relative;
            overflow: hidden;
            transition: all 0.2s ease;
        }

        .contact-form .btn-primary::before {
            display: none;
        }

        .contact-form .btn-primary:hover {
            background: rgba(255, 255, 255, 0.25);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
            color: white;
        }

        .contact-form .btn-primary:hover::before {
            display: none;
        }

        .contact-form .form-select,
        .contact-form select {
            background-color: rgba(255, 255, 255, 0.1) !important;
            color: #fff !important;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact-form .form-select option,
        .contact-form select option {
            background-color: #1e293b !important;
            color: #fff !important;
        }

        @media (max-width: 991.98px) {
            .contact {
                padding: 60px 0;
                border-radius: 1.5rem;
                margin: 1rem 0;
            }
            .contact::before, .contact::after {
                border-radius: 1.5rem;
            }
            .contact-title {
                font-size: 2.5rem;
                text-align: center;
            }
            .contact-subtitle {
                font-size: 1.1rem;
                text-align: center;
            }
            .contact-info-card, .contact-form {
                border-radius: 1.5rem;
                padding: 2rem 1.5rem;
                margin-bottom: 2rem;
            }
            .contact-action-buttons {
                flex-direction: column;
                gap: 1rem;
            }
        }

        @media (max-width: 767.98px) {
            .contact-info-item {
                font-size: 1rem;
                margin-bottom: 1rem;
                justify-content: center;
            }
            .contact-action-buttons {
                flex-direction: row;
                gap: 0.8rem;
                margin: 1.5rem 0;
            }
            .contact-action-btn {
                flex: 1;
                padding: 0.8rem 1rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 767.98px) {
            .contact-title {
                font-size: 2rem;
            }
            .contact-subtitle {
                font-size: 1rem;
            }
            .contact-info-card, .contact-form {
                padding: 1.5rem 1rem;
            }
            .contact-action-btn {
                padding: 0.8rem 1rem;
                font-size: 0.9rem;
            }
        }

        /* Footer Section */
        footer {
            background: var(--color-black) !important;
            padding: 3rem 0 1.5rem !important;
            margin-top: 2rem;
            position: relative;
            overflow: hidden;
            border-top: 3px solid var(--color-yellow) !important;
            color: var(--color-white) !important;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
            opacity: 1;
            pointer-events: none;
        }

        footer::after {
            display: none;
        }

        /* Footer - 2026 Compact Theme */
        .footer-container {
            position: relative;
            z-index: 2;
        }

        /* Compact Footer Grid */
        .footer-compact-grid {
            background: var(--color-black) !important;
            border-radius: var(--radius-lg);
            padding: 2rem 1.5rem;
            border: 2px solid var(--color-gray);
            margin-bottom: 1rem;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 2rem;
            align-items: center;
        }

        /* Brand Section */
        .footer-brand-compact {
            text-align: left;
        }

        .footer-brand-compact h3 {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--color-yellow) !important;
            margin: 0 0 0.25rem 0;
            letter-spacing: -0.3px;
        }

        .footer-brand-compact p {
            font-size: 0.8rem;
            color: var(--color-gray-medium) !important;
            margin: 0;
            line-height: 1.4;
        }

        /* Stats Row */
        .footer-stats-compact {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            justify-content: center;
        }

        .footer-stat-compact {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.25rem;
        }

        .footer-stat-compact .footer-stat-number {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--color-yellow) !important;
            line-height: 1;
        }

        .footer-stat-compact .footer-stat-label {
            font-size: 0.65rem;
            color: var(--color-gray-medium) !important;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Social Links */
        .footer-social-compact {
            text-align: right;
        }

        .footer-social-links {
            display: flex;
            justify-content: flex-end;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .footer-social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--color-white) !important;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 1.5px solid var(--color-gray);
        }

        .footer-social-link:hover {
            transform: translateY(-2px) scale(1.1);
            color: var(--color-black) !important;
            background: var(--color-yellow) !important;
            border-color: var(--color-yellow) !important;
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
        }

        /* Footer Bottom Compact */
        .footer-bottom-compact {
            background: var(--color-black) !important;
            border-radius: var(--radius-md);
            padding: 1rem 1.5rem;
            border: 2px solid var(--color-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-copyright-compact {
            flex: 1;
        }

        .footer-copyright-compact p {
            font-size: 0.8rem;
            color: var(--color-gray-medium) !important;
            margin: 0;
            font-weight: 500;
        }

        .footer-copyright-compact .brand-name-yellow {
            color: var(--color-yellow) !important;
            font-weight: 700;
        }

        .footer-credits-compact {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
        }

        .footer-credits-label {
            color: var(--color-gray-medium) !important;
            font-weight: 600;
        }

        .footer-credits-link {
            color: var(--color-yellow) !important;
            text-decoration: none;
            font-weight: 700;
            padding: 0.25rem 0.5rem;
            border-radius: var(--radius-sm);
            transition: all 0.2s ease;
            border: 1.5px solid transparent;
        }

        .footer-credits-link:hover {
            color: var(--color-black) !important;
            background: var(--color-yellow) !important;
            border-color: var(--color-yellow) !important;
            transform: translateY(-1px);
        }

        /* Footer Color Overrides */
        footer {
            background: var(--color-black) !important;
            padding: 40px 0 20px !important;
            border-top: 2px solid var(--color-yellow) !important;
        }

        footer * {
            color: inherit;
        }

        /* Responsive Footer */
        @media (max-width: 991.98px) {
            .footer-compact-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                text-align: center;
            }

            .footer-brand-compact {
                text-align: center;
            }

            .footer-stats-compact {
                justify-content: center;
                flex-wrap: wrap;
                gap: 1rem;
            }

            .footer-social-compact {
                text-align: center;
            }

            .footer-social-links {
                justify-content: center;
            }

            .footer-bottom-compact {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 767.98px) {
            footer {
                padding: 30px 0 15px !important;
            }

            .footer-compact-grid {
                padding: 1.5rem 1rem;
                gap: 1.25rem;
            }

            .footer-brand-compact h3 {
                font-size: 1.1rem;
            }

            .footer-brand-compact p {
                font-size: 0.75rem;
            }

            .footer-stats-compact {
                gap: 0.75rem;
            }

            .footer-stat-compact .footer-stat-number {
                font-size: 1.25rem;
            }

            .footer-stat-compact .footer-stat-label {
                font-size: 0.6rem;
            }

            .footer-social-link {
                width: 32px;
                height: 32px;
                font-size: 0.85rem;
            }

            .footer-bottom-compact {
                padding: 0.875rem 1rem;
                flex-direction: column;
                gap: 0.75rem;
            }

            .footer-copyright-compact p {
                font-size: 0.75rem;
            }

            .footer-credits-compact {
                font-size: 0.75rem;
            }
        }

        /* 2026 Navigation - Black Theme */
        .navbar {
            background: var(--color-black);
            padding: 0.75rem 0;
            transition: all 0.2s ease;
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--color-yellow);
            position: fixed !important;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            overflow: hidden;
            margin: 0;
            border-radius: 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            z-index: 1030;
        }

        /* Added new rules for navbar spacing */
        .navbar-nav {
            gap: 0 !important;
        }
        
        .nav-item {
            padding: 0;
            margin: 0 0.2rem !important;
        }
        
        /* Overriding Bootstrap's margin utilities */
        .nav-item.ms-3 {
            margin-left: 0.6rem !important; /* 20% less than 0.75rem */
        }
        
        .nav-item.ms-2 {
            margin-left: 0.4rem !important; /* 20% less than 0.5rem */
        }
        
        /* End of new rules */

        .navbar::before {
            display: none;
        }

        .navbar.scrolled {
            background: var(--color-black);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
            padding: 0.6rem 0;
            margin: 0;
            border-bottom: 2px solid var(--color-yellow);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--color-white) !important;
            display: flex;
            align-items: center;
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: var(--radius-md);
            transition: all 0.2s ease;
            z-index: 1;
            background: transparent;
            border: 1px solid transparent;
        }

        .navbar-brand::before {
            display: none;
        }

        .navbar-brand:hover {
            transform: translateY(-1px);
            box-shadow: var(--shadow-sm);
        }

        .navbar-brand:hover::before {
            display: none;
        }

        .navbar-brand img {
            transition: transform 0.2s ease;
            margin-right: 0.5rem;
        }

        .navbar-brand:hover img {
            transform: scale(1.05);
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            font-size: 0.9rem;
            padding: 0.4rem 0.85rem !important;
            border-radius: var(--radius-sm);
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            position: relative;
            margin: 0 0.2rem;
            z-index: 1;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-link::before {
            display: none;
        }

        .nav-link:hover {
            color: white !important;
            transform: translateY(-1px);
            box-shadow: var(--shadow-sm);
        }

        .nav-link:hover::before {
            display: none;
        }

        .nav-link i {
            font-size: 1rem;
            margin-right: 0.5rem;
            transition: transform 0.2s ease;
        }

        .nav-link:hover i {
            transform: scale(1.05);
        }

        .brand-name-yellow {
            color: var(--color-yellow) !important;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
        }

        .btn-outline-light {
            border-width: 1px;
            font-weight: 600;
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            transition: all 0.2s ease;
            border-radius: var(--radius-md);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(5px);
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin: 0 0.2rem;
        }

        .btn-outline-light::before {
            display: none;
        }

        .btn-outline-light:hover {
            transform: translateY(-1px);
            box-shadow: var(--shadow-sm);
            background: rgba(255, 255, 255, 0.1);
        }

        .btn-outline-light:hover::before {
            display: none;
        }

        .btn-yellow {
            border-width: 2px;
            font-weight: 700;
            padding: 0.5rem 1.25rem;
            font-size: 0.9rem;
            transition: all 0.2s ease;
            border-radius: var(--radius-md);
            position: relative;
            overflow: hidden;
            background: var(--color-yellow);
            border: 2px solid var(--color-yellow);
            margin: 0 0.2rem;
            color: var(--color-black);
        }

        .btn-yellow:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(255, 215, 0, 0.5);
            background: var(--color-yellow-dark);
            border-color: var(--color-yellow-dark);
            background: linear-gradient(135deg, #FFC107, #B8860B);
            border-color: var(--secondary-color);
            color: #1e293b;
        }

        /* 2026 Button Styles */
        .btn-primary {
            font-weight: 700;
            padding: 0.5rem 1.25rem;
            font-size: 0.9rem;
            transition: all 0.2s ease;
            border-radius: var(--radius-md);
            background: var(--color-black);
            color: var(--color-white);
            border: 2px solid var(--color-black);
            position: relative;
            overflow: hidden;
            margin: 0 0.2rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .btn-primary::before {
            display: none;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            background: var(--color-gray-dark);
            border-color: var(--color-gray-dark);
        }

        .btn-primary:hover::before {
            display: none;
        }

        @media (max-width: 991.98px) {
            .navbar {
                margin: 0;
                padding: 0.5rem;
            }

            .navbar-collapse {
                background: rgba(248, 250, 252, 0.95);
                padding: 1rem;
                border-radius: 12px;
                margin-top: 0.5rem;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
                backdrop-filter: blur(10px);
                border: 1px solid rgba(0, 0, 0, 0.1);
                position: relative;
                overflow: hidden;
            }

            .navbar-collapse::before {
                display: none;
            }

            .navbar-nav {
                display: grid !important;
                grid-template-columns: 1fr 1fr;
                gap: 0.5rem;
                width: 100%;
            }
            
            .nav-item {
                width: 100%;
                margin: 0 !important;
            }
            
            .nav-link {
                width: 100% !important;
                height: 44px !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                font-size: 0.85rem !important;
                font-weight: 600 !important;
                border-radius: 10px !important;
                margin: 0 !important;
                padding: 0 !important;
                background: rgba(59, 130, 246, 0.05) !important;
                border: 1px solid rgba(59, 130, 246, 0.15) !important;
                color: #1e293b !important;
                transition: all 0.3s ease !important;
                box-shadow: none !important;
            }
            
            /* Make header buttons (Login / Signup) use same pill UI as other items on mobile */
            .navbar-nav .nav-item .btn {
                width: 100% !important;
                height: 44px !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                font-size: 0.85rem !important;
                font-weight: 600 !important;
                border-radius: 10px !important;
                margin: 0 !important;
                padding: 0 !important;
                background: rgba(59, 130, 246, 0.05) !important;
                border: 1px solid rgba(59, 130, 246, 0.15) !important;
                color: #1e293b !important;
                box-shadow: none !important;
            }
            
            .nav-link:hover,
            .navbar-nav .nav-item .btn:hover {
                background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.1)) !important;
                border-color: rgba(59, 130, 246, 0.3) !important;
                transform: translateY(-2px) !important;
                box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15) !important;
                color: #1e293b !important;
            }
        }

        /* Footer */
        footer {
            background: linear-gradient(45deg, rgba(30, 41, 59, 0.95), rgba(79, 70, 229, 0.95));
            padding: 3rem 0;
            border-radius: 1.5rem 1.5rem 0 0;
            margin: 2rem 1rem 0 1rem;
            box-shadow: 0 -8px 32px rgba(0,0,0,0.10);
            position: relative;
            overflow: hidden;
            color: #fff;
            backdrop-filter: blur(10px);
            border-top: 1.5px solid rgba(255,255,255,0.10);
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at top right, rgba(79, 70, 229, 0.2), transparent 50%),
                radial-gradient(circle at bottom left, rgba(34, 211, 238, 0.2), transparent 50%);
            opacity: 0.5;
            pointer-events: none;
            border-radius: 1.5rem 1.5rem 0 0;
        }

        footer h5 {
            color: #fff;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        footer p {
            color: #e0e7ef;
            font-size: 1.05rem;
        }

        .social-links a {
            width: 44px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.10);
            transition: all 0.3s;
            font-size: 1.3rem;
            margin-left: 0.5rem;
            margin-right: 0.5rem;
            color: #fff;
            box-shadow: 0 2px 8px rgba(79, 70, 229, 0.10);
            border: 1.5px solid rgba(255,255,255,0.10);
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }

        .social-links a:hover {
            background: linear-gradient(45deg, var(--primary-color), #22d3ee);
            color: #fff;
            transform: translateY(-3px) scale(1.08);
            box-shadow: 0 6px 18px rgba(79, 70, 229, 0.18);
            text-decoration: none;
        }

        @media (max-width: 991.98px) {
            footer {
                border-radius: 1rem 1rem 0 0;
                margin: 1rem 0 0 0;
                padding: 2rem 0;
            }
            .social-links a {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
                margin: 0 0.3rem;
                text-decoration: none;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body {
                padding-top: 56px; /* Tighter for fixed navbar on mobile */
            }
            
            .hero {
                height: auto;
                padding: 1.5rem 0 3rem;
                min-height: 0;
            }

            .services {
                padding: 60px 0;
            }

            .service-card {
                margin-bottom: 1.5rem;
            }

            .callertunes, .about, .contact {
                padding: 60px 0;
            }

            .contact-form {
                padding: 1.5rem;
            }
        }

        @media (min-width: 768px) and (max-width: 1199.98px) {
            .container {
                max-width: 95vw;
                padding-left: 2vw;
                padding-right: 2vw;
            }
            .hero {
                padding: 60px 0;
                min-height: 70vh;
            }
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .hero-content p.lead {
                font-size: 1.15rem;
            }
            .hero-buttons .btn {
                font-size: 1rem;
                padding: 0.8rem 1.5rem;
            }
            .hero-image img {
                max-width: 90%;
                height: auto;
            }
            .services, .about, .callertunes, .contact, .pricing {
                padding: 60px 0;
                border-radius: 1.25rem;
                margin: 1rem 0;
            }
            .service-card, .about-card, .callertunes-card, .contact-info-card, .contact-form, .pricing-card {
                border-radius: 1rem;
                padding: 1.5rem 1rem;
            }
            .service-card h3, .about-card h2, .callertunes-card h3, .contact-form label, .pricing-title {
                font-size: 1.15rem;
            }
            .service-icon, .pricing-icon {
                width: 48px;
                height: 48px;
                font-size: 1.5rem;
            }
            .stat-item h3, .price-amount {
                font-size: 2rem;
            }
            .stat-item p {
                font-size: 1rem;
            }
            .contact .row {
                gap: 1.5rem 0;
            }
            .social-links a {
                width: 36px;
                height: 36px;
                font-size: 1rem;
                margin: 0 0.2rem;
                text-decoration: none;
            }
        }





        /* Responsive design */
        @media (max-width: 768px) {
            .hero {
                height: auto;
                padding: 1.5rem 0 3rem;
            }

            .services {
                padding: 60px 0;
            }

            .service-card {
                margin-bottom: 1.5rem;
            }

            .callertunes, .about, .contact {
                padding: 60px 0;
            }

            .contact-form {
                padding: 1.5rem;
            }
        }

        @media (min-width: 768px) and (max-width: 1199.98px) {
            .container {
                max-width: 95vw;
                padding-left: 2vw;
                padding-right: 2vw;
            }
            .hero {
                padding: 60px 0;
                min-height: 70vh;
            }
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .hero-content p.lead {
                font-size: 1.15rem;
            }
            .hero-buttons .btn {
                font-size: 1rem;
                padding: 0.8rem 1.5rem;
            }
            .hero-image img {
                max-width: 90%;
                height: auto;
            }
            .services, .about, .callertunes, .contact, .pricing {
                padding: 60px 0;
                border-radius: 1.25rem;
                margin: 1rem 0;
            }
            .service-card, .about-card, .callertunes-card, .contact-info-card, .contact-form, .pricing-card {
                border-radius: 1rem;
                padding: 1.5rem 1rem;
            }
            .service-card h3, .about-card h2, .callertunes-card h3, .contact-form label, .pricing-title {
                font-size: 1.15rem;
            }
            .service-icon, .pricing-icon {
                width: 48px;
                height: 48px;
                font-size: 1.5rem;
            }
            .stat-item h3, .price-amount {
                font-size: 2rem;
            }
            .stat-item p {
                font-size: 1rem;
            }
            .contact .row {
                gap: 1.5rem 0;
            }
            .social-links a {
                width: 36px;
                height: 36px;
                font-size: 1rem;
                margin: 0 0.2rem;
                text-decoration: none;
            }
        }

        /* Compact Pricing Section */


        @media (min-width: 768px) and (max-width: 1199.98px) {
            .container {
                max-width: 95vw;
                padding-left: 2vw;
                padding-right: 2vw;
            }
            .hero {
                padding: 60px 0;
                min-height: 70vh;
            }
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .hero-content p.lead {
                font-size: 1.15rem;
            }
            .hero-buttons .btn {
                font-size: 1rem;
                padding: 0.8rem 1.5rem;
            }
            .hero-image img {
                max-width: 90%;
                height: auto;
            }
            .services, .about, .callertunes, .contact, .pricing {
                padding: 60px 0;
                border-radius: 1.25rem;
                margin: 1rem 0;
            }
            .service-card, .about-card, .callertunes-card, .contact-info-card, .contact-form, .pricing-card {
                border-radius: 1rem;
                padding: 1.5rem 1rem;
            }
            .service-card h3, .about-card h2, .callertunes-card h3, .contact-form label, .pricing-title {
                font-size: 1.15rem;
            }
            .service-icon, .pricing-icon {
                width: 48px;
                height: 48px;
                font-size: 1.5rem;
            }
            .stat-item h3, .price-amount {
                font-size: 2rem;
            }
            .stat-item p {
                font-size: 1rem;
            }
            .contact .row {
                gap: 1.5rem 0;
            }
            .social-links a {
                width: 36px;
                height: 36px;
                font-size: 1rem;
                margin: 0 0.2rem;
                text-decoration: none;
            }
        }

        /* Add to the style section for custom card look */
        .contact-card {
          border-radius: 1.5rem;
          background: rgba(255,255,255,0.85);
          box-shadow: 0 4px 24px rgba(34,52,69,0.08);
          transition: box-shadow 0.2s;
        }
        .contact-card:hover {
          box-shadow: 0 8px 32px rgba(34,52,69,0.15);
        }


        /* Hero Logo Watermark - Removed */
        .hero-logo-watermark {
            display: none !important;
        }

        @keyframes marquee-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .brands-marquee {
            min-width: 2000px;
        }
        @media (max-width: 768px) {
            .brands-marquee img { height: 40px !important; }
            .brands-marquee { gap: 24px !important; }
        }

        /* Releases Grid - Responsive Layout */
        .releases-grid {
            display: grid;
            gap: 1.5rem;
            margin: 0 auto;
            padding: 0 1rem;
            max-width: 1400px;
        }

        /* Big screens (1400px+) - 6 cards per row */
        @media (min-width: 1400px) {
            .releases-grid {
                grid-template-columns: repeat(6, 1fr);
            }
        }

        /* Large screens (1200px-1399px) - 6 cards per row */
        @media (min-width: 1200px) and (max-width: 1399px) {
            .releases-grid {
                grid-template-columns: repeat(6, 1fr);
            }
        }

        /* Laptop screens (992px-1199px) - 4 cards per row */
        @media (min-width: 992px) and (max-width: 1199px) {
            .releases-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Tablet screens (768px-991px) - 2 cards per row */
        @media (min-width: 768px) and (max-width: 991px) {
            .releases-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.25rem;
            }
        }

        /* Mobile screens (below 768px) - 2 cards per row */
        @media (max-width: 767px) {
            .releases-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
                padding: 0 0.5rem;
            }
        }

        /* Small mobile screens (below 480px) - 2 cards per row */
        @media (max-width: 480px) {
            .releases-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
                padding: 0 0.25rem;
            }
        }

        /* Release Card Styles */
        .release-card {
            background: #fff;
            border-radius: 12px;
            padding: 1rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .release-poster {
            width: 100%;
            aspect-ratio: 1;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 0.75rem;
            position: relative;
        }

        .release-poster img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .trending-badge {
            position: absolute;
            top: 0.25rem;
            right: 0.25rem;
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: #fff;
            padding: 0.2rem 0.4rem;
            border-radius: 4px;
            font-size: 0.65rem;
            font-weight: 600;
        }

        .release-info {
            padding: 0.5rem 0 0 0;
        }

        .release-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: #1e293b;
            margin: 0 0 0.5rem 0;
            line-height: 1.4;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            min-height: 2.8rem;
        }

        .release-streams {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #64748b;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .release-streams i {
            color: #0B4C8C;
            font-size: 1rem;
        }

        /* Hover Effects for Release Cards */
        .release-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
        }

        .release-card:hover .release-poster img {
            transform: scale(1.05);
        }

        .release-card:hover .trending-badge {
            background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
        }

        /* Responsive adjustments for smaller screens */
        @media (max-width: 768px) {
            .our-works-section {
                padding: 40px 0 !important;
            }

            /* Show only top 4 releases on mobile */
            .releases-grid .release-card:nth-child(n+5) {
                display: none !important;
            }
            
            .release-card {
                padding: 0.75rem !important;
            }

            .release-title {
                font-size: 0.85rem;
                min-height: 2.4rem;
            }

            .release-streams {
                font-size: 0.75rem;
            }

            .release-streams i {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .release-card {
                padding: 0.5rem !important;
            }
            
            .trending-badge {
                font-size: 0.6rem !important;
                padding: 0.15rem 0.3rem !important;
            }

            .release-title {
                font-size: 0.8rem;
                min-height: 2.2rem;
            }

            .release-streams {
                font-size: 0.7rem;
            }

            .release-streams i {
                font-size: 0.85rem;
            }
        }
        /* Brands & Influencers Section - 2026 Compact Theme */
        .brands-grid-compact {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 0.75rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .brand-item-compact {
            background: var(--color-white);
            border: 2px solid var(--color-gray);
            border-radius: var(--radius-md);
            padding: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
            aspect-ratio: 1;
        }

        .brand-item-compact img {
            width: 100%;
            height: 50px;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .brand-item-compact:hover {
            transform: translateY(-2px);
            border-color: var(--color-yellow);
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
        }

        .brand-item-compact:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }

        /* Callertunes Section - 2026 Compact Theme */
        .telecom-grid-compact {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .telecom-card-compact {
            background: var(--color-white);
            border: 2px solid var(--color-gray);
            border-radius: var(--radius-lg);
            padding: 1.5rem 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .telecom-icon-wrapper {
            width: 70px;
            height: 70px;
            background: var(--color-white);
            border: 2px solid var(--color-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.75rem;
            transition: all 0.3s ease;
        }

        .telecom-card-compact img {
            width: 50px;
            height: 50px;
            object-fit: contain;
        }

        .telecom-card-compact h3 {
            color: var(--color-black);
            font-size: 0.95rem;
            font-weight: 700;
            margin: 0;
            letter-spacing: 0.5px;
        }

        .telecom-card-compact:hover {
            transform: translateY(-2px);
            border-color: var(--color-yellow);
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
        }

        .telecom-card-compact:hover .telecom-icon-wrapper {
            border-color: var(--color-yellow);
            background: var(--color-yellow);
        }

        /* Responsive Brands & Telecom Sections */
        @media (max-width: 991.98px) {
            .brands-grid-compact {
                grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
                gap: 0.5rem;
            }

            .brand-item-compact {
                padding: 0.875rem;
            }

            .brand-item-compact img {
                height: 45px;
            }

            .telecom-grid-compact {
                grid-template-columns: repeat(4, 1fr);
                max-width: 800px;
                gap: 0.75rem;
            }
        }

        @media (max-width: 767.98px) {
            .brands-grid-compact {
                grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
                gap: 0.5rem;
            }

            .brand-item-compact {
                padding: 0.75rem;
            }

            .brand-item-compact img {
                height: 40px;
            }

            .telecom-grid-compact {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
                max-width: 600px;
            }

            .telecom-card-compact {
                padding: 1.25rem 0.75rem;
            }

            .telecom-icon-wrapper {
                width: 60px;
                height: 60px;
            }

            .telecom-card-compact img {
                width: 40px;
                height: 40px;
            }

            .telecom-card-compact h3 {
                font-size: 0.85rem;
            }
        }

        /* Legacy Hover Effect for Brand Items */
        .brand-item:hover {
            background: rgba(255,255,255,0.1) !important;
            border-color: rgba(255,255,255,0.2) !important;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        
        .brand-item:hover img {
            opacity: 1 !important;
            transform: scale(1.05);
        }

        /* Responsive Grid */
        @media (max-width: 991px) {
            .brands-grid {
                grid-template-columns: repeat(4, 1fr) !important;
                gap: 0.75rem !important;
                padding: 0.75rem !important;
            }
        }

        @media (max-width: 767px) {
            .brands-grid {
                grid-template-columns: repeat(3, 1fr) !important;
                gap: 0.5rem !important;
            }
        }

        @media (max-width: 575px) {
            .brands-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }
        /* Hover Effects */
        .telecom-card:hover {
            background: rgba(255,255,255,0.25) !important;
            border-color: rgba(255,255,255,0.5) !important;
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .telecom-card:hover div {
            transform: scale(1.15) rotate(5deg);
            box-shadow: 0 12px 32px rgba(0,0,0,0.25);
        }

        .telecom-card:hover h3 {
            transform: scale(1.1);
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .telecom-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 1rem !important;
                max-width: 500px !important;
            }
        }

        @media (max-width: 575px) {
            .telecom-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 0.75rem !important;
            }
            
            .telecom-card {
                padding: 1.5rem 1rem !important;
            }
        }
        /* Hover Effects */
        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.15) !important;
        }

        .feature-item:hover {
            background: linear-gradient(135deg, #f8fafc, #fff) !important;
            border-color: #3b82f6 !important;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .stats-grid {
                grid-template-columns: repeat(3, 1fr) !important;
            }
        }

        @media (max-width: 767px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
            
            .features-grid {
                grid-template-columns: 1fr !important;
            }
        }
        .btn-contact-announcement:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(255, 215, 0, 0.5);
            background: linear-gradient(135deg, #FFC000 0%, #FFB300 100%) !important;
            color: #1f2937 !important;
        }
        
        @media (max-width: 991.98px) {
            .announcement-banner {
                padding: 50px 0 !important;
            }
            .announcement-banner h2 {
                font-size: 1.75rem !important;
            }
            .announcement-banner p {
                font-size: 1rem !important;
            }
            .btn-contact-announcement {
                padding: 0.875rem 2rem !important;
                font-size: 0.95rem !important;
            }
        }
        
        @media (max-width: 767.98px) {
            .announcement-banner {
                padding: 40px 0 !important;
                margin: 30px 0 !important;
            }
            .announcement-banner h2 {
                font-size: 1.5rem !important;
            }
            .announcement-banner p {
                font-size: 0.95rem !important;
            }
            .btn-contact-announcement {
                width: 100%;
                justify-content: center;
                padding: 1rem 2rem !important;
            }
        }
    @keyframes marquee-left {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    .brands-marquee {
        min-width: 2000px;
    }
    @media (max-width: 768px) {
        .brands-marquee img { height: 40px !important; }
        .brands-marquee { gap: 24px !important; }
    }
