/* ==========================================================================
   Frontend Boilerplate - Main Stylesheet (style.css)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Reset & Base Normalization
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    font-weight: var(--fw-normal);
    line-height: var(--lh-base);
    color: var(--color-text-main);
    background-color: var(--color-bg-body);
    background-image: var(--bg-radial-gradient);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    padding-top: 90px;
    transition: background-color var(--transition-base), color var(--transition-base);
}

/* --------------------------------------------------------------------------
   2. Design Tokens & CSS Root Variables
   -------------------------------------------------------------------------- */
:root {
    /* Brand Color Variables */
    --primary-color: #d6850b;
    --secondary-color: #000000;

    /* Color Palette */
    --color-primary: #d6850b;
    --color-primary-hover: #b86e09;
    --color-primary-light: rgba(214, 133, 11, 0.1);
    --color-secondary: #000000;
    --color-secondary-hover: #1a1a1a;
    --color-success: #10b981;
    --color-info: #3b82f6;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;

    /* Theme Neutral Colors (Light Theme Default) */
    --color-bg-body: #f8fafc;
    --color-bg-surface: #ffffff;
    --color-bg-surface-secondary: #f1f5f9;
    --color-text-main: #0f172a;
    --color-text-muted: #64748b;
    --color-border: #e2e8f0;
    --color-border-light: #f1f5f9;
    --color-glass-bg: rgba(255, 255, 255, 0.75);
    --color-glass-border: rgba(255, 255, 255, 0.4);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #d6850b 0%, #000000 100%);
    --gradient-accent: linear-gradient(135deg, #d6850b 0%, #b86e09 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --bg-radial-gradient: radial-gradient(circle at 50% 0%, rgba(214, 133, 11, 0.05) 0%, transparent 75%);

    /* Typography Variables */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-heading: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;

    --fs-xs: 0.75rem;
    /* 12px */
    --fs-sm: 0.875rem;
    /* 14px */
    --fs-base: 1rem;
    /* 16px */
    --fs-md: 1.125rem;
    /* 18px */
    --fs-lg: 1.25rem;
    /* 20px */
    --fs-xl: 1.5rem;
    /* 24px */
    --fs-2xl: 2rem;
    /* 32px */
    --fs-3xl: 2.5rem;
    /* 40px */
    --fs-4xl: 3.5rem;
    /* 56px */

    --fw-light: 300;
    --fw-normal: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;

    --lh-tight: 1.25;
    --lh-base: 1.6;
    --lh-relaxed: 1.75;

    /* Border Radius Variables */
    --radius-sm: 0.375rem;
    /* 6px */
    --radius-md: 0.5rem;
    /* 8px */
    --radius-lg: 0.75rem;
    /* 12px */
    --radius-xl: 1rem;
    /* 16px */
    --radius-2xl: 1.5rem;
    /* 24px */
    --radius-full: 9999px;

    /* Shadow Variables */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(214, 133, 11, 0.35);

    /* Transition Variables */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Header & Layout Spacing */
    --header-height: 80px;
}

/* Dark Mode Theme Tokens */
[data-theme="dark"] {
    --color-bg-body: #090d16;
    --color-bg-surface: #111827;
    --color-bg-surface-secondary: #1f2937;
    --color-text-main: #f3f4f6;
    --color-text-muted: #9ca3af;
    --color-border: #1f2937;
    --color-border-light: #374151;
    --color-glass-bg: rgba(17, 24, 39, 0.75);
    --color-glass-border: rgba(255, 255, 255, 0.08);
    --bg-radial-gradient: radial-gradient(circle at 50% 0%, rgba(214, 133, 11, 0.15) 0%, transparent 75%);
}

/* --------------------------------------------------------------------------
   3. Custom Scrollbar Styling
   -------------------------------------------------------------------------- */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-body);
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-bg-body);
}

