/* ========================================
   استكشاف البحار - Marine Exploration
   Professional Maritime Solutions
   ======================================== */

/* ===== CSS Variables ===== */
:root {
    /* ===== البالتة المحددة من المستخدم بالضبط ===== */
    --color-1: #03045e;  /* أزرق داكن جداً */
    --color-2: #023e8a;  /* أزرق داكن */
    --color-3: #0077b6;  /* أزرق */
    --color-4: #0096c7;  /* أزرق متوسط */
    --color-5: #00b4d8;  /* أزرق سماوي */
    --color-6: #48cae4;  /* سماوي */
    --color-7: #90e0ef;  /* سماوي فاتح */
    --color-8: #ade8f4;  /* سماوي فاتح جداً */
    --color-9: #caf0f8;  /* سماوي شفاف */

    /* Aliases للاستخدام السهل */
    --primary-dark: #03045e;
    --primary-blue: #0077b6;
    --accent-teal: #00b4d8;
    --light-blue: #48cae4;
    --ocean-green: #0096c7;

    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F8FAFB;
    --light-gray: #E8EEF2;
    --medium-gray: #8B99A6;
    --dark-gray: #03045e;
    --gold: #48cae4;

    /* Gradients - من البالتة فقط */
    --gradient-primary: linear-gradient(135deg, #03045e 0%, #0077b6 100%);
    --gradient-ocean: linear-gradient(135deg, #00b4d8 0%, #48cae4 100%);
    --gradient-dark: linear-gradient(to bottom, #03045e 0%, #023e8a 100%);

    /* Shadows - بألوان البالتة */
    --shadow-sm: 0 2px 8px rgba(0, 119, 182, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 119, 182, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 119, 182, 0.2);
    --shadow-xl: 0 12px 48px rgba(0, 119, 182, 0.25);

    /* Spacing */
    --section-padding: 100px 0;
    --container-max-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    direction: rtl;
    line-height: 1.7;
    color: var(--dark-gray);
    background: var(--off-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: var(--section-padding);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

/* ===== Navigation ===== */
.navbar {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-bottom: none;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 1.5rem 0;
    opacity: 0;
    transform: translateY(-100px);
}

.navbar.show {
    opacity: 1;
    transform: translateY(0);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.logo-icon::before {
    display: none;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.logo:hover .logo-icon {
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.logo-text h1 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0;
    font-weight: 300;
    letter-spacing: 1px;
}

.logo-text p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 300;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}

.nav-menu a::after {
    display: none;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.nav-menu a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-menu a.active {
    color: white;
}

/* Language Switcher */
.language-switcher a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.language-switcher a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.language-switcher a::before {
    display: none;
}

.language-switcher i {
    font-size: 1.1rem;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: white;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    color: white;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255,255,255,0.06);
}

.mobile-menu-toggle span {
    width: 22px;
    height: 1.5px;
    background: white;
    border-radius: 1px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform-origin: center;
}

.mobile-menu-toggle span:nth-child(2) {
    width: 16px;
    margin-inline-start: auto;
}

.mobile-menu-toggle.active {
    background: transparent;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
    width: 22px;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Backdrop - hidden since nav is full-screen */
.mobile-menu-backdrop {
    display: none;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: transparent;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 180, 216, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(72, 202, 228, 0.15) 0%, transparent 50%);
    animation: waveAnimation 20s ease-in-out infinite;
}

@keyframes waveAnimation {
    0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
    50% { transform: translateY(-30px) scale(1.1); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    transition: all 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-content.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-content .subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 1rem;
    color: #90e0ef;
    text-shadow:
        0 0 15px rgba(144, 224, 239, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-content p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.highlight-shaheen {
    color: #48cae4;
    font-weight: 700;
    text-shadow:
        0 0 25px rgba(72, 202, 228, 0.8),
        0 0 45px rgba(72, 202, 228, 0.5),
        0 0 60px rgba(0, 180, 216, 0.3),
        0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow:
            0 0 25px rgba(72, 202, 228, 0.8),
            0 0 45px rgba(72, 202, 228, 0.5),
            0 0 60px rgba(0, 180, 216, 0.3),
            0 2px 10px rgba(0, 0, 0, 0.3);
    }
    50% {
        text-shadow:
            0 0 35px rgba(72, 202, 228, 1),
            0 0 60px rgba(72, 202, 228, 0.7),
            0 0 80px rgba(0, 180, 216, 0.5),
            0 2px 15px rgba(0, 0, 0, 0.4);
    }
}

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

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: all var(--transition-normal);
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(72, 202, 228, 0.4);
}

.btn-primary:hover {
    background: #0077b6;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(72, 202, 228, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-outline:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: var(--accent-teal);
    border-radius: 2px;
}

.section-header p {
    color: #0077b6;
    max-width: 600px;
    margin: 1.5rem auto 0;
    font-weight: 500;
}

/* ===== Cards ===== */
.card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-ocean);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

.card ul {
    margin: 1.5rem 0;
}

.card ul li {
    padding: 0.7rem 0;
    padding-right: 1.5rem;
    position: relative;
    color: var(--dark-gray);
}

.card ul li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--accent-teal);
    font-weight: bold;
}

/* ===== Grid Layouts ===== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* ===== Clients Section ===== */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    align-items: center;
}

.client-logo {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo:hover {
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.client-logo h4 {
    font-size: 1.3rem;
    color: var(--primary-dark);
}

/* ===== Features Grid ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-box {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-box .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-box h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(180deg, #03045e 0%, #023e8a 100%);
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.footer-top {
    text-align: center;
    padding: 4rem 0 3rem;
    border-bottom: 2px solid rgba(72, 202, 228, 0.2);
}

.footer-brand {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #48cae4;
    box-shadow: 0 0 30px rgba(72, 202, 228, 0.5);
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.footer-brand p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 4rem 0 3rem;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section h4 i {
    font-size: 1.2rem;
    color: #90e0ef;
}

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

.footer-section ul li {
    padding: 0.6rem 0;
    transition: all 0.3s ease;
}

.footer-section ul li i {
    font-size: 0.7rem;
    margin-left: 0.5rem;
    color: #90e0ef;
    transition: all 0.3s ease;
}

.footer-section a {
    color: #fff;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.footer-section a:hover {
    color: #90e0ef;
    transform: translateX(-5px);
    opacity: 1;
}

.footer-section a:hover i {
    color: #caf0f8;
    transform: translateX(-3px);
}

.footer-section .contact-info li {
    color: #fff;
    display: flex;
    align-items: start;
    gap: 0.8rem;
    line-height: 1.8;
    opacity: 0.95;
}

.footer-section .contact-info li i {
    color: #90e0ef;
    margin-top: 0.3rem;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 2px solid rgba(72, 202, 228, 0.2);
    padding: 2rem 0;
    text-align: center;
    position: relative;
}

.footer-wave-decoration {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #90e0ef, #48cae4, #00b4d8, #48cae4, #90e0ef);
    background-size: 200% 100%;
    animation: waveShimmer 3s ease-in-out infinite;
}

@keyframes waveShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.footer-bottom p {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    /* ===== Premium Full-Screen Navigation ===== */
    .nav-menu {
        position: fixed;
        inset: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: linear-gradient(160deg,
            rgba(2, 62, 138, 0.97) 0%,
            rgba(0, 119, 182, 0.95) 40%,
            rgba(0, 150, 199, 0.93) 70%,
            rgba(0, 180, 216, 0.90) 100%
        );
        backdrop-filter: blur(30px) saturate(180%);
        -webkit-backdrop-filter: blur(30px) saturate(180%);
        width: 100%;
        height: 100vh;
        height: 100dvh;
        z-index: 999;
        gap: 0.2rem;
        padding: 5rem 2rem 3rem;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                    visibility 0.5s;
        overflow-y: auto;
        text-align: center;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    /* Decorative light orb - top */
    .nav-menu::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        top: -100px;
        right: -100px;
        background: radial-gradient(circle, rgba(144, 224, 239, 0.15) 0%, transparent 70%);
        pointer-events: none;
        border-radius: 50%;
    }

    /* Decorative light orb - bottom */
    .nav-menu::after {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        bottom: -80px;
        left: -80px;
        background: radial-gradient(circle, rgba(72, 202, 228, 0.1) 0%, transparent 70%);
        pointer-events: none;
        border-radius: 50%;
    }

    .nav-menu li {
        text-align: center;
        opacity: 0;
        transform: translateY(18px);
        transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: none;
        width: 80%;
        max-width: 300px;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.08s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.13s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.18s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.23s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.28s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.33s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.38s; }
    .nav-menu.active li:nth-child(8) { transition-delay: 0.43s; }
    .nav-menu.active li:nth-child(9) { transition-delay: 0.48s; }

    .nav-menu a {
        color: rgba(255, 255, 255, 0.65) !important;
        font-size: 1.15rem;
        font-weight: 400;
        letter-spacing: 1px;
        padding: 0.85rem 1.8rem;
        display: block;
        position: relative;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 16px;
        width: 100%;
    }

    /* Remove the old underline pseudo-element */
    .nav-menu a::before {
        display: none !important;
    }

    .nav-menu a.active {
        color: #fff !important;
        font-weight: 600 !important;
        background: rgba(255, 255, 255, 0.15) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1),
                    inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }

    .nav-menu a:hover {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.1) !important;
        padding-inline-start: 1.8rem !important;
        transform: translateY(-1px);
    }

    .nav-menu a.active:hover {
        background: rgba(255, 255, 255, 0.18) !important;
    }

    /* Language switcher */
    .nav-menu .language-switcher {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .nav-menu .language-switcher a {
        font-size: 0.85rem !important;
        color: rgba(255, 255, 255, 0.6) !important;
        border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 30px !important;
        padding: 0.6rem 2rem !important;
        letter-spacing: 0.5px !important;
        font-weight: 400 !important;
        background: rgba(255, 255, 255, 0.05) !important;
        transition: all 0.35s ease !important;
        justify-content: center;
    }

    .nav-menu .language-switcher a::before {
        display: none !important;
    }

    .nav-menu .language-switcher a:hover {
        color: #fff !important;
        border-color: rgba(255, 255, 255, 0.4) !important;
        background: rgba(255, 255, 255, 0.12) !important;
        padding-inline-start: 2rem !important;
        transform: translateY(-1px);
    }

    /* ===== Refined Hamburger Toggle ===== */
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-toggle span {
        width: 22px;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        margin-top: 0;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .hero-content {
        padding-top: 3rem;
    }

    .shaheen-content-grid {
        grid-template-columns: 1fr;
    }

    .shaheen-visual-card {
        height: 300px;
    }

    .shaheen-specs-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    :root {
        --section-padding: 60px 0;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-content {
        padding-top: 4rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.bg-white { background: var(--white); }
.bg-gray { background: var(--off-white); }
.bg-primary { background: var(--primary-dark); }

.color-primary { color: var(--primary-dark); }
.color-accent { color: var(--accent-teal); }
.color-gold { color: var(--gold); }

/* ===== Intro Video Screen ===== */
.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.intro-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-screen video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-screen .loading-text {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

/* ===== Fullpage Video Background ===== */
.fullpage-video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    opacity: 0;
    visibility: visible;
    transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullpage-video-bg.show {
    opacity: 1;
}

.fullpage-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.15);
    object-fit: cover;
    transition: transform 3s cubic-bezier(0.22, 1, 0.36, 1);
    filter: blur(10px);
}

.fullpage-video-bg.show video {
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
}

.fullpage-video-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 119, 182, 0.4) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    pointer-events: none;
}

/* ===== Diving Overlay Effects ===== */
.diving-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.depth-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 119, 182, 0.1) 30%,
        rgba(0, 119, 182, 0.3) 60%,
        rgba(3, 4, 94, 0.5) 100%
    );
    opacity: 0;
    animation: depthFade 3s ease-in forwards 2s;
}

@keyframes depthFade {
    to {
        opacity: 1;
    }
}

/* Make all sections transparent overlay on video */
section {
    position: relative;
    background: transparent !important;
}

section.bg-white,
section.bg-gray {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Hero adjustments for fullpage video */
.hero {
    margin-top: 0;
    background: transparent !important;
}

.hero .video-background {
    display: none;
}

/* ===== About Section - Ocean Theme ===== */
/* Wave Dividers */
.wave-divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
    pointer-events: none;
}

.wave-divider.wave-top {
    top: 0;
    transform: rotate(180deg);
}

.wave-divider.wave-bottom {
    bottom: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

/* Animated Wave Line */
.wave-line-animated {
    fill: none;
    stroke: #48cae4;
    stroke-width: 2.5;
    stroke-linecap: round;
    opacity: 0.8;
    filter: drop-shadow(0 0 10px rgba(72, 202, 228, 0.7));
    animation: waveFlow 6s ease-in-out infinite;
}

/* Wave glow effect */
.wave-divider:hover .wave-line-animated {
    stroke: #90e0ef;
    opacity: 1;
    stroke-width: 3;
    filter: drop-shadow(0 0 15px rgba(144, 224, 239, 0.9));
}

@keyframes waveFlow {
    0%, 100% {
        stroke-dashoffset: 0;
        opacity: 0.8;
    }
    50% {
        stroke-dashoffset: 20;
        opacity: 1;
    }
}

/* Section Header */
.section-subtitle {
    display: block;
    color: #48cae4;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(72, 202, 228, 0.4);
}

.ocean-title {
    position: relative;
    display: inline-block;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 800;
    text-shadow: 0 2px 15px rgba(3, 4, 94, 0.2);
}



.title-waves {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.wave-line {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #0077b6, #00b4d8, #48cae4);
    border-radius: 3px;
    animation: wavePulse 2s ease-in-out infinite;
    box-shadow: 0 2px 10px rgba(0, 180, 216, 0.4);
}

.wave-line:nth-child(2) {
    animation-delay: 0.3s;
}

.wave-line:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes wavePulse {
    0%, 100% {
        transform: scaleX(1);
        opacity: 1;
    }
    50% {
        transform: scaleX(1.2);
        opacity: 0.7;
    }
}

/* About Cards Container */
.about-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

/* Ocean Card */
.ocean-card {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 3.5rem 2.5rem;
    box-shadow:
        0 15px 50px rgba(0, 119, 182, 0.2),
        0 5px 20px rgba(0, 180, 216, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 2px solid rgba(0, 180, 216, 0.25);
}

.ocean-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 180, 216, 0.1),
        transparent
    );
    transition: left 0.8s ease;
}

.ocean-card:hover::before {
    left: 100%;
}

.ocean-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(0, 119, 182, 0.25),
        0 0 40px rgba(0, 180, 216, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(0, 180, 216, 0.3);
}

/* Card Ocean Background */
.card-ocean-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(
        to top,
        rgba(72, 202, 228, 0.12) 0%,
        rgba(0, 180, 216, 0.08) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: all 0.5s ease;
}

.ocean-card:hover .card-ocean-bg {
    opacity: 1;
    height: 180px;
}

/* Card Content */
.card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Ocean Icon Wrapper */
.ocean-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ocean-icon {
    width: 70px;
    height: 70px;
    color: #00b4d8;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    filter: drop-shadow(0 5px 20px rgba(0, 180, 216, 0.5));
    stroke-width: 2.5;
}

.ocean-card:hover .ocean-icon {
    transform: scale(1.15) rotate(5deg);
    color: #48cae4;
    filter: drop-shadow(0 8px 30px rgba(72, 202, 228, 0.6));
}

/* Icon Ripples */
.icon-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border: 3px solid #00b4d8;
    border-radius: 50%;
    opacity: 0;
    animation: rippleExpand 3s ease-out infinite;
    box-shadow: 0 0 15px rgba(0, 180, 216, 0.3);
}

.icon-ripple.delay-1 {
    animation-delay: 1s;
}

.icon-ripple.delay-2 {
    animation-delay: 2s;
}

@keyframes rippleExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.9;
        border-color: #48cae4;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.2);
        opacity: 0;
        border-color: #00b4d8;
    }
}

/* Card Title and Text */
.ocean-card h3 {
    color: #03045e;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 800;
    position: relative;
    text-shadow: 0 2px 8px rgba(3, 4, 94, 0.15);
}

.ocean-card h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #00b4d8, #48cae4, #48cae4);
    border-radius: 3px;
    transition: width 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 180, 216, 0.4);
}

.ocean-card:hover h3::after {
    width: 80px;
}

.ocean-card p {
    color: #023e8a;
    line-height: 2;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Card Wave Decoration */
.card-wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #00b4d8 20%,
        #48cae4 50%,
        #00b4d8 80%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: waveSlide 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 -2px 15px rgba(72, 202, 228, 0.4);
}

.ocean-card:hover .card-wave-decoration {
    opacity: 1;
}

@keyframes waveSlide {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

/* Card Bubbles */
.card-bubbles {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.ocean-card:hover .card-bubbles {
    opacity: 1;
}

.bubble-small {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(72, 202, 228, 0.9), rgba(0, 180, 216, 0.4));
    border-radius: 50%;
    animation: bubbleRise 4s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(72, 202, 228, 0.5);
}

.bubble-small:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.bubble-small:nth-child(2) {
    left: 50%;
    animation-delay: 1.5s;
    width: 12px;
    height: 12px;
}

.bubble-small:nth-child(3) {
    left: 80%;
    animation-delay: 3s;
    width: 8px;
    height: 8px;
}

@keyframes bubbleRise {
    0% {
        bottom: 20px;
        opacity: 0;
        transform: scale(0.8);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        bottom: 100%;
        opacity: 0;
        transform: scale(0.3);
    }
}

/* Ocean Stats */
.ocean-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow:
        0 10px 35px rgba(0, 119, 182, 0.18),
        0 5px 15px rgba(0, 180, 216, 0.12);
    border: 2px solid rgba(0, 180, 216, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00b4d8, #48cae4, #48cae4);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    box-shadow: 0 2px 10px rgba(0, 180, 216, 0.4);
}

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

.stat-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(0, 119, 182, 0.25),
        0 10px 25px rgba(0, 180, 216, 0.2);
    border-color: rgba(0, 180, 216, 0.4);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #03045e, #00b4d8, #48cae4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    line-height: 1;
    text-shadow: 0 2px 15px rgba(0, 180, 216, 0.2);
}

.stat-label {
    color: #023e8a;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ===== Professional Cards ===== */
.professional-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 20px 60px rgba(0, 119, 182, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.15);
}

.professional-card:hover {
    transform: translateY(-15px);
    box-shadow:
        0 30px 80px rgba(0, 119, 182, 0.35),
        0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.professional-card:hover .card-background {
    transform: scale(1.1);
}

/* Different backgrounds for each card - New Palette */
.professional-card[data-theme="vision"] .card-background {
    background: linear-gradient(135deg,
        rgba(0, 29, 61, 0.9),     /* #001d3d - Deep Ocean */
        rgba(0, 53, 102, 0.95));  /* #003566 - Ocean Blue */
}

.professional-card[data-theme="mission"] .card-background {
    background: linear-gradient(135deg,
        rgba(0, 119, 182, 0.9),   /* #0077b6 - Marine Blue */
        rgba(0, 180, 216, 0.95)); /* #00b4d8 - Teal Primary */
}

.professional-card[data-theme="values"] .card-background {
    background: linear-gradient(135deg,
        rgba(0, 180, 216, 0.9),   /* #00b4d8 - Teal Primary */
        rgba(72, 202, 228, 0.95)); /* #48cae4 - Light Teal */
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.15) 100%
    );
    pointer-events: none;
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 2.5rem;
    text-align: center;
}

.card-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(0, 180, 216, 0.25),    /* #00b4d8 */
        rgba(72, 202, 228, 0.2));   /* #48cae4 */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 50%;
    border: 3px solid rgba(144, 224, 239, 0.4); /* #90e0ef */
    box-shadow:
        0 10px 40px rgba(0, 180, 216, 0.3),
        0 0 0 8px rgba(255, 255, 255, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.card-icon::before {
    content: "";
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 2px solid rgba(72, 202, 228, 0.2);  /* #48cae4 */
    border-radius: 50%;
    animation: marineIconPulse 3s ease-in-out infinite;
}

@keyframes marineIconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.7;
    }
}

.professional-card:hover .card-icon {
    transform: scale(1.2) rotate(10deg);
    background: linear-gradient(135deg,
        rgba(0, 180, 216, 0.35),
        rgba(72, 202, 228, 0.3));
    border-color: rgba(144, 224, 239, 0.6);
    box-shadow:
        0 15px 50px rgba(0, 180, 216, 0.5),
        0 0 0 12px rgba(255, 255, 255, 0.15),
        inset 0 3px 0 rgba(255, 255, 255, 0.4);
}

.card-icon i {
    font-size: 2.8rem;
    color: #fff;
    text-shadow:
        0 2px 15px rgba(0, 180, 216, 0.6),
        0 4px 25px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 0 10px rgba(144, 224, 239, 0.5));
}

.card-content h3 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.card-content p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 2;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    max-width: 90%;
}

/* ===== Services Section ===== */
.services-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #003566 0%, #0077b6 50%, #00b4d8 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.services-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    min-height: 600px;
    height: auto;
}

.service-card .card-content {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
}

.service-card .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.service-card .card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
}

.service-card .card-icon i {
    font-size: 2rem;
}

.service-description {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1.5rem 0;
    flex: 1;
}

.service-features li {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    padding: 0.65rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: #48cae4;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(72, 202, 228, 0.5);
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

.service-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.service-btn i {
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(-5px);
}

/* Service Card Backgrounds - Official Palette */
.professional-card[data-theme="environmental"] .card-background {
    background: linear-gradient(135deg,
        rgba(0, 180, 216, 0.9),   /* #00b4d8 - Teal Primary */
        rgba(72, 202, 228, 0.95)); /* #48cae4 - Light Teal */
}

.professional-card[data-theme="oil-gas"] .card-background {
    background: linear-gradient(135deg,
        rgba(0, 53, 102, 0.9),    /* #003566 - Ocean Blue */
        rgba(0, 119, 182, 0.95)); /* #0077b6 - Marine Blue */
}

.professional-card[data-theme="security"] .card-background {
    background: linear-gradient(135deg,
        rgba(0, 29, 61, 0.9),     /* #001d3d - Deep Ocean */
        rgba(0, 53, 102, 0.95));  /* #003566 - Ocean Blue */
}

/* ===== Shaheen Drone Section ===== */
.shaheen-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #023e8a 0%, #0077b6 50%, #00b4d8 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.shaheen-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Shaheen Visual Card */
.shaheen-visual-card {
    position: relative;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 119, 182, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.shaheen-visual-card:hover {
    transform: translateY(-15px);
    box-shadow:
        0 30px 80px rgba(0, 119, 182, 0.4),
        0 15px 40px rgba(0, 0, 0, 0.2);
}

.shaheen-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(3, 4, 94, 0.95) 0%,
        rgba(2, 62, 138, 0.95) 50%,
        #00b4d8 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.shaheen-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(72, 202, 228, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 180, 216, 0.2) 0%, transparent 50%);
}

.shaheen-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
    color: #fff;
}

.shaheen-card-content h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow:
        0 2px 20px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(72, 202, 228, 0.4);
    letter-spacing: 1px;
}

.shaheen-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
}

