/* ============================================
   COMMON CSS - USED ON ALL PAGES
   ============================================ */

/* CSS Variables - Used on All Pages */
:root {
    --navy-blue: #233c51;
    --slate-blue: #374C64;
    --light-blue: #038DB5;
    --dark-blue: #25374b;
    --hero-blue: #205976;
    --hero-dark: #061e1e;
    --white: #ffffff;
}
.grecaptcha-badge {
    display: none !important;
}
.program-details-title
 {
    line-height: 20px;
    font-size: 16px;
    padding: 10px 0px 10px 0px;
    border-bottom: 1px solid #038db5;
}
.about-text {
    padding-bottom: 10px;
}
.email-link a, .phone-link a {
    color: #fff;
    text-decoration: none;
}
/* Global Reset - Used on All Pages */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Prevent horizontal overflow on all elements */
/* * {
    max-width: 100%;
} */

img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Ensure all containers respect viewport width */
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    max-width: 100%;
}

/* Fix for Bootstrap rows on mobile */
@media (max-width: 767px) {
    .row {
        --bs-gutter-x: 0;
    }
    
    /* Override Bootstrap's default row margins on mobile */
    .row > * {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* General Section Padding */
section {
    padding: 40px 0;
}

/* Hero/banner sections: no horizontal padding – header and banner stay separate, full width */
.hero,
.about-hero-section,
.contact-hero-banner,
.article-detail-hero-banner,
section[class*="-hero-section"],
section[class*="-hero-banner"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@media (min-width: 768px) {
    section {
        padding: 30px 0;
    }
}

@media (min-width: 992px) {
    section {
        padding: 30px 0;
    }
}
@media (min-width: 768px) and (max-width: 1366px) {
    section {
        padding-left: 24px;
        padding-right: 24px;
    }
    /* Hero/banner sections: no horizontal padding – header and banner stay separate, full width */
    .hero,
    .about-hero-section,
    .contact-hero-banner,
    .article-detail-hero-banner,
    [class*="-hero-section"],
    [class*="-hero-banner"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
/* Hero Title & Image Animations */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroImageZoom {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-content,
[class$="-hero-content"] {
    animation: heroFadeUp 0.6s ease both;
}

.hero-title,
.hero-heading,
.about-hero-title,
[class$="-hero-title"] {
    animation: heroFadeUp 0.7s ease both;
    animation-delay: 0.08s;
}

.hero::after,
[class$="-hero-image"] {
    animation: heroImageZoom 0.8s ease both;
}

@media (prefers-reduced-motion: reduce) {
    .hero-content,
    [class$="-hero-content"],
    .hero-title,
    .hero-heading,
    .about-hero-title,
    [class$="-hero-title"],
    .hero::after,
    [class$="-hero-image"] {
        animation: none;
    }
}

/* Element Reveal */
.reveal-element {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    will-change: opacity, transform;
}

.reveal-element.reveal-element-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-element {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Scroll Reveal */
section.reveal {
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    will-change: opacity, transform;
}

section.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    section.reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================
   HEADER & NAVIGATION - Used on All Pages
   ============================================ */

/* Top Bar */
.top-bar {
    display: flex;
    background-color: var(--navy-blue);
    color: var(--white);
    height: 45px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.top-bar::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 182px;
    height: 45px;
    background: var(--slate-blue);
    clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
    display: none;
}

.top-bar::after {
    content: '';
    position: absolute;
    right: 0px;
    top: 0;
    width: 200px;
    height: 45px;
    background: var(--light-blue);
    clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
    display: none;
}

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

/* Navigation - Fixed sticky menu; header must be outside .max-width-container (no overflow ancestor) */
.navbar {
    /* Below top-bar when at top of page */
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: 80px;
    padding: 0;
    max-width: 100%;
    transition: top 0.2s ease;
}

/* When scroll down: stick-menu class is added – navbar sticks to very top */
.navbar.stick-menu,
.navbar.navbar-stuck {
    top: 0 !important;
    position: fixed;
}

/* Reserve space so hero/content start below fixed header (top-bar 45px + navbar 80px) */
/* .max-width-container {
    padding-top: 125px;
} */

.navbar-brand img {
    height: 48px;
}

@media (min-width: 768px) {
    .navbar-brand img {
        height: 64px;
    }
}

.nav-link {
    color: #000;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 8px 10px;
    transition: color 0.3s;
}

@media (min-width: 768px) {
    .nav-link {
        font-size: 13px;
        padding: 8px 12px;
    }
}

@media (min-width: 1200px) {
    .nav-link {
        font-size: 13px;
        padding: 8px 16px;
    }
}

.nav-link:hover {
    color: var(--light-blue);
}

.nav-link.active {
    color: #038db5 !important;
}

.navbar-nav {
    gap: 22px;
}

/* Social icons on same line as nav menu, right-aligned */
.nav-social-item {
    margin-left: 4px;
}

.nav-social-links {
    gap: 14px;
}

.nav-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.nav-social-link:hover {
    color: var(--light-blue);
}

.nav-social-link svg,
.nav-social-link i {
    font-size: 16px;
}

/* Service Menu Styles */
.service-menu-wrapper {
    position: relative;
}

.service-link {
    text-decoration: none;
    cursor: pointer;
}

.service-link:hover {
    text-decoration: none;
}

.service-dropdown-btn {
    padding: 8px 0 8px 2px !important;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-dropdown-btn::after {
    display: none;
}

.service-dropdown-btn i {
    font-size: 11px;
    margin-left: 0;
    color: inherit;
    transition: transform 0.2s ease;
}
.nav-item.dropdown.show .service-dropdown-btn i,
.service-dropdown-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.service-dropdown-btn:hover {
    color: var(--light-blue);
}

/* Dropdown Menu Styles */
.dropdown-toggle::after {
    margin-left: 0;
    vertical-align: middle;
}

.dropdown-menu {
    min-width: 220px;
    background: #fff;
    border: 1px solid #eef2f6;
    box-shadow: 0 8px 20px rgba(35, 60, 81, 0.12);
    margin-top: 10px;
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    display: block;
}

.dropdown-item {
    color: #25374B;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 10px 22px;
    transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgba(3, 141, 181, 0.1);
    color: var(--light-blue);
}

.dropdown-item.active {
    background-color: #038db5;
    color: var(--white);
}

/* Hover functionality for desktop */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .nav-link,
    .nav-item.dropdown .nav-link:hover {
        color: var(--light-blue);
    }
    
    .nav-item.dropdown:hover .dropdown-menu,
    .nav-item.dropdown .dropdown-menu:hover {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: block;
    }
}

/* Show dropdown on click for mobile */
.nav-item.dropdown.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

/* Mobile Responsive Header Styles */
/* Top Bar Mobile */
@media (max-width: 767px) {
    .top-bar {
        height: auto;
        min-height: 45px;
        padding: 8px 0;
    }
    
    .top-bar::before,
    .top-bar::after {
        display: none;
    }
    
    .top-bar-info {
        font-size: 11px;
        gap: 8px !important;
    }
    
    .top-bar-info i {
        font-size: 10px;
    }
    
    .top-bar-info span {
        font-size: 11px;
    }
}

/* Navbar Mobile */
@media (max-width: 991px) {
    .navbar {
        height: auto;
        min-height: 70px;
        padding: 10px 0;
    }
    
    .navbar-brand {
        padding: 0;
        margin-right: auto;
    }
    
    .navbar-brand img {
        height: 40px;
        max-width: 150px;
    }
    
    /* Navbar Toggler Button */
    .navbar-toggler {
        border: 2px solid var(--light-blue);
        border-radius: 4px;
        padding: 8px 12px;
        background-color: transparent;
        transition: all 0.3s ease;
        outline: none;
        box-shadow: none;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(3, 141, 181, 0.25);
    }
    
    .navbar-toggler:hover {
        background-color: rgba(3, 141, 181, 0.1);
        border-color: var(--slate-blue);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%283, 141, 181, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 24px;
        height: 24px;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%283, 141, 181, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6L24 24M24 6L6 24'/%3e%3c/svg%3e");
    }
    
    /* Collapsed Menu */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: min(82vw, 320px);
        background: #ffffff;
        padding: 20px 20px 80px;
        margin: 0;
        border-top: none;
        box-shadow: 6px 0 18px rgba(0, 0, 0, 0.08);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        z-index: 1050;
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }
    
    .navbar-nav {
        gap: 0;
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        padding: 15px 0;
        font-size: 14px;
       
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #25374B;
        font-weight: 600;
    }
    .service-menu-wrapper {
        display: flex;
        justify-content: space-between;
    }
    .nav-link i {
        font-size: 16px;
        color: var(--light-blue);
    }
    
    /* Dropdown Menu Mobile */
    .dropdown-toggle::after {
        margin-left: auto;
        transition: transform 0.3s ease;
    }
    
    .nav-item.dropdown.show .dropdown-toggle::after,
    .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
        background-color: #f8f9fa;
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none;
        display: block !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
    }
    
    .nav-item.dropdown.show .dropdown-menu,
    .dropdown-menu.show {
        max-height: 400px !important;
        padding: 10px 0 10px 20px;
        overflow: visible;
    }
    
    .dropdown-item {
        padding: 12px 20px;
        font-size: 13px;
        color: #666;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-item:hover,
    .dropdown-item:focus,
    .dropdown-item.active {
        background-color: #038db5;
        color: var(--white);
        padding-left: 25px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 576px) {
    .navbar {
        min-height: 65px;
        padding: 8px 0;
    }
    
    .navbar-brand img {
        height: 35px;
        max-width: 130px;
    }
    
    .navbar-toggler {
        padding: 6px 10px;
    }
    
    .navbar-toggler-icon {
        width: 20px;
        height: 20px;
    }
    
    .nav-link {
        padding: 12px 0;
        font-size: 13px;
    }
    
    .top-bar-info {
        font-size: 10px;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 4px !important;
    }
    
    .top-bar-info > div {
        display: flex;
        align-items: center;
        gap: 6px;
    }
}

/* Smooth Animation for Mobile Menu */
@media (max-width: 991px) {
    .navbar-collapse {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
    
    .navbar-collapse.show {
        max-height: 1000px;
        transition: max-height 0.5s ease-in;
    }
}

/* ============================================
   HOME PAGE SPECIFIC STYLES
   ============================================ */

/* Hero Section */
.hero {
    position: relative;
    height: 580px !important;
    overflow: hidden;
    padding: 0;
}

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

@media (min-width: 768px) and (max-width: 1024px) {
    .hero {
        height: 420px !important;
    }
    .contact-section {
        padding: 0px !important;
    }
    section,
    .hero,
    .about-section,
    .statistics-section,
    .testimonials-section,
    .video-section,
    .coaching-modules-section,
    .toolkit-section,
    .clients-section,
    .about-hero-section,
    .contact-hero-banner {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
    /* Hero/banner: no padding – full width, separate from header */
    .hero,
    .about-hero-section,
    .contact-hero-banner,
    .article-detail-hero-banner,
    [class*="-hero-section"],
    [class*="-hero-banner"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .top-bar .container,
    .top-bar-content,
    .navbar .container,
    .footer .container {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/banner.png');
    background-size: cover;
    background-position: center;
}

.hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero .row {
    width: 100%;
    height: 100%;
}

.hero .col-12 {
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 20px;
    font-weight: 200;
    margin-bottom: 8px;
    line-height: 1.2;
    text-transform: capitalize;
}

.hero-title .fw-bold {
    font-weight: 700;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 28px;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 38px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 46px;
    }
}

.hero-heading {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    line-height: 1.1;
}

@media (min-width: 640px) {
    .hero-heading {
        font-size: 38px;
    }
}

@media (min-width: 768px) {
    .hero-heading {
        font-size: 52px;
    }
}

@media (min-width: 1024px) {
    .hero-heading {
        font-size: 86px;
    }
}

.hero-btn {
    display: flex;
    width: 222.382px;
    height: 40px;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: 1px solid #FFF;
    color: #FFF;
    text-align: center;
    font-size: 14px !important;
    font-style: normal;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 500 !important;
    line-height: 22px;
    text-decoration: none;
}

.hero-btn:hover {
    background: var(--white);
    color: var(--hero-blue);
}

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

/* About Hero Section */
.about-hero-section {
    position: relative;
    min-height: 570px;
    padding: 0;
    background: var(--dark-blue);
    color: var(--white);
    overflow: hidden;
    /* height: 600px; */
}

.about-hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url('../images/about-banner.png');
    background-size: cover;
}

.about-hero-image-wrapper {

    width: 100%;

}

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

.about-hero-section .container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (min-width: 992px) {
    .about-hero-section .container {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.about-hero-section .row {
    align-items: flex-start;
}

.about-hero-title {
    color: var(--white);
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 36px;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 0;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-hero-title-line1 {
    color: var(--white);
    font-weight: 300;
    font-size: 36px;
    line-height: 1.2;
}

.about-hero-title-line2,
.about-hero-title-line3 {
    color: var(--white);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.1;
}

.about-hero-title-line4 {
    color: #FFA500;
    font-weight: 300;
    font-size: 36px;
    line-height: 1.2;
}

.about-hero-title strong {
    font-weight: 700;
}

@media (min-width: 768px) {
    .about-hero-title-line1 {
        font-size: 42px;
    }
    
    .about-hero-title-line2,
    .about-hero-title-line3 {
        font-size: 56px;
    }
    
    .about-hero-title-line4 {
        font-size: 42px;
    }
}

@media (min-width: 992px) {
    .about-hero-title-line1 {
        font-size: 48px;
    }
    
    .about-hero-title-line2,
    .about-hero-title-line3 {
        font-size: 64px;
    }
    
    .about-hero-title-line4 {
        font-size: 48px;
    }
}

.about-hero-story {
    background: transparent;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
}
.why-matters-list li span
 {
    font-weight: bold;
    color: #000;
}

.about-hero-story-text {
    color: var(--white);
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
}

.about-hero-story-text p {
    margin-bottom: 20px;
    text-transform: none;
}

.about-hero-story-signature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    font-family: "Be Vietnam Pro", sans-serif;
    font-style: italic;
    font-weight: 400;
font-size: 35px;
    color: var(--white);
    justify-content: flex-end;
}

.about-hero-signature-icon {
    color: #FFA500;
    font-size: 20px;
}

.about-hero-story-signature span {
    font-family: 'Dancing Script', sans-serif;
                                              
    font-style: italic;
    letter-spacing: 0.5px;
}

@media (max-width: 767px) {
    .about-hero-section {
        min-height: auto;
    }
    
    .about-hero-section .container {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .about-hero-image-wrapper {
        top: 80px;
        height: 300px;
    }
    
    .about-hero-title {
        padding-right: 0;
        gap: 6px;
    }
    
    .about-hero-title-line1 {
        font-size: 28px;
    }
    
    .about-hero-title-line2,
    .about-hero-title-line3 {
        font-size: 36px;
    }
    
    .about-hero-title-line4 {
        font-size: 28px;
    }
    
    .about-hero-story {
        margin-top: 30px;
    }
    
    .about-hero-story-text {
        font-size: 14px;
    }
    
    .about-hero-story-signature {
        font-size: 16px;
        margin-top: 20px;
    }
    
    .about-hero-signature-icon {
        font-size: 18px;
    }
}

/* About Section */
.about-section {
    padding: 40px 0;
}

/* About section: equal left/right columns, image right-aligned on desktop */
@media (min-width: 992px) {
    .about-section .about-section-image-wrap {
        justify-content: flex-end;
    }
}

.about-text p {
    font-size: 16px;
    color: #000;
    font-family: "Be Vietnam Pro";
    font-style: normal;
    font-weight: 200;
    line-height: 26px;

}

@media (min-width: 768px) {
    .about-text p {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (min-width: 992px) {
    .about-text p {
        font-size: 20px;
        line-height: 30px;
    }
}
.about-text .font-weight-bold {
    font-weight: 400;
}
/* .about-text p:nth-child(1),
.about-text p:nth-child(2),
.about-text p:nth-child(3),
.about-text p:nth-child(4) {
    font-weight: 400;
} */
button.who-needs-a-coach-btn,
a.who-needs-a-coach-btn {
    position: relative;
    width: 100%;
    align-self: stretch;
    border: 1px solid #25374b;
    background: transparent;

    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    text-align: center;
    font-size: 18px;
    color: #25374b;
    font-family: 'Be Vietnam Pro', sans-serif;
    text-decoration: none;
}
.about-text .fw-extralight {
    font-weight: 200;
}

/* Our Belief - Overview Section */
.about-belief-overview-section {
    padding-top: 60px;
    padding-bottom: 60px;
    background: var(--white);
}

@media (min-width: 992px) {
    .about-belief-overview-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.about-belief-overview-section .section-header {
    margin-bottom: 20px;
}

.about-belief-header-center {
    justify-content: center;
}

.about-belief-overview-section .section-subtitle {
    margin-bottom: 30px;
}

.about-belief-subtitle-center {
    text-align: center;
}

.about-belief-text {
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 20px;
    font-weight: 200;
    line-height: 1.8;
    color: #25374B;
    margin-top: 0;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-belief-text p {
    margin: 0;
    text-transform: none;
}

.about-belief-panel {
    text-align: center;
    margin-bottom: 0;
}

.about-belief-panel-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.about-belief-panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-belief-panel-caption {
    width: 300px;
    height: 60px;
    position: relative;
    font-size: 20px;
    line-height: 30px;
    font-weight: 200;
    font-family: "Be Vietnam Pro", sans-serif;
    color: #000;
    text-align: center;
    display: inline-block;
    margin: 0;
}

@media (max-width: 767px) {
    .about-belief-overview-section {
        padding: 60px 0;
    }
    
    .about-belief-text {
        font-size: 16px;
        max-width: 100%;
    }
    
    .about-belief-panel-image {
        height: 250px;
    }
    
    .about-belief-panel {
        margin-bottom: 30px;
    }
}

/* Our Mission Section */
.about-mission-section {
    padding: 80px 0;
    background: #F9FAFB;
}

@media (min-width: 992px) {
    .about-mission-section {
        padding: 100px 0;
    }
}

.about-mission-section .section-header {
    margin-bottom: 20px;
}

.about-mission-text {
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: #25374B;
    margin-top: 0;
    max-width: 90%;
}

.about-mission-text p {
    margin-bottom: 20px;
    text-transform: none;
}

@media (max-width: 767px) {
    .about-mission-section {
        padding: 60px 0;
    }
    
    .about-mission-text {
        font-size: 16px;
        max-width: 100%;
    }
}

/* My Story: From Pressure To Purpose Section */
.about-my-story-section {
    padding: 80px 0;
    background: var(--white);
}

@media (min-width: 992px) {
    .about-my-story-section {
        padding: 100px 0;
    }
}

.about-my-story-section .section-header {
    margin-bottom: 20px;
}

.about-my-story-image-wrapper {
    text-align: center;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.about-my-story-image {
    max-width: 400px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .about-my-story-image {
        max-width: 300px;
        width: 300px;
        height: 300px;
    }
}

.about-my-story-text {
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: #25374B;
    margin-top: 0;
}

.about-my-story-text p {
    margin-bottom: 20px;
    text-transform: none;
}

.about-my-story-list {
    margin-top: 30px;
}

.about-my-story-list ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.about-my-story-list li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
}

.about-my-story-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--light-blue);
    font-size: 24px;
    line-height: 1;
}

@media (max-width: 767px) {
    .about-my-story-section {
        padding: 60px 0;
    }
    
    .about-my-story-text {
    font-size: 16px;
    }
    
    .about-my-story-list li {
        font-size: 16px;
    }
}

/* What Makes MentorKraft Different Section */
.about-different-section {
    padding: 80px 0;
    background: var(--dark-blue);
    color: var(--white);
}

@media (min-width: 992px) {
    .about-different-section {
        padding: 100px 0;
    }
}

.about-different-title {
    color: var(--white);
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.about-different-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    height: 100%;
    transition: all 0.3s;
}

.about-different-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.about-different-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--white);
}

.about-different-item-title {
    color: var(--white);
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-different-item-text {
    color: rgba(255, 255, 255, 0.9);
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767px) {
    .about-different-section {
        padding: 60px 0;
    }
    
    .about-different-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .about-different-item {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    
    .about-different-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .about-different-item-title {
        font-size: 18px;
    }
    
    .about-different-item-text {
        font-size: 14px;
    }
}

/* Our Belief - Who We Work With Section */
.about-who-we-work-section {
    padding: 80px 0;
    background: var(--white);
}

@media (min-width: 992px) {
    .about-who-we-work-section {
        padding: 100px 0;
    }
}

.about-who-we-work-section .section-header {
    margin-bottom: 20px;
}

.about-who-we-work-section .section-subtitle {
    margin-bottom: 30px;
}

.about-who-box {
    background: var(--dark-blue);
    color: var(--white);
    padding: 25px 20px;
    border-radius: 8px;
    height: 100%;
    transition: all 0.3s;
    margin-bottom: 15px;
}

.about-who-box:hover {
    background: var(--light-blue);
    transform: translateY(-5px);
}

.about-who-box-title {
    color: var(--white);
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-who-box-text {
    color: rgba(255, 255, 255, 0.9);
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    text-transform: lowercase;
}

.about-who-text {
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: #25374B;
}

.about-who-text p {
    margin: 0;
    text-transform: none;
}

@media (max-width: 767px) {
    .about-who-we-work-section {
        padding: 60px 0;
    }
    
    .about-who-box {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .about-who-box-title {
        font-size: 16px;
    }
    
    .about-who-box-text {
        font-size: 13px;
    }
    
    .about-who-text {
        font-size: 16px;
    }
}

/* Certifications Section */
.about-certifications-section {
    padding: 80px 0;
    background: #F9FAFB;
}

@media (min-width: 992px) {
    .about-certifications-section {
        padding: 100px 0;
    }
}

.about-certifications-section .section-header {
    margin-bottom: 0;
}

.certifications-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.certifications-carousel {
    display: flex;
    align-items: center;
    gap: 40px;
    overflow: hidden;
    flex: 1;
}

.certification-logo {
    flex: 0 0 auto;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
}

.certification-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.certifications-carousel-btn {
    width: 48px;
    height: 48px;
    background: var(--light-blue);
    border: none;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    cursor: pointer;
    z-index: 10;
}

.certifications-carousel-btn:hover {
    background: var(--dark-blue);
    transform: scale(1.1);
}

@media (max-width: 767px) {
    .about-certifications-section {
        padding: 60px 0;
    }
    
    .certifications-carousel {
        gap: 20px;
    }
    
    .certification-logo {
        width: 150px;
        height: 80px;
    }
    
    .certifications-carousel-btn {
        width: 40px;
        height: 40px;
    }
}

/* About Statistics Section */
.about-statistics-section {
    padding: 80px 0;
    background: var(--white);
}

@media (min-width: 992px) {
    .about-statistics-section {
        padding: 100px 0;
    }
}

@media (max-width: 767px) {
    .about-statistics-section {
        padding: 60px 0;
    }
}

/* About Call to Action Section */
.about-cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.about-cta-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 141, 181, 0.35) 0%, rgba(3, 141, 181, 0.35) 100%), linear-gradient(90deg, rgba(37, 55, 75, 0.65) 0%, rgba(37, 55, 75, 0.65) 100%);
    z-index: 1;
}

.about-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.about-cta-title {
    color: var(--white);
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-subtitle {
    color: var(--white);
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 30px;
}

.about-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--light-blue);
    padding: 16px 32px;
    border-radius: 8px;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.about-cta-button:hover {
    background: var(--light-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-cta-button i {
    font-size: 20px;
}

@media (max-width: 767px) {
    .about-cta-section {
        padding: 60px 0;
    }
    
    .about-cta-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .about-cta-subtitle {
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .about-cta-button {
        padding: 14px 28px;
        font-size: 16px;
    }
}

/* Statistics Section - Used on About Page */
.statistics-section {
    padding: 40px 0;
}

.stat-item {
    text-align: center;
    margin: 0 auto 32px;
    width: 100%;
    max-width: 100%;
    padding: 20px 15px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
}

.stat-number {
    font-size: 28px;
    color: var(--light-blue);
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
}

.stat-label {
    font-size: 14px;
    color: var(--dark-blue);
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 575px) {
    .statistics-section .row > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .stat-item {
        width: 100%;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .stat-item {
        max-width: 300px;
        padding: 25px 20px;
    }
    
    .stat-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 18px;
    }
    
    .stat-number {
        font-size: 32px;
}

.stat-label {
        font-size: 16px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .stat-item {
        /* width: 194px;
        max-width: 194px; */
        margin-bottom: 0;
        padding: 0;
    }
    
    .stat-icon {
        width: 89px;
        height: 89px;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .stat-label {
        font-size: 18px;
    }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
    .stat-number {
        font-size: 46px;
    }
    
    .stat-label {
        font-size: 20px;
    }
}

/* ============================================
   SERVICE PAGE SPECIFIC STYLES
   ============================================ */

/* Coaching Cards */
.coaching-card {
    position: relative;
    height: 350px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .coaching-card {
        height: 450px;
    }
}

.coaching-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.coaching-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(37, 55, 75, 0.8) 100%);
    transition: opacity 0.3s ease;
}

.coaching-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 1;
    color: var(--white);
    transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
    .coaching-card-content {
        padding: 30px;
    }
}

.coaching-card-content p {
    font-size: 18px;
    font-weight: 200;
    text-transform: capitalize;
    line-height: 1.5;
    margin: 0;
}

@media (min-width: 1024px) {
    .coaching-card-content p {
        font-size: 22px;
    }
}

.coaching-card-hover {
    position: absolute;
    inset: 0;
    background: rgba(37, 55, 75, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.coaching-card-hover p {
    color: var(--white);
    font-size: 18px;
    font-weight: 200;
    text-transform: capitalize;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

@media (min-width: 768px) {
    .coaching-card-hover p {
        font-size: 22px;
    }
}

.coaching-card:hover .coaching-card-hover {
    opacity: 1;
    visibility: visible;
}

.coaching-card:hover .coaching-card-content {
    opacity: 0;
}

.coaching-card:hover img {
    transform: scale(1.1);
}

.coaching-card:hover::after {
    opacity: 0;
}

/* ============================================
   SUCCESS STORIES PAGE SPECIFIC STYLES
   ============================================ */

/* Testimonials */
.testimonials-section {
    padding-bottom: 60px;
    padding-top: 60px;
}

.testimonials-section .row {
    padding-top: 60px;
}

/* Mobile View Improvements */
@media (max-width: 767px) {
    .testimonials-section .row {
        padding-top: 40px;
    }
    
    .testimonial-carousel-wrapper {
        position: relative;
    }
    
    /* Better touch targets for mobile */
    .testimonial-carousel-btn {
        position: relative;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Allow vertical page scroll when touching carousel; horizontal swipe handled by JS */
    .testimonial-carousel,
    .testimonial-carousel-container {
        touch-action: pan-y;
    }
}

/* Testimonial Carousel Wrapper */
.testimonial-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.testimonial-carousel-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    max-width: 100%;
    width: 100%;
}

.testimonial-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonial-card {
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    border-radius: 11.037px;
    background: #E1F8FF;
    box-shadow: none;
    border-top: 5px solid #038DB5;
    padding: 60px 30px 30px;
    position: relative;
    flex-shrink: 0;
    margin-top: 85px;
}

@media (max-width: 991px) {
    .testimonial-card {
        width: 100%;
        max-width: 100%;
        padding: 60px 25px 25px;
    }
    
    .testimonial-carousel-container {
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .testimonial-card {
        width: 100%;
        padding: 70px 48px 48px;
    }
}

/* Play/Pause button – all screens, right-aligned */
.testimonial-pause-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: absolute;
    top: 10px;
    right: 15px;
    left: auto;
    z-index: 20;
    margin: 0;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: rgba(3, 141, 181, 0.9);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    -webkit-tap-highlight-color: transparent;
}
.testimonial-pause-play-btn:hover,
.testimonial-pause-play-btn:focus {
    background: #25374B;
    color: #fff;
}
.testimonial-pause-play-btn i {
    font-size: 13px;
}
.testimonial-pause-play-btn .testimonial-pause-play-label {
    display: none;
}

@media (max-width: 767px) {
    .testimonials-section .row > [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }
    
    .testimonial-carousel-wrapper {
        flex-direction: column;
        gap: 0;
        padding: 0;
        position: relative;
        max-width: 90%;
    }
    
    .testimonial-carousel-container {
        width: 100%;
        max-width: 100%;
        flex: none;
        padding: 0;
    }
    
    .testimonial-carousel-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        width: 26px;
        height: 26px;
        z-index: 20;
        background: rgba(3, 141, 181, 0.9);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    
    .testimonial-prev {
        right: 60px;
    }
    
    .testimonial-next {
        right: 15px;
    }
    
    .testimonial-carousel-btn i {
        font-size: 12px;
    }
    
    .testimonial-card {
        padding: 50px 18px 20px;
        margin-top: 60px;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 20px;
        border-radius: 8px;
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        box-sizing: border-box;
    }
    
    .testimonial-image {
        width: 100px;
        height: 100px;
        top: -50px;
        border-width: 3px;
    }
    
    .testimonial-name {
        font-size: 16px;
        margin-top: 15px;
        margin-bottom: 6px;
    }
    
    .testimonial-role {
        font-size: 12px;
        margin-bottom: 18px;
        line-height: 1.4;
    }
    
    .testimonial-text {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .testimonial-text p {
        margin-bottom: 12px;
    }
    
    .testimonial-carousel-container {
        padding-top: 50px;
    }
}

/* Home page mobile: place pause/play left of prev/next arrows */
@media (max-width: 767px) {
    .testimonial-carousel-wrapper .testimonial-pause-play-btn {
        right: 95px;
    }
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;
    border: 5px solid #038DB5;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: #E1F8FF;
    z-index: 10;
    display: block;
}

@media (min-width: 768px) {
    .testimonial-image {
        width: 160px;
        height: 160px;
        top: -80px;
    }
}

@media (min-width: 1024px) {
    .testimonial-image {
        width: 178px;
        height: 178px;
        top: -89px;
    }
}

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

.testimonial-name {
    font-size: 18px;
    color: #25374B;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .testimonial-name {
        font-size: 20px;
        margin-top: 30px;
    }
}

@media (min-width: 992px) {
    .testimonial-name {
        font-size: 22px;
    }
}

.testimonial-role {
    font-size: 14px;
    color: #25374B;
    text-align: center;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .testimonial-role {
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    .testimonial-role {
        font-size: 18px;
    }
}

.testimonial-text {
    font-size: 14px;
    color: #25374B;
    font-weight: 200;
    text-align: left;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .testimonial-text {
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    .testimonial-text {
        font-size: 18px;
    }
}

.testimonial-text p {
    margin-bottom: 16px;
}

.testimonial-carousel-btn {
    width: 48px;
    height: 48px;
    background: #038DB5;
    border: none;
    border-radius: 50%;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    cursor: pointer;
    z-index: 10;
}

@media (min-width: 768px) {
    .testimonial-carousel-btn {
        width: 56px;
        height: 57px;
    }
}

.testimonial-carousel-btn:hover {
    background: #25374B;
    transform: scale(1.1);
}

.carousel-btn {
    width: 48px;
    height: 48px;
    background: var(--light-blue);
    border: none;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .carousel-btn {
        width: 56px;
        height: 57px;
    }
}

.carousel-btn:hover {
    background: var(--dark-blue);
    transform: scale(1.1);
}

/* Video Section */
.video-section {
    position: relative;
    padding: 40px 0;
    height: 550px;
    background: linear-gradient(0deg, rgba(3, 141, 181, 0.20) 0%, rgba(3, 141, 181, 0.20) 100%), linear-gradient(0deg, rgba(37, 55, 75, 0.60) 0%, rgba(37, 55, 75, 0.60) 100%), url('../images/transforming-people.png') lightgray 50% / cover no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.play-button {
    width: 94px;
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 1;
    margin: 0 auto 24px;
    transition: transform 0.3s;
}

.play-button svg {
    width: 100%;
    height: 100%;
    display: block;
}

.play-button:hover {
    transform: scale(1.1);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    z-index: 10000;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #FFF;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.video-modal-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-modal-player #videoPlayerContainer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-modal-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-modal-player #videoPlayerContainer.video-player-hidden {
    visibility: hidden;
    pointer-events: none;
}

.video-modal-replay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.video-modal-replay.active {
    display: flex;
}

.video-modal-replay-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-modal-replay-shade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.video-modal-replay-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Be Vietnam Pro', sans-serif;
    color: #fff;
    background: #25374b;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.video-modal-replay-btn:hover {
    background: #1a2a3a;
}

.video-modal-replay-btn i {
    font-size: 18px;
}

.video-title {
    color: #FFF;
    text-align: center;
    font-family: "Be Vietnam Pro";
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .video-title {
        font-size: 28px;
        line-height: 38px;
    }
}

@media (min-width: 992px) {
    .video-title {
        font-size: 32px;
        line-height: 42px;
    }
}

/* Download Modal Styles */
.download-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.download-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.download-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.download-modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    z-index: 10000;
    background: #FFF;
    border-radius: 12px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.download-modal.active .download-modal-content {
    transform: scale(1);
}

.download-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(37, 55, 75, 0.1);
    border: none;
    border-radius: 50%;
    color: #25374B;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
}

.download-modal-close:hover {
    background: rgba(37, 55, 75, 0.2);
    transform: rotate(90deg);
}

.download-modal-body {
    padding: 40px 30px;
}

.download-modal-title {
    color: #25374B;
    text-align: center;
    font-family: "Be Vietnam Pro";
        font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 10px;
}

.download-modal-subtitle {
    color: #494949;
    text-align: center;
    font-family: "Be Vietnam Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 30px;
}

.download-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.download-form .form-group {
    width: 100%;
}

.download-form .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    font-family: "Be Vietnam Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    color: #25374B;
    background: #FFF;
    transition: all 0.3s ease;
}

.download-form .form-control:focus {
    outline: none;
    border-color: #038DB5;
    box-shadow: 0 0 0 3px rgba(3, 141, 181, 0.1);
}

.download-form .form-control::placeholder {
    color: #999;
}

.download-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: #038DB5;
    border: 1px solid #038DB5;
    border-radius: 4px;
    color: #FFF;
    font-family: "Be Vietnam Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.download-submit-btn:hover {
    background: #25374B;
    border-color: #25374B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 55, 75, 0.3);
}

.download-submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 576px) {
    .download-modal-content {
        width: 95%;
        max-width: 100%;
    }
    
    .download-modal-body {
        padding: 30px 20px;
    }
    
    .download-modal-title {
        font-size: 24px;
        line-height: 32px;
    }
}

/* Coaching Cards Full Width */
.coaching-cards-fullwidth {
    width: 100%;
    margin: 0;
    padding: 0;
}

.coaching-description {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    color: #000;
    text-align: center;
    font-family: "Be Vietnam Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 200;
    line-height: 30px;
}

/* Toolkit Section */
.toolkit-section {
    padding: 40px 0;
}

.toolkit-title {
    color: #25374B;
    text-align: center;
    font-family: "Be Vietnam Pro";
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 25px;
}

@media (min-width: 768px) {
    .toolkit-title {
        font-size: 36px;
    }
}

@media (min-width: 992px) {
    .toolkit-title {
        font-size: 44px;
    }
}

.toolkit-btn {
    display: inline-flex;
    height: 34px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #25374B;
    text-align: center;
    font-family: "Be Vietnam Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    transition: all 0.3s;
    border: 2px solid var(--dark-blue);
    background: transparent;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .toolkit-btn {
        font-size: 18px;
        line-height: 24px;
    }
}

.toolkit-btn:hover {
    background: var(--dark-blue);
    color: var(--white);
}

/* Toolkit Modal */
.toolkit-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.toolkit-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.toolkit-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.toolkit-modal-content {
    position: relative;
    width: 92%;
    max-width: 520px;
    background: #FFF;
    border-radius: 12px;
    padding: 32px 28px 28px;
    z-index: 10000;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.toolkit-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(3, 141, 181, 0.1);
    color: #25374B;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toolkit-modal-close:hover {
    background: rgba(3, 141, 181, 0.2);
}

.toolkit-modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #25374B;
    margin-bottom: 8px;
    text-align: center;
}

.toolkit-modal-text {
    font-size: 14px;
    color: #556370;
    text-align: center;
    margin-bottom: 20px;
}

/* Shared: mandatory note and required asterisk (all forms) */
.form-mandatory-note {
    font-size: 13px;
    margin-bottom: 14px;
    color: inherit;
    font-family: "Be Vietnam Pro", sans-serif;
}
.form-mandatory-note .required-asterisk,
.required-asterisk {
    color: #c00;
    font-weight: 700;
}
.form-field-label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    font-family: "Be Vietnam Pro", sans-serif;
}

.toolkit-form-error {
    display: none;
    padding: 10px 12px;
    margin-bottom: 12px;
    background: #fff3f3;
    border: 1px solid #dc3545;
    border-radius: 6px;
    color: #721c24;
    font-size: 13px;
    line-height: 1.4;
}

.toolkit-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.toolkit-field-wrap {
    margin-bottom: 4px;
}

.toolkit-field-error {
    display: none;
    font-size: 12px;
    color: #dc3545;
    margin-top: 4px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.toolkit-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-family: "Be Vietnam Pro", sans-serif;
    color: #25374B;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.toolkit-input:focus {
    border-color: #038DB5;
    box-shadow: 0 0 0 3px rgba(3, 141, 181, 0.15);
}

.toolkit-success-message {
    text-align: center;
    padding: 24px 0;
}
.toolkit-success-icon {
    font-size: 48px;
    color: #28a745;
    margin-bottom: 12px;
}
.toolkit-success-title {
    font-size: 20px;
    font-weight: 600;
    color: #25374B;
    margin: 0 0 8px 0;
    font-family: "Be Vietnam Pro", sans-serif;
}
.toolkit-success-text {
    font-size: 15px;
    color: #555;
    margin: 0;
    font-family: "Be Vietnam Pro", sans-serif;
}

.toolkit-success-ok-btn {
    margin-top: 20px;
    padding: 10px 28px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: var(--dark-blue, #25374B);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.toolkit-success-ok-btn:hover {
    background: #1a2a3a;
}

.toolkit-submit-btn {
    border: 1px solid #038DB5;
    background: #038DB5;
    color: #FFF;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Be Vietnam Pro", sans-serif;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.toolkit-submit-btn:hover {
    background: #25374B;
    border-color: #25374B;
}

.toolkit-submit-btn:disabled,
.toolkit-input:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.toolkit-submit-btn .spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
    vertical-align: middle;
}

/* Clients Section */
.client-logo-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    padding-left: 50px;
    padding-right: 50px;
    box-sizing: border-box;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    color: #FFF;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    z-index: 10;
    background: #038DB5;
    cursor: pointer;
}

.carousel-nav-btn.carousel-prev {
    left: 8px;
}

.carousel-nav-btn.carousel-next {
    right: 8px;
}

.carousel-nav-btn:hover {
    background: #25374B;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-btn i {
    font-size: 18px;
}

.client-logo-carousel {
    flex: 1;
    display: flex;
    width: 100%;
    min-width: 0;
    gap: 20px;
    transform: translateX(0);
    padding: 0;
}

.client-logo-slide {
    flex: 0 0 auto;
    width: calc(20% - 16px);
    min-width: 150px;
}

/* 1024px–320px: hide arrows, show bullet navigation */
.client-logo-carousel-bullets {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding-bottom: 8px;
    flex-wrap: wrap;
}

.client-logo-carousel-bullets .client-logo-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(3, 141, 181, 0.3);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
}

.client-logo-carousel-bullets .client-logo-bullet:hover {
    background: rgba(3, 141, 181, 0.6);
}

.client-logo-carousel-bullets .client-logo-bullet.active {
    background: #038DB5;
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .client-logo-carousel-wrapper .carousel-nav-btn {
        display: none !important;
    }
    .client-logo-carousel-wrapper {
        padding-left: 0;
        padding-right: 0;
        flex-wrap: wrap;
    }
    .client-logo-carousel-bullets {
        display: flex;
        width: 100%;
        padding-top: 100px;
    }
}

@media (min-width: 1025px) {
    .client-logo-carousel-wrapper .carousel-nav-btn {
        display: flex;
    }
}

@media (max-width: 767px) {
    .carousel-nav-btn {
        width: 32px;
        height: 32px;
    }
    .carousel-nav-btn.carousel-prev {
        left: 4px;
    }
    .carousel-nav-btn.carousel-next {
        right: 4px;
    }
    .carousel-nav-btn:hover {
        transform: translateY(-50%) scale(1.05);
    }
    .carousel-nav-btn i {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .carousel-nav-btn {
        width: 30px;
        height: 30px;
    }
    .carousel-nav-btn.carousel-prev {
        left: 2px;
    }
    .carousel-nav-btn.carousel-next {
        right: 2px;
    }
    .carousel-nav-btn i {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .client-logo-slide {
        width: calc(33.333% - 14px);
    }
}

@media (max-width: 767px) {
    .client-logo-slide {
        width: calc(50% - 10px);
    }
}

.client-logo {
    transition: all 0.3s;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.client-logo:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ============================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================ */

/* Contact Hero Banner */
.contact-hero-banner {
    position: relative;
    height: 300px;
    overflow: hidden;
}

@media (max-width: 575px) {
    .contact-hero-banner {
        height: 280px;
    }
}

@media (min-width: 576px) {
    .contact-hero-banner {
        height: 350px;
    }
}

@media (min-width: 768px) {
    .contact-hero-banner {
        height: 400px;
    }
}

@media (min-width: 992px) {
    .contact-hero-banner {
        height: 450px;
    }
}

@media (min-width: 1200px) {
    .contact-hero-banner {
        height: 400px;
    }
}

.contact-hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.contact-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* transform: scaleY(-1); */
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    mix-blend-mode: multiply;
    background-image: linear-gradient(90deg, rgba(3, 141, 181, 0.4) 0%, rgba(3, 141, 181, 0.4) 100%), linear-gradient(90deg, rgba(37, 55, 75, 0.5) 0%, rgba(37, 55, 75, 0.5) 100%);
}

.contact-hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.contact-hero-title {
    color: #FFF;
    text-align: center;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    padding: 0 16px;
}

@media (min-width: 576px) {
    .contact-hero-title {
        font-size: 30px;
    }
}

@media (min-width: 768px) {
    .contact-hero-title {
        font-size: 40px;
        padding: 0 24px;
    }
}

@media (min-width: 992px) {
    .contact-hero-title {
        font-size: 52px;
        padding: 0 32px;
    }
}

@media (min-width: 1200px) {
    .contact-hero-title {
        font-size: 58px;
    }
}

/* Service Hero Banner - Using Contact Hero Banner Style */
.service-hero-banner {
    position: relative;
    height: 300px;
    overflow: hidden;
}

@media (max-width: 575px) {
    .service-hero-banner {
        height: 280px;
    }
}

@media (min-width: 576px) {
    .service-hero-banner {
        height: 350px;
    }
}

@media (min-width: 768px) {
    .service-hero-banner {
        height: 400px;
    }
}

@media (min-width: 992px) {
    .service-hero-banner {
        height: 450px;
    }
}

@media (min-width: 1200px) {
    .service-hero-banner {
        height: 500px;
    }
}

.service-hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

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

.service-hero-overlay {
    position: absolute;
    inset: 0;
    mix-blend-mode: multiply;
    background-image: linear-gradient(90deg, rgba(3, 141, 181, 0.4) 0%, rgba(3, 141, 181, 0.4) 100%), linear-gradient(90deg, rgba(37, 55, 75, 0.5) 0%, rgba(37, 55, 75, 0.5) 100%);
}

.service-hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.service-hero-title {
    color: #FFF;
    text-align: center;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    padding: 0 16px;
}

@media (min-width: 576px) {
    .service-hero-title {
        font-size: 30px;
    }
}

@media (min-width: 768px) {
    .service-hero-title {
        font-size: 40px;
        padding: 0 24px;
    }
}

@media (min-width: 992px) {
    .service-hero-title {
        font-size: 52px;
        padding: 0 32px;
    }
}

@media (min-width: 1200px) {
    .service-hero-title {
        font-size: 58px;
    }
}
.program-comparison-section {
    padding: 64px 0;
    background: #FFFFFF;
}

.program-comparison-title {
    color: #25374B;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .program-comparison-title {
        font-size: 32px;
    }
}

@media (min-width: 992px) {
    .program-comparison-title {
        font-size: 38px;
    }
}

.program-card {
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    background: #FFFFFF;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.program-card-body {
    padding: 24px 24px 0 24px;
}

.program-card-heading {
    margin: 0 0 4px 0;
    color: #25374B;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 16px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .program-card-heading {
        font-size: 18px;
    }
}

.program-card-subheading {
    margin: 0 0 16px 0;
    color: #038DB5;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 12px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .program-card-subheading {
        font-size: 11px;
    }
}

.program-card-label {
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #25374B;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .program-card-label {
        font-size: 12px;
    }
}

.program-card-text {
    margin: 0 0 0 0;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #555;
}

@media (min-width: 768px) {
    .program-card-text {
        font-size: 13px;
    }
}

.program-card-highlight {
    margin-top: 24px;
    background: #038DB5;
    color: #FFFFFF;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.program-card-highlight-1 {
    display: block !important;
}
.program-card-highlight-number-container-1 {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}
.program-card-highlight-number {
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.program-card-highlight-text {
    display: flex;
    flex-direction: column;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.program-card-highlight-text span:first-child {
    text-transform: lowercase;
}

.program-card-footer {
    padding: 20px 24px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.program-card-section-title {
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #25374B;
    margin-bottom: 4px;
}

.program-card-section-text {
    margin: 0;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .service-hero-title {
        font-size: 64px;
    }
}

/* Case Study Grid Section */
.case-study-grid-section {
    padding: 40px 0;
}

@media (min-width: 768px) {
    .case-study-grid-section {
        padding: 60px 0;
    }
}

@media (min-width: 992px) {
    .case-study-grid-section {
        padding: 80px 0;
    }
}

.case-study-card {
    position: relative;
    display: block;
    border-radius: 10px;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.15), 0px 0px 0px 0px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    height: 350px;
    transition: transform 0.3s ease;
}

@media (min-width: 576px) {
    .case-study-card {
        height: 380px;
    }
}

@media (min-width: 768px) {
    .case-study-card {
        height: 420px;
    }
}

@media (min-width: 992px) {
    .case-study-card {
        height: 447px;
    }
}

.case-study-card:hover {
    transform: scale(1.02);
}

.case-study-card-image-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.case-study-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-study-card:hover .case-study-card-image {
    transform: scale(1.05);
}

.case-study-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    border-radius: 10px;
    margin: 16px;
    transition: all 0.3s ease;
    z-index: 2;
}

@media (min-width: 576px) {
    .case-study-card-overlay {
        padding: 15px;
        margin: 15px;
    }
}

@media (min-width: 768px) {
    .case-study-card-overlay {
        padding: 20px;
        margin: 20px;
    }
}

@media (min-width: 992px) {
    .case-study-card-overlay {
        padding: 20px;
        margin: 20px;
    }
}

.case-study-card-overlay-navy {
    background-color: rgba(35, 60, 81, 0.85);
    /* mix-blend-mode: multiply; */
}

.case-study-card:hover .case-study-card-overlay-navy {
    background-color: rgba(3, 141, 181, 0.75);
    /* mix-blend-mode: normal; */
}

.case-study-card-title {
    color: #FFF;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0;
    transition: margin-bottom 0.3s ease;
}

@media (min-width: 576px) {
    .case-study-card-title {
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .case-study-card-title {
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .case-study-card-title {
        font-size: 20px;
    }
}

.case-study-card-hover-content {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 0;
}

.case-study-card:hover .case-study-card-hover-content {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    margin-top: 16px;
}

@media (min-width: 768px) {
    .case-study-card:hover .case-study-card-hover-content {
        margin-top: 24px;
    }
}

.case-study-card-subtitle {
    color: #FFF;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 12px;
}

@media (min-width: 576px) {
    .case-study-card-subtitle {
        font-size: 14px;
        margin-bottom: 14px;
    }
}

@media (min-width: 768px) {
    .case-study-card-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

@media (min-width: 992px) {
    .case-study-card-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }
}

.case-study-card-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    color: #FFF;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.6;
    text-transform: capitalize;
}

@media (min-width: 768px) {
    .case-study-card-list {
        margin: 24px 0;
        font-size: 16px;
    }
}

.case-study-card-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.case-study-list-bullet {
    margin-right: 8px;
    flex-shrink: 0;
    color: #FFF;
}

.case-study-card-btn {
    border: 1px solid #FFF;
    background: transparent;
    color: #FFF;
    padding: 8px 16px;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 10.27px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
    text-decoration: none;
}

@media (min-width: 768px) {
    .case-study-card-btn {
        padding: 8px 20px;
        margin-top: 24px;
    }
}

.case-study-card:hover .case-study-card-btn,
.case-study-card-btn:hover {
    background-color: #FFF;
    color: #038DB5;
    text-decoration: none;
}

.case-study-card-btn span {
    display: inline-block;
}

/* Case Study CTA Section */
.case-study-cta-section {
    position: relative;
    overflow: hidden;
    background-color: #2C4A5F;
}

.case-study-cta-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 50%;
}

.case-study-cta-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(44, 74, 95, 0.95);
}

.case-study-cta-content {
    position: relative;
    padding: 80px 0;
    text-align: center;
    color: #FFF;
    z-index: 2;
}

@media (min-width: 768px) {
    .case-study-cta-content {
        padding: 100px 0;
    }
}

.case-study-cta-title {
    color: #FFF;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .case-study-cta-title {
        font-size: 36px;
        margin-bottom: 11px;
    }
}

@media (min-width: 992px) {
    .case-study-cta-title {
        font-size: 42px;
    }
}

.case-study-cta-tagline {
    color: #FFF;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .case-study-cta-tagline {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

.case-study-cta-buttons {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    
}

@media (min-width: 768px) {
    .case-study-cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 32px;
    }
}

.case-study-cta-link {
    color: #FFF;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.case-study-cta-link:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.case-study-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #FFF;
    color: #FFF;
    padding: 12px 24px;
    border-radius: 4px;
    background: transparent;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.case-study-cta-btn:hover {
    background-color: #FFF;
    color: #038DB5;
    text-decoration: none;
}

.case-study-cta-btn i {
    font-size: 18px;
}

.case-study-cta-btn span {
    font-weight: 500;
}

/* Case Study Detail Page Styles */
.case-study-details-section {
    background-color: #E8F0F5;
    padding: 40px 0;
}

@media (max-width: 767px) {
    .case-study-details-section,
    .case-study-case-section,
    .case-study-outcome-section,
    .case-study-measurement-section,
    .case-study-other-section {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

@media (max-width: 768px) {
    .case-study-details-section .row > [class*="col-"],
    .case-study-outcome-section .row > [class*="col-"],
    .case-study-measurement-section .row > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .case-study-details-section {
        padding: 60px 0;
    }
}

@media (min-width: 992px) {
    .case-study-details-section {
        padding: 80px 0;
    }
}

.case-study-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .case-study-detail-item {
        gap: 20px;
        margin-bottom: 0;
    }
}

.case-study-detail-icon {
    width: 45px;
    height: 45px;
    background-color: #038DB5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #FFF;
    font-size: 20px;
}

@media (min-width: 768px) {
    .case-study-detail-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

.case-study-detail-content {
    flex: 1;
}

.case-study-detail-label {
    color: #25374B;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.case-study-detail-text {
    color: #25374B;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .case-study-detail-text {
        font-size: 16px;
    }
}

.case-study-case-section {
    padding: 40px 0;
}

@media (min-width: 768px) {
    .case-study-case-section {
        padding: 60px 0;
    }
}

@media (min-width: 992px) {
    .case-study-case-section {
        padding: 80px 0;
    }
}

.case-study-section-title {
    color: #25374B;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
}

@media (min-width: 576px) {
    .case-study-section-title {
        font-size: 32px;
    }
}

@media (min-width: 768px) {
    .case-study-section-title {
        font-size: 40px;
        margin-bottom: 15px;
    }
}

@media (min-width: 992px) {
    .case-study-section-title {
        font-size: 40px;
        margin-bottom: 15px;
    }
}

.case-study-case-content {
    color: #25374B;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .case-study-case-content {
        font-size: 18px;
    }
}

.case-study-case-content p {
    margin-bottom: 24px;
}

.case-study-case-content p:last-child {
    margin-bottom: 0;
}

.case-study-quote {
    font-style: italic;
    font-size: 18px;
    font-weight: 300;
    color: #038DB5;
    margin: 24px 0 !important;
    padding-left: 16px;
    border-left: 3px solid #038DB5;
}

@media (min-width: 768px) {
    .case-study-quote {
        font-size: 20px;
        padding-left: 24px;
        border-left: 4px solid #038DB5;
        margin: 32px 0 !important;
    }
}

@media (min-width: 992px) {
    .case-study-quote {
        font-size: 24px;
        padding-left: 32px;
    }
}

.case-study-outcome-section {
    background-color: #F9FAFB;
    padding: 40px 0;
}

@media (min-width: 768px) {
    .case-study-outcome-section {
        padding: 60px 0;
    }
}

@media (min-width: 992px) {
    .case-study-outcome-section {
        padding: 80px 0;
    }
}

.case-study-outcome-box {
    background-color: #FFF;
    border-radius: 10px;
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .case-study-outcome-box {
        padding: 36px 28px;
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    .case-study-outcome-box {
        padding: 40px 32px;
    }
}

.case-study-outcome-icon {
    width: 60px;
    height: 60px;
    background-color: #038DB5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 28px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .case-study-outcome-icon {
        width: 65px;
        height: 65px;
        font-size: 30px;
        margin-bottom: 22px;
    }
}

@media (min-width: 992px) {
    .case-study-outcome-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
        margin-bottom: 24px;
    }
}

.case-study-outcome-text {
    color: #25374B;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .case-study-outcome-text {
        font-size: 17px;
    }
}

@media (min-width: 992px) {
    .case-study-outcome-text {
        font-size: 18px;
    }
}

.case-study-measurement-section {
    padding: 40px 0;
}

@media (min-width: 768px) {
    .case-study-measurement-section {
        padding: 60px 0;
    }
}

@media (min-width: 992px) {
    .case-study-measurement-section {
        padding: 80px 0;
    }
}

.case-study-measurement-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background-color: #F9FAFB;
    border-radius: 10px;
    height: 100%;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .case-study-measurement-box {
        gap: 20px;
        padding: 28px;
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    .case-study-measurement-box {
        gap: 24px;
        padding: 32px;
    }
}

.case-study-measurement-icon {
    width: 50px;
    height: 50px;
    background-color: #038DB5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 24px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .case-study-measurement-icon {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}

@media (min-width: 992px) {
    .case-study-measurement-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

.case-study-measurement-content {
    flex: 1;
}

.case-study-measurement-label {
    color: #25374B;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .case-study-measurement-label {
        font-size: 20px;
        margin-bottom: 12px;
    }
}

@media (min-width: 992px) {
    .case-study-measurement-label {
        font-size: 22px;
    }
}

.case-study-measurement-text {
    color: #25374B;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .case-study-measurement-text {
        font-size: 15px;
    }
}

@media (min-width: 992px) {
    .case-study-measurement-text {
        font-size: 16px;
    }
}

.case-study-other-section {
    padding: 40px 0;
    background-color: #FFF;
}

@media (min-width: 768px) {
    .case-study-other-section {
        padding: 60px 0;
    }
}

@media (min-width: 992px) {
    .case-study-other-section {
        padding: 80px 0;
    }
}

.case-study-other-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .case-study-other-header {
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 768px) {
    .case-study-other-header {
        margin-bottom: 40px;
    }
}

@media (min-width: 992px) {
    .case-study-other-header {
        margin-bottom: 48px;
    }
}

.case-study-other-title {
    color: #25374B;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

@media (min-width: 576px) {
    .case-study-other-title {
        font-size: 32px;
    }
}

@media (min-width: 768px) {
    .case-study-other-title {
        font-size: 40px;
    }
}

@media (min-width: 992px) {
    .case-study-other-title {
        font-size: 40px;
    }
}

.case-study-carousel-full-page-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #038DB5;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

.case-study-carousel-full-page-link:hover {
    color: #25374B;
}

.case-study-carousel-full-page-link:hover i {
    transform: translateX(4px);
}

.case-study-carousel-full-page-link i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.case-study-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    width: 100%;
}

@media (min-width: 768px) {
    .case-study-other-section .case-study-carousel-wrapper {
        padding-left: 54px;
        padding-right: 54px;
        gap: 0;
        position: relative;
        overflow: visible;
    }
    .case-study-other-section .case-study-carousel-prev {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        z-index: 20;
    }
    .case-study-other-section .case-study-carousel-next {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        z-index: 20;
    }
    .case-study-other-section .case-study-carousel-container {
        flex: 1;
        min-width: 0;
    }
}

@media (min-width: 992px) {
    .case-study-other-section .case-study-carousel-wrapper {
        padding-left: 60px;
        padding-right: 60px;
    }
}

.case-study-carousel-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-width: 0;
}

.case-study-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}   

.case-study-carousel-item {
    flex: 0 0 calc(33.333% - 18px);
    min-width: 0;
}

/* 1024px and below: show 2 items per view */
@media (max-width: 1024px) {
    .case-study-other-section .case-study-carousel-item {
        flex: 0 0 calc(50% - 16px);
    }
}

/* 768px to 320px: arrows at top, 100% width, center align, no overlap with back-to-top */
@media (max-width: 768px) {
    .case-study-other-section {
        padding-bottom: 80px;
    }
    .case-study-other-section .case-study-carousel-wrapper {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        position: relative;
        padding-top: 50px;
        align-items: center;
        justify-content: center;
    }
    .case-study-other-section .case-study-carousel-btn {
        position: absolute;
        top: 0;
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        z-index: 20;
    }
    .case-study-other-section .case-study-carousel-prev {
        left: calc(50% - 48px);
        right: auto;
    }
    .case-study-other-section .case-study-carousel-next {
        left: calc(50% + 8px);
        right: auto;
    }
    .case-study-other-section .case-study-carousel-container {
        min-width: 0;
        width: 100%;
        max-width: 100%;
        order: 1;
    }
    .case-study-other-section .case-study-carousel {
        width: 100%;
        max-width: 100%;
        gap: 0;
    }
    .case-study-other-section .case-study-carousel-item {
        flex: 0 0 100%;
        min-width: 100%;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .case-study-other-section .case-study-card {
        width: 100%;
        max-width: 100%;
    }
}

.case-study-carousel-btn {
    border: none;
    background: #038DB5;
    color: #FFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
    font-size: 16px;
}

@media (min-width: 768px) {
    .case-study-carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (min-width: 992px) {
    .case-study-carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.case-study-carousel-btn:hover {
    background: #25374B;
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .case-study-other-section .case-study-carousel-prev:hover,
    .case-study-other-section .case-study-carousel-next:hover {
        transform: translateY(-50%) scale(1.1);
    }
}

.case-study-carousel-btn i {
    font-size: 20px;
}

.case-study-detail-cta-section {
    position: relative;
    overflow: hidden;
    background-color: #2C4A5F;
}

.case-study-detail-cta-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.case-study-detail-cta-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(44, 74, 95, 0.95);
}

.case-study-detail-cta-content {
    position: relative;
    padding: 80px 0;
    text-align: center;
    color: #FFF;
    z-index: 2;
}

@media (min-width: 768px) {
    .case-study-detail-cta-content {
        padding: 100px 0;
    }
}

.case-study-detail-cta-text {
    color: #FFF;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .case-study-detail-cta-text {
        font-size: 32px;
        margin-bottom: 20px;
    }
}

.case-study-detail-cta-subtitle {
    color: #FFF;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .case-study-detail-cta-subtitle {
        font-size: 18px;
        margin-bottom: 48px;
    }
}

.case-study-detail-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #FFF;
    color: #FFF;
    padding: 14px 32px;
    border-radius: 4px;
    background: #038DB5;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.case-study-detail-cta-btn:hover {
    background-color: #FFF;
    color: #038DB5;
    text-decoration: none;
}

.case-study-detail-cta-btn i {
    font-size: 18px;
}

.case-study-detail-cta-btn span {
    font-weight: 500;
}

/* Coaching Modules Section */
.coaching-modules-section {
    padding: 64px 0;
    background: #F9FAFB;
}

.coaching-modules-header {
    margin-bottom: 48px;
}

.diagonal-line-icon-small {
    width: 14px;
    height: 16px;
    flex-shrink: 0;
}

.diagonal-line-icon-small svg {
    width: 100%;
    height: 100%;
    display: block;
}

.coaching-modules-label {
    margin: 0;
    color: #25374B;
    font-family: "Be Vietnam Pro";
    font-size: 24px;
    font-style: normal;
    font-weight: 200;
    line-height: 28px;
    text-transform: capitalize;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .coaching-modules-label {
        font-size: 28px;
        line-height: 30px;
    }
}

@media (min-width: 992px) {
    .coaching-modules-label {
        font-size: 32px;
    }
}

.coaching-modules-title {
    margin: 0;
    color: #25374B;
    font-family: "Be Vietnam Pro";
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    text-transform: capitalize;
    margin-top: 30px;
    font-size: 28px;
}

@media (min-width: 768px) {
    .coaching-modules-title {
        font-size: 32px;
        line-height: 30px;
    }
}

@media (min-width: 992px) {
    .coaching-modules-title {
        font-size: 36px;
    }
}

.coaching-modules-description {
    color: #494949;
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    font-family: "Be Vietnam Pro";
    font-weight: 200;
    line-height: 26px;
    word-wrap: break-word;
}

@media (min-width: 768px) {
    .coaching-modules-description {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (min-width: 992px) {
    .coaching-modules-description {
        font-size: 20px;
        line-height: 30px;
    }
}

.coaching-modules-grid {
    margin: 0 auto;
}

.coaching-module-card {
    position: relative;
    overflow: hidden;
    min-height: 275px;
    height: 100%;
    
}
.coaching-modules-grid .row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.coaching-modules-grid .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.coaching-modules-grid .row > [class*="col-"] > .row {
    display: flex;
    flex-direction: row;
    flex: 1;
    align-items: stretch;
}

.coaching-modules-grid .row > [class*="col-"] > .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.coaching-modules-grid .row > [class*="col-"] > .row > [class*="col-"] > .coaching-module-card {
    flex: 1;
    height: 100%;
}

.coaching-modules-grid .row > [class*="col-"] > .coaching-module-card {
    flex: 1;
    height: 100%;
}
.coaching-module-card-large {
    height: 100%;
    flex: 1;
}

@media (max-width: 991px) {
    .coaching-module-card-large {
        height: 275px;
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .coaching-modules-grid .row {
        margin-left: 0;
        margin-right: 0;
    }

    .coaching-modules-grid .row > [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }

    .coaching-modules-grid .row > [class*="col-"] > .row {
        margin-left: 0;
        margin-right: 0;
    }

    .coaching-modules-grid .row > [class*="col-"] > .row > [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }
}

.coaching-module-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

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

.coaching-module-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(358deg, rgb(3 141 181 / 16%) 0%, rgb(3 141 181 / 25%) 100%), rgb(5 66 102 / 73%);
}

.coaching-module-content {
    position: relative;
    z-index: 10;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    color: #FFF;
}

.coaching-module-title {
    color: #FFF;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 12px;
    margin-top: 0;
}

.coaching-module-text {
    color: #FFF;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 200;
    line-height: 30px;
    margin-bottom: 24px;
    margin-top: 0;
}

@media (min-width: 320px) and (max-width: 1024px) {
    .coaching-module-title {
        font-size: 20px;
    }
    .coaching-module-text {
        font-size: 15px;
    }
}

.coaching-module-btn {
    border: 1px solid #FFF;
    color: #FFF;
    padding: 16px 24px;
    background: transparent;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
    border-radius: 4px;
    text-decoration: none;
}

.coaching-module-btn:hover {
    background: #FFF;
    color: #038DB5;
}

/* Contact Form Section */
.contact-form-section {
    padding: 64px 0;
    background: #F9FAFB;
}

.contact-form-section .row {
    display: flex;
    align-items: stretch;
}

.contact-form-section .row > [class*="col-"] {
    display: flex;
}

.contact-form-left {
    position: relative;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

@media (min-width: 992px) {
    .contact-form-left {
        min-height: 700px;
        border-radius: 20px 0 0 20px;
    }
}

@media (max-width: 991px) {
    .contact-form-left {
        border-radius: 20px 20px 0 0;
    }
}

.contact-form-left-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.contact-form-left-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(3, 141, 181, 0.80) 0%, rgba(3, 141, 181, 0.80) 100%);
}

.contact-form-left-content {
    position: relative;
    z-index: 10;
    padding: 48px;
    color: #FFF;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-form-left-title {
    color: #FFF;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 16px;
    padding-top: 50px;
}

@media (min-width: 768px) {
    .contact-form-left-title {
        font-size: 32px;
    }
}

@media (min-width: 992px) {
    .contact-form-left-title {
        font-size: 40px;
    }
}

.contact-form-left-text {
    color: #FFF;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    max-width: 448px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .contact-form-left-text {
        font-size: 18px;
        line-height: 28px;
    }
}

.contact-form-right {
    background: #FFF;
    box-shadow: 10px 10px 4px -3px rgba(0, 0, 0, 0.05);
    padding: 32px;
    border-radius: 0 20px 20px 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

@media (min-width: 992px) {
    .contact-form-right {
        min-height: 700px;
    }
}

@media (min-width: 768px) {
    .contact-form-right {
        padding: 48px;
    }
}

@media (min-width: 992px) {
    .contact-form-right {
        border-radius: 0 20px 20px 0;
    }
}

@media (max-width: 991px) {
    .contact-form-right {
        border-radius: 0 0 20px 20px;
    }
}

.contact-form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.diagonal-line-icon {
    width: 22.984px;
    height: 24px;
    flex-shrink: 0;
}

.diagonal-line-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-form-right-title {
    color: #25374B;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    margin: 0;
}

@media (min-width: 768px) {
    .contact-form-right-title {
        font-size: 24px;
    }
}

@media (min-width: 992px) {
    .contact-form-right-title {
        font-size: 28px;
    }
}

.contact-form-error {
    padding: 12px 16px;
    background: #fff3f3;
    border: 1px solid #dc3545;
    border-radius: 6px;
    color: #721c24;
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form-field {
    width: 100%;
}

.contact-form-new input,
.contact-form-new textarea {
    width: 100%;
    padding: 12px 16px;
    background: #F3F3F3;
    border: none;
    outline: none;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 16px;
    color: #25374B;
    transition: all 0.3s;
}

.contact-form-new input:focus,
.contact-form-new textarea:focus {
    outline: 2px solid #038DB5;
    outline-offset: 2px;
}

.contact-form-new textarea {
    resize: none;
}

.contact-form-submit-btn {
    border: 1px solid #038DB5;
    color: #038DB5;
    padding: 16px 24px;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.contact-form-submit-btn:hover {
    background: #038DB5;
    color: #FFF;
}

/* Call to Action Section */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
}

@media (min-width: 992px) {
    .cta-section {
        padding: 100px 0;
    }
}

.cta-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

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

.cta-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(3, 141, 181, 0.35) 0%, rgba(3, 141, 181, 0.35) 100%), linear-gradient(90deg, rgba(37, 55, 75, 0.65) 0%, rgba(37, 55, 75, 0.65) 100%);
}

.cta-content {
    position: relative;
    padding: 40px 0;
    text-align: center;
    color: #FFF;
    z-index: 2;
}

@media (min-width: 768px) {
    .cta-content {
        padding: 60px 0;
    }
}

@media (min-width: 992px) {
    .cta-content {
        padding: 80px 0;
    }
}

@media (min-width: 1200px) {
    .cta-content {
        padding: 100px 0;
    }
}

.cta-title {
    color: #FFF;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
}

@media (min-width: 576px) {
    .cta-title {
        font-size: 24px;
    }
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 30px;
        margin-bottom: 20px;
        padding: 0 24px;
    }
}

@media (min-width: 992px) {
    .cta-title {
        font-size: 34px;
        margin-bottom: 24px;
    }
}

@media (min-width: 1200px) {
    .cta-title {
        font-size: 38px;
    }
}

.cta-subtitle {
    color: #FFF;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 20px;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
}

@media (min-width: 576px) {
    .cta-subtitle {
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .cta-subtitle {
        font-size: 22px;
        margin-bottom: 28px;
        padding: 0 24px;
    }
}

@media (min-width: 992px) {
    .cta-subtitle {
        font-size: 26px;
        margin-bottom: 32px;
    }
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .cta-text {
        font-size: 16px;
    margin-bottom: 24px;
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #FFF;
    color: #FFF;
    padding: 12px 24px;
    border-radius: 8px;
    background: transparent;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #FFF;
    color: #038DB5;
}

.cta-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.cta-button-text {
    font-weight: 500;
}

/* Clear Thinking CTA Section */
.clear-thinking-cta-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background-color: #25374B;
}

@media (min-width: 768px) {
    .clear-thinking-cta-section {
        padding: 100px 0;
    }
}

@media (min-width: 992px) {
    .clear-thinking-cta-section {
        padding: 60px 0;
    }
}

.clear-thinking-cta-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.clear-thinking-cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clear-thinking-cta-overlay {
    position: absolute;
    inset: 0;
    background: #038DB559;
}

.clear-thinking-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFF;
}

.clear-thinking-cta-title {
    color: #FFF;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .clear-thinking-cta-title {
        font-size: 40px;
        margin-bottom: 20px;
    }
}

@media (min-width: 992px) {
    .clear-thinking-cta-title {
        font-size: 48px;
        margin-bottom: 24px;
    }
}

.clear-thinking-cta-subtitle {
    color: #FFF;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .clear-thinking-cta-subtitle {
        font-size: 20px;
        margin-bottom: 16px;
    }
}

@media (min-width: 992px) {
    .clear-thinking-cta-subtitle {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

.clear-thinking-cta-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .clear-thinking-cta-tagline {
        font-size: 18px;
        margin-bottom: 40px;
    }
}

@media (min-width: 992px) {
    .clear-thinking-cta-tagline {
        font-size: 20px;
        margin-bottom: 48px;
    }
}

.clear-thinking-cta-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

@media (min-width: 768px) {
    .clear-thinking-cta-btn-wrapper {
        margin-top: 40px;
    }
}

.clear-thinking-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background-color: #038DB5;
    color: #FFF;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid #FFF;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.clear-thinking-cta-btn:hover {
    background-color: #027a9a;
    border-color: #FFF;
    color: #FFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.clear-thinking-cta-btn i {
    font-size: 18px;
}

/* Bottom CTA Section (Executive Style) */
.executive-bottom-cta-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

@media (min-width: 768px) {
    .executive-bottom-cta-section {
        padding: 60px 0;
    }
}

.executive-bottom-cta-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.executive-bottom-cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.executive-bottom-cta-overlay {
    position: absolute;
    inset: 0;
}

.executive-bottom-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFF;
}

.executive-bottom-cta-title {
    color: #FFF;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .executive-bottom-cta-title {
        font-size: 40px;
        margin-bottom: 20px;
    }
}