[data-theme="dark"] ::-webkit-scrollbar-thumb {
    background: #374151;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* --------------------------------------------------------------------------
   4. Selection Styling
   -------------------------------------------------------------------------- */
::selection {
    background-color: var(--color-primary);
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   5. Typography
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
    color: var(--color-text-main);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

h1,
.h1 {
    font-size: var(--fs-4xl);
}

h2,
.h2 {
    font-size: var(--fs-3xl);
}

h3,
.h3 {
    font-size: var(--fs-2xl);
}

h4,
.h4 {
    font-size: var(--fs-xl);
}

h5,
.h5 {
    font-size: var(--fs-lg);
}

h6,
.h6 {
    font-size: var(--fs-md);
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-hover);
}

/* --------------------------------------------------------------------------
   6. Container & Layout Wrappers
   -------------------------------------------------------------------------- */
.site-main {
    flex: 1 0 auto;
}

.container-custom {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* --------------------------------------------------------------------------
   7. Buttons
   -------------------------------------------------------------------------- */
.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    line-height: 1;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    user-select: none;
    white-space: nowrap;
}

.btn-custom-primary {
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.btn-custom-primary:hover {
    background-color: var(--color-primary-hover);
    color: #ffffff;
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-custom-secondary {
    background-color: var(--color-bg-surface-secondary);
    color: var(--color-text-main);
    border-color: var(--color-border);
}

.btn-custom-secondary:hover {
    background-color: var(--color-border);
    color: var(--color-text-main);
    transform: translateY(-2px);
}

.btn-gradient {
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(214, 133, 11, 0.3);
}

.btn-gradient:hover {
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(214, 133, 11, 0.5);
    transform: translateY(-2px);
}

.btn-glass {
    background: var(--color-glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-glass-border);
    color: var(--color-text-main);
}

.btn-glass:hover {
    background: var(--color-bg-surface);
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   8. Cards & Component Glassmorphism
   -------------------------------------------------------------------------- */
.card-custom {
    background-color: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(214, 133, 11, 0.3);
}

.card-glass {
    background: var(--color-glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

/* --------------------------------------------------------------------------
   9. Premium Header & Sticky Navigation
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    height: 90px;
    background-color: #ffffff66;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.header-logo {
    display: inline-block;
}

.brand-logo-img {
    height: auto;
    max-height: 90px;
    transition: max-height 0.4s ease;
    margin-top: 10px;
}

.site-header.scrolled .brand-logo-img {
    max-height: 50px;
}

.nav-menu .nav-item {
    margin: 0 30px;
}

.nav-link {
    font-weight: 600;
    color: #000000;
    font-size: 16px;
    padding: 0.5rem 0.8rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    /* background-color: #d6850b; */
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #d6850b;
}

.nav-link.active {
    font-weight: 700;
}

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

/* Dropdown styling */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu-custom {
        display: block;
        animation: fadeUp 0.3s ease;
    }
}

.dropdown-menu-custom {
    border-radius: 12px;
    padding: 0.5rem 0;
    margin-top: 0px;
}

.dropdown-item-custom {
    font-size: 0.95rem;
    font-weight: 500;
    color: #000000;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item-custom:hover {
    background-color: rgba(214, 133, 11, 0.05);
    color: #d6850b;
    padding-left: 2rem;
}

/* Quote Button */
.quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #d6850b;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.75rem 1.75rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quote-btn:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mobile-toggle {
    outline: none;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .site-header {
        background-color: #ffffff;
        height: auto;
        padding: 10px 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .main-navbar {
        background-color: #ffffff;
    }

    .navbar-collapse {
        background-color: #ffffff;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link {
        padding: 10px 0;
        border-bottom: 1px solid #eeeeee;
    }

    .nav-link.dropdown-toggle {
        border-bottom: none;
    }

    .dropdown-menu-custom {
        box-shadow: none !important;
        background-color: #fafafa;
        border: 1px solid #eeeeee !important;
        margin-top: 5px;
    }

    .quote-btn {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
}

/* --------------------------------------------------------------------------
   10. Image Responsive Rules
   -------------------------------------------------------------------------- */
img,
picture,
svg,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-fluid-custom {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* --------------------------------------------------------------------------
   11. Utilities (Spacing, Text, Badges, Back to Top)
   -------------------------------------------------------------------------- */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.35rem 0.85rem;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    border-radius: var(--radius-full);
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border: 1px solid rgba(214, 133, 11, 0.2);
}

/* Spacing Helpers */
.py-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.mb-section {
    margin-bottom: 5rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    color: #ffffff;
}

/* Footer Styling */
.site-footer {
    background-color: #e0e0e0;
    padding-top: 4rem;
    padding-bottom: 4rem;
    border-top: 1px solid #f0f0f0;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.footer-about-text {
    font-size: 14px;
    line-height: 1.6;
    color: #082156;
    font-weight: 500;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    color: #082156;
    font-size: 18px;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    color: #d6850b;
    transform: translateY(-2px);
}

.footer-heading {
    color: #082156;
    font-weight: 700;
    font-size: 23px;
    /* margin-bottom: 1.75rem; */
}

.footer-links li {
    margin-bottom: 3px;
}

.footer-links a {
    color: #0f0f0f;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d6850b;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 2px;
    color: #082156;
    font-size: 15px;
    font-weight: 500;
}

.footer-contact i {
    font-size: 1.1rem;
    color: #082156;
    margin-top: 2px;
}

/* --------------------------------------------------------------------------
   12. Hero Slider Component (#hero)
   -------------------------------------------------------------------------- */
#hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #090d16;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item {
    width: 100%;
}

#hero .carousel-item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 991.98px) {
    #hero .carousel-item img {
        height: 60vh;
        min-height: 400px;
    }
}

@media (max-width: 767.98px) {
    #hero .carousel-item img {
        height: 20vh;
        min-height: 200px;
    }

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    #hero .carousel-indicators {
        margin-bottom: 1rem;
    }
}

