/* ============================================
   CSS Variables - Brand Colors & Fonts
   ============================================ */
:root {
    /* Colors */
    --color-primary: #030934;
    --color-green: #53FF33;
    --color-text: #011013;
    --color-blue: #0060DE;

    /* Fonts */
    --font-heading: 'Libre Baskerville', serif;
    --font-body: 'Poppins', sans-serif;
}

/* Language Switcher Styles */
.language-switcher {
    position: relative;
    display: inline-block;
}

.language-dropdown {
    position: relative;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid var(--color-blue);
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.language-toggle:hover,
.language-toggle.active {
    background-color: #f5f5f5;
    border-color: var(--color-blue);
}

.current-language {
    display: flex;
    align-items: center;
    gap: 6px;
}

.flag {
    font-size: 16px;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background: white;
    border: 1px solid var(--color-blue);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0;
    margin: 0;
}

.language-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid #eee;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background-color: #f8f9fa;
    color: var(--color-blue);
}

.language-option.active {
    background-color: var(--color-blue);
    color: white;
    font-weight: 500;
}

.language-option .flag {
    font-size: 18px;
}

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

body {
    font-family: var(--font-body);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--font-heading);
}

.logo-container img {
    width: auto;
    height: 70px;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(20, 20, 80, 0.95) 0%, rgba(0, 0, 150, 0.9) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
}

/* For background images specifically */
.hero-background[style*="background-image"] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3) !important;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    max-width: 1920px;
    margin: 0 auto;
}

.left-content {
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 28px;
    flex: 1;
}

.logo-text {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
}

.hero-subtext {
    color: #fff;
}

.logo-icon {
    width: 80px;
    height: 80px;
    position: relative;
}

.logo-circle {
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-green);
    border-radius: 50%;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.logo-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 4px;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--color-green);
    border-radius: 50%;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.tagline {
    font-size: 13px;
    color: #ffffff;
    margin-left: 100px;
    line-height: 1.6;
    font-weight: 400;
}


.hero-heading h1 {
    font-size: 32px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: 1px;
}

.hero-heading .highlight {
    font-weight: 700;
    color: #ffffff;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border-left: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) rotate(-45deg);
    }

    40% {
        transform: translateY(-10px) rotate(-45deg);
    }

    60% {
        transform: translateY(-5px) rotate(-45deg);
    }
}

/* Right Side Navigation with Rotating Dial */
.right-nav {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: right;
}

.dial-container {
    position: absolute;
    width: 900px;
    /* height: 800px; */
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    aspect-ratio: 1/1;
    right: -100%;
}

.dial-menu {
    width: 100%;
    height: 100%;
    position: relative;
}

.nav-menu {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-menu {
    list-style: none;
}

.nav-menu li {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: .05rem;
    padding: 10px 0;
    text-transform: uppercase;
}

.nav-item {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-item:hover {
    color: var(--color-green);
}

/* Submenu Styles */
.nav-item.has-dropdown {
    position: relative;
}

.nav-item.has-dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 15px 0;
    margin: 0;
    border: 1px solid #f0f0f0;
}

@media (min-width: 769px) {
    .submenu.mega-submenu {
        min-width: 600px;
        display: flex;
        flex-wrap: wrap;
        padding: 25px;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        gap: 15px;
    }

    .nav-item.has-dropdown:hover .submenu.mega-submenu {
        transform: translateX(-50%) translateY(0);
    }

    .mega-submenu li {
        flex: 0 0 calc(50% - 8px);
        margin: 0;
    }

    .mega-submenu .submenu-link {
        padding: 15px 20px;
        white-space: normal;
        line-height: 1.4;
        border-radius: 6px;
        background: #fafafa;
        margin-bottom: 5px;
    }

    .mega-submenu .submenu-link:hover {
        background: linear-gradient(135deg, var(--color-blue) 0%, #005a8a 100%);
        color: white;
    }

    .mega-submenu .submenu-link:hover i {
        color: white;
    }

    .mega-submenu .submenu-link:hover:before {
        display: none;
    }

    /* Submenu sections with dividers */
    .mega-submenu .submenu-section {
        width: 100%;
        padding: 10px 0;
        margin: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .mega-submenu .submenu-section:first-child {
        margin-top: 0;
    }

    .mega-submenu .submenu-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .submenu-section-title {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--color-blue);
        padding: 0 20px 8px;
        margin-bottom: 5px;
    }
}

.submenu li {
    padding: 0;
    margin: 0;
}

.submenu-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.submenu-link:hover {
    background: linear-gradient(90deg, #f8f9fa 0%, #e9f7fe 100%);
    color: var(--color-blue);
}

.submenu-link:hover:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-blue);
    border-radius: 0 2px 2px 0;
}

.submenu-link i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
    font-size: 16px;
    color: #666;
    transition: all 0.3s ease;
}

.submenu-link:hover i {
    color: var(--color-blue);
}

.submenu-icon {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-item.has-dropdown:hover .submenu-icon {
    transform: rotate(180deg);
}

/* ==========================================
   MOBILE HEADER (Separate Structure)
   ========================================== */
.mobile-header {
    display: none;
    /* Hidden on desktop */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.945) !important;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.mobile-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile Submenu Styles */
.mobile-nav-item.has-children {
    position: relative;
}

.mobile-submenu-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    font-size: 14px;
    color: #ffffff;
}

.mobile-submenu-toggle i {
    color: #ffffff;
}

.mobile-nav-item.has-children.active .mobile-submenu-toggle {
    transform: translateY(-50%) rotate(180deg);
}

.mobile-submenu {
    display: none;
    background-color: #f8f9fa;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item.has-children.active .mobile-submenu {
    display: block;
}

.mobile-submenu li {
    border-bottom: 1px solid #e9ecef;
}

.mobile-submenu li:last-child {
    border-bottom: none;
}

.mobile-submenu-link {
    display: block;
    padding: 15px 30px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
}

.mobile-submenu-link:hover {
    background-color: #e9ecef;
    color: var(--color-blue);
    padding-left: 35px;
}

.mobile-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.mobile-logo img {
    height: 40px;
    transition: filter 0.3s ease;
}

.mobile-hamburger {
    background: var(--color-blue)cc;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger-bar {
    width: 28px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-header.scrolled .hamburger-bar {
    background-color: var(--color-blue);
}

.mobile-hamburger.active .hamburger-bar:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-hamburger.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-hamburger.active .hamburger-bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
    display: none;
    /* Hidden on desktop */
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(0, 126, 195, 0.98);
    z-index: 999;
    transition: right 0.3s ease;
    padding-top: 80px;
}

.mobile-nav-menu.active {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
    display: block;
    padding: 18px 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ==========================================
   DESKTOP SCROLL HEADER
   ========================================== */
.desktop-scroll-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 9999;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
}

.desktop-scroll-header.header-visible {
    transform: translateY(0);
}

.scroll-header-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

/* Header Top Utility Bar */
.header-top-bar {
    background-color: var(--color-primary);
    color: #ffffff;
    height: 40px;
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-top-right {
    display: flex;
    align-items: center;
}

.header-top-right .location-wrapper {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.header-top-right .location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 13px;
}

.header-top-right .location i {
    color: var(--color-green);
    font-size: 14px;
}

.header-top-right .divider {
    color: rgba(255, 255, 255, 0.3);
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 13px;
    margin-right: 35px;
}

.header-top-right .socials-wrapper {
    display: flex;
    align-items: center;
}

.header-top-right .follow-us {
    color: #ffffff;
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 13px;
    margin-right: 15px;
}

.header-top-right .social-icon {
    color: var(--color-green);
    font-size: 14px;
    margin-left: 15px;
    transition: color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
}

.header-top-right .social-icon:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.scroll-logo {
    flex: 0 0 200px;
}

.scroll-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 30px;
}

.scroll-header-container .language-switcher {
    flex: 0 0 200px;
    display: flex;
    justify-content: flex-end;
}

.mobile-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.scroll-logo img {
    height: 55px;
    width: auto;
}

.scroll-nav {
    display: flex;
    align-items: flex-end;
}

.scroll-nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

/* Ensure nav items in scroll header have proper positioning for submenus */
.scroll-nav-list .nav-item {
    position: relative;
}

.scroll-nav-link {
    text-decoration: none;
    color: var(--color-primary);
    /* Deep blue text */
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-transform: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.scroll-nav-link:hover {
    color: var(--color-blue);
    /* Lighter blue/brand color */
}

@media (max-width: 1024px) {
    .scroll-nav-list {
        list-style: none;
        display: flex;
        gap: 25px;
        margin: 0;
        padding: 0;
    }

    /* Ensure hover works on tablets for scroll header */
    .scroll-nav-list .nav-item.has-dropdown:hover .submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .scroll-nav-list .submenu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 10000;
    }
}

@media (max-width: 992px) {
    .scroll-nav-list {
        list-style: none;
        display: flex;
        gap: 20px;
        margin: 0;
        padding: 0;
    }

    .scroll-logo img {
        height: 48px;
        width: auto;
    }

    .scroll-header-container {
        padding: 0 10px;
    }

    /* Ensure hover works on tablets for scroll header */
    .scroll-nav-list .nav-item.has-dropdown:hover .submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .scroll-nav-list .submenu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 10000;
    }

    /* Adjust submenu width for smaller tablets */
    .scroll-nav-list .submenu {
        min-width: 220px;
    }

    .scroll-nav-list .submenu.mega-submenu {
        min-width: 500px;
    }
}

