 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

        :root {
            /* Ultra-Modern Color Palette */
            --primary: #0A0E27;
            --primary-light: #121638;
            --accent-blue: #00D4FF;
            --accent-purple: #9333EA;
            --accent-pink: #EC4899;
            --accent-orange: #F59E0B;
            
            /* Sophisticated Neutrals */
            --background: #FFFFFF;
            --surface: #F8FAFC;
            --surface-dark: #0F172A;
            --text: #0F172A;
            --text-light: #64748B;
            --text-muted: #94A3B8;
            --border: #E2E8F0;
            
            /* Glassmorphism */
            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-border: rgba(255, 255, 255, 0.18);
            
            /* Gradients */
            --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-accent: linear-gradient(135deg, #00D4FF 0%, #9333EA 50%, #EC4899 100%);
            --gradient-dark: linear-gradient(135deg, #0A0E27 0%, #121638 100%);
            --gradient-mesh: radial-gradient(at 27% 37%, hsla(215, 98%, 61%, 0.15) 0px, transparent 50%),
                            radial-gradient(at 97% 21%, hsla(125, 98%, 72%, 0.1) 0px, transparent 50%),
                            radial-gradient(at 52% 99%, hsla(354, 98%, 61%, 0.1) 0px, transparent 50%),
                            radial-gradient(at 10% 29%, hsla(256, 96%, 67%, 0.15) 0px, transparent 50%);
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--background);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--surface);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--accent-blue), var(--accent-purple));
            border-radius: 10px;
        }

        /* Animated Mesh Background */
        .mesh-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: var(--gradient-mesh);
            animation: meshMove 20s ease-in-out infinite;
        }

        @keyframes meshMove {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        /* Ultra-Modern Navigation */
        .nav {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            width: 95%;
            max-width: 1400px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-container {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 20px;
            padding: 15px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        }

        .nav.scrolled .nav-container {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: var(--gradient-accent);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            font-weight: 800;
        }

        .logo-text h1 {
            font-size: 24px;
            font-weight: 800;
            font-family: 'Space Grotesk', sans-serif;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }

        .logo-text p {
            font-size: 10px;
            color: var(--text-light);
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .nav-links {
            display: none;
            gap: 8px;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .nav-links {
                display: flex;
            }
        }

        .nav-link {
            position: relative;
            font-weight: 600;
            color: var(--text);
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            padding: 10px 20px;
            font-size: 14px;
            border-radius: 10px;
        }

        .nav-link:hover,
        .nav-link.active {
            background: rgba(0, 212, 255, 0.1);
            color: var(--accent-blue);
        }

        .mobile-menu-btn {
            display: block;
            background: var(--gradient-accent);
            border: none;
            color: white;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            position: relative;
        }

        @media (min-width: 1024px) {
            .mobile-menu-btn {
                display: none;
            }
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 400px;
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(40px);
            padding: 100px 30px 30px;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            z-index: 999;
            box-shadow: -20px 0 60px rgba(0, 0, 0, 0.2);
        }

        .mobile-menu.open {
            right: 0;
        }

        .mobile-menu .nav-link {
            display: block;
            padding: 18px 24px;
            margin-bottom: 8px;
            border-radius: 12px;
            font-size: 16px;
            background: var(--surface);
        }

        .mobile-menu .nav-link:hover,
        .mobile-menu .nav-link.active {
            background: var(--gradient-accent);
            color: white;
            transform: translateX(10px);
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 140px 20px 80px;
            overflow: hidden;
        }

        .hero-video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
            background-color: rgba(0, 0, 0, 0.752);
        }

        .hero-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.6;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 1200px;
            text-align: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 30px;
            border: 1px solid rgba(0, 212, 255, 0.2);
            animation: fadeInUp 0.8s ease;
        }

        .hero-title {
            font-size: clamp(40px, 8vw, 90px);
            font-weight: 600;
            line-height: 1.1;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.2s both;        
            letter-spacing: -2px;
        }

        .gradient-text {
            background: rgba(245, 245, 245, 0.975);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        .hero-description {
            font-size: clamp(18px, 2.5vw, 24px);
            color:rgb(246, 244, 244);
            max-width: 800px;
            margin: 0 auto 50px;
            line-height: 1.6;
            animation: fadeInUp 1s ease 0.4s both;
            font-weight: 500;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-bottom: 80px;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .btn {
            padding: 18px 40px;
            font-size: 16px;
            font-weight: 700;
            border-radius: 14px;
            cursor: pointer;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--gradient-accent);
            color: white;
            box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4);
        }

        .btn-outline {
            background: rgba(255, 255, 255, 0.9);
            color: var(--text);
            border: 2px solid rgba(0, 212, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .btn-outline:hover {
            background: rgba(0, 212, 255, 0.1);
            border-color: var(--accent-blue);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
            animation: fadeInUp 1s ease 0.8s both;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
        }

        .stat-value {
            font-size: 48px;
            font-weight: 800;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
            font-family: 'Space Grotesk', sans-serif;
        }

        .stat-label {
            color: var(--text-light);
            font-weight: 600;
            font-size: 14px;
        }

        /* Section Styles */
        section {
            padding: 100px 10px;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-badge {
            display: inline-block;
            padding: 10px 24px;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 50px;
            color: var(--accent-blue);
            font-weight: 700;
            font-size: 12px;
            margin-bottom: 20px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .section-title {
            font-size: clamp(36px, 6vw, 64px);
            font-weight: 800;
            margin-bottom: 20px;
            font-family: 'Space Grotesk', sans-serif;
            letter-spacing: -1px;
        }

        .section-description {
            font-size: 20px;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Card Styles */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 24px;
            padding: 40px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 212, 255, 0.2);
        }

        .card:hover::before {
            transform: scaleX(1);
        }

        .card-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-accent);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 36px;
            color: white;
            transition: transform 0.4s ease;
        }

        .card:hover .card-icon {
            transform: rotateY(360deg);
        }

        .card-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 15px;
            font-family: 'Space Grotesk', sans-serif;
        }

        .card-description {
            color: var(--text-light);
            line-height: 1.7;
            font-size: 16px;
        }

        /* Timeline */
        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline-item {
            display: flex;
            gap: 40px;
            margin-bottom: 60px;
            align-items: center;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        @media (max-width: 768px) {
            .timeline-item,
            .timeline-item:nth-child(even) {
                flex-direction: column;
                text-align: center;
            }
        }

        .timeline-year {
            flex: 0 0 150px;
            text-align: center;
        }

        .year-badge {
            display: inline-block;
            padding: 20px 30px;
            background: var(--gradient-accent);
            color: white;
            font-size: 28px;
            font-weight: 800;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
            font-family: 'Space Grotesk', sans-serif;
        }

        .timeline-content {
            flex: 1;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 20px;
            padding: 35px;
            transition: all 0.3s ease;
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
        }

        .timeline-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
            font-family: 'Space Grotesk', sans-serif;
        }

        .timeline-description {
            color: var(--text-light);
            line-height: 1.7;
            font-size: 16px;
        }

        /* Vision Box */
        .vision-box {
            background: var(--gradient-dark);
            border-radius: 30px;
            padding: 80px 40px;
            text-align: center;
            margin-top: 80px;
            position: relative;
            overflow: hidden;
        }

        .vision-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .vision-icon {
            width: 100px;
            height: 100px;
            background: var(--gradient-accent);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 48px;
            color: white;
            position: relative;
            z-index: 1;
        }

        .vision-title {
            font-size: 48px;
            font-weight: 800;
            color: white;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
            font-family: 'Space Grotesk', sans-serif;
        }

        .vision-subtitle {
            font-size: 28px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 25px;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .vision-description {
            color: rgba(255, 255, 255, 0.7);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
            font-size: 18px;
            position: relative;
            z-index: 1;
        }

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }

        @media (min-width: 1024px) {
            .contact-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 24px;
            padding: 50px;
        }

        .form-title {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 35px;
            font-family: 'Space Grotesk', sans-serif;
        }

        .form-group {
            margin-bottom: 25px;
        }

        label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 10px;
        }

        input,
        textarea {
            width: 100%;
            padding: 16px 20px;
            background: rgba(248, 250, 252, 0.8);
            border: 2px solid rgba(226, 232, 240, 0.8);
            border-radius: 12px;
            color: var(--text);
            font-family: inherit;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        input:focus,
        textarea:focus {
            outline: none;
            border-color: var(--accent-blue);
            background: white;
        }

        textarea {
            resize: vertical;
            min-height: 140px;
        }

        .contact-info-grid {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-info-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 24px;
            padding: 40px;
        }

        .contact-info-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 25px;
            font-family: 'Space Grotesk', sans-serif;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-accent);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            flex-shrink: 0;
        }

        .contact-text h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 5px;
        }

        .contact-text p {
            color: var(--text-light);
            font-size: 15px;
        }

        /* Footer */
        footer {
            background: var(--gradient-dark);
            padding: 60px 20px;
            color: white;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
            text-align: center;
        }

        @media (min-width: 768px) {
            .footer-content {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
        }

        .footer-text p {
            margin-bottom: 8px;
            opacity: 0.8;
        }

        /* Toast */
        .toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--gradient-accent);
            color: white;
            border-radius: 14px;
            padding: 20px 30px;
            box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4);
            display: none;
            animation: slideIn 0.4s ease;
            z-index: 9999;
            font-weight: 600;
        }

        .toast.show {
            display: block;
        }

        @keyframes slideIn {
            from {
                transform: translateX(400px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Loading */
        .loading-overlay {
            position: fixed;
            inset: 0;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            animation: fadeOut 0.5s ease 1.5s forwards;
        }

        @keyframes fadeOut {
            to {
                opacity: 0;
                visibility: hidden;
            }
        }

        /* Updated Loading Animation - ICARE Logo */
        .loading-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
            animation: pulse 2s infinite;
        }

        .loading-logo-icon {
            width: 120px;
            height: 120px;
            background: var(--gradient-accent);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 48px;
            font-weight: 800;
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
        }

        .loading-logo-text {
            text-align: center;
        }

        .loading-logo-text h1 {
            font-size: 42px;
            font-weight: 800;
            font-family: 'Space Grotesk', sans-serif;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .loading-logo-text p {
            font-size: 14px;
            color: var(--text-light);
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        @keyframes pulse {
            0% {
                transform: scale(0.95);
                opacity: 0.8;
            }
            50% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(0.95);
                opacity: 0.8;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                padding: 120px 20px 60px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            section {
                padding: 80px 20px;
            }

            .cards-grid {
                grid-template-columns: 1fr;
            }

            .contact-form {
                padding: 35px;
            }

            .loading-logo-icon {
                width: 80px;
                height: 80px;
                font-size: 32px;
            }

            .loading-logo-text h1 {
                font-size: 32px;
            }
        }