.executive-bottom-cta-subtitle {
    color: #FFF;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .executive-bottom-cta-subtitle {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

.executive-bottom-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.executive-bottom-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background-color: transparent;
    color: #FFF;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #FFF;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.executive-bottom-cta-btn:hover {
    background-color: #FFF;
    color: #038DB5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.executive-bottom-cta-btn .cta-icon {
    width: 20px;
    height: 20px;
}

/* This Coaching Helps You Section (shared design - executive, leadership, life, business) */
.coaching-helps-section {
    padding: 60px 0;
    background-color: #F9FAFB;
}

@media (min-width: 768px) {
    .coaching-helps-section {
        padding: 80px 0;
    }
}

@media (min-width: 992px) {
    .coaching-helps-section {
        padding: 100px 0;
    }
}

.coaching-helps-section h2 {
    color: #25374B;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 48px;
    text-align: center;
}

@media (min-width: 768px) {
    .coaching-helps-section h2 {
        font-size: 40px;
        margin-bottom: 60px;
    }
}

.coaching-helps-item {
    text-align: center;
    padding: 32px 24px;
    height: 100%;
    background-color: #FFF;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coaching-helps-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
    .coaching-helps-item {
        padding: 40px 32px;
    }
}

.coaching-helps-icon {
    width: 80px;
    height: 80px;
    background-color: #038DB5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #FFF;
    font-size: 36px;
}