.hero-slide {
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(9, 13, 22, 0.65) 0%, rgba(9, 13, 22, 0.5) 50%, rgba(9, 13, 22, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: #ffffff;
    text-align: left;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: var(--fs-4xl);
    font-weight: var(--fw-extrabold);
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: var(--fs-md);
    line-height: var(--lh-relaxed);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Active Slide Entrance Animations */
.carousel-item.active .hero-subtitle {
    animation: slideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.carousel-item.active .hero-title {
    animation: slideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.carousel-item.active .hero-description {
    animation: slideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.carousel-item.active .hero-buttons {
    animation: slideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

/* Carousel Controls & Indicators */
#hero .carousel-control-prev,
#hero .carousel-control-next {
    width: 56px;
    height: 56px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: var(--radius-full);
    background: rgb(242 146 4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgb(243, 22, 2);
    opacity: 0.8;
    transition: all var(--transition-base);
    z-index: 10;
}

#hero .carousel-control-prev {
    left: 2rem;
}

#hero .carousel-control-next {
    right: 2rem;
}

#hero .carousel-control-prev:hover,
#hero .carousel-control-next:hover {
    opacity: 1;
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

#hero .carousel-indicators {
    margin-bottom: 2rem;
    gap: 0.5rem;
    z-index: 10;
}

#hero .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    opacity: 0.7;
}

#hero .carousel-indicators .active {
    width: 32px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    opacity: 1;
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.8);
}

/* --------------------------------------------------------------------------
   13. Stats Counter Section (#stats-counter)
   -------------------------------------------------------------------------- */
.stats-counter {
    background-color: #ffffff;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(214, 133, 11, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(214, 133, 11, 0.03) 0%, transparent 50%);
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

/* Section Header Labels */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #d6850b;
    position: relative;
    padding-bottom: 0.35rem;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 2px;
    background-color: #d6850b;
    border-radius: 2px;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.section-description {
    font-size: 15px;
    line-height: 1.8;
    color: #6F7D93;
    max-width: 700px;
}

/* Counter Cards */
.counter-card {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-top-color 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-top: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.counter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #d6850b;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.counter-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: #f0f0f0;
}

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

/* Counter Icon */
.counter-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: rgba(214, 133, 11, 0.08);
    margin: 0 auto 1.25rem auto;
    transition: background-color 0.35s ease;
}

.counter-card:hover .counter-icon {
    background-color: rgba(214, 133, 11, 0.15);
}

.counter-icon i {
    font-size: 2rem;
    color: #d6850b;
    line-height: 1;
}

/* Counter Number */
.counter-number {
    font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 800;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}

.counter-number.counter-static {
    font-size: 22px;
    letter-spacing: -0.01em;
}

/* Counter Divider */
.counter-divider {
    width: 36px;
    height: 2px;
    background-color: #d6850b;
    border-radius: 2px;
    margin: 0 auto 0.875rem auto;
    transition: width 0.35s ease;
}

.counter-card:hover .counter-divider {
    width: 56px;
}