@media (max-width: 768px) {
    .desktop-scroll-header {
        display: none !important;
    }
}

/* Dial rotation handled by JS */

/* About Section Styles */
.about-section {
    background: var(--color-blue);
    padding: 0;
    display: flex;
    align-items: stretch;
    min-height: 400px;
    overflow: hidden;
    position: relative;
}

.about-container {
    display: flex;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
    padding: 80px 5% 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 300px;
}

.section-label {
    color: var(--color-green);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background-color: var(--color-green);
    margin-right: 15px;
}

.about-text {
    color: #ffffff;
    font-size: 28px;
    line-height: 1.5;
    font-weight: 300;
    max-width: 600px;
}

.about-text strong {
    font-weight: 700;
    color: #ffffff;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    min-height: 400px;
    border-top-left-radius: 60px;
    overflow: hidden;
    background: #000;
    /* Fallback/Blend */
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Services Section */
.services-section {
    background: linear-gradient(180deg, #ffffff 0%, #b3ffcc 100%);
    padding: 80px 5% 100px;
    position: relative;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-intro {
    max-width: 800px;
    margin-bottom: 80px;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: #333;
}

.services-intro strong {
    font-weight: 700;
    color: #000;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    row-gap: 80px;
}

.service-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.service-icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-icon {
    font-size: 32px;
    color: var(--color-blue);
}

/* Specific icon adjustments to match screenshot */
.icon-network {
    color: var(--color-blue);
}

.service-content {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    font-weight: 300;
}

.service-content strong {
    font-weight: 700;
    color: #000;
}

.service-headline {
    font-size: 24px;
    line-height: 1.3;
    color: #000;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: var(--font-heading);
}

.service-headline strong {
    font-weight: 700;
}

.services-divider {
    grid-column: 1 / -1;
    height: 1px;
    background-color: #fff;
    margin: 20px 0;
    position: relative;
}

.services-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.service-highlight-text {
    font-family: var(--font-body);
    /* Fallback */
    font-style: italic;
    font-size: 24px;
    color: var(--color-blue);
    /* Blue color from screenshot */
    margin-top: 30px;
    font-weight: 400;
}

/* Services Grid Section */
.service-cards-section {
    background-image: url('images/services-bg.jpg');
    background-size: contain;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 80px 5%;
}

.service-cards-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-label-blue {
    color: var(--color-blue);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.section-label-blue::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background-color: var(--color-blue);
    margin-right: 15px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    position: relative;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-default {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.card:hover .card-default {
    opacity: 0;
    /* Hide default state on hover */
    pointer-events: none;
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 126, 195, 0.3) 0%, rgba(0, 126, 195, 0.9) 100%);
}

.card-title {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 80px;
    color: #fff;
    font-size: 20px;
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
    z-index: 2;
}

.card-arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: var(--color-green);
    font-size: 24px;
    z-index: 2;
    transition: transform 0.3s ease;
}

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

/* Hover State */
.card-hover {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #ffffff;
    padding: 40px 30px;
    opacity: 0;
    /* Hidden by default */
    transition: opacity 0.3s ease;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.card:hover .card-hover {
    opacity: 1;
    /* Show on hover */
}

.hover-title {
    color: var(--color-blue);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.4;
    flex-shrink: 0;
}

.hover-text {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 300;
    overflow-y: auto;
    /* scrollable text */
    flex-grow: 1;
    padding-right: 10px;
    /* space for scrollbar */
}

/* Custom Scrollbar for Hover Text */
.hover-text::-webkit-scrollbar {
    width: 4px;
}

.hover-text::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.hover-text::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}

.hover-text::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Office Slider Section */
.office-slider-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.office-slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: grab;
}

.office-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.office-slide.active {
    opacity: 1;
}

/* Top Left Tab */
.slider-tab-top-left {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.1));
}

.tab-content {
    background-color: #fff;
    padding: 30px 60px 40px 80px;
    border-bottom-right-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.location-text {
    font-size: 12px;
    font-weight: 400;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.green-underline {
    width: 60px;
    height: 2px;
    background-color: #90ee90;
    /* Light green */
    position: relative;
}

.green-underline::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 0;
    width: 20px;
    height: 100%;
    background-color: #90ee90;
    margin-left: 5px;
    opacity: 0.5;
}


/* Bottom Right Tab */
.slider-tab-bottom-right {
    position: absolute;
    bottom: -1px;
    right: 0;
    z-index: 10;
    filter: drop-shadow(0px -5px 10px rgba(0, 0, 0, 0.05));
    background-image: url('/images/bg.png');
    background-size: contain;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 300px;
}

.tab-content-bottom {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
    padding: 30px 80px 30px 60px;
}

.slider-icon {
    font-size: 24px;
    color: var(--color-blue);
    transition: transform 0.3s ease;
}

.slider-icon:hover {
    transform: scale(1.1);
}


/* Differentials Section */
.differentials-section {
    position: relative;
    padding: 170px 5%;
    overflow: hidden;
}

/* Silky Wave Background Video */
.differentials-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.differentials-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
}

/* Updated Flat Grid Layout */
.diff-grid {
    display: grid;
    /* 4 Columns */
    grid-template-columns: 0.8fr 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    /* 2 Rows to allow stacking */
    /* Fill columns first (vertical stacking behavior) */
    grid-auto-flow: column;
    gap: 40px 60px;
    /* Row Gap 40px, Col Gap 60px */
}

.diff-col-title {
    /* Title takes the entire first column */
    grid-row: 1 / -1;
    grid-column: 1 / 2;
    padding-right: 20px;
}

/* Items placement via Auto Flow or specific if needed.
   With grid-auto-flow: column:
   Item 1 -> Col 2, Row 1
   Item 2 -> Col 2, Row 2
   Item 3 -> Col 3, Row 1
   Item 4 -> Col 3, Row 2
   Item 5 -> Col 4, Row 1
   This matches the visual layout perfectly.
*/

.diff-main-title {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 300;
    font-family: var(--font-heading);
    color: #ffff;
    margin-top: 10px;
}

.highlight-blue {
    color: var(--color-blue);
    font-weight: 700;
}

.diff-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.diff-icon {
    font-size: 36px;
    color: var(--color-blue);
    margin-bottom: 25px;
}

.diff-title {
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-heading);
    color: #333;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.4;
}



.diff-text {
    font-size: 14px;
    color: #666;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* =========================================
   Our Team / Services Section
   ========================================= */
.team-section {
    position: relative;
    padding: 170px 5%;
    overflow: hidden;
    background-image: url('images/premium_photo.avif');
    background-size: cover;
    background-position: center;
}

/* Gradient Overlay adjustments if needed for exact match */
.team-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(83, 255, 52, 0.9) 0%,
            rgba(83, 255, 52, 0.4) 20%,
            rgba(255, 255, 255, 1) 58%);
    z-index: 1;
    pointer-events: none;
    /* This creates the fade from green to white */
}

.team-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
    display: flex;
    flex-direction: column;
    /* Changed to column to stack title over content */
    gap: 40px;
}

.team-main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.team-section-title {
    color: var(--color-blue);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    margin-left: 50px;
}

.title-icon {
    display: inline-block;
    width: 15px;
    height: 30px;
    background-color: var(--color-blue);
    border-top-right-radius: 30px;
    border-radius: 0 15px 15px 0;
    margin-right: 20px;
}

/* Left Side - Circular Graphic */
.team-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.team-circle-wrapper {
    position: relative;
    width: 500px;
    height: 500px;
}

.team-circle-img {
    width: 100%;
    height: auto;
    display: block;
}

.team-circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 300;
    width: 70%;
}

.team-circle-text .bold-text {
    font-weight: 700;
    color: #000;
}

/* Right Side - Services List */
.team-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-service-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.team-service-icon {
    flex-shrink: 0;
    width: 40px;
    /* Increased to accommodate 32px img + some buffer */
    font-size: 24px;
    color: var(--color-blue);
    /* Navy Blue Icon */
    margin-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-service-icon img {
    max-width: 100%;
    height: auto;
    /* Hide alt text if image is broken to prevent overlap */
    text-indent: -9999px;
    color: transparent;
}

.team-service-content {
    display: flex;
    flex-direction: column;
}

.team-service-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-blue);
    /* Navy Blue Title */
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.team-service-desc {
    font-size: 14px;
    color: #555;
    font-weight: 300;
    line-height: 1.5;
    max-width: 500px;
}