.coaching-helps-title {
    color: #25374B;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 250;
    line-height: 1.5;
    margin: 0;
}

@media (min-width: 768px) {
    .coaching-helps-title {
        font-size: 20px;
    }
}

/* Coaching Testimonials (shared layout) */
.coaching-testimonial-wrapper {
    position: relative;
}

/* Nav row: bullet dots + play/pause + View all */
.coaching-testimonial-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.coaching-testimonial-nav [class*="-testimonial-dots"] {
    margin-top: 0;
}

/* Mobile: ensure bullet nav is tappable and above content */
@media (max-width: 767px) {
    .coaching-testimonial-nav {
        position: relative;
        z-index: 2;
    }
    .coaching-testimonial-nav [class*="-testimonial-dots"] .dot {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
}

.coaching-testimonial-nav .testimonial-pause-play-btn {
    position: static;
    top: auto;
    right: auto;
    left: auto;
}

.coaching-testimonial-slider {
    position: relative;
}

.coaching-testimonial-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    z-index: 0;
}

.coaching-testimonial-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    z-index: 1;
}

.coaching-testimonial-slide .testimonial-page-card {
    background: #FFF;
    border-left: 0;
    box-shadow: none;
    padding: 0;
}

.coaching-testimonial-slide .testimonial-page-image {
    width: 160px;
    height: 160px;
    border: 3px solid #038DB5;
    padding: 0;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.coaching-testimonial-slide .testimonial-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.coaching-testimonial-slide .testimonial-page-info {
    text-align: left;
}

.coaching-testimonial-slide .testimonial-quote-open {
    position: static;
    font-size: 40px;
    opacity: 1;
    color: #038DB5;
    margin-right: 12px;
    width: 46px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.coaching-testimonial-slide .testimonial-quote-open.quote-right {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    display: flex;
    justify-content: flex-end;
}

.coaching-testimonial-slide .testimonial-quote-open i {
    color: #038DB5;
    opacity: 1;
}

.coaching-testimonial-slide .testimonial-page-text {
    margin-top: 8px;
}

@media (max-width: 767px) {
    .coaching-testimonial-slide .testimonial-page-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 767px) {
    .clear-thinking-cta-section {
        padding: 60px 0;
    }

    .clear-thinking-cta-title {
        font-size: 28px;
    }

    .clear-thinking-cta-subtitle {
        font-size: 16px;
    }

    .clear-thinking-cta-tagline {
        font-size: 14px;
    }
}

/* Contact Section */
    .contact-section {
    padding: 0;
    background: rgba(3, 141, 181, 0.10);
}

.contact-section .container {
    padding: 0px;
    margin: 0px;
    min-width: 100% !important;
}

.contact-left {
    background: #E8F0F5;
    padding: 60px 40px;
    display: flex;
    align-items: center;
}

.contact-left-content {
    width: 100%;
    padding-left: 55px;
}

.contact-phone-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.contact-phone-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mobile View */
@media (max-width: 767px) {
    .contact-phone-icon {
        width: 60px;
        height: 60px;
    }
}

.contact-left .section-title {
    color: #25374B;
}

.contact-main-title {
    color: #25374B;
    font-family: "Be Vietnam Pro";
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    text-transform: uppercase;
}

/* Mobile View */
@media (max-width: 767px) {
    .contact-main-title {
        font-size: 25px;
        line-height: 35px;
    }
}

.contact-form-wrapper {
    position: relative;
 
    overflow: hidden;
    min-height: 500px;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/contact-form-back.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
    filter: blur(2px);
}

.contact-form-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(3, 141, 181, 0.35) 0%, rgba(3, 141, 181, 0.35) 100%), linear-gradient(0deg, rgba(37, 55, 75, 0.65) 0%, rgba(37, 55, 75, 0.65) 100%);
    z-index: 1;
}