/* Counter Title */
.counter-title {
    font-size: 15px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

/* Counter Description */
.counter-text {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #6F7D93;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   14. Services Overview Section (#services-overview)
   -------------------------------------------------------------------------- */
.services-overview {
    background-color: #f0eded;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

/* Service Card */
.service-card {
    background-color: #ffffff;
    border: 1px solid #ececec;
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.05);
    border-top: 4px solid transparent;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #d6850b;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

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

/* Service Icon */
.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: rgba(214, 133, 11, 0.09);
    margin-bottom: 1.5rem;
    transition: background-color 0.35s ease;
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    background-color: #d6850b;
}

.service-icon i {
    font-size: 1.9rem;
    color: #d6850b;
    line-height: 1;
    transition: color 0.35s ease;
}

.service-card:hover .service-icon i {
    color: #ffffff;
}

/* Service Title */
.service-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

/* Service Description */
.service-description {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #6F7D93;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Learn More Link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #d6850b;
    text-decoration: none;
    margin-top: auto;
    transition: color 0.35s ease;
}

.service-link:hover {
    color: #000000;
}

.service-link-arrow {
    transition: transform 0.35s ease;
    font-size: 0.95rem;
}

.service-card:hover .service-link-arrow {
    transform: translateX(5px);
}

/* View All Services Button */
.service-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background-color: #d6850b;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 5px;
    border-radius: 100px;
    border: 2px solid #d6850b;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 4px 18px rgba(214, 133, 11, 0.3);
    letter-spacing: 0.01em;
}

.service-button:hover {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.service-button i {
    transition: transform 0.35s ease;
    font-size: 1.1rem;
}

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

/* --------------------------------------------------------------------------
   15. Fleet Preview Section (#fleet-preview)
   -------------------------------------------------------------------------- */
.fleet-preview {
    background-color: #fafafa;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

/* Fleet Card */
.fleet-card {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-top-color 0.35s ease;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    border-top: 4px solid transparent;
    position: relative;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    border-top-color: #d6850b;
}

/* Fleet Image Wrapper */
.fleet-image-wrapper {
    position: relative;
    width: 100%;
    height: 187px;
    overflow: hidden;
    background-color: #e8e8e8;
    flex-shrink: 0;
}

.fleet-image {
    width: 100%;
    height: 187px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

.fleet-card:hover .fleet-image {
    transform: scale(1.07);
}

/* Availability Badge (top-right corner of image) */
.fleet-availability-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background-color: rgba(214, 133, 11, 0.92);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2;
}

/* Fleet Body */
.fleet-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Vessel Type Label */
.fleet-type {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #d6850b;
    margin-bottom: 0.4rem;
}

/* Vessel Name */
.fleet-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

/* Capacity Line */
.fleet-capacity {
    font-size: 0.875rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
}

.fleet-capacity i {
    color: #d6850b;
}

/* Short Description */
.fleet-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #6F7D93;
    margin-bottom: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Fleet Footer (badges row) */
.fleet-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

/* DWT Capacity Badge */
.fleet-badge-capacity {
    font-size: 0.72rem;
    font-weight: 700;
    color: #d6850b;
    background-color: rgba(214, 133, 11, 0.1);
    border: 1px solid rgba(214, 133, 11, 0.25);
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
    white-space: nowrap;
}

/* Status Badge */
.fleet-status {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
}

.fleet-status.active {
    background-color: rgba(16, 185, 129, 0.1);
    color: #0d9e6e;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

/* View All Vessels Button */
.fleet-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background-color: #d6850b;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    padding: 10px;
    border-radius: 100px;
    border: 2px solid #d6850b;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 4px 18px rgba(214, 133, 11, 0.3);
    letter-spacing: 0.01em;
}

.fleet-btn:hover {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.fleet-btn i {
    transition: transform 0.35s ease;
    font-size: 1.1rem;
}

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

/* --------------------------------------------------------------------------
   16. Showcase Section (#showcase)
   -------------------------------------------------------------------------- */
.showcase-section {
    background-color: #fafafa;
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
}

.showcase-line {
    width: 40px;
    height: 2px;
    background-color: #d6850b;
}

.showcase-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #d6850b;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.showcase-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.showcase-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 2rem;
}

/* Feature Cards */
.feature-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    margin-bottom: 25px;
}

.feature-card:last-child {
    margin-bottom: 0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: rgba(214, 133, 11, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.35s ease;
}

.feature-card:hover .feature-icon {
    background-color: #d6850b;
}

.feature-icon i {
    font-size: 1.75rem;
    color: #d6850b;
    transition: color 0.35s ease;
}

.feature-card:hover .feature-icon i {
    color: #ffffff;
}

.feature-content h4 {
    font-size: 1.15rem;
    line-height: 1.3;
}

/* Button */
.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #d6850b;
    color: #ffffff;
    padding: 0.9rem 2.2rem;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s ease;
}

.learn-more-btn:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Image Gallery Collage */
.showcase-gallery {
    position: relative;
    width: 100%;
    min-height: 600px;
}

.gallery-image {
    position: absolute;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
    z-index: 10 !important;
}

/* Collage Positioning */
.gallery-top {
    width: 50%;
    height: 240px;
    top: 0;
    right: 0;
    z-index: 2;
}

.gallery-middle {
    width: 65%;
    height: 350px;
    top: 20%;
    right: 25%;
    z-index: 1;
}

.gallery-bottom {
    width: 55%;
    height: 240px;
    bottom: 0;
    left: 0;
    z-index: 3;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .showcase-gallery {
        min-height: 450px;
        margin-top: 3rem;
    }
}

@media (max-width: 767.98px) {
    .showcase-gallery {
        min-height: 350px;
    }

    .gallery-top {
        height: 160px;
    }

    .gallery-middle {
        height: 220px;
    }

    .gallery-bottom {
        height: 160px;
    }
}

/* --------------------------------------------------------------------------
   15. Pixel-Perfect About Section (#features)
   -------------------------------------------------------------------------- */
.about-section {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* 60% / 40% column split for About section */
.col-about-left,
.col-about-right {
    position: relative;
    width: 100%;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .col-about-left {
        flex: 0 0 60%;
        max-width: 60%;
    }

    .col-about-right {
        flex: 0 0 40%;
        max-width: 40%;
    }
}

.about-content {
    max-width: 830px;
    padding-left: clamp(1.5rem, 5vw, 5rem);
}

.about-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 300;
    line-height: 1.18;
    color: #0d0d0c;
    margin-bottom: 1.75rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.about-title strong {
    font-weight: 700;
    color: #d6850b;
}

.about-text {
    font-size: 17px;
    line-height: 25px;
    color: #6F7D93;
    margin-bottom: 2.25rem;
    text-align: justify;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #d6850b;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 7px 15px;
    border-radius: 4px;
    border: none;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(214, 133, 11, 0.25);
    cursor: pointer;
}

.about-btn:hover {
    background-color: #b86e09;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 133, 11, 0.4);
}

.about-btn i {
    transition: transform var(--transition-fast);
}

.about-btn:hover i {
    transform: translateX(4px);
}

/* Right Graphic Overlapping Composition */
.about-graphic {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 480px;
}

.blue-half-circle {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 230px;
    height: 460px;
    background-color: #123E91;
    border-top-left-radius: 230px;
    border-bottom-left-radius: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.vertical-about-text {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-transform: uppercase;
    user-select: none;
}

.about-circle-image-wrapper {
    position: relative;
    z-index: 2;
    margin-left: 100px;
    border-radius: 50%;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Full-width right column image */
.about-right-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    object-position: center;
}

/* --------------------------------------------------------------------------
   CTA Banner Section
   -------------------------------------------------------------------------- */
.cta-banner-section {
    min-height: 350px;
    display: flex;
    align-items: center;
    background-color: #000;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.cta-heading {
    line-height: 1.15;
    letter-spacing: -1.5px;
    font-size: 38px;
    font-weight: 800;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem !important;
    color: #fff;
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 12px 40px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background-color: #ffffff;
    color: #125aa6;
}

/* Blue triangle on bottom right */
.cta-diagonal-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 320px;
    height: 160px;
    background-color: #125aa6;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

@media (max-width: 768px) {
    .cta-diagonal-shape {
        width: 200px;
        height: 150px;
    }

    .cta-heading {
        text-align: center;
    }

    .cta-banner-section .row {
        justify-content: center !important;
    }

    .cta-overlay {
        background: rgba(0, 0, 0, 0.5);
        /* darker for mobile reading */
    }
}

/* --------------------------------------------------------------------------
   Copyright Bar
   -------------------------------------------------------------------------- */
.copyright-bar {
    background-color: #0a1426;
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.015) 0px, rgba(255, 255, 255, 0.015) 2px, transparent 2px, transparent 4px);
    padding: 1.25rem 0;
    text-align: center;
}

.copyright-bar p {
    color: #8c9bb0;
    font-size: 14px;
    margin: 0;
}

.copyright-bar strong {
    color: #ffffff;
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   Hero About Section
   -------------------------------------------------------------------------- */
.hero-about-section {
    position: relative;
    width: 100%;
    height: 300px;
    background-image: url('../images/banner/slide1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(35, 78, 88, 0.85);
    /* Deep teal overlay */
    z-index: 1;
}

.hero-about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

.hero-about-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.hero-about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 500;
    color: #ffffff;
}

.hero-about-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-about-breadcrumb a:hover {
    color: var(--color-primary);
}

.breadcrumb-icon {
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 700;
    stroke-width: 2px;
}

@media (max-width: 768px) {
    .hero-about-section {
        height: 350px;
    }

    .hero-about-title {
        font-size: 3rem;
    }

    .hero-about-breadcrumb {
        font-size: 1rem;
    }
}

/* --------------------------------------------------------------------------
   About Section (Alpha Ocean)
   -------------------------------------------------------------------------- */
.about-custom-sec {
    padding: 6rem 0;
    background-color: #ffffff;
    overflow: hidden;
}

.about-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-custom-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    right: -30px;
    width: 250px;
    background-color: #ffffff;
    padding: 25px 30px 45px 30px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
    z-index: 3;
}

.badge-red-line {
    position: absolute;
    top: 25px;
    left: 0;
    width: 5px;
    height: 55px;
    background-color: #ff0000;
}

.exp-badge-content h3 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #0b1442;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    line-height: 1;
    font-family: var(--font-heading);
}

.exp-badge-content h3 span {
    font-size: 1.25rem;
    font-weight: 700;
}

.exp-badge-content p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
    font-family: var(--font-primary);
}

