
        :root {
            --primary-color: #00aaff;
            --secondary-color: #ff3366;
            --dark-blue: #1e293b;
            --light-gray: #f8fafc;
            --text-gray: #64748b;
            --white: #ffffff;
            --accent-color: #3498db;
            --dark-color: #2c3e50;
            --light-color: #f8f9fa;
            --text-color: #333;
            --text-muted: #6c757d;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --info-color: #06b6d4;
            --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            --gradient-secondary: linear-gradient(135deg, var(--accent-color) 0%, #2980b9 100%);
            --gradient-success: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        body.loaded {
            opacity: 1;
        }

        /* Enhanced Header Styles */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            z-index: 1000;
            padding: 12px 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            padding: 8px 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-img {
            height: 50px;
            width: auto;
            max-width: 200px;
            object-fit: contain;
            transition: all 0.3s ease;
        }

        /* Responsive logo sizing */
        .header.scrolled .logo-img {
            height: 42px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 35px;
            margin: 0;
        }

        .nav-menu li a {
            text-decoration: none;
            color: var(--dark-blue);
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
            white-space: nowrap;
        }

        .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-menu li a:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .nav-menu li a:hover::after {
            width: 100%;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 8px;
            z-index: 1002;
            background: transparent;
            border: none;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--dark-blue);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
            background: white;
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
            background: white;
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Mobile Menu - Right Side Slide */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -320px;
            width: 320px;
            height: 100vh;
            background: linear-gradient(135deg, var(--dark-blue), var(--primary-color));
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1001;
            padding-top: 100px;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu ul {
            list-style: none;
            text-align: center;
            padding: 0;
            width: 100%;
        }

        .mobile-menu ul li {
            margin: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu ul li:last-child {
            border-bottom: none;
        }

        .mobile-menu ul li a {
            color: white;
            font-size: 18px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            padding: 20px 30px;
            position: relative;
        }

        .mobile-menu ul li a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #ffd700;
            transform: translateX(-10px);
        }


        /* ACtive page Color */
        .nav-menu li a.active {
            color: var(--primary-color);   
        }

        .nav-menu li a.active::after {
            width: 100%;
        }



        /* Hero Section */
        .hero-section {
            background: var(--gradient-primary);
            position: relative;
            padding: 190px 0 100px;
            color: white;
            overflow: hidden;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .hero-content h1 {
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .hero-content p {
            font-size: clamp(1rem, 2vw, 1.3rem);
            margin-bottom: 2rem;
            opacity: 0.95;
            font-weight: 400;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Section Styling */
        .section {
            padding: 80px 0;
            position: relative;
        }

        .section-alt {
            background: var(--light-color);
        }

        .section-title {
            font-size: clamp(1.8rem, 4vw, 3rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--dark-color);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        /* Use Case Categories */
        .category-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 4rem;
            flex-wrap: wrap;
        }

        .category-btn {
            padding: 12px 24px;
            border: 2px solid var(--primary-color);
            background: transparent;
            color: var(--primary-color);
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            white-space: nowrap;
        }

        .category-btn:hover,
        .category-btn.active {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 170, 255, 0.3);
        }

        /* Use Case Cards */
        .use-case-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
        }

        .use-case-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .use-case-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }

        .use-case-card:hover::before {
            transform: scaleX(1);
        }

        .card-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin: 0 auto 1.5rem;
            position: relative;
            z-index: 2;
            transition: all 0.6s ease;
        }

        .use-case-card:hover .card-icon {
            transform: scale(1.1) rotate(360deg);
        }

        .card-body {
            padding: 2.5rem;
        }

        .card-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 1rem;
            text-align: center;
        }

        .card-problem {
            background: rgba(255, 51, 102, 0.1);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 15px;
            border-left: 4px solid var(--secondary-color);
        }

        .card-solution {
            background: rgba(16, 185, 129, 0.1);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 15px;
            border-left: 4px solid var(--success-color);
        }

        .card-tech {
            background: rgba(0, 170, 255, 0.1);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 15px;
            border-left: 4px solid var(--primary-color);
        }

        .card-impact {
            background: rgba(245, 158, 11, 0.1);
            padding: 15px;
            border-radius: 10px;
            border-left: 4px solid var(--warning-color);
        }

        .card-section-title {
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .card-section-text {
            font-size: 0.95rem;
            line-height: 1.5;
            color: var(--text-color);
        }

        /* Industry Insights */
        .insights-card {
            background: var(--gradient-secondary);
            color: white;
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-bottom: 2rem;
        }

        .insights-stat {
            font-size: 3rem;
            font-weight: 800;
            display: block;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .insights-label {
            font-size: 1.1rem;
            font-weight: 500;
            opacity: 0.9;
        }

        /* Solution Spotlight */
        .spotlight-section {
            background: var(--dark-color);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .spotlight-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.4s ease;
        }

        .spotlight-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .spotlight-icon {
            width: 100px;
            height: 100px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 1.5rem;
            transition: all 0.6s ease;
        }

        .spotlight-card:hover .spotlight-icon {
            transform: scale(1.1);
            box-shadow: 0 0 30px rgba(0, 170, 255, 0.6);
        }

        /* Progress Bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: var(--gradient-primary);
            z-index: 9999;
            transition: width 0.3s ease;
        }

        /* Scroll to Top Button */
        .scroll-to-top-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(100px);
            transition: all 0.4s ease;
            z-index: 1000;
            box-shadow: 0 10px 25px rgba(0, 170, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .scroll-to-top-btn.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-to-top-btn:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 35px rgba(0, 170, 255, 0.4);
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient-primary);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 3rem;
            background: white;
            color: var(--primary-color);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.4s ease;
            margin-top: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            color: var(--primary-color);
            text-decoration: none;
        }

        /* Footer */
        .footer-nexviyo-footer {
            background: linear-gradient(135deg, #0a0f1a 0%, #1a2332 100%);
            color: #ffffff;
            padding: 60px 0 30px;
            position: relative;
            overflow: hidden;
            font-family: 'Arial', sans-serif;
        }

        .footer-nexviyo-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 1px 1px, rgba(255,255,255,0.15) 1px, transparent 0);
            background-size: 20px 20px;
            background-position: 0 0, 10px 10px;
            pointer-events: none;
        }

        .footer-nexviyo-footer::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1000 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' opacity='0.08'%3E%3C!-- North America dots --%3E%3Ccircle cx='120' cy='80' r='1.5'/%3E%3Ccircle cx='140' cy='85' r='1'/%3E%3Ccircle cx='160' cy='90' r='1'/%3E%3Ccircle cx='180' cy='95' r='1'/%3E%3Ccircle cx='200' cy='100' r='1.5'/%3E%3Ccircle cx='220' cy='105' r='1'/%3E%3Ccircle cx='240' cy='110' r='1'/%3E%3Ccircle cx='130' cy='100' r='1'/%3E%3Ccircle cx='150' cy='105' r='1'/%3E%3Ccircle cx='170' cy='110' r='1'/%3E%3Ccircle cx='190' cy='115' r='1'/%3E%3Ccircle cx='210' cy='120' r='1'/%3E%3Ccircle cx='125' cy='120' r='1'/%3E%3Ccircle cx='145' cy='125' r='1'/%3E%3Ccircle cx='165' cy='130' r='1'/%3E%3Ccircle cx='185' cy='135' r='1'/%3E%3C!-- South America dots --%3E%3Ccircle cx='180' cy='200' r='1'/%3E%3Ccircle cx='190' cy='210' r='1'/%3E%3Ccircle cx='200' cy='220' r='1'/%3E%3Ccircle cx='210' cy='230' r='1'/%3E%3Ccircle cx='220' cy='240' r='1.5'/%3E%3Ccircle cx='230' cy='250' r='1'/%3E%3Ccircle cx='240' cy='260' r='1'/%3E%3Ccircle cx='195' cy='230' r='1'/%3E%3Ccircle cx='205' cy='240' r='1'/%3E%3Ccircle cx='215' cy='250' r='1'/%3E%3Ccircle cx='225' cy='260' r='1'/%3E%3C!-- Europe dots --%3E%3Ccircle cx='420' cy='70' r='1'/%3E%3Ccircle cx='435' cy='75' r='1'/%3E%3Ccircle cx='450' cy='80' r='1.5'/%3E%3Ccircle cx='465' cy='85' r='1'/%3E%3Ccircle cx='480' cy='90' r='1'/%3E%3Ccircle cx='495' cy='95' r='1'/%3E%3Ccircle cx='430' cy='95' r='1'/%3E%3Ccircle cx='445' cy='100' r='1'/%3E%3Ccircle cx='460' cy='105' r='1'/%3E%3Ccircle cx='475' cy='110' r='1'/%3E%3C!-- Africa dots --%3E%3Ccircle cx='450' cy='130' r='1'/%3E%3Ccircle cx='460' cy='140' r='1'/%3E%3Ccircle cx='470' cy='150' r='1.5'/%3E%3Ccircle cx='480' cy='160' r='1'/%3E%3Ccircle cx='490' cy='170' r='1'/%3E%3Ccircle cx='500' cy='180' r='1'/%3E%3Ccircle cx='510' cy='190' r='1'/%3E%3Ccircle cx='520' cy='200' r='1'/%3E%3Ccircle cx='465' cy='170' r='1'/%3E%3Ccircle cx='475' cy='180' r='1'/%3E%3Ccircle cx='485' cy='190' r='1'/%3E%3Ccircle cx='495' cy='200' r='1'/%3E%3Ccircle cx='505' cy='210' r='1'/%3E%3C!-- Asia dots --%3E%3Ccircle cx='600' cy='60' r='1'/%3E%3Ccircle cx='620' cy='65' r='1'/%3E%3Ccircle cx='640' cy='70' r='1.5'/%3E%3Ccircle cx='660' cy='75' r='1'/%3E%3Ccircle cx='680' cy='80' r='1'/%3E%3Ccircle cx='700' cy='85' r='1'/%3E%3Ccircle cx='720' cy='90' r='1'/%3E%3Ccircle cx='740' cy='95' r='1'/%3E%3Ccircle cx='760' cy='100' r='1.5'/%3E%3Ccircle cx='610' cy='90' r='1'/%3E%3Ccircle cx='630' cy='95' r='1'/%3E%3Ccircle cx='650' cy='100' r='1'/%3E%3Ccircle cx='670' cy='105' r='1'/%3E%3Ccircle cx='690' cy='110' r='1'/%3E%3Ccircle cx='710' cy='115' r='1'/%3E%3Ccircle cx='730' cy='120' r='1'/%3E%3Ccircle cx='615' cy='120' r='1'/%3E%3Ccircle cx='635' cy='125' r='1'/%3E%3Ccircle cx='655' cy='130' r='1'/%3E%3Ccircle cx='675' cy='135' r='1'/%3E%3Ccircle cx='695' cy='140' r='1'/%3E%3C!-- Australia dots --%3E%3Ccircle cx='720' cy='240' r='1'/%3E%3Ccircle cx='735' cy='245' r='1'/%3E%3Ccircle cx='750' cy='250' r='1.5'/%3E%3Ccircle cx='765' cy='255' r='1'/%3E%3Ccircle cx='780' cy='260' r='1'/%3E%3Ccircle cx='730' cy='260' r='1'/%3E%3Ccircle cx='745' cy='265' r='1'/%3E%3Ccircle cx='760' cy='270' r='1'/%3E%3C/g%3E%3C/svg%3E");
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: center;
            pointer-events: none;
        }

        .footer-footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .footer-footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-footer-section h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #ffffff, #e2e8f0);
            color: #0a0f1a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 22px;
            font-weight: bold;
        }

        .footer-logo-text {
            font-size: 20px;
            font-weight: bold;
            color: #ffffff;
            line-height: 1.2;
        }

        .footer-company-tagline {
            color: #94a3b8;
            margin-bottom: 25px;
            line-height: 1.5;
        }

        .footer-contact-info p {
            margin-bottom: 8px;
        }

        .footer-phone.footer-primary {
            color: #ef4444;
            font-weight: 600;
            font-size: 16px;
        }

        .footer-phone.footer-secondary {
            color: #ef4444;
            font-weight: 600;
            font-size: 16px;
        }

        .footer-email {
            color: #94a3b8;
            font-size: 14px;
        }

        .footer-footer-links {
            list-style: none;
        }

        .footer-footer-links li {
            margin-bottom: 12px;
        }

        .footer-footer-links a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-footer-links a:hover {
            color: #ffffff;
        }

        .footer-newsletter-text {
            color: #94a3b8;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .footer-newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .footer-email-input {
            flex: 1;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            color: #ffffff;
            font-size: 14px;
        }

        .footer-email-input::placeholder {
            color: #64748b;
        }

        .footer-email-input:focus {
            outline: none;
            border-color: #3b82f6;
            background: rgba(255, 255, 255, 0.15);
        }

        .footer-signup-btn {
            padding: 12px 20px;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: #ffffff;
            border: none;
            border-radius: 5px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .footer-signup-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        }

        .footer-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-copyright {
            color: #64748b;
            font-size: 14px;
        }

        .footer-nexviyo-link {
            color: #ef4444;
            font-weight: 600;
        }

        .footer-social-links {
            display: flex;
            gap: 15px;
        }

        .footer-social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .footer-social-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }


        /* Social Media Icons */
        .social-icons {
            display: flex;
            gap: 10px;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 18px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-icon.twitter { 
            background: linear-gradient(135deg, #1DA1F2, #0d8bd9); 
        }
        .social-icon.facebook { 
            background: linear-gradient(135deg, #3b5998, #2d4373); 
        }
        .social-icon.instagram { 
            background: linear-gradient(45deg, #feda75, #d62976, #4f5bd5); 
        }
        .social-icon.linkedin { 
            background: linear-gradient(135deg, #0077b5, #005885); 
        }

        .social-icon:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .nav-menu {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }

            .footer-footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 60px 0;
            }
            
            .hero-section {
                padding: 120px 0 60px;
            }

            .category-nav {
                gap: 10px;
            }

            .category-btn {
                font-size: 12px;
                padding: 10px 20px;
            }

            .card-body {
                padding: 1.5rem;
            }

            .card-title {
                font-size: 1.2rem;
            }

            .use-case-card:hover {
                transform: none;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }

            .logo-img {
                height: 42px;
                max-width: 150px;
            }

            .header.scrolled .logo-img {
                height: 36px;
            }

            .footer-footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-newsletter-form {
                flex-direction: column;
            }
            
            .footer-signup-btn {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }

            .card-body {
                padding: 1rem;
            }

            .insights-stat {
                font-size: 2.5rem;
            }

            .logo-img {
                height: 38px;
                max-width: 120px;
            }

            .header.scrolled .logo-img {
                height: 32px;
            }
        }

        /* Loading Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Category Filter */
        .use-case-category {
            display: block;
        }

        .use-case-category.hidden {
            display: none;
        }
    