/* News Section */
.news-section {
    padding: 170px 5%;
    background-color: #e5e5e5;
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.see-all-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.see-all-link i {
    font-size: 18px;
    color: var(--color-blue);
}

.see-all-link:hover {
    color: var(--color-blue);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.news-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

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

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image {
    transform: scale(1.1);
}

.news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(0deg, rgb(0, 126, 195) 10%, rgba(0, 0, 153, 0) 100%);
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.news-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    margin: 0;
}

.news-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--color-blue);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    align-self: flex-end;
}

.read-more i {
    color: var(--color-green);
    font-size: 16px;
    font-weight: 400;
}

/* Contact Section */
.contact-section {
    position: relative;
    background: linear-gradient(135deg, #001e8c 0%, var(--color-blue) 100%);
    /* Deep Blue Gradient */
    padding: 80px 5% 40px;
    color: #ffffff;
    overflow: hidden;
    display: none !important;
}

/* Background Effect (Dotted Map Simulation) */
.contact-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    /* Adjust for dot spacing */
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.contact-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-header {
    margin-bottom: 60px;
}

.section-label-green-contact {
    color: var(--color-green);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.green-bar-contact {
    display: inline-block;
    width: 4px;
    height: 18px;
    background-color: var(--color-green);
    margin-right: 15px;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: flex-start;
}

/* Left Column */
.logo-container-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    grid-row: 1 / 3;
    /* Make left column span 2 rows so social media can sit in col 2, row 2 */
}

.contact-logo {
    height: 60px;
    width: auto;
}

.contact-logo-text {
    font-size: 13px;
    line-height: 1.2;
    font-style: italic;
    font-weight: 300;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 15px;
}

/* Middle & Right Columns */
.location-title {
    color: var(--color-green);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.contact-info {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: #e0e0e0;
}

.contact-info .phone {
    margin-bottom: 15px;
}

.contact-info .address {
    margin-bottom: 20px;
}

.email-link {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: var(--color-green);
    border-color: var(--color-green);
}

/* Social Media */
.social-media-container {
    text-align: left;
    /* margin-top: 10px; */
    padding-top: 0;
    border-top: none;
    width: 100%;
    position: relative;
    /* grid-column: 2 / 3;
    grid-row: 2; */
}



.contact-content-grid {
    position: relative;
    padding-bottom: 60px;
}

/* Curved line attempt */
/* .contact-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 120%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.5;
    z-index: 0;
    transform: translateY(-20%);
} */


.social-label {
    color: var(--color-green);
    /* font-size: 12px; */
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

.social-icon {
    width: auto;
    height: auto;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    border: none;
}

.social-icon:hover {
    background: transparent;
    color: var(--color-green);
    transform: translateY(-3px);
}

/* Footer */
.main-footer {
    background-color: #000c40;
    /* Very Dark Blue matching bottom of gradient */
    padding: 30px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-mid a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.footer-mid a:hover {
    color: var(--color-green);
}

.footer-right i {
    font-size: 16px;
}


/* === ABOUT STYLES === */

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

/* 1ï¸âƒ£ Our Story & Mission Section */
.story-mission-section {
    background: linear-gradient(135deg, rgba(0, 126, 195, 0.95) 0%, rgba(0, 0, 153, 0.9) 100%);
    padding: 170px 5% 100px;
    position: relative;
    overflow: hidden;
}

.story-mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 1;
}

.story-mission-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Timeline-inspired vertical flow */
.story-timeline {
    flex: 1.2;
    position: relative;
    padding-left: 40px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-green) 0%, rgba(83, 255, 52, 0.2) 100%);
    border-radius: 2px;
}

.timeline-marker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--color-green);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(83, 255, 52, 0.6);
}

.story-block {
    margin-bottom: 60px;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.story-block::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 10px;
    width: 8px;
    height: 8px;
    background: rgba(83, 255, 52, 0.5);
    border-radius: 50%;
}

.story-heading {
    font-size: 48px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 30px;
    margin-top: 20px;
}

.highlight-text {
    font-weight: 700;
    color: var(--color-green);
}

.story-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.story-text strong {
    font-weight: 600;
    color: #ffffff;
}

.mission-label,
.vision-label {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-green);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.mission-label i,
.vision-label i {
    font-size: 24px;
}

.mission-text,
.vision-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-weight: 300;
}

.mission-text strong,
.vision-text strong {
    font-weight: 600;
    color: #ffffff;
}

/* Story Image Container */
.story-image-container {
    flex: 1;
    position: relative;
}

.story-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    height: 600px;
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 126, 195, 0.95) 0%, rgba(0, 126, 195, 0) 100%);
    padding: 40px 30px;
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

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

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

/* 2ï¸âƒ£ Leadership & Governance Section */
.leadership-governance-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
    padding: 170px 5%;
}

.leadership-container {
    max-width: 1400px;
    margin: 0 auto;
}

.leadership-header {
    margin-bottom: 80px;
    max-width: 900px;
}

.leadership-title {
    font-size: 42px;
    font-weight: 300;
    color: #333;
    margin-bottom: 30px;
    margin-top: 20px;
}

.leadership-intro {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    font-weight: 300;
}

/* Leadership Grid - Structured Layout */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.governance-column {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.governance-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.governance-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-blue);
}

.governance-header i {
    font-size: 32px;
    color: var(--color-blue);
}

.governance-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.governance-description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 300;
}

.governance-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.governance-list li {
    background: #f8fbff;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid var(--color-green);
    transition: all 0.3s ease;
    position: relative;
    font-weight: 300;
}

.governance-list li:hover {
    transform: translateX(5px);
    background: #f0f7ff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.governance-list li strong {
    display: block;
    font-weight: 600;
    color: var(--color-blue);
    font-size: 15px;
    margin-bottom: 5px;
}

.governance-list li span {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Governance Principles */
.governance-principles {
    background: linear-gradient(135deg, rgba(0, 126, 195, 0.05) 0%, rgba(83, 255, 52, 0.05) 100%);
    border-radius: 20px;
    padding: 50px 40px;
}

.principles-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.principles-header i {
    font-size: 36px;
    color: var(--color-blue);
}

.principles-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-blue);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.principle-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.principle-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.principle-icon i {
    font-size: 22px;
    color: var(--color-blue);
}

.principle-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.principle-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
}

/* 3ï¸âƒ£ Why The Bahamas Section */
.bahamas-section {
    background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
    padding: 170px 5%;
}

.bahamas-container {
    max-width: 1400px;
    margin: 0 auto;
}

.bahamas-header {
    margin-bottom: 80px;
    max-width: 900px;
}

.bahamas-title {
    font-size: 42px;
    font-weight: 300;
    color: #333;
    margin-bottom: 30px;
    margin-top: 20px;
}

.bahamas-intro {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    font-weight: 300;
}

/* Advantages Grid */
.bahamas-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.advantage-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--color-green);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(83, 255, 52, 0.1) 0%, rgba(83, 255, 52, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.advantage-icon i {
    font-size: 32px;
    color: var(--color-green);
}

.advantage-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-blue);
    margin-bottom: 15px;
}

.advantage-description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    font-weight: 300;
}

/* Strategic Partner Statement */
.bahamas-partner-statement {
    background: linear-gradient(135deg, rgba(0, 126, 195, 0.05) 0%, rgba(83, 255, 52, 0.05) 100%);
    border-radius: 20px;
    padding: 50px 60px;
    display: flex;
    gap: 40px;
    align-items: center;
    border-left: 5px solid var(--color-green);
}

.partner-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-green) 0%, #40cc28 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(83, 255, 52, 0.3);
}

.partner-icon i {
    font-size: 40px;
    color: #ffffff;
}

.partner-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-blue);
    margin-bottom: 20px;
}

.partner-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 300;
}

.partner-tagline {
    margin-top: 20px;
}

.partner-tagline strong {
    color: var(--color-blue);
    font-size: 16px;
}

/* 4ï¸âƒ£ Risk, Compliance & Security Section */
.risk-compliance-section {
    background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
    padding: 170px 5%;
    position: relative;
}

.risk-compliance-container {
    max-width: 1400px;
    margin: 0 auto;
}

.risk-header-block {
    margin-bottom: 80px;
    text-align: left;
}

.risk-title {
    font-size: 42px;
    font-weight: 300;
    color: #333;
    margin-top: 20px;
}

.highlight-green {
    font-weight: 700;
    color: var(--color-green);
    text-shadow: 0 0 20px rgba(83, 255, 52, 0.3);
}

/* Layered Sections with Staggered Blocks */
.risk-layers {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.risk-layer {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 50px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    position: relative;
}

.layer-left {
    margin-right: 80px;
}

.layer-right {
    margin-left: 80px;
}

.layer-icon-wrapper {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-blue) 0%, #0099e6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 126, 195, 0.3);
}

.layer-icon-wrapper i {
    font-size: 48px;
    color: #ffffff;
}

.layer-content {
    flex: 1;
}

.layer-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-blue);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.layer-description {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
}

.layer-description strong {
    font-weight: 600;
    color: #333;
}

