﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.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;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(0, 126, 195) 0%, rgba(0, 0, 153, 0) 100%);
    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 #53ff34;
    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: #53ff34;
    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::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #53ff34;
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: #53ff34;
    transform: translateX(10px);
}

.nav-item:hover::after {
    width: 100%;
}

/* ==========================================
   MOBILE HEADER (Separate Structure)
   ========================================== */
.mobile-header {
    display: none;
    /* Hidden on desktop */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: transparent;
    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);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 5%;
}

.mobile-logo img {
    height: 50px;
    transition: filter 0.3s ease;
}

.mobile-hamburger {
    background: transparent;
    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: #007ec3;
}

.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);
    padding-left: 40px;
}

/* ==========================================
   DESKTOP SCROLL HEADER
   ========================================== */
.desktop-scroll-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    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;
    align-items: center;
}

.desktop-scroll-header.header-visible {
    transform: translateY(0);
}

.scroll-header-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scroll-logo img {
    height: 55px;
    width: auto;
}

.scroll-nav-list {
    list-style: none;
    display: flex;
    gap: 40px;
}

.scroll-nav-link {
    text-decoration: none;
    color: #1a1a50;
    /* Deep blue text */
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.scroll-nav-link:hover {
    color: #007ec3;
    /* Lighter blue/brand color */
}

.scroll-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #53ff34;
    /* Green accent */
    transition: width 0.3s ease;
}

.scroll-nav-link:hover::after {
    width: 100%;
}

@media (max-width: 1024px) {
    .scroll-nav-list {
        list-style: none;
        display: flex;
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .scroll-nav-list {
        list-style: none;
        display: flex;
        gap: 10px;
    }

    .scroll-logo img {
        height: 48px;
        width: auto;
    }

    .scroll-header-container {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .desktop-scroll-header {
        display: none !important;
    }
}

/* Dial rotation handled by JS */

/* About Section Styles */
.about-section {
    background: rgb(0, 126, 195);
    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: #53ff34;
    font-size: 14px;
    font-weight: 600;
    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: #53ff34;
    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: #007ec3;
}

/* Specific icon adjustments to match screenshot */
.icon-network {
    color: #007ec3;
}

.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;
}

.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: 'Poppins', cursive;
    /* Fallback */
    font-style: italic;
    font-size: 24px;
    color: #007ec3;
    /* 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: #007ec3;
    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: #007ec3;
    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-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
    z-index: 2;
}

.card-arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: #53ff34;
    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: #007ec3;
    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: #007ec3;
    transition: transform 0.3s ease;
}

.slider-icon:hover {
    transform: scale(1.1);
}


/* Differentials Section */
.differentials-section {
    position: relative;
    padding: 100px 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;
    color: #666;
    margin-top: 10px;
}

.highlight-blue {
    color: #007ec3;
    font-weight: 700;
}

.diff-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.diff-icon {
    font-size: 36px;
    color: #007ec3;
    margin-bottom: 25px;
}

.diff-title {
    font-size: 15px;
    font-weight: 600;
    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: 100px 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: #007ec3;
    /* Navy Blue */
    font-size: 14px;
    font-weight: 600;
    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: #007ec3;
    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: 30px;
    font-size: 24px;
    color: #007ec3;
    /* Navy Blue Icon */
    margin-top: 5px;
}

.team-service-content {
    display: flex;
    flex-direction: column;
}

.team-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #007ec3;
    /* 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: 80px 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: #007ec3;
}

.see-all-link:hover {
    color: #007ec3;
}

.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: #007EC3;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    align-self: flex-end;
}

.read-more i {
    color: #53ff34;
    font-size: 16px;
    font-weight: 400;
}

/* Contact Section */
.contact-section {
    position: relative;
    background: linear-gradient(135deg, #001e8c 0%, #007EC3 100%);
    /* Deep Blue Gradient */
    padding: 80px 5% 40px;
    color: #ffffff;
    overflow: hidden;
    min-height: 600px;
}

/* 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: #53ff34;
    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: #53ff34;
    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: #53ff34;
    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: #53ff34;
    border-color: #53ff34;
}

/* 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: #53ff34;
    /* 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: #53ff34;
    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: #53ff34;
}

.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: 120px 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, #53ff34 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: #53ff34;
    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: #53ff34;
}

.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: #53ff34;
    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: #53ff34;
    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: 100px 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 #007ec3;
}

.governance-header i {
    font-size: 32px;
    color: #007ec3;
}

.governance-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #007ec3;
    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 #53ff34;
    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: #007ec3;
    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: #007ec3;
}

.principles-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #007ec3;
}

.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: #007ec3;
}

.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: 100px 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 #53ff34;
}

.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: #53ff34;
}

.advantage-title {
    font-size: 18px;
    font-weight: 600;
    color: #007ec3;
    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 #53ff34;
}

.partner-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #53ff34 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: #007ec3;
    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: #007ec3;
    font-size: 16px;
}

/* 4ï¸âƒ£ Risk, Compliance & Security Section */
.risk-compliance-section {
    background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
    padding: 100px 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: #53ff34;
    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, #007ec3 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: #007ec3;
    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 #53ff34;
}

.badge-item i {
    font-size: 20px;
    color: #53ff34;
}

.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 #007ec3;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #007ec3;
    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: #007ec3;
    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: #007ec3;
    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, #53ff34 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: 100px 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: #007ec3;
    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: #53ff34;
}

.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, #007ec3 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: #53ff34;
}