.contact-form-inner {
    position: relative;
    z-index: 2;
    padding: 24px;
}

@media (min-width: 768px) {
    .contact-form-inner {
        padding: 40px;
    }
}

@media (min-width: 1024px) {
    .contact-form-inner {
        padding: 48px;
    }
}

.contact-form input,
.contact-form textarea {
    color: var(--white);
    padding: 12px 16px;
    border-radius: 0;
    width: 100%;
    margin-bottom: 16px;
    font-size: 16px;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.30);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #FFF;
    font-family: "Be Vietnam Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    text-transform: capitalize;
}

.contact-form .submit-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 16px;
    transition: all 0.3s;
    cursor: pointer;
    width: 115px;
    height: 40px;
    display: flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFF;
    text-align: center;
    font-family: "Be Vietnam Pro";
    font-style: normal;
    font-weight: 500;
}

.contact-form .submit-btn:hover {
    background: var(--white);
    color: var(--dark-blue);
}

.contact-form .form-mandatory-note,
.contact-form .form-field-label {
    color: var(--white);
    text-align: right;
}
p.form-mandatory-note {
    text-align: right;
}
.contact-form .form-field-label {
    margin-bottom: 6px;
}

.contact-form-field-wrap {
    margin-bottom: 16px;
}

.contact-form-field-wrap .field-error {
    display: none;
    margin-top: 6px;
    padding: 8px 12px;
    background: rgba(255, 243, 243, 0.95);
    border: 1px solid #dc3545;
    border-radius: 4px;
    color: #721c24;
    font-size: 13px;
    line-height: 1.4;
}

