@font-face {
    font-family: 'Inter';
    font-display: swap;
}
body {
            font-family: 'Inter', sans-serif;
            background-color: #0f172a;
            color: #f8fafc;
            scroll-behavior: smooth;
        }
        .gradient-text {
            background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 20%, #ec4899 40%, #f43f5e 60%, #f59e0b 80%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            background-size: 300% 300%;
            animation: gradient 8s ease infinite;
        }
        @keyframes gradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        /* .hero-gradient {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
        } */
        .card-gradient {
            background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
            border: 1px solid #334155;
        }
        .section-divider {
            background: linear-gradient(90deg, transparent, #3b82f6, #8b5cf6, transparent);
        }
        .glow {
            box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
        }
        .glow-hover:hover {
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.7);
        }
        .animated-bg {
            position: relative;
            overflow: hidden;
        }
        .animated-bg::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                rgba(59, 130, 246, 0.1) 0%,
                rgba(139, 92, 246, 0.1) 20%,
                transparent 40%,
                transparent 60%,
                rgba(59, 130, 246, 0.1) 80%,
                rgba(139, 92, 246, 0.1) 100%
            );
            animation: rotate 20s linear infinite;
            z-index: -1;
        }
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .carousel-item {
            transition: transform 0.5s ease;
        }
  
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 1;
            }
            100% {
                transform: translateY(-1000px) rotate(720deg);
                opacity: 0;
            }
        }
        
        /* Image Section Special Styles */
        .image-section-card {
            background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
            border: 1px solid #334155;
            box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
        }
        .image_height {
            height: 30rem;
        }
        .image-section-feature {
            background: rgba(30, 41, 59, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(59, 130, 246, 0.2);
            transition: all 0.3s ease;
        }
        
        .image-section-feature:hover {
            background: rgba(30, 41, 59, 0.8);
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
        }
        
        /* Video Carousel */
        .video-carousel {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .video-carousel-item {
            min-width: 100%;
            position: relative;
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(15, 23, 42, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transition: opacity 0.3s ease;
        }
        
        .video-carousel-item:hover .video-overlay {
            opacity: 0;
        }
        
        /* Contact Info Cards */
        .contact-info-card {
            background: rgba(30, 41, 59, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(59, 130, 246, 0.2);
            transition: all 0.3s ease;
        }
        
        .contact-info-card:hover {
            background: rgba(30, 41, 59, 0.8);
            transform: translateY(-5px);
            border-color: rgba(59, 130, 246, 0.4);
        }
        
        /* Chat container */
        .chat-container {
            height: 300px;
            overflow-y: auto;
        }
        
        /* Logo styles */
        .logo-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
        }
        
        .logo-icon i {
            color: white;
            font-size: 18px;
        }
        .rounded-full {
            border-radius: 9999px;
            padding: 5px;
        }
        .bg-slate-900\/80 {
            background-color: rgb(15 23 42 / 50%) !important;
        }
        /* Responsive fixes */
        @media (max-width: 768px) {
            .image-carousel-container {
                height: auto;
            }
            .carousel-item {
                height: auto;
            }
            .video-carousel-item {
                height: 300px;
            }
            .chat-container {
                height: 250px;
            }
        }
              /* 3D Grid Canvas */
              #grid-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.3;
        }
        
        /* Hero Content Container */
        .hero-content {
            position: relative;
            z-index: 1;
        }
        