  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0047AB;
            --secondary: #6B46C1;
            --accent: #FFC107;
            --dark-bg: #0F1419;
            --light-bg: #1a1f2e;
            --text-light: #FFFFFF;
            --text-muted: #B0B9C1;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--dark-bg);
            color: var(--text-light);
            overflow-x: hidden;
        }

        section {
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, rgba(10, 16, 28, 0.98), rgba(15, 20, 25, 0.98));
        }

        section::before,
        section::after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
        }

        section::before {
            background: radial-gradient(circle at 18% 22%, rgba(0, 168, 232, 0.16), transparent 18%),
                        radial-gradient(circle at 84% 16%, rgba(255, 193, 7, 0.12), transparent 16%),
                        radial-gradient(circle at 52% 78%, rgba(107, 70, 193, 0.10), transparent 22%);
            opacity: 0.92;
            filter: blur(24px);
            transform: scale(1.12);
            animation: fluidGlow 28s ease-in-out infinite alternate;
        }

        section::after {
            background: radial-gradient(circle at 28% 68%, rgba(0, 212, 255, 0.10), transparent 22%),
                        radial-gradient(circle at 70% 30%, rgba(255, 193, 7, 0.08), transparent 18%),
                        radial-gradient(circle at 48% 40%, rgba(255, 255, 255, 0.05), transparent 20%);
            opacity: 0.74;
            filter: blur(16px);
            transform: scale(1.05);
            animation: fluidSwell 24s ease-in-out infinite alternate;
        }

        section > * {
            position: relative;
            z-index: 1;
        }

        @keyframes fluidGlow {
            0% {
                transform: translate(-12px, -8px) scale(1.09);
            }
            50% {
                transform: translate(14px, 12px) scale(1.08);
            }
            100% {
                transform: translate(-10px, 16px) scale(1.1);
            }
        }

        @keyframes fluidSwell {
            0% {
                transform: translate(0, 0) scale(1.03);
                opacity: 0.68;
            }
            50% {
                transform: translate(12px, -14px) scale(1.07);
                opacity: 0.62;
            }
            100% {
                transform: translate(-8px, 12px) scale(1.05);
                opacity: 0.7;
            }
        }

        .splash-screen {
            position: fixed;
            inset: 0;
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(circle at top, rgba(0, 212, 255, 0.22), rgba(10, 16, 28, 0.98) 65%), linear-gradient(180deg, rgba(0, 71, 171, 0.95), rgba(10, 16, 28, 0.98));
            overflow: hidden;
            opacity: 1;
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .splash-screen.hide {
            opacity: 0;
            transform: translateY(-30px);
            pointer-events: none;
        }

        .immersive-scroll-layer {
            position: fixed;
            inset: 0;
            z-index: 50;
            pointer-events: none;
            overflow: hidden;
            opacity: 0.22;
            mix-blend-mode: screen;
        }

        .immersive-layer {
            position: absolute;
            width: 220%;
            height: 220%;
            top: -10%;
            left: -10%;
            background: radial-gradient(circle, rgba(0, 168, 232, 0.18), transparent 20%);
            filter: blur(28px);
            transform: translate3d(0, 0, 0);
        }

        .immersive-layer.layer-2 {
            background: radial-gradient(circle, rgba(255, 193, 7, 0.14), transparent 18%);
            top: -20%;
            left: 15%;
            filter: blur(32px);
            opacity: 0.75;
        }

        .immersive-layer.layer-3 {
            background: radial-gradient(circle, rgba(108, 54, 255, 0.12), transparent 18%);
            top: 10%;
            left: 50%;
            filter: blur(36px);
            opacity: 0.7;
        }

        .immersive-layer::before,
        .immersive-layer::after {
            content: '';
            position: absolute;
            width: 180%;
            height: 180%;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 65%);
            opacity: 0.35;
            top: 10%;
            left: 10%;
            transform: translate3d(0,0,0);
        }

        .splash-overlay {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 30%), linear-gradient(135deg, rgba(0, 71, 171, 0.2), rgba(0, 212, 255, 0.08));
            mix-blend-mode: screen;
            opacity: 0.95;
            pointer-events: none;
        }

        .splash-waves {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            gap: 1rem;
            pointer-events: none;
            z-index: 2;
        }

        .splash-waves span {
            width: 140px;
            height: 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
            position: relative;
            animation: waveFloat 3s ease-in-out infinite;
        }

        .splash-waves span:nth-child(2) {
            width: 180px;
            animation-delay: 0.2s;
            opacity: 0.82;
        }

        .splash-waves span:nth-child(3) {
            width: 220px;
            animation-delay: 0.4s;
            opacity: 0.65;
        }

        .splash-waves span:nth-child(4) {
            width: 160px;
            animation-delay: 0.6s;
            opacity: 0.75;
        }

        .splash-waves span::before,
        .splash-waves span::after {
            content: '';
            position: absolute;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            bottom: 100%;
            left: 10%;
            opacity: 0.65;
            animation: bubbleRise 4s ease-in-out infinite;
        }

        .splash-waves span::after {
            left: auto;
            right: 10%;
            width: 14px;
            height: 14px;
            animation-delay: 0.8s;
        }

        .splash-content {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 3rem 2rem;
            border-radius: 24px;
            backdrop-filter: blur(20px);
            background: rgba(8, 16, 32, 0.65);
            box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
            animation: splashFadeIn 1s ease-out both;
        }

        .splash-logo {
            width: 180px;
            max-width: 240px;
            display: block;
            margin: 0 auto 1.5rem;
            animation: splashPulse 1.8s ease-in-out infinite;
            position: relative;
        }

        .splash-logo::after {
            content: '';
            position: absolute;
            inset: -18px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.45), transparent 45%);
            filter: blur(14px);
            opacity: 0.7;
            animation: glowRing 2.4s ease-in-out infinite;
            z-index: -1;
        }

        .splash-text {
            color: rgba(255, 255, 255, 0.92);
            font-size: 1.1rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            font-weight: 700;
            opacity: 0.95;
        }

        @keyframes splashFadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes splashPulse {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        @keyframes waveFloat {
            0%, 100% {
                transform: translateX(0) translateY(0);
            }
            50% {
                transform: translateX(10px) translateY(-12px);
            }
        }

        @keyframes bubbleRise {
            0% {
                transform: translateY(0) scale(0.9);
                opacity: 0.7;
            }
            50% {
                transform: translateY(-36px) scale(1.1);
                opacity: 0.35;
            }
            100% {
                transform: translateY(-60px) scale(0.9);
                opacity: 0;
            }
        }

        @keyframes glowRing {
            0%, 100% {
                transform: scale(1);
                opacity: 0.7;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.4;
            }
        }

        /* ===== NAVIGATION ===== */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(15, 20, 25, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 193, 7, 0.1);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            width: 200px;
            height: 60px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-container:hover {
            transform: scale(1.1);
            filter: drop-shadow(0 0 30px rgba(0, 71, 171, 1));
        }

        .logo-svg {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 5px 15px rgba(0, 71, 171, 0.3));
            transition: all 0.3s ease;
        }

        .logo-container:hover .logo-svg {
            filter: drop-shadow(0 10px 35px rgba(0, 71, 171, 0.7));
        }

        .logo-img {
            width: 100%;
            height: auto;
            max-height: 60px;
            object-fit: contain;
            filter: drop-shadow(0 5px 15px rgba(0, 71, 171, 0.3));
            transition: all 0.3s ease;
        }

        .logo-container:hover .logo-img {
            filter: drop-shadow(0 10px 35px rgba(0, 71, 171, 0.7));
        }

        .logo-main-text {
            animation: mainTextGlow 3s ease-in-out infinite, mainTextWave 4s ease-in-out infinite;
            font-family: 'Arial', sans-serif;
        }

        .logo-tagline {
            animation: taglineShimmer 3s ease-in-out infinite;
            font-family: 'Arial', sans-serif;
        }

        .wave-element {
            animation: waveFlow 3s ease-in-out infinite, waveFloat 2s ease-in-out infinite;
        }

        .wave-element path {
            animation: waveColor 4s ease-in-out infinite;
            filter: drop-shadow(0 2px 4px rgba(0, 168, 232, 0.4));
        }

        @keyframes mainTextGlow {
            0%, 100% {
                filter: drop-shadow(0 0 5px rgba(0, 71, 171, 0.3));
            }
            50% {
                filter: drop-shadow(0 0 20px rgba(0, 71, 171, 0.8)) drop-shadow(0 0 30px rgba(0, 212, 255, 0.4));
            }
        }

        @keyframes mainTextWave {
            0%, 100% {
                letter-spacing: 8px;
                font-weight: 900;
            }
            50% {
                letter-spacing: 10px;
                font-weight: 900;
            }
        }

        @keyframes taglineShimmer {
            0%, 100% {
                opacity: 0.8;
                letter-spacing: 3px;
            }
            50% {
                opacity: 1;
                letter-spacing: 4px;
            }
        }

        @keyframes waveFlow {
            0%, 100% {
                transform: translateX(0) scaleY(1);
            }
            50% {
                transform: translateX(2px) scaleY(1.1);
            }
        }

        @keyframes waveFloat {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-3px);
            }
        }

        @keyframes waveColor {
            0%, 100% {
                stroke-opacity: 0.6;
            }
            50% {
                stroke-opacity: 1;
            }
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: color 0.3s;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* ===== HAMBURGER MENU ===== */
        .hamburger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
            z-index: 1001;
        }

        .hamburger-menu span {
            width: 28px;
            height: 3px;
            background: var(--text-light);
            border-radius: 3px;
            transition: all 0.3s ease;
            display: block;
        }

        .hamburger-menu.active span:nth-child(1) {
            transform: rotate(45deg) translate(10px, 10px);
        }

        .hamburger-menu.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger-menu.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* ===== TABLE OF CONTENTS SECTION ===== */
        .table-of-contents {
            position: relative;
            padding: 6rem 4rem;
            background: linear-gradient(135deg, rgba(0, 71, 171, 0.1) 0%, rgba(107, 70, 193, 0.1) 100%);
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .toc-background {
            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 1200 600"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(0,71,171,0.05);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(107,70,193,0.05);stop-opacity:1" /></linearGradient></defs><rect width="1200" height="600" fill="url(%23grad)"/></svg>');
            opacity: 0.5;
        }

        .toc-container {
            position: relative;
            z-index: 10;
            max-width: 900px;
            width: 100%;
        }

        .toc-title {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 2rem;
            text-align: center;
            letter-spacing: -1px;
        }

        .toc-title span {
            background: linear-gradient(135deg, var(--accent), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .toc-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .toc-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, rgba(0, 71, 171, 0.1), rgba(107, 70, 193, 0.1));
            border: 1px solid rgba(255, 193, 7, 0.2);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        .toc-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
            transition: left 0.6s;
        }

        .toc-item:hover {
            transform: translateX(10px) translateY(-5px);
            border-color: var(--accent);
            box-shadow: 0 15px 35px rgba(255, 193, 7, 0.2);
            background: linear-gradient(135deg, rgba(0, 71, 171, 0.15), rgba(107, 70, 193, 0.15));
        }

        .toc-item:hover::before {
            left: 100%;
        }

        .toc-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            font-weight: 800;
            font-size: 1.3rem;
            border-radius: 50%;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(0, 71, 171, 0.3);
        }

        .toc-text {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-light);
            transition: all 0.3s;
        }

        .toc-item:hover .toc-text {
            color: var(--accent);
        }

        /* ===== LEADING THE WAY SECTION ===== */
        .leading-the-way {
            position: relative;
            background: var(--dark-bg);
            padding: 0;
            overflow: hidden;
        }

        .ltw-header {
            background: linear-gradient(135deg, rgba(0, 71, 171, 0.15), rgba(0, 212, 255, 0.15));
            padding: 4rem 4rem 3rem;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 3rem;
        }

        .ltw-compass {
            width: 150px;
            height: 150px;
            flex-shrink: 0;
            animation: float3D 6s ease-in-out infinite;
        }

        .ltw-compass svg {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0 5px 15px rgba(0, 168, 232, 0.3));
        }

        .ltw-title {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--secondary);
            line-height: 1.1;
            letter-spacing: -2px;
        }

        .ltw-divider {
            height: 5px;
            background: linear-gradient(90deg, transparent, #00A8E8, #00D4FF, transparent);
            width: 100%;
        }

        .ltw-content {
            padding: 3rem 4rem;
            position: relative;
        }

        .ltw-main-message {
            margin-bottom: 2rem;
        }

        .ltw-main-message p {
            font-size: 1.2rem;
            color: #00A8E8;
            line-height: 1.8;
            font-weight: 500;
        }

        .ltw-main-message strong {
            color: #00D4FF;
            font-weight: 700;
        }

        .ltw-description {
            margin-bottom: 2rem;
        }

        .ltw-description p {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.8;
            text-align: justify;
        }

        .ltw-badge {
            position: absolute;
            bottom: -30px;
            right: 3rem;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #00A8E8, #00D4FF);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            box-shadow: 0 10px 30px rgba(0, 168, 232, 0.3);
        }

        /* Mobile Navigation Menu */
        .mobile-menu {
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            background: rgba(15, 20, 25, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 193, 7, 0.1);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            z-index: 1002;
        }

        .mobile-menu.active {
            max-height: 400px;
        }

        .mobile-nav-links {
            list-style: none;
            padding: 1rem 0;
            display: flex;
            flex-direction: column;
        }

        .mobile-nav-links li {
            padding: 1rem 2rem;
            border-bottom: 1px solid rgba(255, 193, 7, 0.1);
        }

        .mobile-nav-links li:last-child {
            border-bottom: none;
        }

        .mobile-nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            display: block;
            transition: all 0.3s;
        }

        .mobile-nav-links a:hover {
            color: var(--accent);
            transform: translateX(10px);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            padding: 0 4rem;
            margin-top: 60px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(0, 71, 171, 0.1) 0%, rgba(107, 70, 193, 0.1) 100%);
        }

        .hero-particle-field {
            position: absolute;
            inset: 0;
            z-index: 2;
            pointer-events: none;
            overflow: hidden;
        }

        .hero-particle-field .hero-particle {
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            pointer-events: none;
            mix-blend-mode: screen;
            opacity: 0.85;
            box-shadow: 0 0 18px rgba(255, 255, 255, 0.25);
            will-change: transform, opacity;
        }

        /* 3D Background Carousel */
        .hero-3d-bg {
            position: absolute;
            top: 0;
            right: -10%;
            width: 60%;
            height: 100%;
            perspective: 1200px;
            z-index: 1;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            animation: rotateCarousel 20s infinite linear;
        }

        @keyframes rotateCarousel {
            from {
                transform: rotateY(0deg);
            }
            to {
                transform: rotateY(360deg);
            }
        }

        .carousel-item {
            position: absolute;
            width: 400px;
            height: 500px;
            border: 2px solid rgba(255, 193, 7, 0.4);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            background: linear-gradient(135deg, rgba(0, 71, 171, 0.3), rgba(107, 70, 193, 0.3));
            display: flex;
            align-items: center;
            justify-content: center;
            left: 50%;
            top: 50%;
            transform-style: preserve-3d;
            margin-left: -200px;
            margin-top: -250px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .carousel-item-1 {
            transform: rotateY(0deg) translateZ(300px);
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(0, 71, 171, 0.25));
        }

        .carousel-item-2 {
            transform: rotateY(90deg) translateZ(300px);
            background: linear-gradient(135deg, rgba(0, 71, 171, 0.25), rgba(107, 70, 193, 0.2));
        }

        .carousel-item-3 {
            transform: rotateY(180deg) translateZ(300px);
            background: linear-gradient(135deg, rgba(107, 70, 193, 0.25), rgba(255, 193, 7, 0.1));
        }

        .carousel-item-4 {
            transform: rotateY(270deg) translateZ(300px);
            background: linear-gradient(135deg, rgba(0, 71, 171, 0.2), rgba(255, 193, 7, 0.15));
        }

        .carousel-content {
            text-align: center;
            color: white;
            z-index: 10;
        }

        .hero-3d-bg .carousel-content img,
        .hero-3d-bg .carousel-content .company-logo {
            max-width: 500px;
            max-height: 500px;
            width: auto;
            height: auto;
            display: inline-block;
            object-fit: contain;
            margin: 0 auto;
            padding: 0.5rem;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
        }

        .carousel-content h4 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--accent);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .carousel-content p {
            font-size: 1.1rem;
            color: var(--text-light);
            opacity: 0.9;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
        }

        .hero-content {
            z-index: 10;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1rem;
            letter-spacing: -2px;
        }

        .hero-content h1 span {
            background: linear-gradient(135deg, var(--accent), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 1.3rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            max-width: 500px;
            line-height: 1.6;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 71, 171, 0.3);
        }

        .scroll-to-top {
            position: fixed;
            right: 24px;
            bottom: 24px;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            border: none;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.98), rgba(0, 71, 171, 0.95));
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1500;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
            box-shadow: 0 20px 50px rgba(0, 212, 255, 0.22);
            backdrop-filter: blur(12px);
            overflow: hidden;
        }

        .scroll-to-top::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: radial-gradient(circle at top, rgba(255, 255, 255, 0.35), transparent 40%);
            opacity: 0.45;
            transform: scale(0.96);
            transition: transform 0.35s ease;
        }

        .scroll-to-top:hover::before {
            transform: scale(1.08);
        }

        .scroll-to-top span {
            position: relative;
            font-size: 1.5rem;
            font-weight: 700;
            text-shadow: 0 10px 16px rgba(0, 0, 0, 0.22);
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            animation: pulseFloat 2.6s ease-in-out infinite;
        }

        @keyframes pulseFloat {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-6px);
            }
        }

        /* 3D Canvas Area */
        .hero-canvas {
            position: relative;
            height: 500px;
            perspective: 1200px;
        }

        .floating-card {
            position: absolute;
            width: 300px;
            height: 400px;
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(0, 71, 171, 0.2));
            border: 2px solid rgba(255, 193, 7, 0.3);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            padding: 2rem;
            transform-style: preserve-3d;
            cursor: pointer;
        }

        .floating-card h3 {
            color: var(--accent);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .floating-card p {
            color: var(--text-muted);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* ===== ABOUT SECTION ===== */
        .about {
            padding: 6rem 4rem;
            position: relative;
            overflow: hidden;
            background: radial-gradient(circle at 20% 20%, rgba(0, 168, 232, 0.18), transparent 18%),
                        radial-gradient(circle at 80% 15%, rgba(255, 193, 7, 0.14), transparent 16%),
                        radial-gradient(circle at 50% 82%, rgba(107, 70, 193, 0.12), transparent 24%),
                        linear-gradient(180deg, rgba(10, 16, 28, 0.98), rgba(15, 20, 25, 0.98));
        }

        .about::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 15% 20%, rgba(0, 212, 255, 0.22), transparent 24%),
                        radial-gradient(circle at 78% 18%, rgba(255, 193, 7, 0.18), transparent 20%),
                        radial-gradient(circle at 55% 75%, rgba(107, 70, 193, 0.15), transparent 26%);
            opacity: 0.85;
            filter: blur(32px);
            transform: scale(1.2);
            animation: fluidBgShift 20s ease-in-out infinite alternate;
            pointer-events: none;
            z-index: 0;
        }

        .about::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 65%, rgba(0, 168, 232, 0.12), transparent 20%),
                        radial-gradient(circle at 70% 25%, rgba(255, 193, 7, 0.1), transparent 14%),
                        radial-gradient(circle at 45% 40%, rgba(255, 255, 255, 0.05), transparent 18%);
            opacity: 0.7;
            filter: blur(18px);
            animation: fluidBgFloat 24s ease-in-out infinite alternate;
            pointer-events: none;
            z-index: 0;
        }

        .about-grid,
        .about-text {
            position: relative;
            z-index: 1;
        }

        @keyframes fluidBgShift {
            0% {
                transform: translate(-12px, -10px) scale(1.22);
            }
            50% {
                transform: translate(16px, 18px) scale(1.18);
            }
            100% {
                transform: translate(-14px, 22px) scale(1.2);
            }
        }

        @keyframes fluidBgFloat {
            0% {
                transform: translate(0, 0) scale(1.03);
                opacity: 0.7;
            }
            50% {
                transform: translate(10px, -12px) scale(1.05);
                opacity: 0.65;
            }
            100% {
                transform: translate(-8px, 14px) scale(1.02);
                opacity: 0.72;
            }
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), transparent);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            align-items: center;
            justify-items: center;
            max-width: 1100px;
            margin: 0 auto;
        }

        .about-text {
            max-width: 860px;
            margin: 0 auto;
            text-align: center;
            animation: aboutFadeIn 1.2s ease-out both;
            position: relative;
        }

        .about-text h2 {
            font-size: 2.6rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
            text-align: center;
        }

        .about-text p {
            color: var(--text-muted);
            line-height: 1.85;
            margin: 0 auto 1.5rem;
            font-size: 1.05rem;
            text-align: justify;
            max-width: 760px;
        }

        .features-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .feature-item {
            padding: 1.5rem;
            background: rgba(255, 193, 7, 0.05);
            border-left: 4px solid var(--accent);
            border-radius: 8px;
            transition: all 0.3s;
        }

        .feature-item:hover {
            background: rgba(255, 193, 7, 0.1);
            transform: translateX(10px);
        }

        .feature-item h4 {
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .feature-item p {
            font-size: 0.95rem;
            margin: 0;
        }

        /* ===== SERVICES SECTION ===== */
        .services {
            padding: 6rem 4rem;
            background: var(--dark-bg);
        }

        .services-detailed-immersive {
            position: relative;
            overflow: hidden;
        }

        .particle-field {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .particle-field .particle {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            will-change: transform, opacity;
            mix-blend-mode: screen;
            box-shadow: 0 0 18px rgba(255, 255, 255, 0.25);
            opacity: 0.85;
        }

        .services-detailed {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
            position: relative;
            z-index: 1;
        }

        .services-column {
            background: linear-gradient(135deg, rgba(0, 71, 171, 0.05), rgba(107, 70, 193, 0.05));
            padding: 2.5rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 193, 7, 0.2);
        }

        .services-column-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .services-column-icon {
            font-size: 1.8rem;
        }

        .service-detail-item {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 193, 7, 0.1);
            transition: all 0.3s;
        }

        .service-detail-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .service-detail-item:hover {
            transform: translateX(10px);
        }

        .services-note {
            margin-top: 31.25rem;
            padding: 1rem 1.25rem;
            background: linear-gradient(177deg, #000000 0%, #005667 100%);
            color: #ffffff;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.06);
            box-shadow: 0 10px 30px rgba(0, 168, 232, 0.08);
            font-size: 0.98rem;
            line-height: 1.6;
        }

        .service-detail-icon {
            font-size: 2.5rem;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 50px;
        }

        .service-detail-icon img {
            width: 50px;
            height: auto;
            display: block;
            object-fit: contain;
        }

        .service-detail-content h4 {
            font-size: 1.1rem;
            color: var(--accent);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .service-detail-content p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
            text-align: justify;
        }

        /* ===== SURVEY & CERTIFICATION SECTION ===== */
        .survey-certification {
            padding: 6rem 4rem;
            background: var(--light-bg);
            position: relative;
            overflow: hidden;
        }

        .survey-container {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .survey-visual {
            perspective: 1200px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .survey-card-3d {
            position: relative;
            width: 100%;
            
            aspect-ratio: 9/12;
            transform-style: preserve-3d;
            animation: float3D 6s ease-in-out infinite;
        }

        @keyframes float3D {
            0%, 100% {
                transform: translateY(0px) rotateX(5deg) rotateY(-5deg);
            }
            50% {
                transform: translateY(-30px) rotateX(-5deg) rotateY(5deg);
            }
        }

        @keyframes aboutFadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .survey-image-wrapper {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 248, 255, 0.9));
            border-radius: 20px;
            
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border: 3px solid rgba(255, 255, 255, 0.5);
        }

        .survey-image {
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .survey-main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.25), 0 30px 80px rgba(0, 0, 0, 0.35);
        }

        /* Surveyor Figure - Simple Geometric Representation */
        .surveyor-figure {
            display: none;
        }

        .head {
            position: absolute;
            width: 30px;
            height: 30px;
            background: #E8B4A8;
            border-radius: 50%;
            top: 10px;
            left: 15px;
        }

        .body {
            position: absolute;
            width: 35px;
            height: 50px;
            background: #FFFFFF;
            border: 2px solid #0047AB;
            top: 45px;
            left: 12px;
            border-radius: 5px;
        }

        .arm-left {
            position: absolute;
            width: 35px;
            height: 12px;
            background: #E8B4A8;
            top: 50px;
            left: -5px;
            transform: rotate(-25deg);
            border-radius: 6px;
        }

        .arm-right {
            position: absolute;
            width: 35px;
            height: 12px;
            background: #E8B4A8;
            top: 50px;
            right: -20px;
            transform: rotate(25deg);
            border-radius: 6px;
        }

        .leg-left {
            position: absolute;
            width: 12px;
            height: 45px;
            background: #333333;
            bottom: 0;
            left: 18px;
            border-radius: 6px;
        }

        .leg-right {
            position: absolute;
            width: 12px;
            height: 45px;
            background: #333333;
            bottom: 0;
            right: 18px;
            border-radius: 6px;
        }

        /* Equipment */
        .equipment {
            position: absolute;
            right: 10%;
            top: 20%;
        }

        .device-box {
            width: 70px;
            height: 90px;
            background: linear-gradient(135deg, #00D4FF 0%, #00A8E8 100%);
            border-radius: 8px;
            border: 2px solid #0047AB;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 168, 232, 0.3);
            animation: pulse3D 2s ease-in-out infinite;
        }

        @keyframes pulse3D {
            0%, 100% {
                box-shadow: 0 10px 30px rgba(0, 168, 232, 0.3);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 10px 40px rgba(0, 168, 232, 0.6);
                transform: scale(1.05);
            }
        }

        .device-box::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            width: 50px;
            height: 30px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 4px;
        }

        .cables {
            position: absolute;
            width: 4px;
            height: 80px;
            background: linear-gradient(90deg, #0047AB, #00D4FF);
            left: 30px;
            top: 90px;
            border-radius: 2px;
        }

        .survey-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, rgba(0, 71, 171, 0.9), rgba(0, 212, 255, 0.9));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            font-weight: 800;
            color: white;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            border: 3px solid rgba(255, 255, 255, 0.5);
        }

        /* Survey Content */
        .survey-content {
            color: var(--text-light);
            max-width: 720px;
        }

        .survey-title {
            font-size: 2.8rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            color: var(--text-light);
        }

        .survey-title span {
            display: block;
            color: var(--accent);
        }

        .survey-description {
            margin-bottom: 2rem;
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-muted);
        }

        .survey-description p {
            margin: 0;
        }

        .survey-description strong {
            font-weight: 700;
            color: var(--text-light);
        }

        .survey-services {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .survey-service-item {
            display: grid;
            grid-template-columns: 60px 1fr;
            gap: 1.5rem;
            padding: 1.5rem;
            background: rgba(0, 71, 171, 0.05);
            border-left: 4px solid var(--accent);
            border-radius: 8px;
            transition: all 0.3s;
        }

        .survey-service-item:hover {
            background: rgba(0, 71, 171, 0.1);
            transform: translateX(10px);
            border-left-color: var(--accent);
        }

        .service-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
            display: flex;
            align-items: center;
        }

        .service-info h4 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
            color: var(--accent);
        }

        .service-info p {
            font-size: 0.95rem;
            margin: 0.5rem 0;
            color: var(--text-muted);
        }

        .service-list {
            list-style: none;
            padding: 0.5rem 0 0.5rem 1.5rem;
            margin: 0.5rem 0;
        }

        .service-list li {
            position: relative;
            padding-left: 1rem;
            margin-bottom: 0.3rem;
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .service-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }

        .service-detail {
            margin-top: 0.5rem;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* ===== TRAINING SECTION ===== */
        .training {
            padding: 6rem 4rem;
            background: linear-gradient(135deg, rgba(0, 71, 171, 0.05) 0%, rgba(107, 70, 193, 0.05) 100%);
        }

        .training-tabs {
            display: none;
        }

        .tab-button {
            display: none;
        }

        .courses-grid {
            display: none;
        }

        /* NEW TRAINING CONTENT STYLES */
        .training-content {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            margin-top: 2rem;
        }

        .training-category {
            background: linear-gradient(135deg, rgba(0, 71, 171, 0.08), rgba(107, 70, 193, 0.08));
            padding: 2.5rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 193, 7, 0.2);
            transition: all 0.3s;
        }

        .training-category:hover {
            border-color: rgba(255, 193, 7, 0.4);
            background: linear-gradient(135deg, rgba(0, 71, 171, 0.12), rgba(107, 70, 193, 0.12));
            transform: translateY(-5px);
        }

        .training-category-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .category-icon {
            font-size: 1.8rem;
            display: flex;
            align-items: center;
        }

        .courses-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
        }

        .course-item {
            background: var(--light-bg);
            padding: 1.2rem;
            border-radius: 10px;
            border-left: 4px solid var(--accent);
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s;
        }

        .course-item:hover {
            transform: translateX(8px);
            box-shadow: 0 8px 20px rgba(255, 193, 7, 0.15);
            border-left-color: var(--text-light);
        }

        .course-badge {
            display: inline-block;
            padding: 0.4rem 0.8rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .course-name {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* ===== CERTIFICATIONS SECTION ===== */
        .certifications {
            padding: 6rem 4rem;
            background: var(--light-bg);
        }

        .cert-carousel {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .cert-item {
            background: var(--dark-bg);
            padding: 2rem;
            border-radius: 15px;
            border: 2px solid rgba(255, 193, 7, 0.2);
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
            min-height: 220px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .cert-item h4 {
            margin-bottom: 0.8rem;
            font-size: 1rem;
        }

        .cert-item p {
            margin: 0;
        }

        .cert-item:hover {
            border-color: var(--accent);
            transform: scale(1.05);
            box-shadow: 0 15px 35px rgba(255, 193, 7, 0.2);
        }

        .cert-icon {
            font-size: 4rem;
            margin: 0 auto 1rem auto;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100px;
            width: 100px;
        }

        .cert-icon img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .cert-item h4 {
            color: var(--accent);
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .cert-item p {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .certifications {
            position: relative;
            overflow: hidden;
        }

        .certifications::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 22%, rgba(0, 212, 255, 0.14), transparent 18%),
                        radial-gradient(circle at 78% 18%, rgba(255, 193, 7, 0.12), transparent 16%),
                        radial-gradient(circle at 55% 78%, rgba(107, 70, 193, 0.10), transparent 22%);
            opacity: 0.85;
            filter: blur(26px);
            transform: scale(1.08);
            animation: certGalleryFlow 28s ease-in-out infinite alternate;
            pointer-events: none;
            z-index: 0;
        }

        .certifications::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 65%, rgba(0, 168, 232, 0.08), transparent 20%),
                        radial-gradient(circle at 70% 25%, rgba(255, 193, 7, 0.08), transparent 18%),
                        radial-gradient(circle at 45% 40%, rgba(255, 255, 255, 0.05), transparent 20%);
            opacity: 0.7;
            filter: blur(16px);
            transform: scale(1.04);
            animation: certGalleryFloat 24s ease-in-out infinite alternate;
            pointer-events: none;
            z-index: 0;
        }

        .cert-gallery {
            position: relative;
            z-index: 1;
            margin-top: 3rem;
            padding: 2rem 0 0;
        }

        .cert-logo-center {
            position: relative;
            margin: 3.5rem auto 0 auto;
            width: 80%;
            min-height: 300px;
            padding: 2rem 1.5rem;
            display: grid;
            place-items: center;
            background: radial-gradient(circle at center, rgba(0, 168, 232, 0.12), transparent 40%),
                        radial-gradient(circle at 20% 20%, rgba(255, 193, 7, 0.08), transparent 28%);
            border-radius: 20px;
            border: 1px solid rgba(255, 193, 7, 0.14);
            overflow: hidden;
            box-shadow: 0 35px 80px rgba(0, 0, 0, 0.22);
        }

        .cert-logo-image {
            width: 90%;
            height: auto;
            padding: 1rem;
            z-index: 2;
            animation: certLogoFloat 5s ease-in-out infinite;
        }

        .cert-logo-ring,
        .cert-logo-glow {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            pointer-events: none;
        }

        .cert-logo-ring {
            width: 85%;
            height: 85%;
            border: 1px solid rgba(255, 255, 255, 0.16);
            box-shadow: 0 0 40px rgba(0, 168, 232, 0.18);
            animation: certLogoRotate 12s linear infinite;
        }

        .cert-logo-glow {
            width: 130%;
            height: 130%;
            background: radial-gradient(circle, rgba(0, 168, 232, 0.18), transparent 45%);
            opacity: 0.8;
            animation: certLogoPulse 4.5s ease-in-out infinite;
        }

        @keyframes certLogoFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-14px); }
        }

        @keyframes certLogoRotate {
            from { transform: rotate(0deg) translate(-50%, -50%); }
            to { transform: rotate(360deg) translate(-50%, -50%); }
        }

        @keyframes certLogoPulse {
            0%, 100% { transform: scale(1); opacity: 0.75; }
            50% { transform: scale(1.08); opacity: 0.55; }
        }

        .gallery-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent);
            text-align: center;
            margin-bottom: 1.4rem;
        }

        .gallery-filters {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .gallery-filter-btn {
            border: 1px solid rgba(255, 193, 7, 0.27);
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-light);
            padding: 0.7rem 1rem;
            border-radius: 999px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .gallery-filter-btn:hover,
        .gallery-filter-btn.active {
            background: linear-gradient(135deg, rgba(0, 168, 232, 0.28), rgba(255, 193, 7, 0.24));
            border-color: rgba(255, 193, 7, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
        }

        .gallery-loop {
            overflow: hidden;
            position: relative;
            width: 100%;
        }

        .gallery-track {
            display: flex;
            gap: 1.5rem;
            width: max-content;
            animation: galleryScroll 38s linear infinite;
            padding-bottom: 1rem;
            will-change: transform;
        }

        .gallery-track.is-immersive .gallery-card {
            animation: galleryCardImmersive 4.8s ease-in-out infinite;
            animation-delay: calc(var(--card-index, 0) * 0.08s);
        }

        .gallery-track.is-immersive .gallery-card::after {
            content: '';
            position: absolute;
            inset: -20%;
            background: linear-gradient(120deg, transparent 20%, rgba(0, 212, 255, 0.18) 45%, transparent 70%);
            transform: translateX(-140%) rotate(16deg);
            animation: galleryCardSweep 5.4s ease-in-out infinite;
            pointer-events: none;
            z-index: 0;
        }

        .gallery-track.is-immersive .gallery-card:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 38px 95px rgba(0, 0, 0, 0.34);
        }

        .gallery-card {
            position: relative;
            overflow: hidden;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 193, 7, 0.15);
            box-shadow: 0 25px 65px rgba(0, 0, 0, 0.24);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            min-height: 340px;
            flex: 0 0 280px;
            cursor: pointer;
        }

        .gallery-card:first-child {
            margin-left: 2rem;
        }

        .gallery-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 35px 95px rgba(0, 0, 0, 0.32);
        }

        .gallery-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 25% 20%, rgba(0, 212, 255, 0.12), transparent 18%),
                        radial-gradient(circle at 70% 75%, rgba(255, 193, 7, 0.1), transparent 18%);
            opacity: 0.85;
            pointer-events: none;
            filter: blur(14px);
        }

        .gallery-card-inner {
            position: relative;
            width: 100%;
            aspect-ratio: 4 / 5;
            overflow: hidden;
        }

        .gallery-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: transform 0.4s ease;
        }

        @keyframes galleryScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes galleryCardImmersive {
            0%, 100% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(-8px) scale(1.02);
            }
        }

        @keyframes galleryCardSweep {
            0%, 100% {
                transform: translateX(-140%) rotate(16deg);
            }
            50% {
                transform: translateX(140%) rotate(16deg);
            }
        }

        @keyframes logoWrapperFloat {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-6px);
            }
        }

        @keyframes logoGlowPulse {
            0%, 100% {
                opacity: 0.34;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(1.08);
            }
        }

        .gallery-card:hover .gallery-photo {
            transform: scale(1.08);
        }

        .gallery-caption {
            position: relative;
            padding: 1.25rem 1.25rem 1.5rem;
            font-size: 1rem;
            color: var(--text-light);
            text-align: center;
            font-weight: 600;
            z-index: 1;
        }

        .gallery-overlay {
            position: fixed;
            inset: 0;
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .gallery-overlay.is-visible {
            opacity: 1;
            pointer-events: auto;
        }

        .gallery-overlay-backdrop {
            position: absolute;
            inset: 0;
            background: linear-gradient(175deg, rgba(4, 12, 28, 0.95), rgba(0, 40, 80, 0.9));
            backdrop-filter: blur(14px);
        }

        .gallery-overlay-panel {
            position: relative;
            width: min(1120px, calc(100vw - 3rem));
            max-height: min(90vh, 920px);
            background: rgba(10, 18, 32, 0.92);
            border: 1px solid rgba(255, 193, 7, 0.25);
            box-shadow: 0 35px 90px rgba(0, 0, 0, 0.45);
            border-radius: 28px;
            overflow: hidden;
            transform: scale(0.96);
            transition: transform 0.4s ease;
            animation: overlayEntrance 0.45s ease forwards;
        }

        .gallery-overlay.is-visible .gallery-overlay-panel {
            transform: scale(1);
        }

        .gallery-overlay-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 44px;
            height: 44px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.35);
            color: var(--text-light);
            font-size: 1.6rem;
            line-height: 1;
            cursor: pointer;
            z-index: 2;
            transition: transform 0.25s ease, background 0.25s ease;
        }

        .gallery-overlay-close:hover {
            transform: scale(1.05);
            background: rgba(255, 193, 7, 0.15);
        }

        .gallery-overlay-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 56px;
            height: 56px;
            border: none;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            color: var(--text-light);
            font-size: 2rem;
            cursor: pointer;
            z-index: 2;
            transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 0 0 rgba(255, 193, 7, 0);
            backdrop-filter: blur(10px);
        }

        .gallery-overlay-nav:hover {
            transform: translateY(-50%) scale(1.08);
            background: rgba(255, 193, 7, 0.16);
            box-shadow: 0 0 24px rgba(255, 193, 7, 0.35);
        }

        .gallery-overlay-prev {
            left: 1rem;
        }

        .gallery-overlay-next {
            right: 1rem;
        }

        .gallery-overlay-nav::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 193, 7, 0.22), transparent 45%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-overlay-nav:hover::before {
            opacity: 1;
        }

        .gallery-overlay-content {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 1.5rem;
            padding: 3rem;
        }

        .gallery-overlay-image {
            width: 60%;
            height: min(72vh, 620px);
            object-fit: cover;
            border-radius: 20px;
            filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.5));
            transform: translateY(10px);
            opacity: 0;
            animation: overlayImageAppear 0.6s ease forwards 0.1s;
        }

        .gallery-overlay-copy {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 1.25rem;
            color: var(--text-light);
        }

        .gallery-overlay-copy h2 {
            margin: 0;
            font-size: clamp(2rem, 2.4vw, 3rem);
            color: var(--accent);
            line-height: 1.05;
        }

        .gallery-overlay-copy p {
            margin: 0;
            font-size: 1.05rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.82);
        }

        .gallery-overlay.is-visible .gallery-overlay-copy {
            animation: overlayTextFade 0.55s ease forwards 0.15s;
        }

        body.modal-open {
            overflow: hidden;
        }

        @media (max-width: 960px) {
            .gallery-overlay-panel {
                width: calc(100vw - 2rem);
                max-height: 92vh;
            }

            .gallery-overlay-content {
                grid-template-columns: 1fr;
                padding: 2rem;
                gap: 1rem;
            }

            .gallery-overlay-image {
                height: 45vh;
            }

            .gallery-overlay-close {
                top: 0.8rem;
                right: 0.8rem;
            }

            .gallery-overlay-prev,
            .gallery-overlay-next {
                width: 48px;
                height: 48px;
                font-size: 1.6rem;
            }

            .gallery-overlay-prev {
                left: 0.8rem;
            }

            .gallery-overlay-next {
                right: 0.8rem;
            }
        }

        @keyframes overlayEntrance {
            from {
                opacity: 0;
                transform: scale(0.95) translateY(20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        @keyframes overlayImageAppear {
            from {
                opacity: 0;
                transform: translateY(24px) scale(0.98);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes overlayTextFade {
            from {
                opacity: 0;
                transform: translateY(18px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes certGalleryFlow {
            0% {
                transform: translate(-12px, -10px) scale(1.08);
            }
            50% {
                transform: translate(16px, 16px) scale(1.06);
            }
            100% {
                transform: translate(-10px, 22px) scale(1.08);
            }
        }

        @keyframes certGalleryFloat {
            0% {
                transform: translate(0, 0) scale(1.02);
                opacity: 0.72;
            }
            50% {
                transform: translate(12px, -14px) scale(1.04);
                opacity: 0.68;
            }
            100% {
                transform: translate(-8px, 12px) scale(1.03);
                opacity: 0.7;
            }
        }

        /* ===== CORE VALUES SECTION ===== */
        .core-values {
            padding: 6rem 4rem;
            background: var(--dark-bg);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .value-card {
            padding: 2rem;
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(0, 71, 171, 0.1));
            border-radius: 12px;
            border: 1px solid rgba(255, 193, 7, 0.2);
            text-align: center;
            transition: all 0.3s;
        }

        .value-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(0, 71, 171, 0.15));
        }

        .value-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .value-card h4 {
            color: var(--accent);
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .value-card p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ===== MISSION & VISION CARDS ===== */
        .mission-vision-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 3rem 0;
        }

        .mission-vision-card {
            padding: 2.5rem;
            border-radius: 15px;
            border: 2px solid rgba(255, 193, 7, 0.3);
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(0, 71, 171, 0.15));
            backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        .mission-vision-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
            transition: left 0.6s;
        }

        .mission-vision-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2);
        }

        .mission-vision-card:hover::before {
            left: 100%;
        }

        .mission-vision-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
        }

        .mission-vision-card p {
            font-size: 1rem;
            color: var(--text-light);
            line-height: 1.8;
            font-style: italic;
        }

        .vision-card {
            border-left: 4px solid var(--accent);
        }

        .mission-card {
            border-right: 4px solid var(--primary);
        }

        .sub-title {
            font-size: 1.8rem;
            margin: 2rem 0 1.5rem;
            color: var(--accent);
            font-weight: 700;
            text-align: center;
        }

        /* ===== MARITIME PARTNER SECTION ===== */
        .maritime-partner {
            padding: 6rem 4rem;
            background: var(--dark-bg);
            position: relative;
            overflow: hidden;
        }

        .partner-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .partner-header h2 {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .partner-header p {
            font-size: 1.2rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .partner-logos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .partner-logo-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            transition: all 0.3s ease;
        }

        .partner-logo-item:hover {
            transform: translateY(-10px);
        }

        .logo-wrapper {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, rgba(0, 71, 171, 0.12), rgba(0, 212, 255, 0.12));
            border: 2px solid rgba(0, 71, 171, 0.25);
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
            animation: logoWrapperFloat 6s ease-in-out infinite;
            box-shadow: inset 0 0 0 1px rgba(0, 212, 255, 0.08);
        }

        .logo-wrapper::before,
        .logo-wrapper::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            opacity: 0.4;
        }

        .logo-wrapper::before {
            width: 220px;
            height: 220px;
            top: -40px;
            left: -20px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.35), transparent 62%);
            filter: blur(28px);
            animation: logoGlowPulse 7s ease-in-out infinite;
        }

        .logo-wrapper::after {
            width: 260px;
            height: 260px;
            bottom: -60px;
            right: -40px;
            background: radial-gradient(circle, rgba(255, 193, 7, 0.2), transparent 68%);
            filter: blur(32px);
            animation: logoGlowPulse 9s ease-in-out infinite reverse;
        }

        /* Ensure partner logos scale to fit their wrapper without being cropped */
        .logo-wrapper .company-logo {
            max-width: 90%;
            max-height: 90%;
            width: auto;
            height: auto;
            object-fit: contain;
            display: block;
            position: relative;
            z-index: 1;
        }
        .partner-logo-item:hover .logo-wrapper {
            border-color: rgba(255, 193, 7, 0.55);
            box-shadow: 0 24px 60px rgba(0, 71, 171, 0.28);
            transform: translateY(-8px) scale(1.02);
            background: linear-gradient(135deg, rgba(0, 71, 171, 0.16), rgba(0, 212, 255, 0.18));
        }

        .placeholder-logo {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
            text-align: center;
            padding: 1rem;
            animation: logoPulse 3s ease-in-out infinite;
        }

        .partner-logo-item h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-light);
            text-align: center;
            line-height: 1.4;
        }

        @keyframes logoPulse {
            0%, 100% {
                opacity: 0.8;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.05);
            }
        }

        /* ===== QUOTE SECTION ===== */
        .quote-section {
            padding: 6rem 4rem;
            background: linear-gradient(135deg, var(--dark-bg), rgba(0, 71, 171, 0.15));
            position: relative;
            overflow: hidden;
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .antigravity-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
            pointer-events: none;
        }

        .wave-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: block;
        }

        /* ===== WAVE ANIMATIONS ===== */
        .wave {
            transform-origin: center;
            animation: waveMotion 8s ease-in-out infinite;
        }

        .wave-1 {
            animation: waveMotion1 10s ease-in-out infinite;
        }

        .wave-2 {
            animation: waveMotion2 12s ease-in-out infinite;
            opacity: 0.8;
        }

        .wave-3 {
            animation: waveMotion3 14s ease-in-out infinite;
        }

        .wave-4 {
            animation: waveMotion4 16s ease-in-out infinite;
        }

        /* ===== FLOATING PARTICLES IN WAVES ===== */
        .float-particle {
            animation: particleFloat 8s ease-in-out infinite;
            filter: blur(0.3px);
        }

        .fp-1 {
            animation: particleFloat 8s ease-in-out infinite;
        }

        .fp-2 {
            animation: particleFloat 9s ease-in-out 0.5s infinite;
        }

        .fp-3 {
            animation: particleFloat 10s ease-in-out 1s infinite;
        }

        .fp-4 {
            animation: particleFloat 11s ease-in-out 1.5s infinite;
        }

        .fp-5 {
            animation: particleFloat 9.5s ease-in-out 2s infinite;
        }

        .fp-6 {
            animation: particleFloat 10.5s ease-in-out 2.5s infinite;
        }

        /* ===== WAVE KEYFRAME ANIMATIONS ===== */
        @keyframes waveMotion1 {
            0%, 100% {
                d: path("M0,150 Q300,100 600,150 T1200,150 L1200,400 L0,400 Z");
                opacity: 0.6;
            }
            25% {
                d: path("M0,130 Q300,80 600,130 T1200,130 L1200,400 L0,400 Z");
                opacity: 0.8;
            }
            50% {
                d: path("M0,180 Q300,120 600,180 T1200,180 L1200,400 L0,400 Z");
                opacity: 0.5;
            }
            75% {
                d: path("M0,140 Q300,90 600,140 T1200,140 L1200,400 L0,400 Z");
                opacity: 0.7;
            }
        }

        @keyframes waveMotion2 {
            0%, 100% {
                d: path("M0,200 Q300,150 600,200 T1200,200 L1200,400 L0,400 Z");
                opacity: 0.6;
            }
            25% {
                d: path("M0,170 Q300,110 600,170 T1200,170 L1200,400 L0,400 Z");
                opacity: 0.4;
            }
            50% {
                d: path("M0,230 Q300,170 600,230 T1200,230 L1200,400 L0,400 Z");
                opacity: 0.8;
            }
            75% {
                d: path("M0,190 Q300,140 600,190 T1200,190 L1200,400 L0,400 Z");
                opacity: 0.5;
            }
        }

        @keyframes waveMotion3 {
            0%, 100% {
                d: path("M0,180 Q300,120 600,180 T1200,180 L1200,400 L0,400 Z");
                opacity: 0.7;
            }
            25% {
                d: path("M0,150 Q300,90 600,150 T1200,150 L1200,400 L0,400 Z");
                opacity: 0.5;
            }
            50% {
                d: path("M0,210 Q300,150 600,210 T1200,210 L1200,400 L0,400 Z");
                opacity: 0.9;
            }
            75% {
                d: path("M0,170 Q300,110 600,170 T1200,170 L1200,400 L0,400 Z");
                opacity: 0.6;
            }
        }

        @keyframes waveMotion4 {
            0%, 100% {
                d: path("M0,220 Q300,170 600,220 T1200,220 L1200,400 L0,400 Z");
                opacity: 0.5;
            }
            25% {
                d: path("M0,190 Q300,140 600,190 T1200,190 L1200,400 L0,400 Z");
                opacity: 0.7;
            }
            50% {
                d: path("M0,250 Q300,190 600,250 T1200,250 L1200,400 L0,400 Z");
                opacity: 0.4;
            }
            75% {
                d: path("M0,210 Q300,160 600,210 T1200,210 L1200,400 L0,400 Z");
                opacity: 0.6;
            }
        }

        @keyframes particleFloat {
            0%, 100% {
                transform: translateY(0) scale(1);
                opacity: 0.6;
            }
            25% {
                transform: translateY(-40px) scale(1.2);
                opacity: 0.8;
            }
            50% {
                transform: translateY(-80px) scale(0.9);
                opacity: 0.5;
            }
            75% {
                transform: translateY(-50px) scale(1.1);
                opacity: 0.7;
            }
        }

        .quote-container {
            max-width: 900px;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .quote-mark {
            font-size: 6rem;
            color: var(--accent);
            opacity: 0.3;
            line-height: 1;
            margin-bottom: -2rem;
            display: block;
            animation: quoteFloatUp 3s ease-in-out infinite;
        }

        .quote-mark.closing {
            margin-bottom: -2rem;
            margin-top: -1rem;
            animation: quoteFloatDown 3s ease-in-out infinite;
        }

        .quote-text {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.6;
            background: linear-gradient(135deg, var(--text-light) 0%, var(--accent) 50%, var(--text-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            margin: 2rem 0;
            letter-spacing: 0.5px;
            animation: quoteGlow 4s ease-in-out infinite, gradientShift 6s ease-in-out infinite;
            text-shadow: 0 0 30px rgba(255, 193, 7, 0.1);
        }

        .quote-source {
            font-size: 1.1rem;
            color: var(--text-muted);
            font-weight: 600;
            margin-top: 2rem;
            animation: sourceShimmer 3s ease-in-out infinite;
        }

        .quote-accent-line {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            margin: 2rem auto 0;
            border-radius: 2px;
            animation: lineExpand 3s ease-in-out infinite;
        }

        @keyframes quoteFloatUp {
            0%, 100% {
                transform: translateY(0);
                opacity: 0.3;
            }
            50% {
                transform: translateY(-15px);
                opacity: 0.5;
            }
        }

        @keyframes quoteFloatDown {
            0%, 100% {
                transform: translateY(0);
                opacity: 0.3;
            }
            50% {
                transform: translateY(15px);
                opacity: 0.5;
            }
        }

        @keyframes quoteGlow {
            0%, 100% {
                filter: drop-shadow(0 0 5px rgba(0, 71, 171, 0.2));
            }
            50% {
                filter: drop-shadow(0 0 20px rgba(0, 71, 171, 0.6)) drop-shadow(0 0 30px rgba(255, 193, 7, 0.2));
            }
        }

        @keyframes gradientShift {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        @keyframes sourceShimmer {
            0%, 100% {
                opacity: 0.7;
            }
            50% {
                opacity: 1;
            }
        }

        @keyframes lineExpand {
            0%, 100% {
                width: 80px;
                opacity: 0.6;
            }
            50% {
                width: 120px;
                opacity: 1;
            }
        }

        /* ===== CONTACT SECTION ===== */
        .contact {
            padding: 6rem 4rem;
            background: linear-gradient(135deg, rgba(0, 71, 171, 0.1) 0%, rgba(107, 70, 193, 0.1) 100%);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 3rem;
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 2rem;
            align-items: start;
            width: 100%;
        }

        .contact-map {
            width: 100%;
            min-height: 420px;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
            background: #0f1419;
            border: 1px solid rgba(255, 193, 7, 0.12);
        }

        #map {
            width: 100%;
            height: 100%;
            min-height: 420px;
            display: block;
        }

        #map iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        .office-item {
            background: var(--light-bg);
            padding: 2rem;
            border-radius: 12px;
            border-left: 4px solid var(--accent);
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
        }

        .office-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .office-item.active {
            border-color: var(--accent);
            box-shadow: 0 14px 35px rgba(255, 193, 7, 0.25);
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.05);
        }

        .office-item h3 {
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .office-item p {
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 0.5rem;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            position: relative;
            background: radial-gradient(circle at top left, rgba(0, 168, 232, 0.14), transparent 20%),
                        radial-gradient(circle at bottom right, rgba(255, 193, 7, 0.12), transparent 20%),
                        linear-gradient(180deg, rgba(10, 16, 28, 1), rgba(4, 12, 28, 0.98));
            border-top: 1px solid rgba(255, 193, 7, 0.16);
            padding: 4rem 2rem 2.5rem;
            color: var(--text-light);
            overflow: hidden;
        }

        .footer-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(36px);
            opacity: 0.35;
            pointer-events: none;
        }

        .footer-glow-1 {
            top: -10%;
            left: -10%;
            width: 320px;
            height: 320px;
            background: rgba(0, 168, 232, 0.3);
        }

        .footer-glow-2 {
            bottom: 12%;
            right: 8%;
            width: 260px;
            height: 260px;
            background: rgba(255, 193, 7, 0.24);
        }

        .footer-glow-3 {
            top: 50%;
            right: 20%;
            width: 180px;
            height: 180px;
            background: rgba(255, 255, 255, 0.08);
        }

        .footer-top {
            position: relative;
            z-index: 1;
            width: min(1200px, 100%);
            margin: 0 auto 2.5rem;
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 2rem;
            align-items: start;
        }

        .footer-brand {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }

        .footer-logo {
            width: 250px;
            border-radius: 24px;
            padding: 0.9rem;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
        }

        .footer-brand-copy h3 {
            margin: 0 0 0.8rem;
            font-size: clamp(1.5rem, 2.2vw, 2rem);
            color: #ffffff;
            line-height: 1.1;
        }

        .footer-brand-copy p {
            margin: 0;
            max-width: 620px;
            color: rgba(255, 255, 255, 0.82);
            line-height: 1.85;
            font-size: 0.98rem;
        }

        .footer-links-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(180px, 1fr));
            gap: 2.5rem;
        }

        .footer-column h4 {
            margin-bottom: 1.2rem;
            color: var(--accent);
            font-size: 1.05rem;
            letter-spacing: 0.02em;
        }

        .footer-column a {
            display: block;
            color: rgba(255, 255, 255, 0.78);
            text-decoration: none;
            margin-bottom: 1rem;
            transition: color 0.25s ease, transform 0.25s ease;
        }

        .footer-column a:hover {
            color: #ffffff;
            transform: translateX(4px);
        }

        .footer-bottom {
            position: relative;
            z-index: 1;
            width: min(1200px, 100%);
            margin: 0 auto;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 193, 7, 0.12);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .footer-copy p {
            margin: 0;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
        }

        .footer-site {
            margin-top: 0.5rem;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
        }

        .footer-signature {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.82);
            white-space: nowrap;
        }

        .footer-signature span {
            color: var(--accent);
            font-weight: 700;
        }

        @media (max-width: 980px) {
            .footer-top {
                grid-template-columns: 1fr;
            }

            .footer-links-grid {
                grid-template-columns: repeat(2, minmax(120px, 1fr));
            }
        }

        @media (max-width: 720px) {
            .site-footer {
                padding: 3rem 1.5rem 1.5rem;
            }

            .footer-brand {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-brand-copy p {
                max-width: 100%;
            }

            .footer-links-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                justify-content: center;
                text-align: center;
            }
        }

        .mission-vision {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 193, 7, 0.1);
        }

        .mission-vision h4 {
            color: var(--accent);
            margin-top: 1rem;
            margin-bottom: 0.5rem;
        }

        /* ===== RESPONSIVE ===== */
        
        /* TABLETS - 1024px and below */
        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
                padding: 2rem;
            }

            .hero-3d-bg {
                width: 80%;
                right: -5%;
                opacity: 0.6;
            }

            .carousel-item {
                width: 300px;
                height: 400px;
                margin-left: -150px;
                margin-top: -200px;
            }

            .hero-canvas {
                display: none;
            }

            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .services-detailed {
                grid-template-columns: 1fr;
            }

            .mission-vision-cards {
                grid-template-columns: 1fr;
            }

            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .cert-carousel {
                grid-template-columns: repeat(2, 1fr);
            }

            section {
                padding: 4rem 2rem !important;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        /* TABLETS - 768px and below */
        @media (max-width: 768px) {
            nav {
                padding: 0.8rem 1rem;
            }

            .logo {
                font-size: 1.4rem;
            }

            .nav-links {
                display: none;
            }

            .hamburger-menu {
                display: flex;
            }

            .table-of-contents {
                padding: 3rem 1.5rem;
                min-height: auto;
            }

            .toc-title {
                font-size: 2rem;
            }

            .toc-list {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .toc-item {
                padding: 1.2rem;
            }

            .leading-the-way {
                padding: 0;
            }

            .ltw-header {
                flex-direction: column;
                padding: 2rem 1.5rem;
                text-align: center;
            }

            .ltw-compass {
                width: 120px;
                height: 120px;
            }

            .ltw-title {
                font-size: 2rem;
            }

            .ltw-content {
                padding: 2rem 1.5rem;
            }

            .ltw-main-message p {
                font-size: 1rem;
            }

            .ltw-description p {
                font-size: 0.9rem;
                text-align: left;
            }

            .ltw-badge {
                width: 80px;
                height: 80px;
                font-size: 1.8rem;
                right: 1.5rem;
                bottom: -25px;
            }

            .hero {
                grid-template-columns: 1fr;
                padding: 1.5rem;
                margin-top: 70px;
                min-height: 80vh;
            }

            .hero-3d-bg {
                width: 100%;
                right: 0;
                opacity: 0.4;
                height: 60%;
                top: 0;
            }

            .carousel-container {
                animation: rotateCarousel 30s infinite linear;
            }

            .carousel-item {
                width: 250px;
                height: 320px;
                margin-left: -125px;
                margin-top: -160px;
            }

            .carousel-content h4 {
                font-size: 1.3rem;
            }

            .carousel-content p {
                font-size: 0.9rem;
            }

            .hero-content {
                z-index: 20;
            }

            .hero-content h1 {
                font-size: 2rem;
                line-height: 1.2;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .about {
                padding: 3rem 1.5rem;
            }

            .about-grid {
                gap: 2rem;
            }

            .features-list {
                grid-template-columns: 1fr;
            }

            .services {
                padding: 3rem 1.5rem;
            }

            .services-detailed {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .service-card {
                padding: 1.5rem;
            }

            .survey-container {
                grid-template-columns: 1fr;
            }

            .survey-visual,
            .survey-content {
                width: 100%;
            }

            .survey-card-3d {
                max-width: 420px;
                margin: 0 auto;
            }

            .service-card:hover {
                transform: translateY(-10px);
            }

            .training {
                padding: 3rem 1.5rem;
            }

            .training-tabs {
                display: none;
            }

            .tab-button {
                display: none;
            }

            .courses-grid {
                display: none;
            }

            .training-content {
                gap: 2rem;
            }

            .training-category {
                padding: 1.8rem;
            }

            .courses-list {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }

            .certifications {
                padding: 3rem 1.5rem;
            }

            .cert-carousel {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .core-values {
                padding: 3rem 1.5rem;
            }

            .mission-vision-cards {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .mission-vision-card {
                padding: 1.5rem;
            }

            .mission-vision-card h3 {
                font-size: 1.2rem;
            }

            .mission-vision-card p {
                font-size: 0.9rem;
            }

            .values-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .value-card {
                padding: 1.5rem;
            }

            .value-icon {
                font-size: 2.5rem;
            }

            .contact {
                padding: 3rem 1.5rem;
            }

            .contact-grid {
                gap: 2rem;
            }

            .office-item {
                padding: 1.5rem;
            }

            footer {
                padding: 2rem 1.5rem;
            }

            .section-title {
                font-size: 1.6rem;
            }

            .sub-title {
                font-size: 1.4rem;
            }

            .quote-section {
                padding: 3rem 1.5rem;
                min-height: auto;
            }

            .quote-text {
                font-size: 1.6rem;
                line-height: 1.5;
            }

            .quote-mark {
                font-size: 3rem;
                margin-bottom: -1rem;
            }

            .quote-source {
                font-size: 1rem;
            }

            .maritime-partner {
                padding: 3rem 1.5rem;
            }

            .partner-header h2 {
                font-size: 2rem;
            }

            .partner-logos {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 1.5rem;
            }

            .logo-wrapper {
                height: 150px;
            }

            .partner-logo-item h3 {
                font-size: 0.9rem;
            }
        }

        /* SMALL PHONES - 480px and below */
        @media (max-width: 480px) {
            nav {
                padding: 0.7rem 0.8rem;
                flex-wrap: wrap;
            }

            .logo {
                font-size: 1.2rem;
                letter-spacing: -0.5px;
            }

            .hero {
                padding: 1rem;
                margin-top: 65px;
                min-height: 70vh;
            }

            .hero-3d-bg {
                display: none;
            }

            .hero-content h1 {
                font-size: 1.6rem;
                line-height: 1.1;
            }

            .hero-content h1 span {
                display: block;
            }

            .hero-content p {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
            }

            .cta-button {
                padding: 0.8rem 2rem;
                font-size: 0.95rem;
            }

            .about {
                padding: 2rem 1rem;
            }

            .about-text h2 {
                font-size: 1.5rem;
            }

            .about-text p {
                font-size: 1rem;
            }

            .features-list {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .feature-item {
                padding: 1rem;
            }

            .feature-item h4 {
                font-size: 0.95rem;
            }

            .feature-item p {
                font-size: 0.85rem;
            }

            .services {
                padding: 2rem 1rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }

            .service-card {
                padding: 1.2rem;
            }

            .service-icon {
                font-size: 2.5rem;
                margin-bottom: 0.8rem;
            }

            .service-card h3 {
                font-size: 1.1rem;
            }

            .service-card p {
                font-size: 0.9rem;
            }

            .training {
                padding: 2rem 1rem;
            }

            .training-tabs {
                gap: 0.5rem;
                margin: 1.5rem 0;
            }

            .tab-button {
                padding: 0.6rem 1rem;
                font-size: 0.85rem;
                border-radius: 20px;
            }

            .courses-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .course-item {
                padding: 1rem;
            }

            .course-item h4 {
                font-size: 1rem;
            }

            .certifications {
                padding: 2rem 1rem;
            }

            .cert-carousel {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .cert-item {
                padding: 1.2rem;
            }

            .cert-icon {
                font-size: 3rem;
                margin-bottom: 0.8rem;
            }

            .cert-item h4 {
                font-size: 0.95rem;
            }

            .cert-item p {
                font-size: 0.8rem;
            }

            .core-values {
                padding: 2rem 1rem;
            }

            .mission-vision-cards {
                grid-template-columns: 1fr;
                gap: 1.2rem;
                margin: 2rem 0;
            }

            .mission-vision-card {
                padding: 1.2rem;
                border-radius: 12px;
            }

            .mission-vision-card h3 {
                font-size: 1.1rem;
                margin-bottom: 1rem;
            }

            .mission-vision-card p {
                font-size: 0.9rem;
                line-height: 1.6;
            }

            .sub-title {
                font-size: 1.2rem;
                margin: 1.5rem 0 1rem;
            }

            .values-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .value-card {
                padding: 1rem;
            }

            .value-icon {
                font-size: 2rem;
                margin-bottom: 0.8rem;
            }

            .value-card h4 {
                font-size: 1rem;
                margin-bottom: 0.8rem;
            }

            .value-card p {
                font-size: 0.85rem;
            }

            .contact {
                padding: 2rem 1rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .office-item {
                padding: 1.2rem;
                border-radius: 10px;
            }

            .office-item h3 {
                font-size: 1.1rem;
                margin-bottom: 0.8rem;
            }

            .office-item p {
                font-size: 0.9rem;
                line-height: 1.6;
            }

            footer {
                padding: 1.5rem 1rem;
            }

            footer p {
                font-size: 0.9rem;
                margin-bottom: 0.8rem;
            }

            .section-title {
                font-size: 1.4rem;
            }

            .section-title::after {
                width: 60px;
            }
        }

        /* EXTRA SMALL - Below 360px */
        @media (max-width: 360px) {
            .hero-content h1 {
                font-size: 1.4rem;
            }

            .cta-button {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
            }

            .section-title {
                font-size: 1.2rem;
            }

            .service-card p,
            .course-item,
            .office-item p {
                font-size: 0.85rem;
            }
        }

        /* ===== ANIMATIONS ===== */
        .fade-in {
            opacity: 0;
            animation: fadeIn 1s forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
        }

        /* Glassmorphism effect */
        .glass {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }