:root {
    --primary-gold: #d6a019;
    --primary-gold-light: #ffcc00;
    --bg-dark: #0a0a0a;
    --bg-light: #fafafa;
    --bg-glass: rgba(255, 255, 255, 0.08);
    --bg-glass-hover: rgba(255, 255, 255, 0.12);
    --text-primary: #1a1a1a;
    --text-secondary: rgba(26, 26, 26, 0.7);
    --text-tertiary: rgba(26, 26, 26, 0.5);
    --text-dark: #000000;
    --border-glass: rgba(214, 160, 25, 0.3);
    --shadow-primary: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 25px 50px rgba(0, 0, 0, 0.4);
    --blur-amount: 20px;
    --transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --background: rgb(214, 160, 25);
    --hover-color: #ffcc00;
    --primary-gradient: rgba(0, 0, 0, 0.8);
    --secondary-gradient: rgba(0, 0, 0, 1);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --overlay-color: rgba(0, 0, 0, 0.5);
    --accent-glow: rgba(214, 160, 25, 0.3);
    --glass-border: rgba(214, 160, 25, 0.2);
    --news-section-bg: #141414;
    --card-bg: rgba(20, 20, 20, 0.6);
    --card-border: rgba(214, 160, 25, 0.15);
    --gradient-overlay: linear-gradient(135deg, rgba(214, 160, 25, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    --gradient-mesh: linear-gradient(135deg, rgba(214, 160, 25, 0.15) 0%, rgba(255, 204, 0, 0.08) 50%, rgba(0, 0, 0, 0.3) 100%);
    /* Marine-specific colors */ --ocean-blue: rgba(0, 119, 190, 0.3);
    --deep-blue: rgba(0, 51, 102, 0.4);
    --wave-blue: rgba(64, 164, 223, 0.2);
    
}

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

body {
    font-family: 'Epilogue', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-light);
    overflow-x: hidden;
    
}

/* Marine Hero Section with Wave Animation */ .marine-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--deep-blue) 50%, rgba(214, 160, 25, 0.1) 100%);
    overflow: hidden;
    
}

.ocean-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 25% 25%, var(--ocean-blue) 0%, transparent 50%), radial-gradient(circle at 75% 75%, var(--wave-blue) 0%, transparent 50%), linear-gradient(45deg, var(--bg-dark) 0%, var(--deep-blue) 100%);
    z-index: 1;
    
}

/* Animated Wave Elements */ .wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 2;
    
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3cpattern id='wave' x='0' y='0' width='100' height='20' patternUnits='userSpaceOnUse'%3e%3cpath d='M0 10 Q25 0 50 10 T100 10 V20 H0 Z' fill='%23d6a01933'/%3e%3c/pattern%3e%3c/defs%3e%3crect width='100%25' height='100%25' fill='url(%23wave)'/%3e%3c/svg%3e");
    animation: waveAnimation 15s infinite linear;
    
}

.wave:nth-child(2) {
    bottom: 10px;
    opacity: 0.7;
    animation-duration: 20s;
    animation-direction: reverse;
    
}

.wave:nth-child(3) {
    bottom: 20px;
    opacity: 0.5;
    animation-duration: 25s;
    
}

@keyframes waveAnimation {
    0% {
    transform: translateX(0);
    
}

100% {
    transform: translateX(-50%);
    
}


}

/* Floating Marine Elements */ .marine-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    
}

.marine-vessel {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--border-glass);
    border-radius: 50%;
    backdrop-filter: blur(15px);
    background: var(--bg-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: marineFloat 18s infinite ease-in-out;
    
}

.marine-vessel i {
    font-size: 2.2rem;
    color: var(--primary-gold);
    
}

.vessel-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    
}

.vessel-2 {
    top: 15%;
    right: 15%;
    animation-delay: 6s;
    
}

.vessel-3 {
    bottom: 40%;
    left: 20%;
    animation-delay: 12s;
    
}

.vessel-4 {
    bottom: 35%;
    right: 20%;
    animation-delay: 9s;
    
}

.vessel-5 {
    top: 50%;
    left: 5%;
    animation-delay: 15s;
    
}

.vessel-6 {
    top: 60%;
    right: 8%;
    animation-delay: 3s;
    
}

@keyframes marineFloat {
    0%, 100% {
    transform: translateY(0px) rotate(0deg);
    border-color: var(--border-glass);
    box-shadow: 0 15px 40px var(--ocean-blue);
    
}

25% {
    transform: translateY(-25px) rotate(8deg);
    border-color: var(--primary-gold);
    box-shadow: 0 25px 50px var(--wave-blue);
    
}

50% {
    transform: translateY(-15px) rotate(-8deg);
    border-color: var(--hover-color);
    box-shadow: 0 20px 45px var(--ocean-blue);
    
}

75% {
    transform: translateY(-30px) rotate(5deg);
    border-color: var(--primary-gold);
    box-shadow: 0 30px 55px var(--deep-blue);
    
}


}

.marine-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 950px;
    padding: 0 2rem;
    color: white;
    margin: 0 auto;
    width: 100%;
    
}

.marine-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(var(--blur-amount));
    font-size: 0.9rem;
    color: var(--primary-gold-light);
    
}

.marine-indicator {
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: marinePulse 2s infinite;
    
}

@keyframes marinePulse {
    0%, 100% {
    opacity: 1;
    transform: scale(1);
    
}

50% {
    opacity: 0.7;
    transform: scale(1.4);
    
}


}

.marine-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-gold-light) 50%, #40a4df 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
}

.marine-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.8;
    
}

.marine-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-gold);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
    
}

.marine-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: var(--hover-color);
    
}

/* Main Container */ .marine-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    
}

/* Marine Overview with Hexagonal Design */ .marine-overview {
    padding: 8rem 0;
    background: var(--bg-light);
    
}

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

.overview-text h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    
}

.overview-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    
}

.marine-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    
}

.stat-hexagon {
    position: relative;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-primary);
    transition: var(--transition);
    overflow: visible;
    
}

.stat-hexagon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, #40a4df 50%, var(--hover-color) 100%);
    
}

.stat-hexagon:hover {
    transform: translateY(-8px) rotate(2deg);
    box-shadow: var(--shadow-hover);
    
}

.stat-figure {
    display: block;
    font-family: 'Libre Baskerville', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: visible;
    text-overflow: initial;
}

.stat-text {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    
}

.overview-visual {
    position: relative;
    height: 500px;
    background: var(--gradient-overlay);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.visual-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 30px;
    
}

.visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    max-width: 100%;
    max-height: 100%;
    
}

/* Marine Services with Card Deck Design */ .marine-services {
    padding: 8rem 0;
    background: var(--news-section-bg);
    
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
    
}

.services-header h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    
}

.services-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    
}

.marine-deck {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    perspective: 1000px;
    
}

.service-card-marine {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(var(--blur-amount));
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    transform: rotateY(0deg);
    
}

.service-card-marine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, #40a4df 50%, var(--hover-color) 100%);
    
}

.service-card-marine:hover {
    transform: translateY(-15px) rotateY(5deg);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-gold);
    
}

.marine-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    
}

.marine-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #40a4df 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 20px rgba(64, 164, 223, 0.3);
    
}

.marine-card-header h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    
}

.marine-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    
}

.marine-capabilities {
    list-style: none;
    margin-bottom: 2.5rem;
    
}

.marine-capabilities li {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(214, 160, 25, 0.1);
    position: relative;
    padding-left: 2rem;
    
}

.marine-capabilities li::before {
    content: '⚓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    
}

.marine-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    
}

.marine-link:hover {
    color: var(--hover-color);
    transform: translateX(5px);
    
}

/* Deepwater Operations with Depth Layers */ .deepwater-operations {
    padding: 8rem 0;
    background: var(--bg-light);
    
}

.deepwater-header {
    text-align: center;
    margin-bottom: 5rem;
    
}

.deepwater-header h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    
}

.deepwater-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    
}

.depth-layers {
    position: relative;
    margin-top: 4rem;
    
}

.depth-layer {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
    
}

.depth-layer.visible {
    opacity: 1;
    transform: translateX(0);
    
}

.depth-layer:nth-child(even) {
    flex-direction: row-reverse;
    transform: translateX(50px);
    
}

.depth-layer:nth-child(even).visible {
    transform: translateX(0);
    
}

.depth-indicator {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #40a4df 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Libre Baskerville', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(64, 164, 223, 0.4);
    
}

.depth-content {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-primary);
    transition: var(--transition);
    margin: 0 3rem;
    
}

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

.depth-content h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    
}

.depth-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    
}

/* Subsea Technology Grid */ .subsea-technology {
    padding: 8rem 0;
    background: var(--gradient-mesh);
    
}

.technology-header {
    text-align: center;
    margin-bottom: 5rem;
    
}

.technology-header h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    
}

.technology-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    
}

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

.subsea-tech-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(var(--blur-amount));
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    
}

.subsea-tech-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(64, 164, 223, 0.1), transparent);
    transform: rotate(45deg);
    transition: var(--transition);
    opacity: 0;
    
}

.subsea-tech-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
    
}

@keyframes shimmer {
    0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    
}

100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
    
}


}

.subsea-tech-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-gold);
    
}

.subsea-tech-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #40a4df 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 20px rgba(64, 164, 223, 0.3);
    
}

.subsea-tech-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    
}

.subsea-tech-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    
}

/* Marine Operations Dashboard */ .marine-dashboard {
    padding: 8rem 0;
    background: var(--bg-dark);
    color: white;
    
}

.dashboard-header {
    text-align: center;
    margin-bottom: 5rem;
    
}

.dashboard-header h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    
}

.dashboard-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    
}

.dashboard-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    
}

.dashboard-button {
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    position: relative;
    overflow: hidden;
    
}

.dashboard-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 164, 223, 0.2), transparent);
    transition: var(--transition);
    
}

.dashboard-button:hover::before {
    left: 100%;
    
}

.dashboard-button.active, .dashboard-button:hover {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #40a4df 100%);
    color: white;
    border-color: var(--primary-gold);
    
}

.dashboard-content {
    display: none;
    animation: dashboardFade 0.8s ease-in;
    
}

.dashboard-content.active {
    display: block;
    
}

@keyframes dashboardFade {
    from {
    opacity: 0;
    transform: translateY(30px);
    
}

to {
    opacity: 1;
    transform: translateY(0);
    
}


}

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

.dashboard-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(var(--blur-amount));
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    
}

.dashboard-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, #40a4df 50%, var(--hover-color) 100%);
    
}

.dashboard-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    
}

.dashboard-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #40a4df 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 20px rgba(64, 164, 223, 0.3);
    
}

.dashboard-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    
}

.dashboard-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    
}

.dashboard-metric {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #40a4df 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    
}

/* Call to Action */ .marine-cta-section {
    padding: 8rem 0;
    background: var(--primary-gold);
    text-align: center;
    
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
    
}

.cta-content h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    
}

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

.cta-btn {
    padding: 1.2rem 2.5rem;
    border: 2px solid var(--text-dark);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
    
}

.cta-btn:hover::before {
    left: 100%;
    
}

.cta-btn-primary {
    background: var(--text-dark);
    color: var(--primary-gold);
    
}

.cta-btn-secondary {
    background: transparent;
    color: var(--text-dark);
    
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    
}

/* Responsive Design */ @media (max-width: 768px) {
    .marine-hero {
    padding: 2rem 0;
    min-height: 100vh;
    
}

.marine-content {
    padding: 2rem 1rem;
    max-width: 100%;
    
}

.marine-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.2;
    
}

.marine-subtitle {
    font-size: clamp(1rem, 4vw, 1.2rem);
    margin-bottom: 2rem;
    padding: 0 1rem;
    
}

.marine-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
    
}

.marine-cta {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    
}

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

.marine-stats {
    grid-template-columns: 1fr;
    
}

.marine-deck {
    grid-template-columns: 1fr;
    
}

.depth-layer {
    flex-direction: column !important;
    text-align: center;
    
}

.depth-content {
    margin: 2rem 0 0 0;
    
}

.subsea-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    
}

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

.dashboard-controls {
    flex-wrap: wrap;
    
}

.marine-vessel {
    width: 70px;
    height: 70px;
    
}

.marine-vessel i {
    font-size: 1.3rem;
    
}


}

@media (max-width: 480px) {
    .marine-content {
    padding: 1.5rem 0.8rem;
    
}

.marine-title {
    font-size: clamp(1.5rem, 10vw, 2.2rem);
    
}

.marine-subtitle {
    font-size: clamp(0.9rem, 5vw, 1.1rem);
    padding: 0 0.5rem;
    
}

.marine-container {
    padding: 0 1rem;
    
}

.service-card-marine {
    padding: 2rem 1.5rem;
    
}

.marine-vessel {
    display: none;
    
}


}