.contact-form-new .contact-form-field .field-error {
    display: none;
    margin-top: 6px;
    padding: 8px 12px;
    background: #fff3f3;
    border: 1px solid #dc3545;
    border-radius: 4px;
    color: #721c24;
    font-size: 13px;
    line-height: 1.4;
}

.contact-form-error-inline {
    padding: 12px 16px;
    margin-bottom: 16px;
    background: rgba(255, 243, 243, 0.95);
    border: 1px solid #dc3545;
    border-radius: 6px;
    color: #721c24;
    font-size: 14px;
    line-height: 1.4;
}

.contact-form .submit-btn:disabled,
.contact-form input:disabled,
.contact-form textarea:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-form .submit-btn .spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

/* Contact Success Popup */
.contact-success-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-success-popup.active {
    opacity: 1;
    visibility: visible;
}

.contact-success-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.contact-success-content {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.contact-success-icon {
    font-size: 48px;
    color: #28a745;
    margin-bottom: 16px;
}

.contact-success-popup.is-error .contact-success-icon {
    color: #dc3545;
}

.contact-success-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-blue, #25374B);
    margin-bottom: 12px;
}

.contact-success-message {
    font-size: 16px;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.5;
}

.contact-success-close-btn {
    padding: 10px 28px;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    background: var(--dark-blue, #25374B);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.contact-success-close-btn:hover {
    background: #1a2a3a;
}

.contact-icon {
    width: 90px;
    height: 95px;
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item i {
    font-size: 24px;
    color: var(--light-blue);
    margin-right: 15px;
}

/* ============================================
   RESOURCE PAGE SPECIFIC STYLES
   ============================================ */

/* Resource Page Styles */
.resource-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s;
}

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

.resource-icon {
    font-size: 48px;
    color: var(--light-blue);
    margin-bottom: 20px;
}

/* ============================================
   COMMON COMPONENTS - Used on All Pages
   ============================================ */

/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    
}