/* Compliance Badges */
.compliance-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(83, 255, 52, 0.1) 0%, rgba(83, 255, 52, 0.05) 100%);
    border-radius: 10px;
    border-left: 3px solid var(--color-green);
}

.badge-item i {
    font-size: 20px;
    color: var(--color-green);
}

.badge-item span {
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

/* Risk Framework Steps */
.risk-framework {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.framework-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 126, 195, 0.05) 0%, rgba(0, 126, 195, 0.02) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--color-blue);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--color-blue);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.step-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-blue);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
}

/* Security Features */
.security-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.security-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(0, 126, 195, 0.1);
}

.security-feature i {
    font-size: 28px;
    color: var(--color-blue);
    flex-shrink: 0;
    margin-top: 5px;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.feature-text strong {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.feature-text span {
    font-size: 13px;
    color: #666;
    font-weight: 300;
}

/* Audit Process */
.audit-process {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.audit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.audit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-green) 0%, #40cc28 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(83, 255, 52, 0.3);
}

.audit-icon i {
    font-size: 28px;
    color: #ffffff;
}

.audit-text strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.audit-text p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
}

/* 4ï¸âƒ£ Community Involvement Section */
.community-section {
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
    padding: 170px 5%;
}

.community-container {
    max-width: 1400px;
    margin: 0 auto;
}

.community-header {
    margin-bottom: 80px;
    max-width: 900px;
}

.community-title {
    font-size: 42px;
    font-weight: 300;
    color: #333;
    margin-bottom: 30px;
    margin-top: 20px;
}

.community-intro {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    font-weight: 300;
}

/* Community Initiatives - Warmer, Human-Centered Layout */
.community-initiatives {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.initiative-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.initiative-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.initiative-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.initiative-card:hover .initiative-image {
    transform: scale(1.1);
}

.initiative-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 126, 195, 0.7) 0%, rgba(83, 255, 52, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.initiative-overlay i {
    font-size: 64px;
    color: #ffffff;
}

.initiative-content {
    padding: 35px 30px;
}

.initiative-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-blue);
    margin-bottom: 15px;
}

.initiative-description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 300;
}

.initiative-impact {
    display: flex;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 126, 195, 0.1);
}

.impact-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.impact-stat strong {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-green);
}

.impact-stat span {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Community Commitment Statement */
.community-commitment {
    background: linear-gradient(135deg, var(--color-blue) 0%, #0099e6 100%);
    border-radius: 20px;
    padding: 50px 60px;
    display: flex;
    gap: 40px;
    align-items: center;
    box-shadow: 0 15px 50px rgba(0, 126, 195, 0.3);
}

.commitment-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.commitment-icon i {
    font-size: 48px;
    color: var(--color-green);
}

.commitment-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.commitment-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .story-mission-container {
        gap: 60px;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .layer-left,
    .layer-right {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 992px) {
    .story-mission-container {
        flex-direction: column;
        gap: 50px;
    }

    .story-timeline {
        padding-left: 30px;
    }

    .story-heading {
        font-size: 36px;
    }

    .leadership-title,
    .risk-title,
    .community-title {
        font-size: 32px;
    }

    .risk-layer {
        flex-direction: column;
        padding: 40px 30px;
    }

    /* Ensure icon appears before text on mobile for all layers */
    .risk-layer.layer-right {
        flex-direction: column-reverse;
    }

    .layer-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .layer-icon-wrapper i {
        font-size: 36px;
    }

    .community-initiatives {
        grid-template-columns: 1fr;
    }

    .community-commitment {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {

    .story-mission-section,
    .leadership-governance-section,
    .risk-compliance-section,
    .community-section {
        padding: 80px 5%;
    }

    .story-heading {
        font-size: 28px;
    }

    .leadership-title,
    .risk-title,
    .community-title {
        font-size: 26px;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .compliance-badges {
        grid-template-columns: 1fr;
    }

    .initiative-image-wrapper {
        height: 200px;
    }

    .story-image-overlay {
        flex-direction: column;
        gap: 15px;
        padding: 25px 20px;
    }

    .stat-number {
        font-size: 28px;
    }
}

/* === BAHAMAS STYLES - PREMIUM REDESIGN === */

/* =========================================
   Hero Section
   ========================================= */
.bahamas-hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding-top: 100px;
    padding-bottom: 80px;
}

.bahamas-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.bahamas-intro-text {
    padding-right: 20px;
}

.bahamas-label {
    color: var(--color-green);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
}

.bahamas-title {
    font-size: 52px;
    color: var(--color-primary);
    font-weight: 300;
    font-family: var(--font-heading);
    line-height: 1.15;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.bahamas-title strong {
    font-weight: 700;
    color: var(--color-blue);
}

.bahamas-lead {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    font-weight: 300;
    max-width: 500px;
}

.bahamas-feature-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.18);
}

/* =========================================
   Legislation Section
   ========================================= */
.legislation-section {
    padding: 120px 5%;
    background-color: #fff;
    position: relative;
}

.legislation-container {
    max-width: 1400px;
    margin: 0 auto;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 80px;
    align-items: start;
}

.legislation-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.legislation-block {
    border-left: 4px solid var(--color-green);
    padding-left: 32px;
    transition: transform 0.3s ease;
}

.legislation-block:hover {
    transform: translateX(8px);
}

.editorial-heading {
    font-size: 30px;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 500;
    font-family: var(--font-heading);
}

.editorial-text {
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    font-weight: 300;
}

.legislation-visual {
    background: linear-gradient(135deg, rgba(3, 9, 52, 0.03) 0%, rgba(0, 96, 222, 0.06) 100%);
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    min-height: 400px;
}

.quote-box {
    font-size: 26px;
    font-style: italic;
    color: var(--color-primary);
    line-height: 1.6;
    font-weight: 300;
    font-family: var(--font-heading);
    text-align: center;
    position: relative;
    padding: 20px;
}

.quote-box::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: -15px;
    font-size: 100px;
    color: var(--color-green);
    opacity: 0.2;
    font-family: var(--font-heading);
    line-height: 1;
}

/* =========================================
   Planning Section
   ========================================= */
.planning-section {
    background: linear-gradient(180deg, var(--color-primary) 0%, #0a1445 100%);
    color: #fff;
    padding: 140px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.planning-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 96, 222, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.planning-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.planning-title {
    font-size: 40px;
    margin-bottom: 70px;
    font-weight: 300;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.planning-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
}

.planning-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 48px 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.planning-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(83, 255, 51, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.planning-icon {
    width: 64px;
    height: 64px;
    background: rgba(83, 255, 51, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--color-green);
    margin-bottom: 28px;
}

.planning-heading {
    font-size: 24px;
    margin-bottom: 16px;
    color: #fff;
    font-weight: 500;
    font-family: var(--font-heading);
}

.planning-desc {
    font-size: 17px;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
}

/* =========================================
   Stability Section
   ========================================= */
.stability-section {
    padding: 120px 5%;
    background-color: #fff;
}

.stability-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.stability-text-col {
    flex: 1;
    padding-right: 40px;
}

.stability-image-col {
    flex: 1;
}

.stability-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.15);
}

/* =========================================
   Reputation Section
   ========================================= */
.reputation-section {
    padding: 120px 5%;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

.reputation-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.reputation-text {
    font-size: 20px;
    line-height: 1.9;
    color: #444;
    font-weight: 300;
    margin-bottom: 32px;
}

.reputation-brand {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 48px;
    display: inline-block;
    background: var(--color-blue);
    padding: 16px 32px;
    border-radius: 8px;
    border-bottom: none;
    box-shadow: 0 8px 24px rgba(0, 96, 222, 0.25);
    transition: all 0.3s ease;
}

.reputation-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 96, 222, 0.35);
}

/* =========================================
   Bahamas Responsive
   ========================================= */
@media (max-width: 992px) {

    .bahamas-hero-container,
    .editorial-grid,
    .planning-grid,
    .stability-container {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 50px;
    }

    .bahamas-title {
        font-size: 38px;
    }

    .planning-title {
        font-size: 32px;
    }

    .stability-text-col {
        padding-right: 0;
    }

    .reputation-section {
        text-align: center;
    }
}

/* === INSIGHTS STYLES === */

/* Insights Page - Editorial & Knowledge Hub */

/* =========================================
   Intro / Editorial Header
   ========================================= */
.insights-intro {
    padding: 120px 5% 60px;
    background-color: #f9f9f9;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.insights-header-container {
    max-width: 1400px;
    margin: 0 auto;
}

.insights-label {
    color: var(--color-green);
    /* Brand Green */
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.insights-title {
    font-size: 56px;
    font-weight: 300;
    color: var(--color-primary);
    /* Deep Blue */
    margin: 0;
}

/* =========================================
   Section 2: Articles (Editorial Grid)
   ========================================= */
.articles-section {
    padding: 80px 5%;
    background-color: #fff;
}

.articles-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-headline {
    font-size: 32px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 50px;
    border-left: 4px solid var(--color-blue);
    /* Brand Blue */
    padding-left: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.editorial-article-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.featured-article {
    background-color: #fff;
}

.article-category {
    font-size: 12px;
    color: var(--color-blue);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
}

.article-title {
    font-size: 36px;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
    transition: color 0.3s ease;
    cursor: pointer;
}

.article-title:hover {
    color: var(--color-blue);
}

.article-excerpt {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    font-weight: 300;
}

.sidebar-articles {
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-left: 1px solid #eee;
    padding-left: 40px;
}

.sidebar-item {
    padding-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
    cursor: pointer;
}

.sidebar-title:hover {
    color: var(--color-blue);
}

.sidebar-date {
    font-size: 12px;
    color: #999;
}

/* =========================================
   Section 3: Booklets (Resources Style)
   ========================================= */
.booklets-section {
    background-color: #f4f6f8;
    /* Light grey/blue tint */
    padding: 80px 5%;
}

.booklets-container {
    max-width: 1400px;
    margin: 0 auto;
}

.booklets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.booklet-card {
    background: #fff;
    padding: 40px 30px;
    border-top: 4px solid var(--color-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.booklet-card:hover {
    transform: translateY(-5px);
}

.booklet-icon {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.booklet-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.booklet-list {
    list-style: none;
    margin-bottom: 20px;
}

.booklet-list li {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
    line-height: 1.5;
}

.booklet-list li::before {
    content: '\2022';
    color: var(--color-green);
    position: absolute;
    left: 0;
}

.download-link {
    font-size: 14px;
    color: var(--color-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.download-link:hover {
    text-decoration: underline;
}

/* =========================================
   Section 4: Events & Newsletters (Split)
   ========================================= */
.events-newsletters-section {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.events-col,
.newsletters-col {
    flex: 1;
    padding: 120px 5%;
    min-width: 300px;
}

.events-col {
    background-color: var(--color-primary);
    /* Dark for events */
    color: #fff;
}

.newsletters-col {
    background-color: var(--color-blue);
    /* Lighter blue for newsletters */
    color: #fff;
}

.split-headline {
    font-size: 28px;
    font-weight: 400;
    font-family: var(--font-heading);
    margin-bottom: 40px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
}

.event-timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.event-date {
    font-weight: 700;
    color: var(--color-green);
    font-size: 14px;
    min-width: 100px;
}

.event-details {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 20px;
}

.event-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.newsletter-archive-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    font-weight: 300;
    display: flex;
    justify-content: space-between;
    opacity: 0.9;
}

.newsletter-archive-item:hover {
    padding-left: 10px;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
}

/* =========================================
   Section 5: Wealth Wise (FAQs/Advice)
   ========================================= */
.wealth-wise-section {
    padding: 170px 5%;
    background-color: #fff;
}

.wealth-wise-container {
    max-width: 1000px;
    margin: 0 auto;
}

.wealth-wise-grid {
    display: grid;
    gap: 20px;
}

.wealth-card {
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.wealth-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.wealth-question {
    background: #f9f9f9;
    padding: 20px 30px;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-heading);
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wealth-question i {
    color: var(--color-blue);
    font-size: 14px;
}

.wealth-answer {
    padding: 30px;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    background: #fff;
    border-top: 1px solid #eee;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 992px) {
    .editorial-article-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-articles {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #eee;
        padding-top: 40px;
    }

    .booklets-grid {
        grid-template-columns: 1fr;
    }
}

/* === RESOURCES STYLES === */

/* Resources Page Specific Styles */

/* --- Hero Section --- */
.resources-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    background-image: url('../images/services-bg.jpg');
    /* Reusing existing asset or fallback */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 90px;
    /* Offset for fixed header */
}

/* Fallback if image missing or for overlay effect */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 20, 80, 0.9) 0%, rgba(0, 126, 195, 0.8) 100%);
    z-index: 1;
}

.resources-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.resources-hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.resources-hero-content p {
    font-size: 20px;
    color: #f0f0f0;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.highlight-green {
    color: var(--color-green);
}

.highlight-blue {
    color: var(--color-blue);
}

/* --- Common Container --- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

.section-title {
    font-size: 36px;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 600;
    font-family: var(--font-heading);
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 300;
    margin-bottom: 40px;
}

.center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Overview Section --- */
.resources-overview {
    padding: 100px 0;
    background-color: #ffffff;
}

.overview-content {
    max-width: 800px;
    margin: 0 auto;
}

.overview-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-top: 30px;
}

.overview-text p {
    margin-bottom: 20px;
}

/* --- Onboarding Section (Timeline) --- */
.onboarding-section {
    padding: 100px 0;
    background-color: #f9fbfd;
    /* Very light blue/grey */
}

.client-journey-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.journey-step {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
}

.journey-step:hover {
    transform: translateY(-5px);
    border-top-color: var(--color-green);
}

.step-marker {
    font-size: 48px;
    font-weight: 700;
    color: rgba(0, 126, 195, 0.1);
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
}

.step-content h3 {
    font-size: 20px;
    color: var(--color-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.onboarding-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.meta-box {
    background: var(--color-primary);
    color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.meta-box i {
    font-size: 32px;
    color: var(--color-green);
}

.meta-box h4 {
    font-size: 20px;
    font-weight: 600;
}

.meta-box p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* --- Forms & Enquiries Section --- */
.forms-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.forms-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.forms-subtitle-block {
    margin-bottom: 30px;
}

.forms-subtitle-block h3 {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.forms-subtitle-block p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Checklist Column */
.checklist-container {
    background: #f0f8ff;
    /* Light alice blue */
    padding: 40px;
    border-radius: 12px;
    border-left: 6px solid var(--color-blue);
    height: 100%;
}

.checklist-items {
    list-style: none;
    padding: 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.checklist-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.checklist-item i {
    color: var(--color-green);
    /* Green checks */
    background: var(--color-primary);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist-item span {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
}

/* Enquiry Form Column */
.enquiry-card-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    background: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 126, 195, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    text-transform: none;
    font-size: 13px;
    color: #666;
    font-weight: 400;
    cursor: pointer;
}

.submit-btn-small {
    background: var(--color-blue);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    width: 100%;
}

.submit-btn-small:hover {
    background: #005a8c;
    transform: translateY(-2px);
}

/* Responsive Grid */
@media (max-width: 900px) {
    .forms-grid-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .form-row-split {
        grid-template-columns: 1fr;
        /* Stack phone/topic on mobile */
    }
}

/* --- FAQs Section --- */
.faqs-section {
    padding: 100px 0;
    background-color: #ffffff;
    margin-bottom: 50px;
}

.accordion-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.accordion-header {
    width: 100%;
    padding: 25px 0;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-heading);
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: var(--color-blue);
}

.accordion-header i {
    font-size: 14px;
    color: var(--color-blue);
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding-bottom: 25px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
    .forms-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .checklist-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .resources-hero-content h1 {
        font-size: 40px;
    }

    .onboarding-meta {
        grid-template-columns: 1fr;
    }

    .overview-content,
    .accordion-container {
        padding: 0 10px;
        /* Extra padding on small screens */
    }

    .resources-hero {
        margin-top: 0;
        /* Sticky header logic might vary, but safe reset */
        height: 50vh;
    }
}

/* === TRUST STYLES === */

/* ==========================================
   TRUST & FIDUCIARY SERVICES PAGE STYLES
   ========================================== */

/* Editorial Hero Section */
.trust-hero {
    background: linear-gradient(135deg, #ffffff 0%, #e6f7ff 100%);
    padding: 170px 5% 80px;
    position: relative;
}

.trust-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.trust-hero-content {
    padding-right: 40px;
}

.section-label-green {
    color: var(--color-green);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.section-label-green::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background-color: var(--color-green);
    margin-right: 15px;
}

.trust-hero-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--color-primary);
    line-height: 1.3;
    margin-bottom: 40px;
}

.highlight-text {
    font-weight: 700;
    color: var(--color-blue);
}

.trust-hero-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    font-weight: 300;
}

.trust-hero-emphasis {
    font-size: 22px !important;
    font-weight: 500 !important;
    color: var(--color-blue) !important;
    font-style: italic;
    margin-top: 35px !important;
}

.trust-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.trust-hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Personal Trusts Section */
.trust-personal {
    background: var(--color-blue);
    padding: 0;
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.trust-personal-container {
    display: flex;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.trust-personal-image {
    position: relative;
    overflow: hidden;
}

.trust-personal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 126, 195, 0.3) 0%, rgba(0, 126, 195, 0.7) 100%);
}

.trust-personal-content {
    flex: 1.1;
    padding: 80px 8% 80px 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-personal-con.tent {
    margin-block: auto;
    padding-left: 40px;
}

.section-title {
    font-size: 42px;
    font-weight: 300;
    font-family: var(--font-heading);
    color: #ffffff;
    margin-bottom: 50px;
    line-height: 1.3;
}

.title-accent {
    font-weight: 700;
}

.content-block {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.icon-wrapper i {
    font-size: 26px;
    color: var(--color-green);
}

.text-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.text-content p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* Charitable Trusts Section */
.trust-charitable {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 170px 5%;
}

.trust-charitable-container {
    max-width: 1400px;
    margin: 0 auto;
}

.charitable-header {
    margin-bottom: 60px;
}

.charitable-header h2 {
    font-size: 44px;
    font-weight: 300;
    color: var(--color-primary);
    line-height: 1.3;
    margin-top: 20px;
}

.highlight-blue {
    font-weight: 700;
    color: var(--color-blue);
}

.charitable-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 30px;
}

.charitable-item {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.charitable-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.charitable-large {
    grid-row: span 2;
    background: linear-gradient(135deg, var(--color-blue) 0%, #0096e0 100%);
    color: #ffffff;
}

.charitable-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* .charitable-large .charitable-number {
    color: rgba(255, 255, 255, 0.2);
} */

.charitable-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.charitable-large h3 {
    color: #ffffff;
    font-size: 26px;
}

.charitable-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    font-weight: 300;
}

.charitable-large p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
}

.charitable-highlight {
    background: var(--color-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.charitable-highlight i {
    font-size: 48px;
    color: var(--color-blue);
    margin-bottom: 20px;
}

.charitable-highlight p {
    color: var(--color-primary);
    font-weight: 500;
    font-size: 16px;
}

/* Private Trust Companies Section */
.trust-ptc {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-blue) 100%);
    padding: 170px 5%;
    position: relative;
    overflow: hidden;
}

.trust-ptc::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(83, 255, 52, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.trust-ptc-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.section-title-white {
    font-size: 44px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.3;
}

.title-accent-green {
    font-weight: 700;
    color: var(--color-green);
}

.ptc-intro {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    font-weight: 300;
}

.ptc-features {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.ptc-feature {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: rgba(83, 255, 52, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 32px;
    color: var(--color-green);
}

.feature-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.ptc-visual {
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
}

.ptc-stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.ptc-stat-box:hover {
    transform: translateX(10px);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Corporate Trust Section */
.trust-corporate {
    background: #ffffff;
    padding: 170px 5%;
}

.trust-corporate-container {
    max-width: 1400px;
    margin: 0 auto;
}

.corporate-intro {
    margin-bottom: 60px;
    max-width: 800px;
}

.corporate-intro h2 {
    font-size: 44px;
    font-weight: 300;
    color: var(--color-primary);
    margin-top: 20px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.corporate-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
}

.corporate-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.corporate-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 35px;
    border-radius: 15px;
    border-left: 4px solid var(--color-blue);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left-color: var(--color-green);
}

.service-card i {
    font-size: 36px;
    color: var(--color-blue);
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    font-weight: 300;
}

/* Estate Planning Section */
.trust-estate {
    background: linear-gradient(180deg, #e6f7ff 0%, #ffffff 100%);
    padding: 170px 5%;
}

.trust-estate-container {
    max-width: 1200px;
    margin: 0 auto;
}

.estate-header {
    text-align: center;
    margin-bottom: 80px;
}

.estate-header h2 {
    font-size: 44px;
    font-weight: 300;
    color: var(--color-primary);
    margin-bottom: 25px;
    line-height: 1.3;
}

.highlight-green {
    font-weight: 700;
    color: var(--color-blue);
}

.estate-header p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

.estate-timeline {
    position: relative;
    padding-left: 80px;
}

.estate-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-blue) 0%, var(--color-green) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -80px;
    width: 60px;
    height: 60px;
    background: #ffffff;
    border: 4px solid var(--color-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-marker i {
    font-size: 24px;
    color: var(--color-blue);
}

.timeline-item:nth-child(2) .timeline-marker {
    border-color: #0096e0;
}

.timeline-item:nth-child(3) .timeline-marker {
    border-color: #00b4d8;
}

.timeline-item:nth-child(4) .timeline-marker {
    border-color: var(--color-green);
}

.timeline-item:nth-child(2) .timeline-marker i,
.timeline-item:nth-child(3) .timeline-marker i,
.timeline-item:nth-child(4) .timeline-marker i {
    color: inherit;
}

.timeline-content {
    background: #ffffff;
    padding: 30px 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    flex: 1;
}

.timeline-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    font-weight: 300;
}

/* Investment Fiduciary Section */
.trust-investment {
    background: #ffffff;
    padding: 170px 5%;
}

.trust-investment-container {
    max-width: 1400px;
    margin: 0 auto;
}

.investment-main {
    margin-bottom: 60px;
}

.investment-main h2 {
    font-size: 44px;
    font-weight: 300;
    color: var(--color-primary);
    margin-top: 20px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.investment-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    font-weight: 300;
}

.investment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}

.investment-card {
    background: #f8f9fa;
    padding: 35px 40px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.investment-card h3 {
    font-size: 19px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;

}

.investment-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    font-weight: 300;
}

.investment-card.emphasis {
    background: linear-gradient(135deg, var(--color-blue) 0%, #0096e0 100%);
    position: relative;
    overflow: hidden;
}

.investment-card.emphasis h3 {
    color: #ffffff;
    font-size: 24px;
}

.investment-card.emphasis p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
}

.investment-card.emphasis-alt {
    background: var(--color-green);
}

.investment-card.emphasis-alt h3 {
    color: var(--color-primary);
}

.investment-card.emphasis-alt p {
    color: var(--color-primary);
}

.card-icon {
    position: absolute;
    top: 0px;
    right: 20px;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transform: translateX(30px) scale(0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1;
}

.investment-card:hover .card-icon {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.investment-card.emphasis-alt .card-icon {
    color: rgba(26, 26, 80, 0.1);
}

/* Asset Protection Section */
.trust-protection {
    background: linear-gradient(135deg, #f8f9fa 0%, #e6f7ff 100%);
    padding: 170px 5%;
}

.trust-protection-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title-dark {
    font-size: 44px;
    font-weight: 300;
    color: var(--color-primary);
    margin-bottom: 25px;
    line-height: 1.3;
}

.title-accent-blue {
    font-weight: 700;
    color: var(--color-blue);
}

.protection-lead {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 50px;
    font-weight: 300;
}

.protection-features {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 40px;
}

.protection-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.protection-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blue-icon {
    background: rgba(0, 126, 195, 0.1);
}

.green-icon {
    background: rgba(83, 255, 52, 0.15);
}

.protection-icon i {
    font-size: 32px;
}

.blue-icon i {
    color: var(--color-blue);
}

.green-icon i {
    color: var(--color-green);
}

.protection-text h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.protection-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    font-weight: 300;
}

.protection-callout {
    background: #ffffff;
    padding: 30px 35px;
    border-radius: 15px;
    border-left: 4px solid var(--color-blue);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.protection-callout i {
    font-size: 28px;
    color: var(--color-blue);
    flex-shrink: 0;
    margin-top: 5px;
}

.protection-callout p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    font-weight: 400;
}

.protection-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.protection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Corporate Structuring Section */
.trust-structuring {
    background: #ffffff;
    padding: 170px 5%;
}

.trust-structuring-container {
    max-width: 1400px;
    margin: 0 auto;
}

.structuring-header {
    margin-bottom: 50px;
}

.structuring-header h2 {
    font-size: 44px;
    font-weight: 300;
    color: var(--color-primary);
    margin-top: 20px;
    line-height: 1.3;
}

.structuring-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.structuring-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 45px;
    font-weight: 300;
}

.structuring-services {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.structuring-service {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.structuring-service:hover {
    background: #e6f7ff;
    transform: translateX(10px);
}

.service-number {
    font-size: 32px;
    font-weight: 700;
    /* color: rgba(0, 126, 195, 0.2); */
    flex-shrink: 0;
    line-height: 1;
}

.service-details h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.service-details p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    font-weight: 300;
}

.structuring-sidebar {
    display: flex;
    align-items: flex-start;
}

.sidebar-box {
    background: linear-gradient(135deg, var(--color-blue) 0%, #0096e0 100%);
    padding: 40px 35px;
    border-radius: 20px;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 126, 195, 0.2);
}

.sidebar-box h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
}

.sidebar-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-box li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.6;
}

.sidebar-box li:last-child {
    margin-bottom: 0;
}

.sidebar-box i {
    color: var(--color-green);
    font-size: 18px;
    flex-shrink: 0;
}

/* Foundation & PTC Services Section */
.trust-foundation {
    background: linear-gradient(180deg, #e6f7ff 0%, #f8f9fa 100%);
    padding: 170px 5%;
}

.trust-foundation-container {
    max-width: 1400px;
    margin: 0 auto;
}

.foundation-intro {
    text-align: center;
    margin-bottom: 70px;
}

.foundation-intro h2 {
    font-size: 44px;
    font-weight: 300;
    color: var(--color-primary);
    margin-bottom: 25px;
    line-height: 1.3;
}

.foundation-lead {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 300;
}

.foundation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.foundation-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.foundation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.card-header {
    background: linear-gradient(135deg, var(--color-blue) 0%, #0096e0 100%);
    padding: 30px 35px;
    color: #ffffff;
}

.card-header i {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
}

.card-header h3 {
    font-size: 22px;
    font-weight: 600;
}

.card-body {
    padding: 35px;
}

.card-body ul {
    padding: 0;
    margin: 0;
}

.card-body li {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    position: relative;
    font-weight: 300;
}

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

.card-body li::before {
    position: absolute;
    left: 0;
    color: var(--color-blue);
    font-weight: 600;
}

.highlight-card .card-header {
    background: linear-gradient(135deg, var(--color-green) 0%, #70ff50 100%);
    color: var(--color-primary);
}

.highlight-card .card-header i {
    color: var(--color-primary);
}

.highlight-card .card-body p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-primary);
    font-weight: 400;
}

/* CTA Section */
.trust-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-blue) 100%);
    padding: 80px 5%;
    text-align: center;
}

.trust-cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.trust-cta h2 {
    font-size: 42px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.3;
}

.highlight-white {
    font-weight: 700;
    color: var(--color-green);
}

.trust-cta p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--color-green);
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(83, 255, 52, 0.3);
}

.cta-button:hover {
    background: #70ff50;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(83, 255, 52, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .trust-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .trust-hero-title {
        font-size: 38px;
    }

    .trust-personal-container {
        flex-direction: column;
    }

    .trust-personal-image {
        min-height: 400px;
    }

    .charitable-grid {
        grid-template-columns: 1fr;
    }

    .charitable-large {
        grid-row: span 1;
    }

    .trust-ptc-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .corporate-services {
        grid-template-columns: 1fr;
    }

    .investment-grid {
        grid-template-columns: 1fr 1fr;
    }

    .investment-card.emphasis {
        grid-column: span 2;
        grid-row: span 1;
    }

    .trust-protection-container {
        grid-template-columns: 1fr;
    }

    .protection-image {
        height: 400px;
    }

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

    .foundation-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .trust-hero {
        padding: 100px 5% 60px;
    }

    .trust-hero-title {
        font-size: 32px;
    }

    .trust-hero-emphasis {
        font-size: 18px !important;
    }

    .section-title,
    .section-title-white,
    .section-title-dark,
    .charitable-header h2,
    .corporate-intro h2,
    .estate-header h2,
    .investment-main h2,
    .structuring-header h2,
    .foundation-intro h2 {
        font-size: 32px;
    }

    .trust-personal-content,
    .ptc-content {
        padding: 60px 5%;
    }

    .estate-timeline {
        padding-left: 60px;
    }

    .timeline-marker {
        left: -60px;
        width: 50px;
        height: 50px;
    }

    .timeline-marker i {
        font-size: 20px;
    }

    .investment-grid {
        grid-template-columns: 1fr;
    }

    .investment-card.emphasis {
        grid-column: span 1;
    }

    .trust-cta h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .trust-hero-title {
        font-size: 28px;
    }

    .section-title,
    .section-title-white,
    .section-title-dark {
        font-size: 28px;
    }

    .content-block {
        flex-direction: column;
        gap: 15px;
    }

    .charitable-item,
    .service-card,
    .timeline-content,
    .investment-card {
        padding: 25px;
    }

    .ptc-stat-box {
        padding: 25px 20px;
    }

    .stat-number {
        font-size: 32px;
    }
}

/* === RESPONSIVE STYLES === */

/* Mobile Navigation */
@media (max-width: 768px) {

    .hero-subtext {
        color: #fff;
        text-align: center;
    }

    /* Show mobile header */
    .mobile-header,
    .mobile-nav-menu {
        display: block;
    }

    /* Hide desktop navigation elements */
    .hamburger-menu,
    .right-nav,
    .dial-container {
        display: none !important;
    }

    /* Hide desktop logo in hero section */
    .hero-section .logo-container {
        display: none;
    }

    /* Adjust hero content for mobile header */
    .hero-section {
        padding-top: 70px;
        /* Account for fixed mobile header */
    }

    .left-content {
        padding-top: 50px;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }

    .hero-heading h1 {
        font-size: 25px;
        text-align: center;
    }
}

@media (max-width: 1200px) {
    .hero-heading h1 {
        font-size: 25px;
    }

    .right-nav {
        width: 400px;
        height: 400px;
    }

    .dial-container {
        width: 700px;
    }

    .diff-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto auto auto;
        grid-auto-flow: column;
        gap: 40px 60px;
    }
}

@media (max-width: 968px) {

    .dial-container {
        width: 550px;
    }

    .logo-container {
        justify-content: center;
    }


    .tagline {
        margin-left: 0;
    }

    .right-nav {
        width: 100%;
        max-width: 400px;
    }

    .nav-menu {
        align-items: center;
    }

    .about-container {
        flex-direction: column;
    }

    .about-content {
        padding: 60px 5%;
    }

    .about-text {
        font-size: 20px;
    }

    .about-image-wrapper {
        border-top-left-radius: 0;
        min-height: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .diff-col-title {
        grid-row: 1 / 2;
        grid-column: 1 / 2;
        padding-right: 20px;
    }

    .team-section {
        background: linear-gradient(180deg, var(--color-green) 0%, #ffffff 40%);
    }

    .team-bg-gradient {
        background: linear-gradient(180deg,
                rgba(83, 255, 52, 0.9) 0%,
                rgba(255, 255, 255, 1) 100%);
    }

    .team-container {
        flex-direction: column;
        text-align: center;
    }

    .team-circle-text {
        text-align: center;
        left: 50%;
        width: 80%;
        font-size: 16px;
    }

    .team-service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team-service-desc {
        margin: 0 auto;
    }

    .team-circle-wrapper {
        width: 100%;
        max-width: 400px;
        height: auto;
    }
}

@media (max-width: 767px) {
    .team-main-content {
        flex-direction: column;
    }

    .logo-text {
        font-size: 36px;
    }

    .nav-item {
        font-size: 16px;
    }

    .dial-container {
        width: 280px;
        height: 280px;
    }

    /* .cards-grid {
        grid-template-columns: 1fr;
    } */

    .diff-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        grid-auto-flow: row;
    }

    .diff-col-title {
        text-align: center;
        padding-right: 0;
        margin-bottom: 20px;
    }
}




@media (max-width: 576px) {
    .cards-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}

/* News Section Responsive */
@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .news-section {
        padding: 60px 5%;
    }
}

/* Contact Section Responsive */
@media (max-width: 992px) {
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-col-left,
    .contact-col-mid,
    .contact-col-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo-container-contact {
        flex-direction: row;
        text-align: left;
    }

    .contact-logo-text {
        text-align: left;
    }

    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-mid {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-mid a {
        display: block;
    }

    /* Center social media on mobile */
    .social-media-container {
        grid-column: auto;
        grid-row: auto;
        text-align: center;
        margin-top: 30px;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .logo-container-contact {
        flex-direction: column;
        text-align: center;
    }

    .contact-logo-text {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        padding-top: 15px;
        text-align: center;
    }

    .contact-header {
        display: flex;
        justify-content: center;
    }

    .section-label-green-contact {
        justify-content: center;
    }

    .main-footer {
        padding-bottom: 80px;
        /* Space for mobile nav potentially */
    }
}

/* =========================================
   ABOUT PAGE RESPONSIVE STYLES
   ========================================= */

/* Tablet and below */
@media (max-width: 968px) {

    /* Leadership Grid */
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trust-team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Compliance Grid */
    .compliance-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Community Grid */
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .story-heading {
        font-size: 28px;
    }

    .story-subheading {
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    /* About Story Section */
    .about-section {
        padding-top: 70px;
    }

    .story-heading {
        font-size: 24px;
    }

    .story-subheading {
        font-size: 18px;
    }

    .about-text {
        font-size: 15px;
    }

    /* Leadership Section */
    .leadership-section {
        padding: 60px 5%;
    }

    .leadership-intro {
        font-size: 15px;
    }

    .subsection-title {
        font-size: 20px;
        margin-top: 40px;
    }

    .member-card {
        padding: 25px;
    }

    .member-name {
        font-size: 16px;
    }

    .member-title {
        font-size: 13px;
    }

    .member-bio {
        font-size: 13px;
    }

    /* Risk & Compliance Section */
    .risk-compliance-section {
        padding: 60px 5%;
    }

    .compliance-intro {
        font-size: 15px;
    }

    .compliance-item {
        padding: 25px;
    }

    .compliance-icon {
        font-size: 32px;
    }

    .compliance-title {
        font-size: 15px;
    }

    /* Community Section */
    .community-section {
        padding: 60px 5%;
    }

    .community-heading {
        font-size: 28px;
    }

    .community-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .community-card {
        padding: 25px;
    }

    .foundation-highlight {
        padding: 30px;
    }

    .foundation-title {
        font-size: 20px;
    }

    .community-closing-title {
        font-size: 20px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .about-text {
        font-size: 14px;
    }

    .story-heading {
        font-size: 22px;
    }

    .community-heading {
        font-size: 24px;
    }

    .member-card,
    .compliance-item,
    .community-card {
        padding: 20px;
    }

    .foundation-highlight {
        padding: 25px;
    }
}

/* ==========================================
   DIFFERENTIALS SECTION (Why The Bahamas) - Added Fix
   ========================================== */
.differentials-section {
    position: relative;
    padding: 170px 5%;
    background-color: #f9f9f9;
    overflow: hidden;
}

.differentials-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.differentials-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.diff-grid {
    display: flex;
    gap: 80px;
}

.diff-col-title {
    flex: 0 0 350px;
}

.diff-main-title {
    font-size: 48px;
    line-height: 1.2;
    color: #000;
    font-weight: 300;
    font-family: var(--font-heading);
}

.highlight-blue {
    color: var(--color-blue);
    font-weight: 700;
}

.diff-items-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
}

.diff-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.diff-icon {
    margin-bottom: 10px;
    font-size: 32px;
    color: var(--color-blue);
    display: flex;
    align-items: center;
}

.diff-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.diff-title {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.diff-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    font-weight: 300;
}

/* ==========================================
   BOARD OF DIRECTORS SECTION
   ========================================== */
.board-members-section {
    grid-column: 1 / -1;
    margin-top: 40px;
}

.board-header {
    text-align: center;
    margin-bottom: 50px;
}

.board-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.staff {
    width: 60%;

}

.board-member-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.board-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-photo-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f0f0f0;
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 0.3s ease;
}

.board-member-card:hover .member-photo {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-blue);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.member-position {
    font-size: 13px;
    color: #666;
    margin: 0;
    font-weight: 400;
}

.member-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 126, 195, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.board-member-card:hover .member-card-overlay {
    opacity: 1;
}

.member-card-overlay i {
    font-size: 48px;
    color: #ffffff;
}

/* Board Member Modals */
.board-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.board-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.board-modal-content {
    background-color: #ffffff;
    margin: auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 700px;
    position: relative;
    animation: slideIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

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

.board-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #ffffff;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.board-modal-close:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: rotate(90deg);
}

.modal-member-header {
    background: linear-gradient(135deg, var(--color-blue) 0%, #005a8d 100%);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    border-radius: 20px 20px 0 0;
}

.modal-member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    border: 4px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-member-title h3 {
    color: #ffffff;
    font-size: 24px;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.modal-member-title p {
    color: #b3e0ff;
    font-size: 16px;
    margin: 0;
    font-weight: 400;
}

.modal-member-bio {
    padding: 40px;
    color: #333;
    line-height: 1.8;
}

.modal-member-bio p {
    margin-bottom: 20px;
    font-size: 15px;
}

.modal-member-bio p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .board-members-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }

    .member-photo-wrapper {
        height: 220px;
    }

    .modal-member-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .modal-member-photo {
        width: 100px;
        height: 100px;
    }

    .modal-member-title h3 {
        font-size: 20px;
    }

    .modal-member-bio {
        padding: 30px 20px;
    }

    .board-modal-content {
        width: 95%;
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    .board-members-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Icon Image Styling */
.service-icon-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.icon-wrapper .service-icon-img {
    width: 50px;
    height: 50px;
}

.feature-icon .service-icon-img,
.timeline-marker .service-icon-img,
.card-icon .service-icon-img,
.card-header .service-icon-img,
.planning-icon .service-icon-img {
    width: 60px;
    height: 60px;
    aspect-ratio: 1;
}

.protection-icon .service-icon-img {
    width: 40px;
    height: 40px;
}

.service-card .service-icon-img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: block;
}

/* --- Contact Page Styles --- */
.contact-intro {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../images/premium_photo.avif') center/cover no-repeat;
    padding: 160px 0 100px;
    text-align: center;
    color: white;
}

.contact-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-main {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

/* Info Column */
.info-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border-top: 4px solid var(--color-blue);
}

.info-heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.info-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--color-green);
}

.office-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 15px;
}

.office-address {
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #444;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-link i {
    color: var(--color-blue);
    font-size: 1.2rem;
}

.contact-link:hover {
    color: var(--color-blue);
}

.office-hours {
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.95rem;
}

.careers-cta {
    background: linear-gradient(135deg, var(--color-blue) 0%, #005a8d 100%);
    padding: 40px;
    border-radius: 12px;
    color: white;
}

.careers-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.careers-text {
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.6;
}

.view-openings {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-green);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.view-openings:hover {
    transform: translateX(5px);
}

/* Form Column */
.form-container {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-heading {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 35px;
    color: #333;
}

.enquiry-form .form-group {
    margin-bottom: 25px;
}

.enquiry-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
    font-size: 0.95rem;
}

.enquiry-form .required {
    color: #e63946;
}

.enquiry-form input[type="text"],
.enquiry-form input[type="email"],
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--color-blue);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #fcfcfc;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(0, 126, 195, 0.1);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
}

.form-checkbox-group input[type="checkbox"] {
    margin-top: 5px;
}

.form-checkbox-group label {
    font-weight: normal;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.form-checkbox-group a {
    color: var(--color-blue);
    text-decoration: none;
}

.submit-btn {
    background: var(--color-blue);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.submit-btn:hover {
    background: #005a8d;
    transform: translateY(-2px);
}

.error {
    color: #e63946;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.alert {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 30px 20px;
    }
}


/* ========================================
   Homepage Hero Section Styles
   ======================================== */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: transparent !important;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    z-index: 1;
}

.hero-background:not(video) {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3) !important;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
    padding: 0 5%;
    max-width: 1920px;
    margin: 0 auto;
    text-align: center;
}

.hero-heading {
    align-self: center;
    width: 100%;
    max-width: 1000px;
    text-align: center !important;
}

.hero-heading h1 {
    font-size: 64px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 2px;
    text-align: center;
    margin: 0 0 30px 0;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8);
    text-transform: capitalize;
}

.hero-subtext {
    color: #ffffff;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 100px;
    cursor: pointer;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border-left: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) rotate(-45deg);
    }

    40% {
        transform: translateY(-10px) rotate(-45deg);
    }

    60% {
        transform: translateY(-5px) rotate(-45deg);
    }
}

