* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #1C1C1E;
            color: #ffffff;
            overflow-x: hidden;
        }

        /* Animated gradient background */
        .bg-gradient {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1C1C1E 0%, #0a0a0a 50%, #1C1C1E 100%);
            z-index: -1;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(28, 28, 30, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s;
            border-bottom: 1px solid rgba(0, 229, 255, 0.1);
        }

        nav.scrolled {
            padding: 15px 50px;
            background: rgba(28, 28, 30, 0.95);
            border-bottom: 1px solid rgba(0, 229, 255, 0.2);
        }

        @media (max-width: 1024px) {
            nav {
                padding: 15px 30px;
            }
            nav.scrolled {
                padding: 12px 30px;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 12px 20px;
            }
            nav.scrolled {
                padding: 10px 20px;
            }
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0;
        }

        .logo img {
            height: 40px;
            width: auto;
            filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.5));
            transition: all 0.3s;
        }

        @media (max-width: 768px) {
            .logo img {
                height: 32px;
            }
        }

        .logo:hover img {
            filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.8));
        }

        .nav-links {
            display: flex;
            gap: 35px;
            list-style: none;
        }

        @media (max-width: 1024px) {
            .nav-links {
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            font-size: 15px;
        }

        @media (max-width: 1200px) {
            .nav-links a {
                font-size: 14px;
            }
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #00E5FF;
            box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
            transition: width 0.3s;
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .cta-button {
            padding: 12px 28px;
            background: #00E5FF;
            border: none;
            border-radius: 25px;
            color: #1C1C1E;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
            font-size: 15px;
            white-space: nowrap;
        }

        @media (max-width: 1024px) {
            .cta-button {
                padding: 10px 20px;
                font-size: 14px;
            }
        }

        @media (max-width: 768px) {
            .cta-button {
                padding: 10px 16px;
                font-size: 13px;
            }
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 229, 255, 0.5);
            background: #00F5FF;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 100px 20px 20px 20px;
            position: relative;
        }

        @media (max-width: 768px) {
            .hero {
                min-height: auto;
                padding: 80px 20px 40px 20px;
            }
        }

        .hero-content {
            /* max-width: 900px; */
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: 72px;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 56px;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
                margin-bottom: 15px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 28px;
            }
        }

        .gradient-text {
            color: #00E5FF;
            text-shadow: 0 0 30px rgba(0, 229, 255, 0.6);
            white-space: nowrap;
            text-align: center;
        }

        .hero p {
            font-size: 22px;
            color: #b8b8b8;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        @media (max-width: 1024px) {
            .hero p {
                font-size: 18px;
            }
        }

        @media (max-width: 768px) {
            .hero p {
                font-size: 15px;
                margin-bottom: 30px;
            }
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .primary-btn, .secondary-btn {
            padding: 16px 40px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        }

        .primary-btn {
            background: #00E5FF;
            color: #1C1C1E;
            box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
        }

        .primary-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 229, 255, 0.6);
            background: #00F5FF;
        }

        .secondary-btn {
            background: transparent;
            color: #00E5FF;
            border: 2px solid #00E5FF;
        }

        .secondary-btn:hover {
            background: rgba(0, 229, 255, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
        }

        /* Section Styles */
        section {
            padding: 100px 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 48px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 20px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: #b8b8b8;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Focus Areas Grid */
        .focus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .focus-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(0, 229, 255, 0.2);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.4s;
            cursor: pointer;
        }

        .focus-card:hover {
            transform: translateY(-10px);
            background: rgba(0, 229, 255, 0.05);
            border-color: #00E5FF;
            box-shadow: 0 20px 60px rgba(0, 229, 255, 0.3);
        }

        .focus-icon {
            width: 60px;
            height: 60px;
            background: rgba(0, 229, 255, 0.1);
            border: 2px solid #00E5FF;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
            transition: all 0.3s;
        }

        .focus-card:hover .focus-icon {
            background: #00E5FF;
            box-shadow: 0 0 30px rgba(0, 229, 255, 0.6);
            transform: scale(1.1);
        }

        .focus-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .focus-card p {
            color: #b8b8b8;
            line-height: 1.6;
        }

        /* Solutions Dropdown */
        .solutions-container {
            margin-top: 50px;
        }

        .solution-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(0, 229, 255, 0.2);
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .solution-header {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .solution-header:hover {
            background: rgba(0, 229, 255, 0.05);
        }

        .solution-header h3 {
            font-size: 22px;
            color: #ffffff;
        }

        .solution-toggle {
            font-size: 24px;
            transition: transform 0.3s;
        }

        .solution-item.active .solution-toggle {
            transform: rotate(180deg);
        }

        .solution-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
        }

        .solution-item.active .solution-content {
            max-height: 500px;
        }

        .solution-details {
            padding: 0 30px 25px 30px;
            color: #b8b8b8;
            line-height: 1.8;
        }

        .impact-tag {
            display: inline-block;
            background: #00E5FF;
            color: #1C1C1E;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            margin-top: 15px;
            font-weight: 700;
            box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
        }

        /* Case Studies */
        .case-studies {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .case-card {
            background: rgba(0, 229, 255, 0.03);
            border: 1px solid rgba(0, 229, 255, 0.2);
            border-radius: 20px;
            padding: 35px;
            transition: all 0.4s;
        }

        .case-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 229, 255, 0.3);
            border-color: #00E5FF;
        }

        .case-label {
            font-size: 14px;
            color: #00E5FF;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .case-card h4 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .case-card p {
            color: #b8b8b8;
            line-height: 1.6;
            font-size: 15px;
            margin-bottom: 20px;
        }

        .metrics {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .metric {
            color: #00E5FF;
            font-weight: 700;
            font-size: 15px;
        }

        /* Contact Form */
        .contact-section {
            background: rgba(0, 229, 255, 0.03);
            border: 1px solid rgba(0, 229, 255, 0.2);
            border-radius: 30px;
            padding: 80px 50px;
            margin-top: 50px;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #ffffff;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: #ffffff;
            font-size: 16px;
            transition: all 0.3s;
        }

        .form-group select option {
            background: #1C1C1E;
            color: #ffffff;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #00E5FF;
            background: rgba(0, 229, 255, 0.05);
            box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: #00E5FF;
            border: none;
            border-radius: 10px;
            color: #1C1C1E;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(0, 229, 255, 0.6);
            background: #00F5FF;
        }

        .submit-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .spinner {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 3px solid rgba(28, 28, 30, 0.3);
            border-radius: 50%;
            border-top-color: #1C1C1E;
            animation: spin 0.6s linear infinite;
            margin-right: 8px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 40px 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #b8b8b8;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            section {
                padding: 60px 20px;
            }

            .section-title {
                font-size: 36px;
            }

            .focus-grid {
                grid-template-columns: 1fr;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 12px;
            }

            .contact-section {
                padding: 50px 20px;
            }
        }

        @media (max-width: 480px) {
            section {
                padding: 40px 15px;
            }

            .section-title {
                font-size: 28px;
            }

            .primary-btn, .secondary-btn {
                padding: 12px 24px;
                font-size: 14px;
            }
        }

        /* Success Message */
        .success-message {
            display: none;
            background: #00E5FF;
            color: #1C1C1E;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            margin-top: 20px;
            font-weight: 700;
            box-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
        }

        .success-message.show {
            display: block;
            animation: fadeInUp 0.5s ease-out;
        }