/* Right Column */
.about-custom-subtitle-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.about-custom-line {
    width: 45px;
    height: 2px;
    background-color: #00d656;
}

.about-custom-subtitle {
    color: #00d656;
    font-weight: 700;
    font-size: 1.15rem;
    font-family: var(--font-heading);
}

.about-custom-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: #0b1442;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.about-custom-text p {
    font-size: 1rem;
    color: #747d8c;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.about-custom-vision-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #88909b;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

/* Feature Box */
.about-custom-feature-box {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 1.5rem 1.75rem;
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    gap: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.feature-box-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: #fff0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-box-icon i {
    font-size: 1.8rem;
    color: #ff4d4f;
}

.feature-box-content h4 {
    font-size: 1.35rem;
    font-weight: 900;
    color: #0b1442;
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
}

.feature-box-content p {
    font-size: 0.95rem;
    color: #747d8c;
    margin: 0;
    line-height: 1.5;
}

/* Button */
.btn-custom-green {
    display: inline-block;
    background-color: #00d656;
    color: #ffffff;
    font-weight: 700;
    padding: 0.9rem 2.25rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    font-family: var(--font-primary);
}

.btn-custom-green:hover {
    background-color: #00c04d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 214, 86, 0.2);
}

@media (max-width: 991.98px) {
    .about-experience-badge {
        right: 0;
    }

    .about-custom-title {
        font-size: 2rem;
    }
}