.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;
    }

    .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 === */

/* Why The Bahamas Page - Unique Editorial Style */

/* =========================================
   Intro / Editorial Opening
   ========================================= */
.bahamas-hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    /* Not a full screen hero */
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    /* Clean text canvas */
    padding-top: 100px;
    /* Space for fixed header */
}

.bahamas-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Split layout */
    gap: 60px;
    align-items: center;
}

.bahamas-intro-text {
    padding-right: 20px;
}

.bahamas-label {
    color: #007ec3;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
}

.bahamas-title {
    font-size: 48px;
    color: #1a1a50;
    /* Deep blue */
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 40px;
}

.bahamas-title strong {
    font-weight: 700;
    color: #007ec3;
    /* Brand Blue */
}

.bahamas-lead {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
}

.bahamas-feature-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* =========================================
   Section 1: Regulatory & Legal Framework
   (Asymmetrical Layout)
   ========================================= */
.legislation-section {
    padding: 100px 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;
}

.legislation-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.legislation-block {
    border-left: 3px solid #53ff34;
    /* Brand Green Accent */
    padding-left: 30px;
}

.editorial-heading {
    font-size: 28px;
    color: #1a1a50;
    margin-bottom: 20px;
    font-weight: 500;
}

.editorial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    font-weight: 300;
}

.legislation-visual {
    background: linear-gradient(135deg, rgba(0, 126, 195, 0.05) 0%, rgba(83, 255, 52, 0.05) 100%);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-box {
    font-size: 24px;
    font-style: italic;
    color: #007ec3;
    line-height: 1.6;
    font-weight: 300;
    text-align: center;
}

/* =========================================
   Section 2: Tax Neutrality & Planning
   (Centered, Content-Led, Calm)
   ========================================= */
.planning-section {
    background-color: #1a1a50;
    /* Deep Brand Blue Background */
    color: #fff;
    padding: 120px 5%;
    text-align: center;
}

.planning-container {
    max-width: 1000px;
    margin: 0 auto;
}

.planning-title {
    font-size: 36px;
    margin-bottom: 60px;
    font-weight: 400;
}

.planning-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    text-align: left;
}

.planning-item {
    background: rgba(255, 255, 255, 0.05);
    /* Glass-like subtle bg */
    padding: 40px;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.planning-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.planning-icon {
    font-size: 30px;
    color: #53ff34;
    margin-bottom: 20px;
}

.planning-heading {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 500;
}

.planning-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* =========================================
   Section 3: Political Stability
   (Inset Layout, High Trust)
   ========================================= */
.stability-section {
    padding: 100px 5%;
    background-color: #fff;
}

.stability-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 60px;
}

.stability-text-col {
    flex: 1;
    padding-right: 60px;
}

.stability-image-col {
    flex: 1;
}

.stability-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: grayscale(20%);
    /* Sophisticated look */
    border-radius: 2px;
}

/* =========================================
   Section 4: Global Reputation / Conclusion
   (Simple, Authoritative)
   ========================================= */
.reputation-section {
    padding: 100px 5%;
    background: #f9f9f9;
    /* Asymmetrical background */
}

.reputation-container {
    max-width: 900px;
    margin: 0 auto;
}

.reputation-text {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    font-weight: 300;
    margin-bottom: 30px;
}

.reputation-brand {
    font-size: 16px;
    color: #007ec3;
    /* Brand Blue */
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 40px;
    display: inline-block;
    border-bottom: 2px solid #53ff34;
    padding-bottom: 5px;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 992px) {

    .bahamas-hero-container,
    .editorial-grid,
    .planning-grid,
    .stability-container {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 40px;
    }

    .stability-text-col {
        padding-right: 0;
    }

    .reputation-section {
        background: #f9f9f9;
        text-align: left;
    }
}

/* === 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: #53ff34;
    /* 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: #1a1a50;
    /* 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;
    color: #1a1a50;
    margin-bottom: 50px;
    border-left: 4px solid #007ec3;
    /* 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: #007ec3;
    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: #007ec3;
}

.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: #007ec3;
}

.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 #53ff34;
    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: #1a1a50;
    margin-bottom: 20px;
}

.booklet-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a50;
    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: #53ff34;
    position: absolute;
    left: 0;
}

.download-link {
    font-size: 14px;
    color: #007ec3;
    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: 80px 5%;
    min-width: 300px;
}

.events-col {
    background-color: #1a1a50;
    /* Dark for events */
    color: #fff;
}

.newsletters-col {
    background-color: #007ec3;
    /* Lighter blue for newsletters */
    color: #fff;
}

.split-headline {
    font-size: 28px;
    font-weight: 400;
    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: #53ff34;
    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: 100px 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;
    color: #1a1a50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wealth-question i {
    color: #007ec3;
    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: #53ff34;
}

.highlight-blue {
    color: #007ec3;
}

/* --- Common Container --- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

.section-title {
    font-size: 36px;
    color: #1a1a50;
    margin-bottom: 10px;
    font-weight: 600;
}

.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: #53ff34;
}

.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: #007ec3;
    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: #1a1a50;
    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: #53ff34;
}

.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: #1a1a50;
    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 #007ec3;
    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: #53ff34;
    /* Green checks */
    background: #1a1a50;
    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: #1a1a50;
    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: 'Poppins', sans-serif;
    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: #007ec3;
    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: #007ec3;
    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;
    color: #1a1a50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: #007ec3;
}

.accordion-header i {
    font-size: 14px;
    color: #007ec3;
    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: 120px 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: #53ff34;
    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: #53ff34;
    margin-right: 15px;
}

.trust-hero-title {
    font-size: 48px;
    font-weight: 300;
    color: #1a1a50;
    line-height: 1.3;
    margin-bottom: 40px;
}

.highlight-text {
    font-weight: 700;
    color: #007ec3;
}

.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: #007ec3 !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: rgb(0, 126, 195);
    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 {
    flex: 0.9;
    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;
}

.section-title {
    font-size: 42px;
    font-weight: 300;
    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: #53ff34;
}

.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: 100px 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: #1a1a50;
    line-height: 1.3;
    margin-top: 20px;
}

.highlight-blue {
    font-weight: 700;
    color: #007ec3;
}

.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, #007ec3 0%, #0096e0 100%);
    color: #ffffff;
}

.charitable-number {
    font-size: 48px;
    font-weight: 700;
    color: rgba(0, 126, 195, 0.15);
    margin-bottom: 20px;
}

.charitable-large .charitable-number {
    color: rgba(255, 255, 255, 0.2);
}

.charitable-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a50;
    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: #53ff34;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.charitable-highlight i {
    font-size: 48px;
    color: #007ec3;
    margin-bottom: 20px;
}

.charitable-highlight p {
    color: #1a1a50;
    font-weight: 500;
    font-size: 16px;
}

/* Private Trust Companies Section */
.trust-ptc {
    background: linear-gradient(135deg, #1a1a50 0%, #007ec3 100%);
    padding: 100px 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: #53ff34;
}

.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: #53ff34;
}

.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: #53ff34;
    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: 100px 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: #1a1a50;
    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 #007ec3;
    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: #53ff34;
}

.service-card i {
    font-size: 36px;
    color: #007ec3;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a50;
    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: 100px 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: #1a1a50;
    margin-bottom: 25px;
    line-height: 1.3;
}

.highlight-green {
    font-weight: 700;
    color: #007ec3;
}

.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, #007ec3 0%, #53ff34 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 #007ec3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-marker i {
    font-size: 24px;
    color: #007ec3;
}

.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: #53ff34;
}

.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: #1a1a50;
    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: 100px 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: #1a1a50;
    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: 1.5fr 1fr 1fr;
    gap: 25px;
}

.investment-card {
    background: #f8f9fa;
    padding: 35px 30px;
    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: #1a1a50;
    margin-bottom: 12px;
}

.investment-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    font-weight: 300;
}

.investment-card.emphasis {
    grid-row: span 2;
    background: linear-gradient(135deg, #007ec3 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: #53ff34;
}

.investment-card.emphasis-alt h3 {
    color: #1a1a50;
}

.investment-card.emphasis-alt p {
    color: #1a1a50;
}

.card-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 64px;
    color: rgba(255, 255, 255, 0.15);
}

.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: 100px 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: #1a1a50;
    margin-bottom: 25px;
    line-height: 1.3;
}

.title-accent-blue {
    font-weight: 700;
    color: #007ec3;
}

.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: #007ec3;
}

.green-icon i {
    color: #53ff34;
}

.protection-text h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a50;
    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 #007ec3;
    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: #007ec3;
    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: 100px 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: #1a1a50;
    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: #1a1a50;
    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, #007ec3 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: #53ff34;
    font-size: 18px;
    flex-shrink: 0;
}

/* Foundation & PTC Services Section */
.trust-foundation {
    background: linear-gradient(180deg, #e6f7ff 0%, #f8f9fa 100%);
    padding: 100px 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: #1a1a50;
    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, #007ec3 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 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-body li {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-weight: 300;
}

.card-body li:last-child {
    margin-bottom: 0;
}

.card-body li::before {
    content: 'â†’';
    position: absolute;
    left: 0;
    color: #007ec3;
    font-weight: 600;
}

.highlight-card .card-header {
    background: linear-gradient(135deg, #53ff34 0%, #70ff50 100%);
    color: #1a1a50;
}

.highlight-card .card-header i {
    color: #1a1a50;
}

.highlight-card .card-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #1a1a50;
    font-weight: 400;
}

/* CTA Section */
.trust-cta {
    background: linear-gradient(135deg, #1a1a50 0%, #007ec3 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: #53ff34;
}

.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: #53ff34;
    color: #1a1a50;
    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, #53ff34 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: 100px 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;
    opacity: 0.15;
}

.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;
}

.highlight-blue {
    color: #007ec3;
    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: #007ec3;
    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;
}

.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: #007ec3;
    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, #007ec3 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: 40px;
    height: 40px;
}

.protection-icon .service-icon-img {
    width: 40px;
    height: 40px;
}

.service-card .service-icon-img {
    width: 50px;
    height: 50px;
    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-top: 10px;
}

.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 #007ec3;
}

.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: #53ff34;
}

.office-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #007ec3;
    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: #007ec3;
    font-size: 1.2rem;
}

.contact-link:hover {
    color: #007ec3;
}

.office-hours {
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.95rem;
}

.careers-cta {
    background: linear-gradient(135deg, #007ec3 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: #53ff34;
    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 #ddd;
    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: #007ec3;
    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: #007ec3;
    text-decoration: none;
}

.submit-btn {
    background: #007ec3;
    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;
}

/* 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;
    }
}