/* Responsive Styles for Hero Section */
@media (max-width: 1024px) {
    .hero-heading h1 {
        font-size: 48px;
    }

    .hero-subtext {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 60px;
    }

    .hero-heading h1 {
        font-size: 36px;
        margin: 0 0 20px 0;
    }

    .hero-subtext {
        font-size: 18px;
    }

    .hero-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-heading h1 {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .hero-subtext {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .mobile-header-container {
        padding: 0 10px;
    }
}

/* ============================================
   FOOTER STYLING
   ============================================ */
.main-footer {
    background-color: var(--color-primary);
    /* Deep dark blue #030934 */
    color: #ffffff;
    padding: 70px 5% 30px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Poppins', sans-serif;
}

.main-footer a,
.main-footer li,
.main-footer span,
.main-footer p {
    text-transform: none;
}

.main-footer .footer-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.main-footer .footer-col {
    display: flex;
    flex-direction: column;
}

.main-footer .footer-logo-wrapper {
    margin-bottom: 25px;
}

.main-footer .footer-logo {
    max-height: 50px;
    width: auto;
}

.main-footer .footer-address {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.main-footer .footer-socials {
    display: flex;
    gap: 15px;
}

.main-footer .footer-social-icon {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-footer .footer-social-icon:hover {
    color: var(--color-green);
    transform: translateY(-2px);
}

.main-footer .footer-title {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

/* Underline decoration on footer titles */
.main-footer .footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-blue);
}

@media (max-width: 575px) {
    .main-footer .footer-col {
        text-align: center;
    }

    .main-footer .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .main-footer .footer-contact-list li {
        justify-content: center;
    }

    .main-footer .footer-socials {
        justify-content: center;
    }
}

.main-footer .footer-link-list,
.main-footer .footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.main-footer .footer-link-list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, padding-left 0.3s ease;
    font-family: 'Libre Baskerville', Georgia, serif;
    /* Serify font as in image */
}

.main-footer .footer-link-list a:hover {
    color: var(--color-green);
    padding-left: 5px;
}

.main-footer .footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Libre Baskerville', Georgia, serif;
}

.main-footer .footer-contact-list li i {
    color: var(--color-blue);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.main-footer .footer-contact-list a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-footer .footer-contact-list a:hover {
    color: var(--color-green);
}

.main-footer .footer-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 40px auto 25px auto;
    max-width: 1600px;
}

.main-footer .footer-bottom {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #ffffff;
}

.main-footer .footer-legal-links {
    display: flex;
    gap: 20px;
}

.main-footer .footer-legal-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-footer .footer-legal-links a:hover {
    color: var(--color-green);
}

/* Responsive Footer */
@media (max-width: 991px) {
    .main-footer .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 575px) {
    .main-footer .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-footer .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--color-blue);
    /* Bright blue */
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top-btn:hover {
    background-color: #0050bc;
    transform: translateY(-3px);
}

.scroll-to-top-btn i {
    font-size: 18px;
}