        :root {
            --primary-dark: #0a1628;
            --primary-blue: #1a3a52;
            --secondary-blue: #2c5aa0;
            --accent-teal: #00a8cc;
            --accent-cyan: #00d4ff;
            --light-text: #ffffff;
            --dark-text: #0a1628;
            --gray-text: #6c757d;
            --border-light: #e9ecef;
            --gold-accent: #d4a574;
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--dark-text);
        }

        h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            font-weight: 800;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        /* Navigation */
        .navbar {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            padding: 1rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--light-text) !important;
            font-family: 'Playfair Display', serif;
            letter-spacing: 1px;
        }

        .navbar-brand i {
            color: var(--accent-cyan);
            margin-right: 0.5rem;
        }

        .nav-link {
            color: var(--light-text) !important;
            margin: 0 0.8rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--accent-cyan) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-cyan);
            transition: width 0.3s ease;
        }

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

        .btn-get-touch {
            background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-cyan) 100%);
            color: var(--light-text);
            border: none;
            padding: 0.75rem 1.8rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 168, 204, 0.3);
        }

        .btn-get-touch:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
            color: var(--light-text);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(26, 58, 82, 0.9) 100%), 
                        url('images/hero-ship.jpg') center/cover;
            background-attachment: fixed;
            color: var(--light-text);
            padding: 80px 0;
            text-align: center;
            min-height: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(0,212,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(0,168,204,0.1)"/></svg>');
            opacity: 0.5;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-subtitle {
            color: var(--accent-cyan);
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            animation: slideInDown 0.8s ease;
        }

        .hero h1 {
            color: var(--light-text);
            margin-bottom: 1.5rem;
            font-size: 4rem;
            animation: slideInUp 0.8s ease 0.2s both;
        }

        .hero h1 .accent {
            color: var(--accent-cyan);
            text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
        }

        .hero-description {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.8;
            animation: slideInUp 0.8s ease 0.4s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: slideInUp 0.8s ease 0.6s both;
        }

        .btn-primary-hero {
            background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-cyan) 100%);
            color: var(--light-text);
            border: none;
            padding: 1.1rem 2.8rem;
            font-size: 1.05rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(0, 168, 204, 0.4);
        }

        .btn-primary-hero:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0, 212, 255, 0.5);
        }

        .btn-secondary-hero {
            background-color: transparent;
            color: var(--light-text);
            border: 2px solid var(--accent-cyan);
            padding: 0.95rem 2.6rem;
            font-size: 1.05rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-secondary-hero:hover {
            background-color: var(--accent-cyan);
            color: var(--primary-dark);
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0, 212, 255, 0.5);
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            color: var(--light-text);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-10px);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--accent-cyan);
            margin-bottom: 0.5rem;
            font-family: 'Playfair Display', serif;
            text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
        }

        .stat-label {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.95);
            font-weight: 600;
        }

        /* About Section */
        .about-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            color: var(--dark-text);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-teal) 0%, var(--accent-cyan) 100%);
            border-radius: 2px;
        }

        .section-subtitle {
            color: var(--accent-teal);
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .about-content p {
            font-size: 1.1rem;
            color: var(--gray-text);
            margin-bottom: 1.8rem;
            line-height: 1.9;
        }

        .btn-learn-more {
            background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-cyan) 100%);
            color: var(--light-text);
            border: none;
            padding: 0.9rem 2.2rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-block;
            margin-top: 1.5rem;
            box-shadow: 0 4px 15px rgba(0, 168, 204, 0.3);
        }

        .btn-learn-more:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
        }

        /* Services Section */
        .services-section {
            padding: 80px 0;
            background-color: var(--light-text);
        }

        .service-card {
            background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
            padding: 2.2rem;
            border-radius: 16px;
            margin-bottom: 1.8rem;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            border-left: 5px solid var(--accent-teal);
            border-right: 1px solid rgba(0, 168, 204, 0.1);
            border-bottom: 1px solid rgba(0, 168, 204, 0.1);
            height: 100%;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 0 1px rgba(0, 168, 204, 0.1);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .service-card:hover {
            box-shadow: 0 20px 48px rgba(0, 168, 204, 0.25), 0 0 1px rgba(0, 212, 255, 0.2);
            transform: translateY(-12px);
            border-left-color: var(--accent-cyan);
            border-right-color: rgba(0, 212, 255, 0.2);
            border-bottom-color: rgba(0, 212, 255, 0.2);
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--accent-teal);
            margin-bottom: 1rem;
        }

        .service-card h3 {
            color: var(--primary-dark);
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .service-card p {
            color: var(--gray-text);
            font-size: 0.95rem;
            line-height: 1.8;
        }

        /* Global Presence Section */
        .presence-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .location-card {
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 0 1px rgba(0, 168, 204, 0.1);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            margin-bottom: 1.5rem;
            border-top: 4px solid var(--accent-teal);
            border-right: 1px solid rgba(0, 168, 204, 0.1);
            border-bottom: 1px solid rgba(0, 168, 204, 0.1);
            position: relative;
            overflow: hidden;
        }

        .location-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .location-card:hover {
            box-shadow: 0 20px 48px rgba(0, 168, 204, 0.25), 0 0 1px rgba(0, 212, 255, 0.2);
            transform: translateY(-12px);
            border-top-color: var(--accent-cyan);
            border-right-color: rgba(0, 212, 255, 0.2);
            border-bottom-color: rgba(0, 212, 255, 0.2);
        }

        .location-icon {
            font-size: 3rem;
            color: var(--accent-teal);
            margin-bottom: 1rem;
        }

        .location-card h4 {
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
            font-size: 1.4rem;
        }

        .location-card p {
            color: var(--gray-text);
            margin: 0;
            font-weight: 500;
        }

        /* Research Section */
        .research-section {
            padding: 80px 0;
            background-color: var(--light-text);
        }

        .research-item {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            padding: 2rem;
            border-radius: 16px;
            margin-bottom: 1.8rem;
            border-top: 5px solid var(--accent-teal);
            border-right: 1px solid rgba(0, 168, 204, 0.1);
            border-bottom: 1px solid rgba(0, 168, 204, 0.1);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 0 1px rgba(0, 168, 204, 0.1);
            position: relative;
            overflow: hidden;
        }

        .research-item::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .research-item:hover {
            box-shadow: 0 20px 48px rgba(0, 168, 204, 0.25), 0 0 1px rgba(0, 212, 255, 0.2);
            transform: translateY(-12px);
            border-top-color: var(--accent-cyan);
            border-right-color: rgba(0, 212, 255, 0.2);
            border-bottom-color: rgba(0, 212, 255, 0.2);
        }

        .research-type {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-cyan) 100%);
            color: var(--light-text);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 1rem;
            box-shadow: 0 4px 10px rgba(0, 168, 204, 0.3);
        }

        .research-date {
            color: var(--gray-text);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .research-item h4 {
            color: var(--primary-dark);
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            color: var(--light-text);
            padding: 60px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-section h2 {
            color: var(--light-text);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .cta-section p {
            position: relative;
            z-index: 2;
        }

        .btn-cta {
            background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-cyan) 100%);
            color: var(--light-text);
            border: none;
            padding: 1.1rem 2.8rem;
            font-size: 1.05rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(0, 168, 204, 0.4);
            position: relative;
            z-index: 2;
        }

        .btn-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0, 212, 255, 0.5);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            color: var(--light-text);
            padding: 60px 0 20px;
        }

        .footer-section h5 {
            color: var(--accent-cyan);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-section a:hover {
            color: var(--accent-cyan);
            padding-left: 5px;
        }

        .contact-info {
            margin-bottom: 1rem;
        }

        .contact-info a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: var(--accent-cyan);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--light-text);
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .social-links a:hover {
            background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-cyan) 100%);
            color: var(--light-text);
            border-color: var(--accent-cyan);
            transform: translateY(-5px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            margin-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            margin: 0 1rem;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: var(--accent-cyan);
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            .hero {
                padding: 60px 0;
                min-height: auto;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary-hero,
            .btn-secondary-hero {
                width: 100%;
                max-width: 300px;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .about-section,
            .services-section,
            .presence-section,
            .research-section {
                padding: 60px 0;
            }
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Link Styling */
        a {
            color: var(--accent-teal);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--accent-cyan);
        }

        /* Utility Classes */
        .container-lg {
            max-width: 1200px;
        }

        /* Capabilities Section */
        .capabilities-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            position: relative;
        }

        .capability-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .capability-item {
            background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
            padding: 2.2rem;
            border-radius: 16px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 0 1px rgba(0, 168, 204, 0.1);
            border: 1px solid rgba(0, 168, 204, 0.1);
            position: relative;
            overflow: hidden;
        }

        .capability-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-teal) 0%, var(--accent-cyan) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.23, 1, 0.320, 1);
        }

        .capability-item:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 48px rgba(0, 168, 204, 0.25), 0 0 1px rgba(0, 212, 255, 0.2);
            border-color: rgba(0, 212, 255, 0.2);
        }

        .capability-item:hover::before {
            transform: scaleX(1);
        }

        .capability-icon {
            font-size: 3.5rem;
            color: var(--accent-teal);
            margin-bottom: 1.2rem;
            transition: all 0.3s ease;
        }

        .capability-item:hover .capability-icon {
            color: var(--accent-cyan);
            transform: scale(1.1);
        }

        .capability-item h4 {
            color: var(--primary-dark);
            margin-bottom: 0.8rem;
            font-size: 1.3rem;
        }

        .capability-item p {
            color: var(--gray-text);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonials-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .testimonials-section::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 168, 204, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            position: relative;
            z-index: 2;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            padding: 2.2rem;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .testimonial-card:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(0, 212, 255, 0.3);
            transform: translateY(-12px);
            box-shadow: 0 20px 48px rgba(0, 168, 204, 0.25);
        }

        .testimonial-rating {
            color: var(--gold-accent);
            font-size: 1.1rem;
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }

        .testimonial-text {
            color: rgba(255, 255, 255, 0.95);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-cyan) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light-text);
            font-weight: 700;
            font-size: 1.2rem;
        }

        .testimonial-info h5 {
            color: var(--light-text);
            margin: 0;
            font-size: 0.95rem;
            font-weight: 600;
        }

        .testimonial-info p {
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
            font-size: 0.85rem;
        }

        /* Partnership Section */
        .partnership-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
        }

        .partnership-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
            align-items: center;
        }

        .partner-item {
            background: var(--light-text);
            padding: 2rem;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 150px;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            border: 1px solid rgba(0, 168, 204, 0.1);
            position: relative;
            overflow: hidden;
        }

        .partner-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 168, 204, 0.05) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .partner-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 48px rgba(0, 168, 204, 0.25);
            border-color: rgba(0, 212, 255, 0.3);
        }

        .partner-item:hover::before {
            opacity: 1;
        }

        .partner-logo {
            font-size: 2.5rem;
            color: var(--accent-teal);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .partner-item:hover .partner-logo {
            color: var(--accent-cyan);
            transform: scale(1.1);
        }

        /* Premium Divider */
        .premium-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(0, 168, 204, 0.3) 50%, transparent 100%);
            margin: 3rem 0;
        }

        /* Enhanced Section Title */
        .section-title-premium {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title-premium h2 {
            color: var(--dark-text);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            font-size: 2.8rem;
        }

        .section-title-premium h2::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-teal) 0%, var(--accent-cyan) 100%);
            border-radius: 2px;
        }

        .section-title-premium h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-teal) 0%, var(--accent-cyan) 100%);
            border-radius: 2px;
        }

        .section-title-premium p {
            color: var(--gray-text);
            font-size: 1.05rem;
            max-width: 600px;
            margin: 1.5rem auto 0;
            line-height: 1.8;
        }