/* --------------------------------------------------------------------------
   Team Section (Alpha Ocean)
   -------------------------------------------------------------------------- */
.team-custom-sec {
    position: relative;
    padding: 6rem 0;
    background-color: #ffffff;
    overflow: hidden;
}
.team-section{
    padding: 40px 0;
}
/* Subtle dotted pattern background resembling a map */
.team-custom-sec::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background-image: radial-gradient(rgba(0, 0, 0, 0.08) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    mask-image: radial-gradient(ellipse at bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 60%);
    -webkit-mask-image: radial-gradient(ellipse at bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 0;
    pointer-events: none;
}

.team-custom-sec .container-custom {
    position: relative;
    z-index: 1;
}

.team-custom-title {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 800;
    color: #0b1442;
    margin-bottom: 1.5rem;
}

.team-custom-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3.5rem;
    /* Room for overlapping badge */
}

.team-custom-img-wrap {
    width: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.team-custom-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.team-custom-card:hover .team-custom-img {
    transform: scale(1.05);
}

.team-custom-info {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fe9801;
    padding: 1.25rem 1rem;
    border-radius: 6px;
    width: 88%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: background-color 0.3s ease;
}

.team-custom-card:hover .team-custom-info {
    background-color: #c42626;
}

.team-custom-name {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.team-custom-info p {
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    .team-custom-title {
        font-size: 2.75rem;
    }

    .team-custom-info {
        bottom: -20px;
        width: 92%;
        padding: 1rem 0.5rem;
    }

    .team-custom-name {
        font-size: 1.05rem;
    }

    .team-custom-card {
        margin-bottom: 2.5rem;
    }
}

/* --------------------------------------------------------------------------
   Contact Section Custom (Get in Touch)
   -------------------------------------------------------------------------- */
.contact-custom-sec {
    background-color: #f7f9fa;
    padding: 6rem 0;
}

.contact-custom-wrap {
    background-color: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

/* Left Side - Form */
.contact-custom-left {
    padding: 4.5rem;
    background-color: #ffffff;
}

.contact-custom-subtitle {
    color: #ef3b3b;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.contact-custom-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 900;
    color: #111111;
    letter-spacing: -1px;
}

.contact-custom-form label {
    font-size: 0.95rem;
    color: #111111;
    margin-bottom: 0.5rem;
}

.contact-custom-input {
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    color: #4a4a4a;
    box-shadow: none !important;
    transition: border-color 0.3s ease;
}

.contact-custom-input:focus {
    border-color: #ef3b3b;
}

.contact-custom-input::placeholder {
    color: #90959a;
}

.contact-custom-submit {
    background-color: #ef3b3b;
    border: none;
    padding: 1.1rem;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 6px;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.contact-custom-submit:hover {
    background-color: #d12e2e;
    color: #ffffff;
}

/* Right Side - Info */
.contact-custom-right {
    padding: 4.5rem;
    display: flex;
    flex-direction: column;
}

.contact-custom-right-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/showcase-2.webp');
    /* fallback background image */
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.contact-custom-right-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 36, 34, 0.93);
    /* Dark greenish-grey overlay */
    z-index: 1;
}

.contact-custom-right-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    color: #ffffff;
}

.contact-custom-right-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-custom-info-item .contact-custom-icon i {
    color: #ef3b3b;
    font-size: 1.4rem;
}

.contact-custom-info-item h5 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #ffffff;
}

.contact-custom-info-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-custom-socials {
    margin-top: 2rem;
}

.contact-custom-social-btn {
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    color: #1e2422;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.15rem;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-custom-social-btn:hover {
    transform: translateY(-3px);
    background-color: #ef3b3b;
    color: #ffffff;
}

@media (max-width: 991.98px) {

    .contact-custom-left,
    .contact-custom-right {
        padding: 3rem 2rem;
    }
}

/* --------------------------------------------------------------------------
   Google Map Section Custom
   -------------------------------------------------------------------------- */
.map-section-custom {
    width: 100%;
    position: relative;
    display: block;
    line-height: 0;
}

.map-container-custom {
    width: 100%;
}

.map-container-custom iframe {
    width: 100%;
    height: 500px;
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
}

@media (max-width: 991.98px) {
    .map-container-custom iframe {
        height: 400px;
    }
}

@media (max-width: 575.98px) {
    .map-container-custom iframe {
        height: 350px;
    }
}

/* --------------------------------------------------------------------------
   Vessel Services Section Custom
   -------------------------------------------------------------------------- */
.vesselsec-custom {
    background-color: #f1efec;
    padding: 6rem 0;
}
.vesselsec {
    padding: 40px 0;
}
.vessel-custom-subtitle {
    display: inline-block;
    position: relative;
    font-size: 0.85rem;
    font-weight: 800;
    color: #df8b13;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.vessel-custom-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 3px;
    background-color: #df8b13;
    border-radius: 2px;
}

.vessel-custom-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: #111111;
    letter-spacing: -1px;
}

.vessel-custom-description {
    font-size: 1.05rem;
    color: #8c9399;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.vessel-custom-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vessel-custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.vessel-custom-icon {
    width: 65px;
    height: 65px;
    background-color: #fdf6ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.vessel-custom-icon i {
    font-size: 1.75rem;
    color: #df8b13;
}

.vessel-custom-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 1rem;
}

.vessel-custom-card-text {
    font-size: 0.95rem;
    color: #8c9399;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.vessel-custom-link {
    font-weight: 800;
    font-size: 0.95rem;
    color: #df8b13;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.vessel-custom-link i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.vessel-custom-link:hover {
    color: #b5700d;
}

.vessel-custom-link:hover i {
    transform: translateX(4px);
}

.vessel-custom-btn {
    display: inline-flex;
    align-items: center;
    background-color: #df8b13;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(223, 139, 19, 0.25);
}

.vessel-custom-btn i {
    margin-left: 8px;
    font-weight: bold;
}

.vessel-custom-btn:hover {
    background-color: #b5700d;
    color: #ffffff;
    transform: translateY(-2px);
}

.vessel-custom-title {
    font-size: 2.25rem;
}
/* --------------------------------------------------------------------------
   Services Section Custom
   -------------------------------------------------------------------------- */
.servicesec-custom {
    background-color: #f1efec;
    padding: 6rem 0;
}

.servicesec {
    padding: 40px 0;
}

.service-custom-subtitle {
    display: inline-block;
    position: relative;
    font-size: 0.85rem;
    font-weight: 800;
    color: #df8b13;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.service-custom-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 3px;
    background-color: #df8b13;
    border-radius: 2px;
}

.service-custom-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: #111111;
    letter-spacing: -1px;
}