.diagonal-line {
    display: flex;
    align-items: center;
}

.diagonal-line img {
    width: 24px;
    height: 24px;
    display: block;
}

.section-title {
    color: #25374B;
    font-family: "Be Vietnam Pro";
    font-size: 32px;
    font-style: normal;
    font-weight: 200;
    line-height: 30px;
    /* text-transform: capitalize; */
    margin-bottom: 0;
}

.section-subtitle {
    color: #25374B;
    font-family: "Be Vietnam Pro";
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    text-transform: capitalize;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* Mobile View Updates */
@media (max-width: 767px) {
    .diagonal-line img {
        width: 16px;
        height: 16px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .section-subtitle {
        font-size: 22px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .about-text p {
        margin-bottom: 10px;
        line-height: 25px;
    }
    .contact-left-content {
        padding-left: 0px;
    }
}

/* ============================================
   FOOTER - Used on All Pages
   ============================================ */

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 40px 0 20px;
}

@media (min-width: 768px) {
    .footer {
        padding: 64px 0 20px;
    }
}

.footer h4 {
    color: #FFF;
    font-family: "Be Vietnam Pro";
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 16px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
}

.footer ul li a:hover {
    color: var(--light-blue);
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.8;
    
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 20px;
    margin-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-credit {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 8px;
}

.footer-credit p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.footer-credit a {
    color: var(--light-blue);
    text-decoration: none;
}

.footer-credit a:hover {
    text-decoration: underline;
}

.footer-bottom p a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom p a:hover {
    color: #FFF;
    text-decoration: underline;
}

/* ============================================
   LAYOUT UTILITIES - Used on All Pages
   ============================================ */

/* Max Width Container */
.max-width-container {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    overflow-x: hidden;
}

/* Mobile Container Fixes - Prevent Horizontal Overflow */
@media (max-width: 767px) {
    /* Ensure containers don't overflow */
    .container,
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Fix row margins to prevent overflow */
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Ensure columns have proper padding */
    [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Ensure no element exceeds viewport */
    section {
        max-width: 100%;
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Fix any elements that might overflow */
    .hero,
    .hero .container,
    .hero .row {
        max-width: 100%;
        overflow-x: hidden;
        height: 280px !important;
    }
    .testimonial-carousel-btn {
        width: 25px;
        height: 25px;
    }
    
    /* Ensure images don't cause overflow */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Fix carousels and sliders */
    .testimonial-carousel-container,
    .client-logo-carousel-wrapper {
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* Page Content */
.page-content {
    min-height: 60vh;
    padding: 60px 0;
}

/* Container Max Width for Large Screens */
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1330px;
       
    }
}
@media (min-width: 1280px) and (max-width: 1367px)
{
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        padding-left: 40px;
        padding-right: 40px;
       
    }
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1380px;
    }
}

@media (min-width: 2560px) {
    /* .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 2000px;
    } */
    html {
        zoom: 1.78;
    }
}

/* Page zoom for 1960px screens */
@media (min-width: 1960px) and (max-width: 2559px) {
    html {
        zoom: 1.38;
    }
}

/* Additional Utility Classes - Replaced Inline Styles */
.top-bar-info {
    font-size: 12px;
}

.footer-logo {
    height: 64px;
}

.footer-link-active {
    pointer-events: auto;
}

/* Back to Top - transparent glass effect */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 55, 75, 0.45);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease, border-color 0.2s ease;
    z-index: 999;
}

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

.back-to-top:hover {
    background: rgba(3, 141, 181, 0.5);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.back-to-top i {
    font-size: 18px;
}

.text-light-capitalize {
    font-weight: 200;
    text-transform: capitalize;
}

.diagonal-line-blue {
    background: #038DB5;
}

.diagonal-line-slate {
    background: #374C64;
}

.video-section-bg {
    background-image: linear-gradient(0deg, rgba(3, 141, 181, 0.20) 0%, rgba(3, 141, 181, 0.20) 100%), linear-gradient(0deg, rgba(37, 55, 75, 0.60) 0%, rgba(37, 55, 75, 0.60) 100%), url('../images/transforming-people.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