.shaheen-icon {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.shaheen-visual-card:hover .shaheen-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.shaheen-icon i {
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(72, 202, 228, 0.8);
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: pulse 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.pulse-ring.delay-1 {
    animation-delay: 1.5s;
}

@keyframes pulse {
    0% {
        width: 120px;
        height: 120px;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

.shaheen-card-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.8;
}

.shaheen-badge {
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Shaheen Specs Card */
.shaheen-specs-card {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.95), rgba(0, 150, 199, 0.95));
    border-radius: 25px;
    padding: 3rem;
    box-shadow:
        0 20px 60px rgba(0, 119, 182, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.shaheen-specs-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=800') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.shaheen-specs-card > * {
    position: relative;
    z-index: 1;
}

.shaheen-specs-card:hover {
    transform: translateY(-15px);
    box-shadow:
        0 30px 80px rgba(0, 119, 182, 0.4),
        0 15px 40px rgba(0, 0, 0, 0.2);
}

.specs-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.specs-title i {
    color: #90e0ef;
    font-size: 2rem;
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 15px;
    border: 2px solid;
    transition: all 0.3s ease;
}

.spec-item:hover {
    transform: translateX(10px);
}

/* Spec Items - Rotating Colors */
.spec-item:nth-child(3n+1) {
    background: linear-gradient(135deg, #03045e, #023e8a);
    border-color: #03045e;
}
.spec-item:nth-child(3n+1) .spec-icon {
    background: linear-gradient(135deg, #023e8a, #0077b6);
}

.spec-item:nth-child(3n+2) {
    background: linear-gradient(135deg, #0077b6, #0096c7);
    border-color: #0077b6;
}
.spec-item:nth-child(3n+2) .spec-icon {
    background: linear-gradient(135deg, #0096c7, #00b4d8);
}

.spec-item:nth-child(3n+3) {
    background: linear-gradient(135deg, #00b4d8, #48cae4);
    border-color: #00b4d8;
}
.spec-item:nth-child(3n+3) .spec-icon {
    background: linear-gradient(135deg, #48cae4, #90e0ef);
}
.spec-item:nth-child(3n+3) .spec-label {
    color: #03045e;
}
.spec-item:nth-child(3n+3) .spec-value {
    color: #03045e;
    background: rgba(255, 255, 255, 0.3);
}

.spec-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 119, 182, 0.3);
    flex-shrink: 0;
}

.spec-icon i {
    font-size: 1.1rem;
    color: #fff;
}

.spec-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spec-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.spec-value {
    font-size: 1rem;
    font-weight: 800;
    color: #90e0ef;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
}

/* ===== Business Models Section ===== */
.business-models-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #001d3d 0%, #003566 50%, #0077b6 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.business-models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.business-card {
    min-height: 600px;
    height: auto;
}

.business-card .card-content {
    padding: 2.5rem 2rem;
    gap: 0.75rem;
}

.business-card .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.business-card .card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
}

.business-card .card-icon i {
    font-size: 2rem;
}

.business-description {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.business-features {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1.5rem 0;
    flex: 1;
}

.business-features li {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    padding: 0.65rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.business-features li:last-child {
    border-bottom: none;
}

.business-features li i {
    color: #90e0ef;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.business-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
    margin-top: 0.5rem;
}

.business-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateX(-5px) scale(1.05);
    box-shadow: 0 5px 25px rgba(255, 255, 255, 0.3);
}

.business-btn i {
    transition: transform 0.3s ease;
}

.business-btn:hover i {
    transform: translateX(-5px);
}

/* Business Card Backgrounds - Official Palette */
.professional-card[data-theme="rental"] .card-background {
    background: linear-gradient(135deg,
        rgba(0, 119, 182, 0.9),   /* #0077b6 - Marine Blue */
        rgba(0, 180, 216, 0.95)); /* #00b4d8 - Teal Primary */
}

.professional-card[data-theme="purchase"] .card-background {
    background: linear-gradient(135deg,
        rgba(0, 180, 216, 0.9),   /* #00b4d8 - Teal Primary */
        rgba(72, 202, 228, 0.95)); /* #48cae4 - Light Teal */
}

/* ===== Marine Projects Section ===== */
.marine-projects-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #001d3d 0%, #023e8a 50%, #003566 100%);
    z-index: 1;
}

.projects-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.projects-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projects-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 4, 94, 0.85) 0%, rgba(0, 119, 182, 0.7) 50%, rgba(3, 4, 94, 0.85) 100%);
}

.projects-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.projects-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.project-stat-card {
    border: 2px solid;
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.project-stat-card:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stat-icon-large {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #48cae4, #90e0ef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(72, 202, 228, 0.4);
    transition: all 0.3s ease;
}

.project-stat-card:hover .stat-icon-large {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(72, 202, 228, 0.6);
}

.stat-icon-large i {
    font-size: 2.5rem;
    color: #fff;
}

.stat-number-large {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.stat-label-large {
    font-size: 1.2rem;
    color: #90e0ef;
    font-weight: 600;
}

/* Project Stat Cards - Rotating Colors */
.project-stat-card:nth-child(3n+1) {
    background: linear-gradient(135deg, #03045e, #023e8a);
    border-color: #03045e;
}
.project-stat-card:nth-child(3n+1) .stat-icon-large {
    background: linear-gradient(135deg, #023e8a, #0077b6);
}

.project-stat-card:nth-child(3n+2) {
    background: linear-gradient(135deg, #0077b6, #0096c7);
    border-color: #0077b6;
}
.project-stat-card:nth-child(3n+2) .stat-icon-large {
    background: linear-gradient(135deg, #0096c7, #00b4d8);
}

.project-stat-card:nth-child(3n+3) {
    background: linear-gradient(135deg, #00b4d8, #48cae4);
    border-color: #00b4d8;
}
.project-stat-card:nth-child(3n+3) .stat-icon-large {
    background: linear-gradient(135deg, #48cae4, #90e0ef);
}

.projects-cta {
    margin-top: 4rem;
}

.cta-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: #03045e;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.cta-btn-large:hover {
    background: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cta-btn-large i {
    font-size: 1.5rem;
}

/* ===== Clients Section ===== */
.clients-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #00b4d8 0%, #48cae4 50%, #90e0ef 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.clients-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}
@media (max-width: 992px) {
    .clients-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .clients-grid-modern {
        grid-template-columns: 1fr;
    }
}

.client-card {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.05), rgba(72, 202, 228, 0.05));
    border: 2px solid rgba(0, 119, 182, 0.15);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 119, 182, 0.08);
}

.client-card:hover {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(72, 202, 228, 0.1));
    border-color: rgba(0, 119, 182, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 119, 182, 0.2);
}

.client-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 119, 182, 0.3);
    transition: all 0.3s ease;
}

.client-card:hover .client-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 30px rgba(0, 119, 182, 0.4);
}

.client-icon i {
    font-size: 2rem;
    color: #fff;
}

.client-card h4 {
    color: #03045e;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.client-card p {
    color: #0077b6;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Client Cards - Rotating Colors */
.client-card:nth-child(3n+1) {
    background: linear-gradient(135deg, #0077b6, #0096c7);
    border-color: #0077b6;
}
.client-card:nth-child(3n+1) .client-icon {
    background: linear-gradient(135deg, #023e8a, #0077b6);
}
.client-card:nth-child(3n+1) h4,
.client-card:nth-child(3n+1) p {
    color: #fff;
}

.client-card:nth-child(3n+2) {
    background: linear-gradient(135deg, #00b4d8, #48cae4);
    border-color: #00b4d8;
}
.client-card:nth-child(3n+2) .client-icon {
    background: linear-gradient(135deg, #0096c7, #00b4d8);
}
.client-card:nth-child(3n+2) h4,
.client-card:nth-child(3n+2) p {
    color: #fff;
}

.client-card:nth-child(3n+3) {
    background: linear-gradient(135deg, #00b4d8, #48cae4);
    border-color: #00b4d8;
}
.client-card:nth-child(3n+3) .client-icon {
    background: linear-gradient(135deg, #48cae4, #90e0ef);
}
.client-card:nth-child(3n+3) h4,
.client-card:nth-child(3n+3) p {
    color: #fff;
}

/* ===== Why Us Section ===== */
.why-us-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0077b6 0%, #00b4d8 50%, #48cae4 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}
@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

.why-us-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.why-us-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 119, 182, 0.25);
    border-color: rgba(0, 180, 216, 0.3);
}

.why-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.why-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #00b4d8, #48cae4);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-us-card:hover .why-icon::before {
    opacity: 1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.why-us-card:hover .why-icon {
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(0, 119, 182, 0.4);
}

.why-icon i {
    font-size: 2.2rem;
    color: #fff;
}

.why-us-card h4 {
    color: #03045e;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.why-us-card p {
    color: #0077b6;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
}

/* Why Us Cards - Rotating Colors */
.why-us-card:nth-child(3n+1) {
    background: linear-gradient(135deg, #0077b6, #0096c7);
    border-color: #0077b6;
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.4);
}
.why-us-card:nth-child(3n+1) .why-icon {
    background: linear-gradient(135deg, #0096c7, #00b4d8);
}
.why-us-card:nth-child(3n+1) h4,
.why-us-card:nth-child(3n+1) p {
    color: #fff;
}

.why-us-card:nth-child(3n+2) {
    background: linear-gradient(135deg, #0096c7, #00b4d8);
    border-color: #0096c7;
    box-shadow: 0 10px 30px rgba(0, 150, 199, 0.4);
}
.why-us-card:nth-child(3n+2) .why-icon {
    background: linear-gradient(135deg, #00b4d8, #48cae4);
}
.why-us-card:nth-child(3n+2) h4,
.why-us-card:nth-child(3n+2) p {
    color: #fff;
}

.why-us-card:nth-child(3n+3) {
    background: linear-gradient(135deg, #0077b6, #0096c7);
    border-color: #0077b6;
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.4);
}
.why-us-card:nth-child(3n+3) .why-icon {
    background: linear-gradient(135deg, #0096c7, #00b4d8);
}
.why-us-card:nth-child(3n+3) h4,
.why-us-card:nth-child(3n+3) p {
    color: #fff;
}

/* ===== CTA Section Modern ===== */
.cta-section-modern {
    padding: 120px 0;
    background: linear-gradient(180deg, #023e8a 0%, #0077b6 50%, #00b4d8 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(72, 202, 228, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 180, 216, 0.2) 0%, transparent 50%);
    z-index: 0;
}

.cta-content-modern {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.cta-icon-large {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.cta-icon-large i {
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 0 0 30px rgba(72, 202, 228, 0.8);
}

.cta-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    line-height: 1.3;
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    color: #fff;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.cta-btn-primary {
    padding: 1.5rem 3rem;
    background: rgba(255, 255, 255, 0.95);
    color: #03045e;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    filter: brightness(1.15);
}

.cta-btn-secondary {
    padding: 1.5rem 3rem;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-5px);
}

.cta-features-list {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-feature-item i {
    color: #90e0ef;
    font-size: 1.3rem;
    text-shadow: 0 0 15px rgba(144, 224, 239, 0.8);
}

/* SVG Animations */
.wave-bg {
    animation: waveFloat 6s ease-in-out infinite;
}

.wave-2 {
    animation-delay: 0.5s;
}

.wave-3 {
    animation-delay: 1s;
}

@keyframes waveFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Lighthouse Animations */
.light-pulse {
    animation: lightPulse 2s ease-in-out infinite;
}

@keyframes lightPulse {
    0%, 100% {
        opacity: 1;
        r: 8;
    }
    50% {
        opacity: 0.5;
        r: 10;
    }
}

.light-ray {
    animation: rayFlash 3s ease-in-out infinite;
}

.ray-1 { animation-delay: 0s; }
.ray-2 { animation-delay: 0.3s; }
.ray-3 { animation-delay: 0.6s; }

@keyframes rayFlash {
    0%, 40%, 100% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
}

/* Birds Animation */
.bird {
    animation: birdFly 20s linear infinite;
}

.bird-1 {
    animation-delay: 0s;
}

.bird-2 {
    animation-delay: 10s;
}

@keyframes birdFly {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(350px);
    }
}

/* Submarine Animation */
.submarine {
    animation: submarineMove 8s ease-in-out infinite;
}

@keyframes submarineMove {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(20px) translateY(-10px);
    }
}

/* Floating Bubbles */
.float-bubble {
    animation: bubbleFloat 4s ease-in-out infinite;
}

.b1 { animation-delay: 0s; }
.b2 { animation-delay: 1s; }
.b3 { animation-delay: 2s; }
.b4 { animation-delay: 3s; }

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-80px);
        opacity: 0;
    }
}

/* Swimming Fish */
.swimming-fish {
    animation: fishSwim 10s ease-in-out infinite;
}

.fish-1 {
    animation-delay: 0s;
}

.fish-2 {
    animation-delay: 5s;
}

@keyframes fishSwim {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-50px);
    }
}

/* Coral Reef Animation */
.coral-reef path {
    animation: coralSway 4s ease-in-out infinite;
}

.coral-reef path:nth-child(1) { animation-delay: 0s; }
.coral-reef path:nth-child(3) { animation-delay: 0.5s; }
.coral-reef path:nth-child(5) { animation-delay: 1s; }

@keyframes coralSway {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(3deg);
    }
}

/* Starfish Rotation */
.starfish {
    animation: starfishRotate 20s linear infinite;
}

@keyframes starfishRotate {
    0% {
        transform: translate(150px, 150px) rotate(0deg);
    }
    100% {
        transform: translate(150px, 150px) rotate(360deg);
    }
}

/* Seaweed Sway */
.seaweed {
    transform-origin: bottom center;
    animation: seaweedSway 3s ease-in-out infinite;
}

.sw-1 { animation-delay: 0s; }
.sw-2 { animation-delay: 1s; }

@keyframes seaweedSway {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

/* School Fish */
.school-fish {
    animation: schoolMove 8s ease-in-out infinite;
}

.sf-1 { animation-delay: 0s; }
.sf-2 { animation-delay: 0.2s; }
.sf-3 { animation-delay: 0.4s; }
.sf-4 { animation-delay: 0.6s; }

@keyframes schoolMove {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-30px, 20px);
    }
}

/* ===== Stats Illustrated ===== */
.ocean-stats-illustrated {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
    position: relative;
    z-index: 2;
}

/* ===== Professional Stats ===== */
.professional-stat {
    position: relative;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 15px 45px rgba(0, 119, 182, 0.2),
        0 8px 25px rgba(0, 0, 0, 0.12);
}

.professional-stat:hover {
    transform: translateY(-12px);
    box-shadow:
        0 25px 60px rgba(0, 119, 182, 0.3),
        0 12px 35px rgba(0, 0, 0, 0.18);
}

.stat-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(3, 4, 94, 0.95) 0%,
        rgba(0, 119, 182, 0.95) 50%,
        rgba(0, 180, 216, 0.95) 100%
    );
    transition: all 0.5s ease;
}

.professional-stat:hover .stat-background {
    background: linear-gradient(135deg,
        rgba(3, 4, 94, 1) 0%,
        rgba(0, 119, 182, 1) 50%,
        rgba(0, 180, 216, 1) 100%
    );
}

.professional-stat:nth-child(1) .stat-background {
    background: linear-gradient(135deg, #03045e 0%, #023e8a 100%);
}

.professional-stat:nth-child(2) .stat-background {
    background: linear-gradient(135deg, #0077b6 0%, #0096c7 100%);
}

.professional-stat:nth-child(3) .stat-background {
    background: linear-gradient(135deg, #00b4d8 0%, #48cae4 100%);
}

.professional-stat:nth-child(4) .stat-background {
    background: linear-gradient(135deg, #90e0ef 0%, #ade8f4 100%);
}

.stat-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2.5rem 2rem;
    text-align: center;
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.professional-stat:hover .stat-icon {
    transform: scale(1.12) rotate(8deg);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.stat-icon i {
    font-size: 2.2rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-content .stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow:
        0 2px 15px rgba(0, 0, 0, 0.3),
        0 4px 30px rgba(0, 0, 0, 0.2);
    letter-spacing: -2px;
}

.stat-content .stat-label {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

/* Stats SVG Animations */
.wave-anim {
    animation: waveMove 3s ease-in-out infinite;
}

.wave-anim-2 {
    animation: waveMove 4s ease-in-out infinite reverse;
}

@keyframes waveMove {
    0%, 100% {
        d: path("M0,120 Q50,110 100,120 T200,120");
    }
    50% {
        d: path("M0,120 Q50,130 100,120 T200,120");
    }
}

.flag-wave {
    animation: flagWave 2s ease-in-out infinite;
}

@keyframes flagWave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.rope-swing {
    transform-origin: top center;
    animation: ropeSwing 3s ease-in-out infinite;
}

@keyframes ropeSwing {
    0%, 100% {
        transform: rotate(-3deg);
    }
    50% {
        transform: rotate(3deg);
    }
}

.ripple-1, .ripple-2 {
    animation: rippleGrow 2s ease-out infinite;
}

.ripple-2 {
    animation-delay: 1s;
}

@keyframes rippleGrow {
    0% {
        r: 20;
        opacity: 0.6;
    }
    100% {
        r: 50;
        opacity: 0;
    }
}

.star-twinkle {
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.compass-needle {
    transform-origin: center;
    animation: compassSpin 8s ease-in-out infinite;
}

@keyframes compassSpin {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(10deg);
    }
    75% {
        transform: rotate(-10deg);
    }
}

.float-up {
    animation: floatUp 4s ease-in-out infinite;
}

.fb-1 { animation-delay: 0s; }
.fb-2 { animation-delay: 2s; }

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-40px);
        opacity: 0;
    }
}

/* ===== Responsive - Professional Design ===== */
@media (max-width: 768px) {
    .about-cards-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ocean-stats-illustrated {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .wave-divider svg {
        height: 50px;
    }


    /* Professional Cards Mobile */
    .professional-card {
        height: 350px;
    }

    .card-content {
        padding: 2rem 1.5rem;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .card-icon i {
        font-size: 2rem;
    }

    .card-content h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .card-content p {
        font-size: 1rem;
        line-height: 1.8;
    }

    /* Professional Stats Mobile */
    .professional-stat {
        height: 240px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .stat-icon i {
        font-size: 1.8rem;
    }

    .stat-content .stat-number {
        font-size: 2.8rem;
    }

    .stat-content .stat-label {
        font-size: 0.95rem;
    }

    .professional-card:hover,
    .professional-stat:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 480px) {
    .ocean-stats-illustrated {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .professional-card {
        height: 320px;
    }

    .card-content {
        padding: 1.5rem 1.2rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .card-icon i {
        font-size: 1.8rem;
    }

    .card-content h3 {
        font-size: 1.6rem;
    }

    .card-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .professional-stat {
        height: 220px;
    }

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

    .stat-content .stat-label {
        font-size: 0.9rem;
    }
}

/* ===== Custom Cursor - Disabled ===== */

/* ===== Enhanced Intro Screen ===== */
.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 1.5s cubic-bezier(0.76, 0, 0.24, 1);
    opacity: 1;
}

.intro-screen.hidden {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.intro-screen video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: all 1.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.intro-screen.hidden video {
    transform: scale(1.2) translateY(-50px);
    opacity: 0;
}

.intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%,
        rgba(0, 4, 94, 0.3) 0%,
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-screen.hidden .intro-overlay {
    opacity: 0;
}

.intro-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-screen.hidden .intro-content {
    opacity: 0;
    transform: translateY(-30px);
}

.intro-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    color: white;
    margin: 0;
    background: linear-gradient(135deg,
        #ffffff 0%,
        var(--light-blue) 30%,
        var(--accent-teal) 60%,
        #ffffff 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite, fadeInScale 1.5s ease;
    text-shadow: 0 0 80px rgba(72, 202, 228, 0.5);
    letter-spacing: 2px;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Dive Button - Professional Design */
.dive-button {
    padding: 0;
    font-family: 'Cairo', sans-serif;
    border: none;
    background: transparent;
    color: white;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.dive-text {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.dive-button:hover .dive-text {
    transform: translateY(-5px);
    text-shadow: 0 6px 30px rgba(72, 202, 228, 0.6);
}

/* Dive Arrow Container */
.dive-arrow {
    position: relative;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dive-arrow svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Inner SVG with circles and arrow */
.dive-arrow svg:first-child {
    width: 56px;
    height: 56px;
    z-index: 2;
}

/* Outer circle */
.outer-circle {
    width: 72px;
    height: 72px;
    z-index: 1;
    animation: rotateCircle 20s linear infinite;
}

@keyframes rotateCircle {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Circle animations */
.circle-1 {
    animation: pulseCircle1 2s ease-in-out infinite;
    transform-origin: center;
}

.circle-2 {
    animation: pulseCircle2 2s ease-in-out infinite;
    transform-origin: center;
    opacity: 0.6;
}

@keyframes pulseCircle1 {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes pulseCircle2 {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1.05);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.1);
    }
}

/* Arrow animation */
.arrow {
    animation: bounceArrow 1.5s ease-in-out infinite;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(4px);
    }
}

/* Hover effects */
.dive-button:hover .dive-arrow {
    transform: scale(1.1);
}

.dive-button:hover .arrow {
    animation: bounceArrowFast 0.6s ease-in-out infinite;
}

@keyframes bounceArrowFast {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}

.dive-button:hover .outer-circle {
    animation: rotateCircleFast 10s linear infinite;
}

@keyframes rotateCircleFast {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Glow effect on hover */
.dive-button:hover .dive-arrow svg {
    filter: drop-shadow(0 0 10px rgba(72, 202, 228, 0.8));
}

.skip-hint {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    z-index: 3;
    animation: fadeInOut 3s ease-in-out infinite;
    font-weight: 300;
    letter-spacing: 1px;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ===== Wave Transition Overlay ===== */
.wave-transition-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transform: translateY(100%);
    transition: all 1.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.wave-transition-overlay.active {
    opacity: 1;
    transform: translateY(0);
}

.wave-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
    transition: transform 1.2s cubic-bezier(0.76, 0, 0.24, 1);
}

.wave-transition-overlay.active .wave-svg {
    transform: translateY(0);
}

.wave-transition-overlay.active .wave-2 {
    transition-delay: 0.1s;
}

.wave-transition-overlay.active .wave-3 {
    transition-delay: 0.2s;
}

/* Responsive adjustments for intro */
@media (max-width: 768px) {
    .intro-content {
        padding: 30px;
        gap: 30px;
    }

    .dive-text {
        font-size: 1.4rem;
    }

    .dive-arrow {
        width: 56px;
        height: 56px;
    }

    .dive-arrow svg:first-child {
        width: 44px;
        height: 44px;
    }

    .outer-circle {
        width: 56px;
        height: 56px;
    }

    .skip-hint {
        bottom: 50px;
        font-size: 0.9rem;
    }
}

/* ===== Loading Screen ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg,
        var(--color-1) 0%,
        var(--color-2) 50%,
        var(--color-3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

.loading-screen::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center,
        rgba(72, 202, 228, 0.1) 0%,
        transparent 70%);
    animation: rotateGradient 15s linear infinite;
}

@keyframes rotateGradient {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-container {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Ocean Loader Animation */
.ocean-loader {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wave-loader {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wave {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-teal);
    border-radius: 50%;
    animation: waveExpand 2s ease-out infinite;
    opacity: 0;
}

.wave:nth-child(1) {
    animation-delay: 0s;
}

.wave:nth-child(2) {
    animation-delay: 0.6s;
}

.wave:nth-child(3) {
    animation-delay: 1.2s;
}

@keyframes waveExpand {
    0% {
        transform: scale(0.3);
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Logo Icon in Center */
.loader-icon {
    position: relative;
    z-index: 3;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(72, 202, 228, 0.8),
                0 0 80px rgba(72, 202, 228, 0.4);
    animation: floatLogo 3s ease-in-out infinite;
    padding: 10px;
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.loader-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    animation: pulseLogo 2s ease-in-out infinite;
}

@keyframes pulseLogo {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
}

/* Loading Text */
.loading-text {
    color: white;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    animation: pulseText 2s ease-in-out infinite;
}

@keyframes pulseText {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

/* Responsive Loading Screen */
@media (max-width: 768px) {
    .ocean-loader {
        width: 120px;
        height: 120px;
    }

    .loader-icon {
        width: 60px;
        height: 60px;
        padding: 8px;
    }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #001d3d 0%, #003566 50%, #001d3d 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.contact-content {
    position: relative;
    z-index: 1;
}

/* Contact Info Cards */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-info-card {
    border: 2px solid;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #48cae4, #00b4d8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(72, 202, 228, 0.4);
}

.contact-info-card h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.contact-card-link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.contact-card-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

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

/* Contact Info Cards - Rotating Colors */
.contact-info-card:nth-child(3n+1) {
    background: linear-gradient(135deg, #0077b6, #0096c7);
    border-color: #0077b6;
}
.contact-info-card:nth-child(3n+1) .contact-card-icon {
    background: linear-gradient(135deg, #0096c7, #00b4d8);
}

.contact-info-card:nth-child(3n+2) {
    background: linear-gradient(135deg, #0096c7, #00b4d8);
    border-color: #0096c7;
}
.contact-info-card:nth-child(3n+2) .contact-card-icon {
    background: linear-gradient(135deg, #00b4d8, #48cae4);
}

.contact-info-card:nth-child(3n+3) {
    background: linear-gradient(135deg, #0077b6, #0096c7);
    border-color: #0077b6;
}
.contact-info-card:nth-child(3n+3) .contact-card-icon {
    background: linear-gradient(135deg, #0096c7, #00b4d8);
}

/* Contact Form */
.contact-form-wrapper {
    background: linear-gradient(135deg, #0077b6, #0096c7);
    border: 2px solid #0077b6;
    border-radius: 30px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 119, 182, 0.4);
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #90e0ef;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    color: white;
    font-size: 1rem;
    font-family: "Cairo", sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: #48cae4;
    box-shadow: 0 0 0 3px rgba(72, 202, 228, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    padding-left: 1.2rem;
}

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

.submit-btn {
    background: linear-gradient(135deg, #48cae4, #00b4d8);
    border: none;
    border-radius: 15px;
    padding: 1.2rem 3rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: "Cairo", sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(72, 202, 228, 0.3);
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(72, 202, 228, 0.5);
    background: linear-gradient(135deg, #00b4d8, #0096c7);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn i {
    font-size: 1rem;
}

/* Responsive Contact Section */
@media (max-width: 768px) {
    .contact-section {
        padding: 5rem 0;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .submit-btn {
        width: 100%;
    }
}

/* Contact Form Success Overlay */
.contact-success-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    min-height: 350px;
    animation: successFadeIn 0.6s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.success-icon-ring {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(144, 224, 239, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: ringPulse 2s ease-in-out infinite;
}

.success-icon-ring svg {
    width: 40px;
    height: 40px;
    color: #90e0ef;
}

.success-check {
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: drawCheck 0.6s 0.3s ease forwards;
}

.success-title {
    font-family: 'Cairo', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.75rem;
}

.success-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 420px;
    margin: 0 0 2rem;
}

.success-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    color: #0077b6;
    background: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-back-btn:hover {
    background: #f0f9ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@keyframes successFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

@keyframes ringPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(144, 224, 239, 0.3); }
    50% { box-shadow: 0 0 0 15px rgba(144, 224, 239, 0); }
}

/* Contact Form Error Box */
.contact-error-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    animation: errorSlideIn 0.4s ease;
    transition: opacity 0.3s ease;
}

.error-box-header {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.error-box-header svg {
    width: 20px;
    height: 20px;
    color: #fca5a5;
    flex-shrink: 0;
    margin-top: 2px;
}

.error-box-header span {
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.6;
    display: block;
}

.error-close-btn {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: #fca5a5;
    cursor: pointer;
    padding: 0 0.25rem;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.error-close-btn:hover {
    opacity: 1;
    color: #fff;
}

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

/* ===== END CONTACT SECTION ===== */

/* ===== PAGE HERO ===== */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #001d3d 0%, #003566 50%, #001d3d 100%);
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 180, 216, 0.1), transparent);
}

.page-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.page-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #90e0ef;
    margin-bottom: 2rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.breadcrumb a {
    color: #48cae4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #90e0ef;
}

.breadcrumb span:last-child {
    color: white;
}

/* ===== ABOUT DETAILS SECTION ===== */
.about-details-section {
    padding: 8rem 0;
    background: white;
}

.about-intro {
    margin-bottom: 4rem;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    color: #001d3d;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #003566;
    font-weight: 500;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #001d3d;
}

.about-image {
    position: relative;
}

.image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 29, 61, 0.2);
}

.image-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 29, 61, 0.95), transparent);
    color: white;
}

.image-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.image-overlay p {
    font-size: 1rem;
    color: #90e0ef;
}

/* ===== VMV SECTION ===== */
.vmv-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.vmv-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 29, 61, 0.1);
    transition: all 0.4s ease;
    border-top: 4px solid #48cae4;
}

.vmv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 180, 216, 0.2);
}

.vmv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #48cae4, #00b4d8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.vmv-card h3 {
    font-size: 1.8rem;
    color: #001d3d;
    margin-bottom: 1rem;
    text-align: center;
}

.vmv-card p {
    color: #003566;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: center;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: #003566;
    font-size: 1.1rem;
}

.values-list i {
    color: #48cae4;
    font-size: 1.2rem;
}

/* ===== DIFFERENTIATORS SECTION ===== */
.differentiators-section {
    padding: 8rem 0;
    background: white;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.diff-card {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 2px solid #e9ecef;
    position: relative;
    transition: all 0.4s ease;
}

.diff-card:hover {
    border-color: #48cae4;
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.15);
    transform: translateY(-5px);
}

.diff-number {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #48cae4, #00b4d8);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.diff-icon {
    font-size: 2.5rem;
    color: #48cae4;
    margin-bottom: 1.5rem;
}

.diff-card h4 {
    font-size: 1.5rem;
    color: #001d3d;
    margin-bottom: 1rem;
}

.diff-card p {
    color: #003566;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ===== ENHANCED ABOUT PAGE STYLES ===== */

/* Text Content Box */
.text-content-box {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border-right: 4px solid #48cae4;
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.08);
    transition: all 0.4s ease;
}

.text-content-box:hover {
    transform: translateX(-5px);
    box-shadow: 0 15px 45px rgba(0, 180, 216, 0.12);
}

/* Enhanced Image Card */
.image-card-enhanced {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 29, 61, 0.25);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-card-enhanced:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 90px rgba(0, 180, 216, 0.35);
}

.image-wrapper {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-card-enhanced:hover .image-wrapper img {
    transform: scale(1.1);
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(72, 202, 228, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.image-card-enhanced:hover .image-glow {
    opacity: 1;
}

.image-overlay-enhanced {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 29, 61, 0.98) 0%, rgba(0, 119, 182, 0.95) 100%);
    padding: 2.5rem;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.overlay-content {
    text-align: center;
}

.image-overlay-enhanced h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: white;
}

.image-overlay-enhanced p {
    font-size: 1.1rem;
    color: #90e0ef;
    margin-bottom: 1.5rem;
}

.badge-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tech-badge {
    background: rgba(144, 224, 239, 0.2);
    border: 2px solid #90e0ef;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.tech-badge i {
    color: #90e0ef;
}

/* Statistics Section */
.stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #001d3d 0%, #0077b6 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(72, 202, 228, 0.15), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 180, 216, 0.1), transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(144, 224, 239, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: rgba(144, 224, 239, 0.5);
    box-shadow: 0 20px 60px rgba(72, 202, 228, 0.3);
}

.stat-icon {
    font-size: 3rem;
    color: #90e0ef;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(144, 224, 239, 0.5));
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(144, 224, 239, 0.5);
}

.stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-top: 1rem;
}

.stat-suffix {
    display: inline-block;
    font-size: 2.5rem;
    color: #90e0ef;
    font-weight: 700;
    margin-top: 0.5rem;
}

/* Enhanced VMV Section */
.vmv-section {
    position: relative;
    overflow: hidden;
}

.vmv-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(72, 202, 228, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 180, 216, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.vmv-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.vmv-card-enhanced {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 29, 61, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.vmv-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #48cae4, #00b4d8, #0077b6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.vmv-card-enhanced:hover::before {
    transform: scaleX(1);
}

.vmv-card-enhanced:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 180, 216, 0.25);
}

.vmv-card-inner {
    padding: 3rem 2.5rem;
}

.vmv-icon-enhanced {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    position: relative;
    transition: all 0.4s ease;
}

.vision-icon {
    background: linear-gradient(135deg, #0077b6, #00b4d8);
}

.mission-icon {
    background: linear-gradient(135deg, #00b4d8, #48cae4);
}

.values-icon {
    background: linear-gradient(135deg, #48cae4, #90e0ef);
}

.icon-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    border: 3px solid currentColor;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
}

.vmv-card-enhanced:hover .icon-circle {
    opacity: 0.3;
    width: 130%;
    height: 130%;
}

.vmv-card-enhanced:hover .vmv-icon-enhanced {
    transform: scale(1.1) rotate(360deg);
}

.vmv-card-enhanced h3 {
    font-size: 2rem;
    color: #001d3d;
    margin-bottom: 1.5rem;
    text-align: center;
}

.vmv-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #48cae4, #00b4d8);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.vmv-card-enhanced p {
    color: #003566;
    line-height: 1.9;
    font-size: 1.1rem;
    text-align: center;
}

.values-list-enhanced {
    list-style: none;
    padding: 0;
    text-align: right;
}

.values-list-enhanced li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    color: #003566;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(72, 202, 228, 0.2);
    transition: all 0.3s ease;
}

.values-list-enhanced li:last-child {
    border-bottom: none;
}

.values-list-enhanced li:hover {
    padding-right: 1rem;
    color: #001d3d;
}

.value-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #48cae4, #00b4d8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 0.9rem;
}

/* Enhanced Differentiators Grid */
.differentiators-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.diff-card-enhanced {
    background: white;
    border-radius: 25px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 29, 61, 0.1);
}

.diff-card-enhanced::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(72, 202, 228, 0.05), rgba(0, 180, 216, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.diff-card-enhanced:hover::after {
    opacity: 1;
}

.diff-card-enhanced:hover {
    transform: translateY(-10px);
    border-color: #48cae4;
    box-shadow: 0 20px 60px rgba(0, 180, 216, 0.2);
}

.diff-number-enhanced {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.4);
    transition: all 0.4s ease;
}

.diff-card-enhanced:hover .diff-number-enhanced {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, #48cae4, #90e0ef);
}

.diff-icon-wrapper {
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.diff-icon-enhanced {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(72, 202, 228, 0.15), rgba(0, 180, 216, 0.15));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #0077b6;
    transition: all 0.4s ease;
}

.diff-card-enhanced:hover .diff-icon-enhanced {
    background: linear-gradient(135deg, #48cae4, #00b4d8);
    color: white;
    transform: scale(1.1) rotate(-10deg);
}

.diff-card-enhanced h4 {
    font-size: 1.6rem;
    color: #001d3d;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.diff-card-enhanced p {
    color: #003566;
    line-height: 1.8;
    font-size: 1.05rem;
}

.card-glow {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(72, 202, 228, 0.2), transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.diff-card-enhanced:hover .card-glow {
    opacity: 1;
}

/* ===== FOUNDERS SECTION ===== */
.founders-intro-section {
    padding: 8rem 0 4rem;
    background: white;
}

.founders-section {
    padding: 4rem 0 8rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.founder-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 29, 61, 0.1);
    transition: all 0.4s ease;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 180, 216, 0.2);
}

.founder-image {
    position: relative;
    background: linear-gradient(135deg, #48cae4, #00b4d8);
    padding: 3rem;
}

.image-placeholder {
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 5rem;
    color: #48cae4;
}

.founder-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #001d3d;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.founder-info {
    padding: 2.5rem;
}

.founder-name {
    font-size: 1.8rem;
    color: #001d3d;
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1.2rem;
    color: #48cae4;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-specialization {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    color: #003566;
}

.founder-specialization i {
    color: #48cae4;
    font-size: 1.2rem;
}

.founder-bio {
    color: #003566;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.founder-achievements {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #003566;
    font-size: 0.95rem;
}

.achievement-item i {
    color: #48cae4;
}

.founder-social {
    display: flex;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #003566;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #48cae4;
    color: white;
    transform: translateY(-3px);
}

/* ===== FOUNDERS VISION SECTION ===== */
.founders-vision-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #001d3d 0%, #003566 100%);
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.vision-icon {
    font-size: 4rem;
    color: rgba(144, 224, 239, 0.2);
    margin-bottom: 2rem;
}

.vision-quote {
    font-size: 1.8rem;
    color: white;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
    font-weight: 300;
}

.vision-attribution {
    color: #90e0ef;
    font-size: 1.2rem;
    font-weight: 500;
}

/* ===== JOIN TEAM SECTION ===== */
.join-team-section {
    padding: 6rem 0;
    background: white;
}

.join-team-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.join-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #48cae4, #00b4d8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 2rem;
}

.join-team-content h2 {
    font-size: 2.5rem;
    color: #001d3d;
    margin-bottom: 1rem;
}

.join-team-content p {
    font-size: 1.2rem;
    color: #003566;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.join-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #48cae4, #00b4d8);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(72, 202, 228, 0.3);
}

.join-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(72, 202, 228, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .differentiators-grid,
    .differentiators-grid-enhanced,
    .founders-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        min-height: 40vh;
    }

    .vmv-grid,
    .vmv-grid-enhanced {
        grid-template-columns: 1fr;
    }

    /* Enhanced About Page - Mobile */
    .text-content-box {
        padding: 1.5rem;
    }

    .image-wrapper {
        height: 350px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .vmv-card-inner {
        padding: 2rem 1.5rem;
    }

    .vmv-icon-enhanced {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .vmv-card-enhanced h3 {
        font-size: 1.6rem;
    }

    .diff-card-enhanced {
        padding: 2.5rem 1.5rem;
    }

    .diff-number-enhanced {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        top: -15px;
        right: 20px;
    }

    .diff-icon-enhanced {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .diff-card-enhanced h4 {
        font-size: 1.4rem;
    }
}


/* ===== SERVICE PAGES ===== */
.service-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.environmental-hero {
    background: linear-gradient(135deg, #2d6a4f 0%, #40916c 50%, #2d6a4f 100%);
}

.oil-gas-hero {
    background: linear-gradient(135deg, #d62828 0%, #f77f00 50%, #d62828 100%);
}

.security-hero {
    background: linear-gradient(135deg, #14213d 0%, #023047 50%, #14213d 100%);
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent);
}

.service-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.service-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
    margin: 0 auto 2rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.service-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

/* Service Overview */
.service-overview-section {
    padding: 8rem 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    color: #001d3d;
    margin-bottom: 1.5rem;
}

.overview-stats {
    display: grid;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: #48cae4;
    transform: translateX(10px);
}

.stat-item .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #48cae4, #00b4d8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-text strong {
    font-size: 1.2rem;
    color: #001d3d;
    margin-bottom: 0.3rem;
}

.stat-text span {
    color: #003566;
    font-size: 1rem;
}

.feature-image-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 29, 61, 0.2);
}

.feature-image-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.8rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: #001d3d;
    font-size: 1.1rem;
}

.image-badge.oil-gas {
    background: rgba(247, 127, 0, 0.95);
    color: white;
}

.image-badge.security {
    background: rgba(2, 48, 71, 0.95);
    color: white;
}

.image-badge i {
    font-size: 1.3rem;
}

/* Service Features */
.service-features-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 29, 61, 0.08);
    transition: all 0.4s ease;
    border-top: 5px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 180, 216, 0.15);
}

.feature-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.feature-icon.environmental {
    background: linear-gradient(135deg, #40916c, #2d6a4f);
}

.feature-icon.oil-gas {
    background: linear-gradient(135deg, #f77f00, #d62828);
}

.feature-icon.security {
    background: linear-gradient(135deg, #023047, #14213d);
}

.feature-card h3 {
    font-size: 1.6rem;
    color: #001d3d;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-card > p {
    color: #003566;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.05rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    color: #003566;
    font-size: 1rem;
}

.feature-list i {
    color: #48cae4;
    font-size: 1rem;
}

/* Applications Section */
.applications-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #001d3d 0%, #003566 100%);
}

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

.application-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.application-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #48cae4;
    transform: translateY(-8px);
}

.application-card i {
    font-size: 3rem;
    color: #90e0ef;
    margin-bottom: 1.2rem;
}

.application-card h4 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.8rem;
}

.application-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Service CTA */
.service-cta-section {
    padding: 8rem 0;
    background: white;
}

.cta-content-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 29, 61, 0.1);
}

.cta-content-box h2 {
    font-size: 2.5rem;
    color: #001d3d;
    margin-bottom: 1.2rem;
}

.cta-content-box p {
    font-size: 1.3rem;
    color: #003566;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #48cae4, #00b4d8);
    color: white;
    box-shadow: 0 10px 30px rgba(72, 202, 228, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(72, 202, 228, 0.5);
}

.cta-btn-secondary {
    background: white;
    color: #00b4d8;
    border: 2px solid #00b4d8;
}

.cta-btn-secondary:hover {
    background: #00b4d8;
    color: white;
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .service-hero {
        min-height: 50vh;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-grid,
    .applications-grid {
        grid-template-columns: 1fr;
    }

    .cta-content-box {
        padding: 2.5rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}


/* Fix text colors in service pages */
.service-overview-section .overview-content p,
.service-overview-section .overview-content .lead-text {
    color: #003566 !important;
}

.service-features-section .section-header p {
    color: #003566 !important;
}


/* Fix all text visibility issues */
.about-details-section p,
.about-details-section .lead-text {
    color: #003566 !important;
}

.vmv-section .section-header h2 {
    color: #001d3d !important;
}

.differentiators-section .section-header h2 {
    color: #001d3d !important;
}

.founders-intro-section .section-header h2,
.founders-intro-section .section-header p {
    color: #001d3d !important;
}

.join-team-section h2,
.join-team-section p {
    color: #001d3d !important;
}

/* Ensure all white background sections have dark text */
section:not(.applications-section):not(.founders-vision-section):not(.contact-section) .section-header h2 {
    color: white !important;
}

section:not(.applications-section):not(.founders-vision-section):not(.contact-section) .section-header p {
    color: white !important;
}


/* Override white backgrounds with colored backgrounds */
.about-details-section,
.service-overview-section,
.differentiators-section,
.founders-intro-section,
.join-team-section,
.service-cta-section {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%) !important;
}

/* Add patterns to hero sections */


.service-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, 0.05)),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, 0.05));
    background-size: 
        100% 100%,
        100% 100%,
        60px 60px,
        60px 60px;
    background-position: 
        0 0,
        0 0,
        0 0,
        30px 30px;
    opacity: 0.4;
    pointer-events: none;
}

/* Enhanced hero with wave pattern */
.environmental-hero::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1200 120\"%3E%3Cpath d=\"M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z\" opacity=\".3\" fill=\"%23ffffff\"/%3E%3C/svg%3E") no-repeat;
    background-size: cover;
    z-index: 1;
}

.oil-gas-hero::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1200 120\"%3E%3Cpath d=\"M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z\" opacity=\".3\" fill=\"%23ffffff\"/%3E%3C/svg%3E") no-repeat;
    background-size: cover;
    z-index: 1;
}

.security-hero::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1200 120\"%3E%3Cpath d=\"M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z\" opacity=\".3\" fill=\"%23ffffff\"/%3E%3C/svg%3E") no-repeat;
    background-size: cover;
    z-index: 1;
}



/* Add decorative elements to hero */
.environmental-hero {
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 40%, #40916c 70%, #52b788 100%) !important;
}

.oil-gas-hero {
    background: linear-gradient(135deg, #9d0208 0%, #d00000 30%, #f48c06 70%, #ffba08 100%) !important;
}

.security-hero {
    background: linear-gradient(135deg, #03045e 0%, #023e8a 30%, #0077b6 70%, #00b4d8 100%) !important;
}

.page-hero {
    background: linear-gradient(135deg, #001219 0%, #005f73 50%, #0a9396 100%) !important;
}

/* Animated particles in hero */
@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(-40px) translateX(-10px);
    }
    75% {
        transform: translateY(-20px) translateX(10px);
    }
}

.service-hero::before {
    animation: float 20s ease-in-out infinite;
}


/* Ensure content is above patterns */
.service-hero-content,
.page-hero-content {
    position: relative;
    z-index: 10;
}

/* Fix z-index for all hero elements */
.service-icon,
.service-title,
.service-subtitle,
.breadcrumb,
.page-title,
.page-subtitle {
    position: relative;
    z-index: 10;
}

/* Add subtle shadow to hero text for better readability */
.service-title,
.page-title {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.service-subtitle,
.page-subtitle {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Enhanced section backgrounds */
.vmv-section {
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%) !important;
}

.founders-section {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%) !important;
}

/* Add subtle pattern to sections */
.about-details-section::before,
.service-overview-section::before,
.founders-intro-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(144, 224, 239, 0.03) 35px, rgba(144, 224, 239, 0.03) 70px);
    pointer-events: none;
}

.about-details-section,
.service-overview-section,
.founders-intro-section {
    position: relative;
    overflow: hidden;
}


/* Fix container positioning */
.about-details-section .container,
.service-overview-section .container,
.founders-intro-section .container,
.service-features-section .container,
.differentiators-section .container,
.join-team-section .container,
.service-cta-section .container {
    position: relative;
    z-index: 2;
}

/* Make service features section stand out */
.service-features-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%) !important;
}

/* Add ocean wave decoration */
.service-features-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1200 120\"%3E%3Cpath d=\"M1200 120L0 16.48V0l1200 103.52V120z\" fill=\"%23f0f8ff\" opacity=\".5\"/%3E%3Cpath d=\"M0 0v15l1200 103.52V0H0z\" fill=\"%23e6f3ff\" opacity=\".5\"/%3E%3C/svg%3E") no-repeat;
    background-size: cover;
    pointer-events: none;
    z-index: 0;
}

.service-features-section {
    position: relative;
    overflow: hidden;
}


/* Enhanced CTA box */
.cta-content-box {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%) !important;
    border: 2px solid #bfdbfe;
    position: relative;
    overflow: hidden;
}

.cta-content-box::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(72, 202, 228, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cta-content-box h2,
.cta-content-box p {
    position: relative;
    z-index: 2;
}

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


/* Add decorative elements to overview images */
.feature-image-card::after {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border: 3px solid rgba(72, 202, 228, 0.3);
    border-radius: 30px;
    pointer-events: none;
    z-index: -1;
}

.overview-image {
    position: relative;
}

.overview-image::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(72, 202, 228, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* Improve readability of all text */
.about-text p,
.overview-content p,
.lead-text {
    color: #1e3a8a !important;
    line-height: 1.9;
}

.overview-content h2,
.about-content h2 {
    color: #0c4a6e !important;
}

/* ===== INTERNAL PAGES NAVBAR FIX ===== */
/* Navbar styles for internal pages (non-index pages) */
body:not(.home-page) .navbar {
    background: linear-gradient(135deg, #001219 0%, #003566 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 25px rgba(0, 29, 61, 0.4);
    opacity: 1;
    transform: translateY(0);
}

body:not(.home-page) .navbar.scrolled {
    background: linear-gradient(135deg, #001219 0%, #002642 100%);
    box-shadow: 0 4px 30px rgba(0, 29, 61, 0.5);
}

/* ===== ABOUT PAGE ENHANCED STYLES ===== */
/* Page Hero Enhanced */
.page-hero {
    background: linear-gradient(135deg, #001219 0%, #005f73 40%, #0a9396 100%) !important;
    position: relative;
}


/* About Details Section */
.about-details-section {
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    position: relative;
}

.about-details-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230096c7' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.about-intro {
    position: relative;
    z-index: 2;
}

/* About Content Grid Enhanced */
.about-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: #0c4a6e !important;
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 1.5rem;
}

.about-text .lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #003566 !important;
    border-right: 4px solid #00b4d8;
    padding-right: 1.5rem;
    margin-bottom: 2rem;
}

/* Image Card Enhanced */
.image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 53, 102, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 53, 102, 0.35);
}

.image-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 18, 25, 0.95), transparent);
    color: white;
}

.image-overlay h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.image-overlay p {
    color: #90e0ef;
    font-size: 0.95rem;
}

/* VMV Section Enhanced */
.vmv-section {
    background: linear-gradient(135deg, #003566 0%, #001d3d 100%) !important;
    position: relative;
    overflow: hidden;
}

.vmv-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -25%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(0, 180, 216, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.vmv-section .section-header .section-subtitle {
    color: #48cae4 !important;
}

.vmv-section .section-header h2,
.vmv-section .section-header .ocean-title {
    color: white !important;
}

.vmv-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.vmv-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08)) !important;
    border-color: rgba(72, 202, 228, 0.4) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.vmv-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.4);
}

.vmv-card h3 {
    color: white !important;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.vmv-card p,
.vmv-card li {
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.8;
}

.values-list li {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.values-list li i {
    color: #48cae4;
}

.vmv-section .title-waves .wave-line {
    background: linear-gradient(90deg, #48cae4, #00b4d8, #0096c7) !important;
}

/* Differentiators Section Enhanced */
.differentiators-section {
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    position: relative;
}

.differentiators-section .section-header .section-subtitle {
    color: #0096c7 !important;
}

.differentiators-section .section-header h2,
.differentiators-section .section-header .ocean-title {
    color: white !important;
}

.diff-card {
    background: white !important;
    border: none !important;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 53, 102, 0.08);
}

.diff-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00b4d8, #0096c7, #48cae4);
}

.diff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 53, 102, 0.15);
}

.diff-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 150, 199, 0.08);
    line-height: 1;
}

.diff-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #0096c7;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.diff-card:hover .diff-icon {
    background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
    color: white;
    transform: scale(1.1);
}

.diff-card h4 {
    color: #001d3d !important;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.diff-card p {
    color: #334155 !important;
    font-size: 1rem;
    line-height: 1.7;
}

/* Footer Enhanced for Internal Pages */
.footer {
    background: linear-gradient(180deg, #03045e 0%, #023e8a 100%) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text .lead-text {
        font-size: 1.1rem;
    }

    .vmv-card {
        padding: 2rem 1.5rem;
    }

    .diff-card {
        padding: 2rem 1.5rem;
    }
}
/* ===== ABOUT SECTION - PROFESSIONAL REDESIGN ===== */
.about-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg,
    rgba(3, 4, 94, 0.95) 0%,
    rgba(2, 62, 138, 0.92) 50%,
    rgba(0, 119, 182, 0.9) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    overflow: hidden;
    z-index: 1;
}

/* Enhanced Background Effects */
.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(ellipse at 15% 20%, rgba(0, 180, 216, 0.15) 0%, transparent 60%),
            radial-gradient(ellipse at 85% 80%, rgba(72, 202, 228, 0.12) 0%, transparent 60%),
            radial-gradient(ellipse at 50% 50%, rgba(144, 224, 239, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: backgroundPulse 15s ease-in-out infinite;
    z-index: 0;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Decorative Pattern */
.about-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2348cae4' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

/* Section Header */
.about-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-section .ocean-title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 2rem;
    text-shadow:
            0 3px 25px rgba(0, 0, 0, 0.5),
            0 0 50px rgba(72, 202, 228, 0.4);
    letter-spacing: 1px;
}

.about-section .section-header > p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    line-height: 1.9;
    font-weight: 500;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

/* Main Content Box - The Star of the Show */
.about-main-content {
    background: linear-gradient(145deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 30px;
    padding: 4.5rem 4rem;
    box-shadow:
            0 35px 90px rgba(0, 0, 0, 0.3),
            0 15px 40px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.4);
    position: relative;
    margin: 3rem 0 5rem;
    overflow: hidden;
}

/* Decorative Corner Accents */
.about-main-content::before {
    content: "";
    position: absolute;
    top: -5px;
    right: -5px;
    width: 220px;
    height: 220px;
    background:
            linear-gradient(135deg,
            transparent 45%,
            rgba(0, 180, 216, 0.08) 45%,
            rgba(0, 180, 216, 0.12) 50%,
            rgba(72, 202, 228, 0.08) 50%);
    border-radius: 0 30px 0 0;
    pointer-events: none;
}

.about-main-content::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: -5px;
    width: 220px;
    height: 220px;
    background:
            linear-gradient(-45deg,
            transparent 45%,
            rgba(72, 202, 228, 0.06) 45%,
            rgba(72, 202, 228, 0.1) 50%,
            rgba(144, 224, 239, 0.06) 50%);
    border-radius: 0 0 0 30px;
    pointer-events: none;
}

/* Typography Excellence */
.about-main-content p {
    color: #1e293b !important;
    font-size: clamp(1.05rem, 1.5vw, 1.15rem);
    line-height: 2.1;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    text-align: justify;
    font-weight: 400;
}

/* First Paragraph - Hero Text */
.about-main-content p:first-of-type {
    font-size: clamp(1.2rem, 1.8vw, 1.35rem);
    font-weight: 600;
    color: #0f172a !important;
    line-height: 2.2;
    border-right: 6px solid #00b4d8;
    padding-right: 2rem;
    margin-bottom: 3rem;
    background: linear-gradient(to left,
    rgba(0, 180, 216, 0.03) 0%,
    transparent 100%);
    padding: 1.5rem 2rem 1.5rem 0;
    border-radius: 0 15px 15px 0;
}

.about-main-content p:last-child {
    margin-bottom: 0;
}

/* Highlight Keywords */
.about-main-content strong {
    color: #0096c7;
    font-weight: 700;
    position: relative;
    padding: 0 4px;
}

.about-main-content strong::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(0, 180, 216, 0.15);
    z-index: -1;
    border-radius: 3px;
}

/* Professional Cards Container */
.about-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 5rem;
}

/* Professional Cards - Enhanced */
.professional-card {
    position: relative;
    height: 460px;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
            0 25px 70px rgba(0, 0, 0, 0.35),
            0 10px 30px rgba(0, 0, 0, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.professional-card:hover {
    transform: translateY(-18px) scale(1.03);
    box-shadow:
            0 40px 100px rgba(0, 0, 0, 0.45),
            0 20px 50px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
}

/* Card Backgrounds */
.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.professional-card:hover .card-background {
    transform: scale(1.08);
}

.professional-card[data-theme="vision"] .card-background {
    background: linear-gradient(135deg,
        #001d3d 0%,   /* Deep Ocean */
        #003566 60%,  /* Ocean Blue */
        #0077b6 100%); /* Marine Blue */
}

.professional-card[data-theme="mission"] .card-background {
    background: linear-gradient(135deg,
        #0077b6 0%,   /* Marine Blue */
        #00b4d8 60%,  /* Teal Primary */
        #48cae4 100%); /* Light Teal */
}

.professional-card[data-theme="values"] .card-background {
    background: linear-gradient(135deg,
        #00b4d8 0%,   /* Teal Primary */
        #48cae4 60%,  /* Light Teal */
        #90e0ef 100%); /* Sky Blue */
}

/* Card Overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.15) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Shimmer Effect */
.card-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent
    );
    z-index: 2;
    transition: left 0.8s ease;
}

.professional-card:hover .card-shimmer {
    left: 100%;
}

/* Card Content */
.card-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3.5rem 2.5rem;
}

/* Card Icon */
.card-icon {
    width: 95px;
    height: 95px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.2rem;
    box-shadow:
            0 15px 50px rgba(0, 0, 0, 0.25),
            0 0 0 10px rgba(255, 255, 255, 0.08),
            inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.card-icon::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.professional-card:hover .card-icon {
    transform: scale(1.18) rotate(10deg);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.65);
    box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.3),
            0 0 0 15px rgba(255, 255, 255, 0.12),
            inset 0 3px 0 rgba(255, 255, 255, 0.4);
}

.card-icon i {
    font-size: 2.7rem;
    color: white;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
}

/* Card Title */
.card-content h3 {
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.8rem;
    text-shadow:
            0 3px 20px rgba(0, 0, 0, 0.5),
            0 5px 35px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    line-height: 1.3;
}

/* Card Text */
.card-content p {
    font-size: 1.15rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.96) !important;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    max-width: 92%;
    font-weight: 400;
}

/* Values Card Special Styling */
.professional-card[data-theme="values"] .card-content p {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 2.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-main-content {
        padding: 3.5rem 3rem;
    }
}

@media (max-width: 968px) {
    .about-section {
        padding: 80px 0;
    }

    .about-main-content {
        padding: 3rem 2.5rem;
        border-radius: 25px;
        margin: 2rem 0 4rem;
    }

    .about-cards-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }

    .professional-card {
        height: 420px;
    }
}

@media (max-width: 576px) {
    .about-main-content {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }

    .about-main-content::before,
    .about-main-content::after {
        width: 150px;
        height: 150px;
    }

    .about-main-content p {
        text-align: right;
        font-size: 1.05rem;
    }

    .about-main-content p:first-of-type {
        font-size: 1.15rem;
        padding: 1rem 1.5rem 1rem 0;
    }

    .professional-card {
        height: 400px;
    }

    .card-content {
        padding: 2.5rem 2rem;
    }

    .card-icon {
        width: 80px;
        height: 80px;
    }

    .card-icon i {
        font-size: 2.2rem;
    }

    .card-content h3 {
        font-size: 1.9rem;
    }

    .card-content p {
        font-size: 1.05rem;
    }
}

/* Animation for reveal */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-scale {
    animation: slideInUp 0.8s ease-out forwards;
}

.reveal-scale:nth-child(2) {
    animation-delay: 0.2s;
}

.reveal-scale:nth-child(3) {
    animation-delay: 0.4s;
}
/* ========================================
   Ocean Journey - من نحن
/*   ======================================== *!*/

/*.about-section {*/
/*    position: relative;*/
/*    padding: 120px 0;*/
/*    background: transparent;*/
/*    overflow: hidden;*/
/*    z-index: 1;*/
/*}*/

/*!* Underwater Atmosphere *!*/
/*.about-section::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: radial-gradient(*/
/*            ellipse at 50% 0%,*/
/*            rgba(0, 180, 216, 0.08) 0%,*/
/*            rgba(3, 4, 94, 0.12) 40%,*/
/*            rgba(2, 62, 138, 0.18) 100%*/
/*    );*/
/*    pointer-events: none;*/
/*    animation: atmospherePulse 15s ease-in-out infinite;*/
/*}*/

/*@keyframes atmospherePulse {*/
/*    0%, 100% { opacity: 1; }*/
/*    50% { opacity: 0.7; }*/
/*}*/

/*.about-section .container {*/
/*    position: relative;*/
/*    z-index: 2;*/
/*}*/

/*!* ===== HEADER ===== *!*/
/*.section-header {*/
/*    text-align: center;*/
/*    margin-bottom: 4rem;*/
/*}*/

/*.ocean-title {*/
/*    font-size: clamp(3rem, 6vw, 5rem);*/
/*    font-weight: 900;*/
/*    color: white;*/
/*    margin-bottom: 2rem;*/
/*    text-shadow:*/
/*            0 0 40px rgba(72, 202, 228, 0.6),*/
/*            0 0 80px rgba(0, 180, 216, 0.4),*/
/*            0 4px 20px rgba(0, 0, 0, 0.3);*/
/*    animation: titleFloat 4s ease-in-out infinite;*/
/*}*/

/*@keyframes titleFloat {*/
/*    0%, 100% { transform: translateY(0); }*/
/*    50% { transform: translateY(-10px); }*/
/*}*/

/*.title-waves {*/
/*    display: flex;*/
/*    gap: 0.8rem;*/
/*    justify-content: center;*/
/*    margin-bottom: 2rem;*/
/*}*/

/*.wave-line {*/
/*    width: 80px;*/
/*    height: 4px;*/
/*    background: linear-gradient(90deg, #90e0ef, #48cae4, #00b4d8);*/
/*    border-radius: 3px;*/
/*    animation: waveFlow 2s ease-in-out infinite;*/
/*    box-shadow: 0 0 15px rgba(72, 202, 228, 0.6);*/
/*}*/

/*.wave-line:nth-child(2) { animation-delay: 0.3s; }*/
/*.wave-line:nth-child(3) { animation-delay: 0.6s; }*/

/*@keyframes waveFlow {*/
/*    0%, 100% { transform: scaleX(1); opacity: 1; }*/
/*    50% { transform: scaleX(1.3); opacity: 0.7; }*/
/*}*/

/*.dive-intro {*/
/*    color: rgba(255, 255, 255, 0.95);*/
/*    font-size: clamp(1.2rem, 2vw, 1.5rem);*/
/*    font-weight: 500;*/
/*    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);*/
/*}*/

/*!* ===== OCEAN FLOW CONTAINER ===== *!*/
/*.ocean-flow-container {*/
/*    position: relative;*/
/*    max-width: 1000px;*/
/*    margin: 0 auto;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 3rem;*/
/*}*/

/*!* ===== DEPTH SECTIONS ===== *!*/
/*.ocean-depth-section {*/
/*    position: relative;*/
/*    opacity: 0;*/
/*    transform: translateY(50px);*/
/*    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);*/
/*}*/

/*.ocean-depth-section[data-aos="fade-up"] {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*}*/

/*!* Depth Marker *!*/
/*.depth-marker {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 1rem;*/
/*    margin-bottom: 1.5rem;*/
/*    padding-left: 1rem;*/
/*}*/

/*.depth-icon {*/
/*    width: 50px;*/
/*    height: 50px;*/
/*    background: linear-gradient(135deg, rgba(0, 180, 216, 0.25), rgba(72, 202, 228, 0.15));*/
/*    backdrop-filter: blur(10px);*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    color: #90e0ef;*/
/*    font-size: 1.3rem;*/
/*    border: 2px solid rgba(144, 224, 239, 0.3);*/
/*    box-shadow: 0 0 20px rgba(72, 202, 228, 0.4);*/
/*    animation: iconPulse 3s ease-in-out infinite;*/
/*}*/

/*@keyframes iconPulse {*/
/*    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(72, 202, 228, 0.4); }*/
/*    50% { transform: scale(1.1); box-shadow: 0 0 30px rgba(72, 202, 228, 0.6); }*/
/*}*/

/*.depth-label {*/
/*    font-size: 1.3rem;*/
/*    font-weight: 700;*/
/*    color: #90e0ef;*/
/*    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);*/
/*    letter-spacing: 1px;*/
/*}*/

/*!* Content Wave *!*/
/*.content-wave {*/
/*    position: relative;*/
/*    background: linear-gradient(135deg,*/
/*    rgba(255, 255, 255, 0.12) 0%,*/
/*    rgba(255, 255, 255, 0.08) 100%);*/
/*    backdrop-filter: blur(15px);*/
/*    -webkit-backdrop-filter: blur(15px);*/
/*    border: 1px solid rgba(255, 255, 255, 0.2);*/
/*    border-radius: 25px;*/
/*    padding: 2.5rem 3rem;*/
/*    box-shadow:*/
/*            0 20px 50px rgba(0, 0, 0, 0.2),*/
/*            inset 0 1px 0 rgba(255, 255, 255, 0.3);*/
/*    overflow: hidden;*/
/*    transition: all 0.5s ease;*/
/*}*/

/*.content-wave:hover {*/
/*    transform: translateY(-8px);*/
/*    background: linear-gradient(135deg,*/
/*    rgba(255, 255, 255, 0.15) 0%,*/
/*    rgba(255, 255, 255, 0.1) 100%);*/
/*    box-shadow:*/
/*            0 25px 60px rgba(0, 0, 0, 0.25),*/
/*            inset 0 1px 0 rgba(255, 255, 255, 0.4);*/
/*}*/

/*!* Wave Glow Effect *!*/
/*.wave-glow {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: -100%;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: linear-gradient(90deg,*/
/*    transparent,*/
/*    rgba(72, 202, 228, 0.15),*/
/*    transparent);*/
/*    transition: left 0.8s ease;*/
/*}*/

/*.content-wave:hover .wave-glow {*/
/*    left: 100%;*/
/*}*/

/*.content-wave p {*/
/*    color: rgba(255, 255, 255, 0.95);*/
/*    font-size: clamp(1.05rem, 1.5vw, 1.15rem);*/
/*    line-height: 2;*/
/*    margin: 0;*/
/*    text-align: justify;*/
/*    position: relative;*/
/*    z-index: 1;*/
/*}*/

/*.content-wave strong {*/
/*    color: #90e0ef;*/
/*    font-weight: 700;*/
/*}*/

/*!* ===== FLOATING CARDS ===== *!*/
/*.floating-card {*/
/*    position: relative;*/
/*    margin: 2rem auto;*/
/*    max-width: 450px;*/
/*    opacity: 0;*/
/*    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);*/
/*}*/

/*.floating-card[data-aos="fade-right"],*/
/*.floating-card[data-aos="fade-left"] {*/
/*    opacity: 1;*/
/*}*/

/*.floating-card[data-aos="fade-right"] {*/
/*    transform: translateX(0);*/
/*    margin-right: auto;*/
/*    margin-left: 0;*/
/*}*/

/*.floating-card[data-aos="fade-left"] {*/
/*    transform: translateX(0);*/
/*    margin-left: auto;*/
/*    margin-right: 0;*/
/*}*/

/*!* Card Bubble Background *!*/
/*.card-bubble {*/
/*    position: absolute;*/
/*    top: -10px;*/
/*    left: -10px;*/
/*    right: -10px;*/
/*    bottom: -10px;*/
/*    background: radial-gradient(circle,*/
/*    rgba(72, 202, 228, 0.2) 0%,*/
/*    transparent 70%);*/
/*    border-radius: 30px;*/
/*    animation: bubbleFloat 6s ease-in-out infinite;*/
/*    z-index: 0;*/
/*}*/

/*@keyframes bubbleFloat {*/
/*    0%, 100% { transform: scale(1) translateY(0); opacity: 0.6; }*/
/*    50% { transform: scale(1.05) translateY(-10px); opacity: 0.8; }*/
/*}*/

/*!* Card Inner *!*/
/*.card-inner {*/
/*    position: relative;*/
/*    background: linear-gradient(135deg,*/
/*    rgba(0, 119, 182, 0.3) 0%,*/
/*    rgba(0, 150, 199, 0.25) 100%);*/
/*    backdrop-filter: blur(20px);*/
/*    -webkit-backdrop-filter: blur(20px);*/
/*    border: 2px solid rgba(255, 255, 255, 0.25);*/
/*    border-radius: 25px;*/
/*    padding: 3rem 2.5rem;*/
/*    text-align: center;*/
/*    box-shadow:*/
/*            0 25px 60px rgba(0, 0, 0, 0.3),*/
/*            inset 0 1px 0 rgba(255, 255, 255, 0.3);*/
/*    transition: all 0.5s ease;*/
/*    z-index: 1;*/
/*}*/

/*.floating-card:hover .card-inner {*/
/*    transform: translateY(-10px);*/
/*    border-color: rgba(255, 255, 255, 0.4);*/
/*    box-shadow:*/
/*            0 30px 70px rgba(0, 0, 0, 0.35),*/
/*            inset 0 1px 0 rgba(255, 255, 255, 0.4);*/
/*}*/

/*!* Card Icon *!*/
/*.card-icon-float {*/
/*    width: 80px;*/
/*    height: 80px;*/
/*    background: linear-gradient(135deg, rgba(144, 224, 239, 0.3), rgba(72, 202, 228, 0.2));*/
/*    border: 3px solid rgba(255, 255, 255, 0.4);*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    margin: 0 auto 1.5rem;*/
/*    font-size: 2rem;*/
/*    color: white;*/
/*    box-shadow:*/
/*            0 10px 30px rgba(0, 0, 0, 0.2),*/
/*            0 0 0 10px rgba(255, 255, 255, 0.08);*/
/*    animation: iconRotate 20s linear infinite;*/
/*}*/

/*@keyframes iconRotate {*/
/*    0% { transform: rotate(0deg); }*/
/*    100% { transform: rotate(360deg); }*/
/*}*/

/*.floating-card:hover .card-icon-float {*/
/*    transform: scale(1.15);*/
/*    animation: iconRotate 10s linear infinite;*/
/*}*/

/*.card-inner h3 {*/
/*    color: white;*/
/*    font-size: 2rem;*/
/*    font-weight: 900;*/
/*    margin-bottom: 1.2rem;*/
/*    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);*/
/*}*/

/*.card-inner p {*/
/*    color: rgba(255, 255, 255, 0.95);*/
/*    font-size: 1.1rem;*/
/*    line-height: 1.9;*/
/*    margin: 0;*/
/*    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);*/
/*}*/

/*!* Values Flow *!*/
/*.values-flow {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 0.8rem;*/
/*}*/

/*.values-flow span {*/
/*    color: rgba(255, 255, 255, 0.95);*/
/*    font-size: 1.15rem;*/
/*    font-weight: 600;*/
/*    padding: 0.6rem 1.5rem;*/
/*    background: rgba(255, 255, 255, 0.1);*/
/*    border-radius: 50px;*/
/*    border: 1px solid rgba(255, 255, 255, 0.2);*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.values-flow span:hover {*/
/*    background: rgba(255, 255, 255, 0.15);*/
/*    border-color: rgba(255, 255, 255, 0.3);*/
/*    transform: translateX(-5px);*/
/*}*/

/*!* ===== FLOATING BUBBLES ===== *!*/
/*.ocean-bubbles {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    pointer-events: none;*/
/*    z-index: 0;*/
/*}*/

/*.bubble {*/
/*    position: absolute;*/
/*    background: radial-gradient(circle at 30% 30%,*/
/*    rgba(144, 224, 239, 0.4),*/
/*    rgba(72, 202, 228, 0.2));*/
/*    border-radius: 50%;*/
/*    border: 1px solid rgba(255, 255, 255, 0.2);*/
/*    box-shadow:*/
/*            inset -10px -10px 20px rgba(255, 255, 255, 0.1),*/
/*            0 10px 30px rgba(0, 0, 0, 0.2);*/
/*    animation: bubbleRise 15s ease-in-out infinite;*/
/*}*/

/*.b1 {*/
/*    width: 60px;*/
/*    height: 60px;*/
/*    left: 10%;*/
/*    bottom: -100px;*/
/*    animation-delay: 0s;*/
/*    animation-duration: 12s;*/
/*}*/

/*.b2 {*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    left: 25%;*/
/*    bottom: -100px;*/
/*    animation-delay: 2s;*/
/*    animation-duration: 14s;*/
/*}*/

/*.b3 {*/
/*    width: 80px;*/
/*    height: 80px;*/
/*    right: 15%;*/
/*    bottom: -100px;*/
/*    animation-delay: 4s;*/
/*    animation-duration: 16s;*/
/*}*/

/*.b4 {*/
/*    width: 50px;*/
/*    height: 50px;*/
/*    right: 30%;*/
/*    bottom: -100px;*/
/*    animation-delay: 1s;*/
/*    animation-duration: 13s;*/
/*}*/

/*.b5 {*/
/*    width: 35px;*/
/*    height: 35px;*/
/*    left: 50%;*/
/*    bottom: -100px;*/
/*    animation-delay: 3s;*/
/*    animation-duration: 15s;*/
/*}*/

/*.b6 {*/
/*    width: 70px;*/
/*    height: 70px;*/
/*    right: 5%;*/
/*    bottom: -100px;*/
/*    animation-delay: 5s;*/
/*    animation-duration: 17s;*/
/*}*/

/*@keyframes bubbleRise {*/
/*    0% {*/
/*        transform: translateY(0) translateX(0) scale(1);*/
/*        opacity: 0;*/
/*    }*/
/*    10% {*/
/*        opacity: 0.6;*/
/*    }*/
/*    90% {*/
/*        opacity: 0.6;*/
/*    }*/
/*    100% {*/
/*        transform: translateY(-120vh) translateX(50px) scale(0.5);*/
/*        opacity: 0;*/
/*    }*/
/*}*/

/*!* ===== RESPONSIVE ===== *!*/
/*@media (max-width: 968px) {*/
/*    .about-section {*/
/*        padding: 80px 0;*/
/*    }*/

/*    .ocean-flow-container {*/
/*        gap: 2rem;*/
/*    }*/

/*    .content-wave {*/
/*        padding: 2rem 1.8rem;*/
/*        border-radius: 20px;*/
/*    }*/

/*    .floating-card {*/
/*        max-width: 100%;*/
/*    }*/

/*    .floating-card[data-aos="fade-right"],*/
/*    .floating-card[data-aos="fade-left"] {*/
/*        margin: 2rem 0;*/
/*    }*/
/*}*/

/*@media (max-width: 576px) {*/
/*    .content-wave {*/
/*        padding: 1.5rem 1.5rem;*/
/*    }*/

/*    .content-wave p {*/
/*        text-align: right;*/
/*    }*/

/*    .card-inner {*/
/*        padding: 2.5rem 2rem;*/
/*    }*/

/*    .depth-marker {*/
/*        padding-left: 0;*/
/*    }*/
/*}*/

/*!* ===== SCROLL ANIMATION ===== *!*/
/*[data-aos] {*/
/*    opacity: 0;*/
/*    transition-property: opacity, transform;*/
/*}*/

/*[data-aos].aos-animate {*/
/*    opacity: 1;*/
/*}*/

/*[data-aos="fade-up"] {*/
/*    transform: translateY(50px);*/
/*}*/

/*[data-aos="fade-up"].aos-animate {*/
/*    transform: translateY(0);*/
/*}*/

/*[data-aos="fade-right"] {*/
/*    transform: translateX(-50px);*/
/*}*/

/*[data-aos="fade-right"].aos-animate {*/
/*    transform: translateX(0);*/
/*}*/

/*[data-aos="fade-left"] {*/
/*    transform: translateX(50px);*/
/*}*/

/*[data-aos="fade-left"].aos-animate {*/
/*    transform: translateX(0);*/
/*}*/

/*
third
 */
/* ========================================
   Ocean Journey - من نحن - Enhanced
   ======================================== */

.about-section {
    position: relative;
    padding: 120px 0;
    background: transparent;
    overflow: hidden;
    z-index: 1;
}

/* Underwater Atmosphere */
.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
            ellipse at 50% 0%,
            rgba(0, 180, 216, 0.08) 0%,
            rgba(3, 4, 94, 0.12) 40%,
            rgba(2, 62, 138, 0.18) 100%
    );
    pointer-events: none;
    animation: atmospherePulse 15s ease-in-out infinite;
}

@keyframes atmospherePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.about-section .container {
    position: relative;
    z-index: 2;
}

/* ===== HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ocean-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow:
            0 0 40px rgba(72, 202, 228, 0.6),
            0 0 80px rgba(0, 180, 216, 0.4),
            0 4px 20px rgba(0, 0, 0, 0.3);
    animation: titleFloat 4s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.title-waves {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.wave-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #90e0ef, #48cae4, #00b4d8);
    border-radius: 3px;
    animation: waveFlow 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(72, 202, 228, 0.6);
}

.wave-line:nth-child(2) { animation-delay: 0.3s; }
.wave-line:nth-child(3) { animation-delay: 0.6s; }

@keyframes waveFlow {
    0%, 100% { transform: scaleX(1); opacity: 1; }
    50% { transform: scaleX(1.3); opacity: 0.7; }
}

.dive-intro {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 500;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

/* ===== OCEAN FLOW CONTAINER ===== */
.ocean-flow-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 6rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* ===== OCEAN PARAGRAPHS ===== */
.ocean-paragraph {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ocean-paragraph[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Content Wave */
.content-wave {
    position: relative;
    background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    box-shadow:
            0 15px 40px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.4s ease;
}

.content-wave:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.07) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow:
            0 20px 50px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Wave Glow Effect */
.wave-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
    transparent,
    rgba(72, 202, 228, 0.12),
    transparent);
    transition: left 0.8s ease;
}

.content-wave:hover .wave-glow {
    left: 100%;
}

.content-wave p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.05rem, 1.5vw, 1.15rem);
    line-height: 2;
    margin: 0;
    text-align: justify;
    position: relative;
    z-index: 1;
}

.content-wave strong {
    color: #90e0ef;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(144, 224, 239, 0.5);
}

/* ===== VMV SECTION ===== */
.vmv-ocean-row {
    position: relative;
    margin-top: 6rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.vmv-ocean-row.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

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

/* VMV Cards Container */
.vmv-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* VMV Card */
.vmv-card {
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card Bubble Background */
.card-bubble {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: radial-gradient(circle,
    rgba(72, 202, 228, 0.2) 0%,
    transparent 70%);
    border-radius: 30px;
    animation: bubbleFloat 6s ease-in-out infinite;
    z-index: 0;
}

@keyframes bubbleFloat {
    0%, 100% { transform: scale(1) translateY(0); opacity: 0.6; }
    50% { transform: scale(1.05) translateY(-10px); opacity: 0.8; }
}

/* Card Inner */
.card-inner {
    position: relative;
    background: linear-gradient(135deg,
    rgba(0, 119, 182, 0.25) 0%,
    rgba(0, 150, 199, 0.2) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow:
            0 20px 50px rgba(0, 0, 0, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: all 0.5s ease;
    z-index: 1;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vmv-card:hover .card-inner {
    transform: translateY(-15px);
    border-color: rgba(255, 255, 255, 0.35);
    background: linear-gradient(135deg,
    rgba(0, 119, 182, 0.3) 0%,
    rgba(0, 150, 199, 0.25) 100%);
    box-shadow:
            0 30px 70px rgba(0, 0, 0, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Card Icon */
.card-icon-float {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(144, 224, 239, 0.3), rgba(72, 202, 228, 0.2));
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.2rem;
    color: white;
    box-shadow:
            0 15px 40px rgba(0, 0, 0, 0.2),
            0 0 0 12px rgba(255, 255, 255, 0.08);
    transition: all 0.5s ease;
}

.vmv-card:hover .card-icon-float {
    transform: scale(1.15) rotate(5deg);
    box-shadow:
            0 20px 50px rgba(0, 0, 0, 0.3),
            0 0 0 15px rgba(255, 255, 255, 0.12);
}

.card-inner h3 {
    color: white;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.card-inner p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.9;
    margin: 0;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* Values Flow */
.values-flow {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.values-flow span {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.values-flow span:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(-5px);
}

/* ========================================
   Ocean Journey - Full Width Waves - Fixed
   ======================================== */

.about-section {
    position: relative;
    padding: 120px 0;
    background: transparent;
    overflow: hidden;
    z-index: 1;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
            ellipse at 50% 0%,
            rgba(0, 180, 216, 0.08) 0%,
            rgba(3, 4, 94, 0.12) 40%,
            rgba(2, 62, 138, 0.18) 100%
    );
    pointer-events: none;
    animation: atmospherePulse 15s ease-in-out infinite;
}

@keyframes atmospherePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.about-section .container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 0;
}

/* ===== HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 20px;
}

.ocean-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow:
            0 0 40px rgba(72, 202, 228, 0.6),
            0 0 80px rgba(0, 180, 216, 0.4),
            0 4px 20px rgba(0, 0, 0, 0.3);
    animation: titleFloat 4s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.title-waves {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.wave-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #90e0ef, #48cae4, #00b4d8);
    border-radius: 3px;
    animation: waveFlow 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(72, 202, 228, 0.6);
}

.wave-line:nth-child(2) { animation-delay: 0.3s; }
.wave-line:nth-child(3) { animation-delay: 0.6s; }

@keyframes waveFlow {
    0%, 100% { transform: scaleX(1); opacity: 1; }
    50% { transform: scaleX(1.3); opacity: 0.7; }
}

.dive-intro {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 500;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

/* ===== FULL WIDTH WAVE SECTIONS ===== */
.ocean-flow-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 8rem;
}

/* Ocean Wave Section - Full Width */
.ocean-wave-section {
    position: relative;
    width: 100%;
    min-height: 280px;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.ocean-wave-section.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Background Gradient */
.wave-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: all 0.6s ease;
    border-radius: 30px;
}

/* Start from Right - Gradient */
.ocean-wave-section.start-right .wave-bg-gradient {
    background: linear-gradient(to left,
    rgba(0, 180, 216, 0.18) 0%,
    rgba(72, 202, 228, 0.12) 25%,
    rgba(144, 224, 239, 0.08) 50%,
    rgba(72, 202, 228, 0.04) 75%,
    transparent 100%
    );
}

.ocean-wave-section.start-right:hover .wave-bg-gradient {
    background: linear-gradient(to left,
    rgba(0, 180, 216, 0.25) 0%,
    rgba(72, 202, 228, 0.18) 25%,
    rgba(144, 224, 239, 0.12) 50%,
    rgba(72, 202, 228, 0.06) 75%,
    transparent 100%
    );
}

/* Start from Left - Gradient */
.ocean-wave-section.start-left .wave-bg-gradient {
    background: linear-gradient(to right,
    rgba(0, 119, 182, 0.18) 0%,
    rgba(0, 150, 199, 0.12) 25%,
    rgba(72, 202, 228, 0.08) 50%,
    rgba(144, 224, 239, 0.04) 75%,
    transparent 100%
    );
}

.ocean-wave-section.start-left:hover .wave-bg-gradient {
    background: linear-gradient(to right,
    rgba(0, 119, 182, 0.25) 0%,
    rgba(0, 150, 199, 0.18) 25%,
    rgba(72, 202, 228, 0.12) 50%,
    rgba(144, 224, 239, 0.06) 75%,
    transparent 100%
    );
}

/* Depth Float Icon */
.depth-float {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg,
    rgba(0, 180, 216, 0.5),
    rgba(72, 202, 228, 0.4));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow:
            0 0 35px rgba(72, 202, 228, 0.7),
            0 15px 50px rgba(0, 0, 0, 0.4);
    z-index: 10;
    animation: floatPulse 4s ease-in-out infinite;
}

@keyframes floatPulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 35px rgba(72, 202, 228, 0.7), 0 15px 50px rgba(0, 0, 0, 0.4);
    }
    50% {
        transform: translateY(-50%) scale(1.08);
        box-shadow: 0 0 45px rgba(72, 202, 228, 0.9), 0 20px 60px rgba(0, 0, 0, 0.5);
    }
}

.ocean-wave-section.start-right .depth-float {
    right: 8%;
}

.ocean-wave-section.start-left .depth-float {
    left: 8%;
}

/* Wave Content */
.wave-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 12%;
    width: 100%;
}

.wave-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.1rem, 1.8vw, 1.25rem);
    line-height: 2.2;
    text-align: justify;
    margin: 0;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.wave-content strong {
    color: #90e0ef;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(144, 224, 239, 0.6);
}

/* Decorative Wave Line */
.ocean-wave-section::after {
    content: "";
    position: absolute;
    bottom: -2rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right,
    transparent 0%,
    rgba(72, 202, 228, 0.3) 20%,
    rgba(144, 224, 239, 0.5) 50%,
    rgba(72, 202, 228, 0.3) 80%,
    transparent 100%
    );
    z-index: 1;
}

/* Shimmer Effect */
.ocean-wave-section::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
    );
    z-index: 1;
    transform: translateX(-100%);
    transition: transform 1s ease;
}

.ocean-wave-section:hover::before {
    transform: translateX(100%);
}

/* ===== VMV CARDS - ORIGINAL DESIGN ===== */
.about-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin: 5rem auto 0;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
}

/* Professional Cards - Original Style */
.professional-card {
    position: relative;
    height: 460px;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
            0 25px 70px rgba(0, 0, 0, 0.35),
            0 10px 30px rgba(0, 0, 0, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.professional-card:hover {
    transform: translateY(-18px) scale(1.03);
    box-shadow:
            0 40px 100px rgba(0, 0, 0, 0.45),
            0 20px 50px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
}

/* Card Backgrounds */
.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.professional-card:hover .card-background {
    transform: scale(1.08);
}

.professional-card[data-theme="vision"] .card-background {
    background: linear-gradient(135deg,
        #001d3d 0%,   /* Deep Ocean */
        #003566 60%,  /* Ocean Blue */
        #0077b6 100%); /* Marine Blue */
}

.professional-card[data-theme="mission"] .card-background {
    background: linear-gradient(135deg,
        #0077b6 0%,   /* Marine Blue */
        #00b4d8 60%,  /* Teal Primary */
        #48cae4 100%); /* Light Teal */
}

.professional-card[data-theme="values"] .card-background {
    background: linear-gradient(135deg,
        #00b4d8 0%,   /* Teal Primary */
        #48cae4 60%,  /* Light Teal */
        #90e0ef 100%); /* Sky Blue */
}

/* Card Overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.15) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Shimmer Effect */
.card-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent
    );
    z-index: 2;
    transition: left 0.8s ease;
}

.professional-card:hover .card-shimmer {
    left: 100%;
}

/* Card Content */
.card-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3.5rem 2.5rem;
}

/* Card Icon */
.card-icon {
    width: 95px;
    height: 95px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.2rem;
    box-shadow:
            0 15px 50px rgba(0, 0, 0, 0.25),
            0 0 0 10px rgba(255, 255, 255, 0.08),
            inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.card-icon::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.professional-card:hover .card-icon {
    transform: scale(1.18) rotate(10deg);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.65);
    box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.3),
            0 0 0 15px rgba(255, 255, 255, 0.12),
            inset 0 3px 0 rgba(255, 255, 255, 0.4);
}

.card-icon i {
    font-size: 2.7rem;
    color: white;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
}

/* Card Title */
.card-content h3 {
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.8rem;
    text-shadow:
            0 3px 20px rgba(0, 0, 0, 0.5),
            0 5px 35px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    line-height: 1.3;
}

/* Card Text */
.card-content p {
    font-size: 1.15rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    max-width: 92%;
    font-weight: 400;
}

/* Values Card Special */
.professional-card[data-theme="values"] .card-content p {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 2.5;
}

/* ===== FLOATING BUBBLES ===== */
.ocean-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bubble {
    position: absolute;
    background: radial-gradient(circle at 30% 30%,
    rgba(144, 224, 239, 0.5),
    rgba(72, 202, 228, 0.25));
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
            inset -10px -10px 20px rgba(255, 255, 255, 0.15),
            0 15px 40px rgba(0, 0, 0, 0.25);
    animation: bubbleRise 15s ease-in-out infinite;
}

.b1 { width: 70px; height: 70px; left: 8%; bottom: -100px; animation-delay: 0s; animation-duration: 13s; }
.b2 { width: 50px; height: 50px; left: 22%; bottom: -100px; animation-delay: 2.5s; animation-duration: 15s; }
.b3 { width: 90px; height: 90px; right: 12%; bottom: -100px; animation-delay: 5s; animation-duration: 17s; }
.b4 { width: 60px; height: 60px; right: 28%; bottom: -100px; animation-delay: 1.5s; animation-duration: 14s; }
.b5 { width: 40px; height: 40px; left: 48%; bottom: -100px; animation-delay: 3.5s; animation-duration: 16s; }
.b6 { width: 80px; height: 80px; right: 6%; bottom: -100px; animation-delay: 6s; animation-duration: 18s; }

@keyframes bubbleRise {
    0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% { transform: translateY(-120vh) translateX(80px) scale(0.4); opacity: 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .wave-content {
        padding: 0 8%;
    }

    .ocean-wave-section.start-right .depth-float {
        right: 5%;
    }

    .ocean-wave-section.start-left .depth-float {
        left: 5%;
    }
}

@media (max-width: 968px) {
    .about-section {
        padding: 80px 0;
    }

    .ocean-flow-container {
        gap: 3rem;
        margin-bottom: 5rem;
    }

    .ocean-wave-section {
        padding: 3rem 0;
    }

    .wave-content {
        padding: 0 6%;
    }

    .depth-float {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .about-cards-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .professional-card {
        height: 420px;
    }
}

@media (max-width: 576px) {
    .wave-content {
        padding: 0 20px;
    }

    .wave-content p {
        text-align: right;
        font-size: 1.05rem;
        line-height: 2;
    }

    .ocean-wave-section {
        padding: 2.5rem 0;
    }

    .depth-float {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .ocean-wave-section.start-right .depth-float {
        right: 20px;
    }

    .ocean-wave-section.start-left .depth-float {
        left: 20px;
    }

    .professional-card {
        height: 400px;
    }

    .card-content {
        padding: 2.5rem 2rem;
    }

    .card-icon {
        width: 80px;
        height: 80px;
    }

    .card-icon i {
        font-size: 2.2rem;
    }

    .card-content h3 {
        font-size: 1.9rem;
    }

    .card-content p {
        font-size: 1.05rem;
    }
}

/* ===== SCROLL ANIMATION ===== */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* Animation for reveal */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-scale {
    animation: slideInUp 0.8s ease-out forwards;
}

.reveal-scale:nth-child(2) {
    animation-delay: 0.2s;
}

.reveal-scale:nth-child(3) {
    animation-delay: 0.4s;
}
/* ===== HOME PAGE ABOUT SECTION ENHANCED ===== */
.about-section-home {
    padding: 8rem 0;
    background: linear-gradient(135deg, #001d3d 0%, #0077b6 100%);
    position: relative;
    overflow: hidden;
}

.about-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(144, 224, 239, 0.1), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(72, 202, 228, 0.08), transparent 50%);
    pointer-events: none;
}

.section-header-enhanced {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(144, 224, 239, 0.3);
    padding: 0.5rem 2rem;
    border-radius: 30px;
    color: #90e0ef;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.ocean-title-enhanced {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-shadow: 0 0 40px rgba(144, 224, 239, 0.5);
}

.title-waves-enhanced {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin: 2rem auto;
}

.title-waves-enhanced .wave-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #90e0ef, #48cae4, #00b4d8);
    border-radius: 2px;
    animation: waveFlow 2s ease-in-out infinite;
}

.title-waves-enhanced .wave-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-waves-enhanced .wave-line:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes waveFlow {
    0%, 100% { transform: scaleX(1); opacity: 1; }
    50% { transform: scaleX(1.5); opacity: 0.7; }
}

.section-subtitle-enhanced {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    max-width: 800px;
    margin: 2rem auto 0;
}

.about-content-enhanced {
    max-width: 1100px;
    margin: 0 auto 5rem;
}

.content-block {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #90e0ef, #48cae4, #00b4d8);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.content-block:hover::before {
    opacity: 1;
}

.content-block:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(144, 224, 239, 0.3);
    transform: translateX(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.block-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, rgba(144, 224, 239, 0.2), rgba(72, 202, 228, 0.2));
    border: 2px solid rgba(144, 224, 239, 0.4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #90e0ef;
    transition: all 0.4s ease;
}

.content-block:hover .block-icon {
    background: linear-gradient(135deg, #48cae4, #00b4d8);
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(72, 202, 228, 0.4);
}

.block-content {
    flex: 1;
}

.block-title {
    font-size: 1.8rem;
    color: #90e0ef;
    margin-bottom: 1rem;
    font-weight: 700;
}

.block-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    font-size: 1.1rem;
}

.block-content strong {
    color: #90e0ef;
    font-weight: 700;
}

.vmv-cards-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.vmv-card-home {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.vmv-card-glow {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(144, 224, 239, 0.2), transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.vmv-card-home:hover .vmv-card-glow {
    opacity: 1;
}

.vmv-card-home:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(144, 224, 239, 0.4);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.vmv-icon-home {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    position: relative;
    transition: all 0.5s ease;
}

.vision-color {
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    box-shadow: 0 10px 40px rgba(0, 119, 182, 0.4);
}

.mission-color {
    background: linear-gradient(135deg, #00b4d8, #48cae4);
    box-shadow: 0 10px 40px rgba(0, 180, 216, 0.4);
}

.values-color {
    background: linear-gradient(135deg, #48cae4, #90e0ef);
    box-shadow: 0 10px 40px rgba(72, 202, 228, 0.4);
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 3px solid currentColor;
    border-radius: 50%;
    opacity: 0;
    animation: iconPulse 2s ease-out infinite;
}

@keyframes iconPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.vmv-card-home:hover .vmv-icon-home {
    transform: scale(1.1) rotate(360deg);
}

.vmv-card-home h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.card-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #48cae4, #00b4d8);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.vmv-card-home p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    font-size: 1.15rem;
}

.values-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.value-tag {
    background: rgba(144, 224, 239, 0.15);
    border: 2px solid rgba(144, 224, 239, 0.3);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.value-tag:hover {
    background: rgba(144, 224, 239, 0.25);
    border-color: #90e0ef;
    transform: translateY(-3px);
}

.value-tag i {
    color: #90e0ef;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .about-section-home { padding: 5rem 0; }
    .section-header-enhanced { margin-bottom: 3rem; }
    .ocean-title-enhanced { font-size: 1.5rem; }
    .section-subtitle-enhanced { font-size: 1.2rem; }
    .content-block { flex-direction: column; padding: 2rem 1.5rem; gap: 1.5rem; }
    .block-icon { width: 70px; height: 70px; min-width: 70px; font-size: 1.8rem; }
    .block-title { font-size: 1.5rem; }
    .block-content p { font-size: 1rem; }
    .vmv-cards-enhanced { grid-template-columns: 1fr; gap: 2rem; }
    .vmv-card-home { padding: 2.5rem 2rem; }
    .vmv-icon-home { width: 80px; height: 80px; font-size: 2rem; }
    .vmv-card-home h3 { font-size: 1.6rem; }
    .vmv-card-home p { font-size: 1.05rem; }
    .values-tags { flex-direction: column; align-items: stretch; }
    .value-tag { justify-content: center; }
}

/* ===== ABOUT SECTION - DESIGN 4 (Marine Theme) ===== */
.about-marine-v4 {
    padding: 8rem 0;
    background: linear-gradient(180deg, #001d3d 0%, #023e8a 50%, #0077b6 100%);
    position: relative;
    overflow: hidden;
}

.marine-wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 0;
}

.wave-svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    fill: rgba(144, 224, 239, 0.1);
}

/* Marine Header */
.marine-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.marine-compass {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #00b4d8, #48cae4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 180, 216, 0.4);
    animation: rotateCompass 20s linear infinite;
}

@keyframes rotateCompass {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.marine-label {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(144, 224, 239, 0.3);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    color: #90e0ef;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.marine-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-shadow: 0 0 50px rgba(144, 224, 239, 0.6);
}

.marine-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem auto;
    max-width: 400px;
}

.marine-divider .wave-line {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, transparent, #48cae4, transparent);
}

.marine-divider i {
    font-size: 2rem;
    color: #90e0ef;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.marine-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.marine-subtitle i {
    color: #48cae4;
    font-size: 1rem;
}

/* Marine Content Grid */
.marine-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.marine-card {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.85), rgba(0, 180, 216, 0.85));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(72, 202, 228, 0.3);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow:
        0 20px 60px rgba(0, 119, 182, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.marine-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(72, 202, 228, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.marine-card:hover::before {
    opacity: 1;
}

.marine-card:hover {
    transform: translateY(-15px);
    border-color: rgba(72, 202, 228, 0.5);
    box-shadow:
        0 30px 80px rgba(0, 180, 216, 0.4),
        0 15px 40px rgba(0, 0, 0, 0.2);
}

.marine-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.marine-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00b4d8, #48cae4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    flex-shrink: 0;
}

.icon-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid currentColor;
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.marine-card-header h3 {
    font-size: 1.5rem;
    color: #90e0ef;
    font-weight: 700;
    flex: 1;
}

.marine-card-body p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1rem;
    font-weight: bolder;
}

.marine-card-body strong {
    color: #90e0ef;
    font-weight: 700;
}

.marine-card-wave {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 3rem;
    color: rgba(72, 202, 228, 0.1);
    pointer-events: none;
}

/* VMV Section - Marine Style */
.marine-vmv-section {
    margin-top: 6rem;
    position: relative;
    z-index: 1;
}

.vmv-lighthouse {
    text-align: center;
    font-size: 4rem;
    color: rgba(144, 224, 239, 0.2);
    margin-bottom: 3rem;
    animation: lighthouseBeam 4s ease-in-out infinite;
}

@keyframes lighthouseBeam {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.1); }
}

.marine-vmv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.marine-vmv-card {
    background: linear-gradient(135deg, rgba(0, 53, 102, 0.85), rgba(0, 119, 182, 0.85));
    backdrop-filter: blur(25px);
    border: 2px solid rgba(72, 202, 228, 0.25);
    border-radius: 30px;
    padding: 2rem 2rem;
    text-align: center;
    box-shadow:
        0 20px 60px rgba(0, 53, 102, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.vmv-anchor {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    color: rgba(144, 224, 239, 0.2);
    animation: swingAnchor 3s ease-in-out infinite;
}

@keyframes swingAnchor {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

.marine-vmv-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(72, 202, 228, 0.5);
    box-shadow:
        0 30px 80px rgba(0, 180, 216, 0.4),
        0 15px 40px rgba(0, 0, 0, 0.2);
}

.vmv-icon-marine {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 119, 182, 0.4);
    transition: all 0.5s ease;
}

.marine-vmv-card:hover .vmv-icon-marine {
    transform: rotate(360deg) scale(1.1);
}

.wave-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: waveRipple 2.5s ease-out infinite;
}

@keyframes waveRipple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.vision-marine .vmv-icon-marine {
    background: linear-gradient(135deg, #0077b6, #00b4d8);
}

.mission-marine .vmv-icon-marine {
    background: linear-gradient(135deg, #00b4d8, #48cae4);
}

.values-marine .vmv-icon-marine {
    background: linear-gradient(135deg, #48cae4, #90e0ef);
}

.marine-vmv-card h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.vmv-divider-marine {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #48cae4, transparent);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vmv-divider-marine i {
    color: #90e0ef;
    font-size: 1.2rem;
    animation: swim 3s ease-in-out infinite;
}

@keyframes swim {
    0%, 100% { transform: translateX(-10px); }
    50% { transform: translateX(10px); }
}

.marine-vmv-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.values-marine-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    text-align: start;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.9rem 1.2rem;
    background: rgba(144, 224, 239, 0.1);
    border: 1px solid rgba(144, 224, 239, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(144, 224, 239, 0.2);
    border-color: rgba(144, 224, 239, 0.4);
    transform: translateX(-5px);
}

.value-item i {
    font-size: 1.2rem;
    color: #90e0ef;
    margin-top: 0.15rem;
}

.value-item .value-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.value-item .value-text span {
    color: white;
    font-size: 1rem;
    font-weight: 700;
}

.value-item .value-text small {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.5;
}

.value-item span {
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.vmv-waves {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: rgba(72, 202, 228, 0.3);
}

.vmv-waves i {
    animation: waveFloat 2s ease-in-out infinite;
}

.vmv-waves i:nth-child(2) {
    animation-delay: 0.2s;
}

.vmv-waves i:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes waveFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Floating Marine Elements */
.floating-marine-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.float-fish-1, .float-fish-2, .float-ship, .float-anchor {
    position: absolute;
    color: rgba(144, 224, 239, 0.4);
    font-size: 3rem;
    z-index: 0;
}

.float-fish-1 {
    top: 20%;
    left: 10%;
    animation: swimFish 15s ease-in-out infinite;
}

.float-fish-2 {
    top: 60%;
    right: 15%;
    animation: swimFish 12s ease-in-out infinite reverse;
}

.float-ship {
    top: 40%;
    left: 5%;
    animation: floatShip 20s ease-in-out infinite;
}

.float-anchor {
    bottom: 20%;
    right: 10%;
    animation: sinkAnchor 8s ease-in-out infinite;
}

@keyframes swimFish {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(100px) translateY(-50px);
    }
}

@keyframes floatShip {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    50% {
        transform: translateX(80px) translateY(20px) rotate(5deg);
    }
}

@keyframes sinkAnchor {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.15;
    }
    50% {
        transform: translateY(30px);
        opacity: 0.25;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .about-marine-v4 {
        padding: 5rem 0;
    }

    .marine-compass {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .marine-title {
        font-size: 1.5rem;
    }

    .marine-subtitle {
        font-size: 1.2rem;
        flex-direction: column;
    }

    .marine-content-grid {
        grid-template-columns: 1fr;
    }

    .marine-card {
        padding: 2rem 1.5rem;
    }

    .marine-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .marine-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .marine-card-header h3 {
        font-size: 1.5rem;
    }

    .marine-vmv-grid {
        grid-template-columns: 1fr;
    }

    .marine-vmv-card {
        padding: 2.5rem 2rem;
    }

    .vmv-icon-marine {
        width: 90px;
        height: 90px;
        font-size: 2.5rem;
    }

    .marine-vmv-card h3 {
        font-size: 1.8rem;
    }

    .floating-marine-elements {
        display: none;
    }
}

/* ========================================
   LTR (English) Overrides
   Applied when html has dir="ltr"
   ======================================== */

[dir="ltr"] body {
    direction: ltr;
}

[dir="ltr"] .dropdown-menu {
    right: auto;
    left: 0;
}

[dir="ltr"] .dropdown-menu a::before {
    left: auto;
    right: 0;
}

[dir="ltr"] .contact-form-modern label {
    text-align: left;
}

[dir="ltr"] .contact-form-modern input,
[dir="ltr"] .contact-form-modern select,
[dir="ltr"] .contact-form-modern textarea {
    text-align: left;
}

[dir="ltr"] .footer-section ul a i.fa-chevron-left {
    display: none;
}

[dir="ltr"] .spec-info {
    text-align: left;
}

[dir="ltr"] .marine-card-body {
    text-align: left;
}

[dir="ltr"] .value-text {
    text-align: left;
}
