        :root {
            --primary-color: #0B4C8C;
            --primary-hover: #0a3f72;
            --secondary-color: #1e293b;
            --secondary-hover: #334155;
            --bg-color: #f8fafc;
            --text-color: #1e293b;
            --text-muted: #64748b;
            --border-color: #e2e8f0;
            --success-color: #22c55e;
            --danger-color: #ef4444;
            --warning-color: #f59e0b;
            --info-color: #0ea5e9;
            --card-bg: #ffffff;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
            --radius-sm: 0.375rem;
            --radius-md: 0.5rem;
            --radius-lg: 0.75rem;
            --gradient-primary: linear-gradient(135deg, #0B4C8C 0%, #1565C0 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: 70px;
            font-size: 0.9rem;
        }

        /* Modern Hero Section - Compact Design */
        .hero {
            position: relative;
            min-height: 50vh;
            background: var(--gradient-primary);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 3rem 0;
            margin: 0 0 1.5rem 0;
        }

        /* Clean Background Pattern */
        .hero::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;
        }

        .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 */
        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
        }

        /* Status Badge */
        .hero-status {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(34, 211, 238, 0.1);
            border: 1px solid rgba(34, 211, 238, 0.3);
            border-radius: 50px;
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: #22d3ee;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
            animation: pulse-glow 3s ease-in-out infinite;
        }

        .hero-status::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #22d3ee;
            border-radius: 50%;
            animation: status-blink 2s ease-in-out infinite;
        }

        @keyframes status-blink {
            0%, 100% { opacity: 1; box-shadow: 0 0 10px #22d3ee; }
            50% { opacity: 0.3; box-shadow: 0 0 5px #22d3ee; }
        }

        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 20px rgba(34, 211, 238, 0.2); }
            50% { box-shadow: 0 0 30px rgba(34, 211, 238, 0.4); }
        }

        /* 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 {
            background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            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: rgba(255, 255, 255, 0.9);
            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: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #1e293b;
            border: 1px solid #f59e0b;
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
        }

        .hero-btn-login:hover {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            border-color: #d97706;
            box-shadow: 0 6px 16px rgba(251, 191, 36, 0.4);
            transform: translateY(-2px);
        }

        .hero-btn-signup {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .hero-btn-signup:hover {
            background: rgba(255, 255, 255, 0.25);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }

        /* 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.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-lg);
            padding: 1rem 0.75rem;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.2s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 44px;
            height: 44px;
            margin: 0 auto 0.625rem auto;
            background: rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: white;
            position: relative;
            z-index: 1;
        }

        .feature-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.2rem;
            position: relative;
            z-index: 1;
        }

        .feature-subtitle {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.85);
            position: relative;
            z-index: 1;
        }

        /* 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: 40px;
            height: 40px;
            background: var(--primary-color);
            border-radius: var(--radius-md);
            color: white;
            font-size: 1.1rem;
            box-shadow: var(--shadow-sm);
            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 */
        .dark-section .section-heading h2 {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .dark-section .section-subtitle {
            color: #6b7280;
        }

        /* 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 */
        .ai-suite {
            padding: 3rem 0;
            background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
            position: relative;
            overflow: hidden;
            margin: 1.5rem 0;
        }

        .ai-suite::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.15), transparent 55%),
                        radial-gradient(circle at 80% 0%, rgba(79,70,229,0.2), transparent 50%);
            opacity: 0.7;
            pointer-events: none;
        }

        .ai-card {
            position: relative;
            z-index: 2;
            background: rgba(15,23,42,0.75);
            border-radius: 1.25rem;
            padding: 2rem;
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 30px 80px rgba(15,23,42,0.45);
        }

        .ai-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(56,189,248,0.15);
            border: 1px solid rgba(56,189,248,0.4);
            border-radius: 999px;
            padding: 0.4rem 1.1rem;
            color: #38bdf8;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            font-size: 0.75rem;
        }

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

        .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;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .ai-feature-list li {
            color: rgba(255,255,255,0.9);
            font-weight: 600;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .ai-feature-list i {
            color: #38bdf8;
            font-size: 0.95rem;
        }

        .ai-highlight {
            background: rgba(15,23,42,0.65);
            border-radius: 1rem;
            padding: 1.5rem;
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: inset 0 1px 15px rgba(255,255,255,0.05);
        }

        .ai-highlight-title {
            color: rgba(255,255,255,0.85);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15rem;
            font-size: 0.8rem;
            margin-bottom: 1rem;
        }

        .ai-highlight-chip {
            background: rgba(56,189,248,0.12);
            border: 1px solid rgba(56,189,248,0.25);
            border-radius: 12px;
            padding: 0.55rem 0.8rem;
            color: rgba(255,255,255,0.9);
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.6rem;
        }

        .ai-footnote {
            margin-top: 1rem;
            color: rgba(255,255,255,0.8);
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        @media (max-width: 991px) {
            .ai-card {
                padding: 1.5rem;
            }
            .ai-highlight {
                margin-top: 1.5rem;
            }
        }

        /* 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: 3rem 0;
            background-color: var(--bg-color);
            position: relative;
            overflow: hidden;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(45deg, rgba(11, 76, 140, 0.02), rgba(21, 101, 192, 0.02));
            pointer-events: none;
        }

        .service-card {
            padding: 1.5rem;
            border-radius: var(--radius-md);
            transition: all 0.2s ease;
            background: var(--card-bg);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            background: var(--card-bg);
            border-color: var(--primary-color);
        }

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

        .service-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-md);
            background: var(--primary-color);
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            transition: transform 0.2s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.05);
        }

        .service-card h3 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-color);
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 0.85rem;
            line-height: 1.5;
            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 */
        .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: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            padding: 2.5rem 0 1rem;
            margin-top: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        footer::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;
        }

        footer::after {
            display: none;
        }

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

        .footer-main {
            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);
            margin-bottom: 1rem;
            transition: all 0.2s ease;
        }

        .footer-main::before {
            display: none;
        }

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

        .footer-main:hover::before {
            display: none;
        }

        .footer-brand {
            margin-bottom: 1rem;
        }

        .footer-brand h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
        }

        .footer-brand p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .footer-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .footer-stat-item {
            background: rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
            padding: 0.75rem 0.5rem;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.2s ease;
            position: relative;
            overflow: hidden;
        }

        .footer-stat-item::before {
            display: none;
        }

        .footer-stat-item:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.12);
            box-shadow: var(--shadow-sm);
            border-color: rgba(255, 255, 255, 0.25);
        }

        .footer-stat-item:hover::before {
            display: none;
        }

        .footer-stat-number {
            font-size: 1.25rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 0.25rem;
        }

        .footer-stat-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-social {
            text-align: center;
            margin-bottom: 1rem;
        }

        .footer-social h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.75rem;
        }

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

        .footer-social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.2s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            position: relative;
            overflow: hidden;
        }

        .footer-social-link::before {
            display: none;
        }

        .footer-social-link:hover {
            transform: translateY(-2px);
            color: white;
            text-decoration: none;
            background: rgba(255, 255, 255, 0.15);
            box-shadow: var(--shadow-sm);
        }

        .footer-social-link:hover::before {
            display: none;
        }

        .footer-social-link.facebook:hover { background: rgba(255, 255, 255, 0.2); }
        .footer-social-link.whatsapp:hover { background: rgba(255, 255, 255, 0.2); }
        .footer-social-link.instagram:hover { background: rgba(255, 255, 255, 0.2); }
        .footer-social-link.telegram:hover { background: rgba(255, 255, 255, 0.2); }
        .footer-social-link.youtube:hover { background: rgba(255, 255, 255, 0.2); }

        .footer-bottom {
            background: rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
            padding: 1rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .footer-bottom::before {
            display: none;
        }

        .footer-credits {
            background: rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
            padding: 0.6rem 1rem;
            display: inline-block;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            margin-bottom: 0.5rem;
        }

        .footer-credits-text {
            font-size: 0.85rem;
            font-weight: 600;
            color: white;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            flex-wrap: wrap;
        }

        .footer-credits-label {
            color: rgba(255, 255, 255, 0.7);
        }


        .footer-credits-link {
            color: white;
            text-decoration: none;
            padding: 0.25rem 0.6rem;
            border-radius: var(--radius-sm);
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.2s ease;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .footer-credits-link:hover {
            color: white;
            text-decoration: none;
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-1px);
        }

        .footer-copyright {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
            margin: 0;
        }

        @media (max-width: 991.98px) {
            .footer-main {
                padding: 2rem 1.5rem;
                border-radius: 1.5rem;
            }
            .footer-brand h3 {
                font-size: 2rem;
                text-align: center;
            }
            .footer-brand p {
                text-align: center;
                font-size: 1.1rem;
            }
            .footer-stats {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 1rem;
            }
        }

        @media (max-width: 767.98px) {
            footer {
                padding: 60px 0 20px;
            }
            .footer-main {
                padding: 1.5rem 1rem;
            }
            .footer-brand h3 {
                font-size: 1.8rem;
            }
            .footer-brand p {
                font-size: 1rem;
            }
            .footer-bottom {
                padding: 1.5rem 1rem;
                border-radius: 1.5rem;
            }
            .footer-credits-text {
                font-size: 0.9rem;
                text-align: center;
            }
            .footer-social-links {
                gap: 0.8rem;
            }
            .footer-social-link {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
        }

        /* Navigation */
        .navbar {
            background: linear-gradient(45deg, rgba(30, 41, 59, 0.95), rgba(79, 70, 229, 0.95));
            padding: 0.75rem 0;
            transition: all 0.2s ease;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: fixed !important;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            overflow: hidden;
            margin: 0;
            border-radius: 0;
            box-shadow: var(--shadow-md);
            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: linear-gradient(45deg, rgba(30, 41, 59, 0.98), rgba(79, 70, 229, 0.98));
            box-shadow: var(--shadow-lg);
            padding: 0.6rem 0;
            margin: 0;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.2rem;
            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: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .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 {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
        }

        .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: 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: linear-gradient(135deg, #fbbf24, #f59e0b);
            border: 1px solid #f59e0b;
            margin: 0 0.2rem;
            color: #1e293b;
        }

        .btn-yellow:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
            background: linear-gradient(135deg, #f59e0b, #d97706);
            border-color: #d97706;
            color: #1e293b;
        }

        .btn-primary {
            font-weight: 600;
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            transition: all 0.2s ease;
            border-radius: var(--radius-md);
            background: var(--gradient-primary);
            border: none;
            position: relative;
            overflow: hidden;
            margin: 0 0.2rem;
            box-shadow: var(--shadow-sm);
        }

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

        .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }

        .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%;
            }
            
            /* Hide Login and Signup buttons in mobile menu */
            .nav-item:has(.btn-outline-light),
            .nav-item:has(.btn-primary) {
                display: none !important;
            }
            
            .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;
            }
            
            .nav-link: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: 75px; /* Adjust for smaller navbar on mobile */
            }
            
            .hero {
                height: auto;
                padding: 100px 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: 100px 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;
            }
        }

        /* 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 {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 340px;
            height: 340px;
            opacity: 0.08;
            z-index: 2;
            transform: translate(-50%, -50%);
            pointer-events: none;
            animation: hero-logo-pulse 3.5s ease-in-out infinite;
        }
        @media (max-width: 768px) {
            .hero-logo-watermark {
                width: 180px;
                height: 180px;
            }
        }
        @keyframes hero-logo-pulse {
            0%, 100% { opacity: 0.08; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 0.16; transform: translate(-50%, -50%) scale(1.08); }
        }

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