.service-custom-description {
    font-size: 1.05rem;
    color: #8c9399;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.service-custom-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.service-custom-icon {
    width: 65px;
    height: 65px;
    background-color: #fdf6ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-custom-icon i {
    font-size: 1.75rem;
    color: #df8b13;
}

.service-custom-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 1rem;
}

.service-custom-card-text {
    font-size: 0.95rem;
    color: #8c9399;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-custom-link {
    font-weight: 800;
    font-size: 0.95rem;
    color: #df8b13;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.service-custom-link i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.service-custom-link:hover {
    color: #b5700d;
}

.service-custom-link:hover i {
    transform: translateX(4px);
}

.service-custom-btn {
    display: inline-flex;
    align-items: center;
    background-color: #df8b13;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(223, 139, 19, 0.25);
}

.service-custom-btn i {
    margin-left: 8px;
    font-weight: bold;
}

.service-custom-btn:hover {
    background-color: #b5700d;
    color: #ffffff;
    transform: translateY(-2px);
}

.service-custom-title {
    font-size: 2.25rem;
}

/* --------------------------------------------------------------------------
   Fleet Section Custom
   -------------------------------------------------------------------------- */
.fleet-custom-sec {
    background-color: #f7f6f5;
    padding: 6rem 0;
}

.fleet-custom-subtitle {
    display: inline-block;
    position: relative;
    font-size: 0.85rem;
    font-weight: 800;
    color: #df8b13;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.fleet-custom-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 3px;
    background-color: #df8b13;
    border-radius: 2px;
}

.fleet-custom-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: #000000;
    letter-spacing: -1px;
}

.fleet-custom-description {
    font-size: 1.05rem;
    color: #7b8591;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.fleet-custom-card {
    background-color: #ffffff;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.fleet-custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.fleet-custom-img {
    width: 100%;
    height: 190px;
    object-fit: contain;
    object-position: center;
}

.fleet-custom-body {
    padding: 2rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fleet-custom-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.fleet-custom-card-text {
    font-size: 0.95rem;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.fleet-custom-card-text i {
    color: #df8b13;
    font-size: 1.1rem;
    margin-right: 8px;
}

@media (max-width: 991.98px) {
    .fleet-custom-title {
        font-size: 2.25rem;
    }
}

/* --------------------------------------------------------------------------
   Gallery Section Custom
   -------------------------------------------------------------------------- */
.gallery-custom-sec {
    background-color: #ffffff;
    padding: 40px 0;
}

.gallery-custom-container {
    width: 100%;
    margin: 0;
    padding: 10px;
}

.gallery-custom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.gallery-custom-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 3;
}

.gallery-custom-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-custom-item:hover .gallery-custom-img {
    transform: scale(1.05);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .gallery-custom-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991.98px) {
    .gallery-custom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .gallery-custom-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Service Details Section Custom
   -------------------------------------------------------------------------- */
.servicedetsec-custom {
    padding: 6rem 0;
    background-color: #ffffff;
}

.servicedet-sidebar-widget {
    background-color: #f4f5f7;
    margin-bottom: 2rem;
}

.servicedet-widget-title {
    background-color: #082041;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1.25rem 1.5rem;
    margin-bottom: 0;
    text-transform: uppercase;
}

.servicedet-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.servicedet-menu-list li {
    border-bottom: 1px solid #e5e7eb;
}

.servicedet-menu-list li:last-child {
    border-bottom: none;
}

.servicedet-menu-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.15rem 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.servicedet-menu-list li a:hover,
.servicedet-menu-list li.active a {
    background-color: #ef3b3b;
    color: #ffffff;
}

.servicedet-menu-list li a i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.servicedet-menu-list li a:hover i,
.servicedet-menu-list li.active a i {
    transform: translateX(4px);
}

.servicedet-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.servicedet-contact-list li {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.95rem;
    justify-content: space-between;
}

.servicedet-contact-list li:last-child {
    border-bottom: none;
}

.servicedet-contact-list li i {
    color: #1a1a1a;
    font-size: 1.1rem;
}

.servicedet-brochure-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.servicedet-brochure-list li a {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.servicedet-brochure-list li a:hover {
    color: #ef3b3b;
}

.servicedet-brochure-list li a i {
    font-size: 1.3rem;
    margin-right: 12px;
}

.servicedet-main-content {
    display: flex;
    flex-direction: column;
}

.servicedet-main-img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 2.5rem;
    object-fit: cover;
}

.servicedet-main-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.servicedet-main-text {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
