/* ==========================================================================
   4. HERO SLIDER SECTION STYLES (ENHANCED PROFESSIONAL 2-SLIDE)
   ========================================================================== */

/* --- Slide Box Overflow & Position Fix --- */
.hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    overflow: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    padding: 120px 0 90px 0;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    position: relative;
}

/* --- Background Image (Bleed Fix with Negative Inset) --- */
.hero-slide-bg {
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 8s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 0;
    will-change: transform;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1.08);
}

/* --- Dynamic Overlay Fix --- */
.hero-overlay {
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    z-index: 1;
    pointer-events: none;
}

/* --- Inner Container & Content --- */
.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--container-width, 1200px);
    margin: 0 auto;
    padding-left: var(--container-padding, 20px);
    padding-right: var(--container-padding, 20px);
}

.hero-left-content {
    max-width: 850px;
    color: #ffffff;
}

/* --- Badge Pill --- */
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #ffd700;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #ffd700;
    animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 215, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

/* --- Subtitle --- */
.hero-small-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #38bdf8;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-small-subtitle i {
    color: #ffd700;
}

/* --- Big Title --- */
.hero-big-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* --- Description --- */
.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 35px;
    max-width: 750px;
}

/* --- CTA Buttons --- */
.hero-btn-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 45px;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 36px;
    background: #0284c7;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.45);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn-primary-hero:hover {
    background: #0369a1;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(2, 132, 199, 0.65);
    color: #ffffff;
}

.btn-video-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px 10px 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-video-hero:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.45);
}

.play-icon-circle {
    width: 44px;
    height: 44px;
    background: #ffffff;
    color: #0284c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    padding-left: 3px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease;
}

.btn-video-hero:hover .play-icon-circle {
    transform: scale(1.12);
}

/* --- 4 Stat Cards Grid --- */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat-card-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
}

.stat-card-item:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.38);
    transform: translateY(-5px);
}

.stat-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffd700;
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number-static {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.3;
}

/* --- Slider Dots --- */
.slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 20;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    width: 36px;
    border-radius: 20px;
    background: #0284c7;
    box-shadow: 0 0 12px rgba(2, 132, 199, 0.8);
}

/* ==========================================================================
   5. YOUTUBE LIGHTBOX MODAL STYLES
   ========================================================================== */
.hero-video-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.hero-video-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero-video-modal-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #000000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform: scale(0.92);
    transition: transform 0.3s ease;
}

.hero-video-modal-overlay.active .hero-video-modal-container {
    transform: scale(1);
}

.hero-modal-close-btn {
    position: absolute;
    top: -45px;
    right: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    z-index: 2;
}

.hero-modal-close-btn:hover {
    background: #ef4444;
    transform: rotate(90deg);
}

.hero-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   6. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
    .prev-arrow { left: 15px; }
    .next-arrow { right: 15px; }
}

@media (max-width: 1024px) {
    .hero-big-title {
        font-size: 36px;
    }
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-slider-container {
        min-height: auto;
    }
    .hero-slide {
        padding: 80px 0 70px 0;
    }
    .hero-big-title {
        font-size: 28px;
    }
    .hero-description {
        font-size: 15px;
        margin-bottom: 24px;
    }
    .hero-btn-group {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-primary-hero, .btn-video-hero {
        justify-content: center;
        width: 100%;
    }
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .stat-card-item {
        padding: 14px 12px;
    }
    .stat-number-static {
        font-size: 18px;
    }
    .stat-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-stats-grid {
        grid-template-columns: 1fr;
    }
    .hero-big-title {
        font-size: 24px;
    }
    .hero-badge-pill {
        font-size: 12px;
    }
}



/* ==========================================================================
   STATS COUNTER SECTION
   ========================================================================== */
.evti-sc-section {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    box-sizing: border-box;
}

/* Scoped Box-Sizing Reset */
.evti-sc-section *,
.evti-sc-section *::before,
.evti-sc-section *::after {
    box-sizing: border-box;
}

/* Grid Layout */
.evti-sc-section .evti-sc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Card Outer Wrapper & Offset Shape */
.evti-sc-section .evti-sc-card-wrapper {
    position: relative;
    padding-top: 12px;
    padding-left: 12px;
}

.evti-sc-section .evti-sc-card-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    background-color: var(--color-bg-light);
    border-top-left-radius: 32px;
    z-index: 1;
}

/* Main Front Card */
.evti-sc-section .evti-sc-card {
    position: relative;
    z-index: 2;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 38px 20px 32px 20px;
    text-align: center;
    box-shadow: var(--color-shadow);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.evti-sc-section .evti-sc-card-wrapper:hover .evti-sc-card {
    transform: translate(-2px, -2px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 25px rgba(0, 168, 236, 0.12);
}

/* Counter Number Container & Suffix */
.evti-sc-section .evti-sc-number-box {
    color: var(--color-title);
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.evti-sc-section .evti-sc-suffix {
    color: var(--color-primary);
    margin-left: 2px;
}

/* Label */
.evti-sc-section .evti-sc-label {
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .evti-sc-section {
        padding-top: var(--section-padding-y-mobile);
        padding-bottom: var(--section-padding-y-mobile);
    }

    .evti-sc-section .evti-sc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .evti-sc-section .evti-sc-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .evti-sc-section .evti-sc-number-box {
        font-size: 38px;
    }

    .evti-sc-section .evti-sc-label {
        font-size: 14px;
    }
}



.reveal-hidden {
    opacity: 0;
}

/* ==========================================================================
   WHO WE ARE SECTION (CLEANED CLASS NAMES & RESPONSIVE)
   ========================================================================== */
.wwa-section {
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.wwa-section .wwa-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

/* ==================== RIGHT IMAGE CONTAINER ==================== */
.wwa-section .wwa-image-container {
    position: relative;
    width: 70%;
    margin-left: auto;
}

.wwa-section .wwa-image-box {
    position: relative;
    width: 100%;
    height: 480px;
    border-top-left-radius: 55px;
    border-bottom-right-radius: 55px;
    border-right: 12px solid var(--color-primary);
    border-bottom: 12px solid var(--color-primary);
    overflow: hidden;
    z-index: 2;
    box-shadow: var(--color-shadow);
}

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

/* ==================== LEFT VERTICALLY CENTERED CONTENT CARD ==================== */
.wwa-section .wwa-card {
    position: absolute;
    left: 0;
    top: 10%;
    transform: translateY(-50%);
    width: 500px;
    max-width: 50%;
    background-color: var(--color-bg-white);
    border: 2px solid var(--color-primary);
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    padding: 40px 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.wwa-section .wwa-subtitle {
    color: var(--color-dark-teal);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wwa-section .wwa-heading {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 16px 0;
}

.wwa-section .wwa-desc {
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 24px 0;
}

/* CTA Button */
.wwa-section .wwa-btn {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 168, 236, 0.25);
}

.wwa-section .wwa-btn:hover {
    background-color: var(--color-primary-hover);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 168, 236, 0.35);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {
    .wwa-section .wwa-wrapper {
        flex-direction: column;
    }

    .wwa-section .wwa-image-container {
        width: 100%;
        margin-left: 0;
    }

    .wwa-section .wwa-image-box {
        height: 380px;
    }

    .wwa-section .wwa-card {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 90%;
        max-width: 100%;
        margin: -60px auto 0 auto;
    }
}

@media (max-width: 576px) {
    .wwa-section .wwa-image-box {
        height: 280px;
        border-top-left-radius: 30px;
        border-bottom-right-radius: 30px;
        border-right-width: 8px;
        border-bottom-width: 8px;
    }

    .wwa-section .wwa-card {
        width: 100%;
        margin-top: -40px;
        padding: 25px 20px;
        border-top-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .wwa-section .wwa-heading {
        font-size: 22px;
    }

    .wwa-section .wwa-desc {
        font-size: 14px;
    }
}



/* ==========================================================================
   WHY CHOOSE US SECTION (SYNCHRONIZED WITH GLOBAL BRAND VARIABLES)
   ========================================================================== */
.why-choose-section {
    background-color: #DAFDFD;
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    box-sizing: border-box;
}

/* Base Resets Inside Section */
.why-choose-section *, 
.why-choose-section *::before, 
.why-choose-section *::after {
    box-sizing: border-box;
}

/* Unique Grid Container */
.why-choose-section .why-choose-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

/* ==================== LEFT COLUMN: IMAGE COMPOSITION ==================== */
.why-choose-section .image-composition-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 20px;
}

.why-choose-section .bg-teal-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 82%;
    height: 85%;
    background-color: var(--color-dark-teal);
    border-top-left-radius: 50px;
    z-index: 1;
}

.why-choose-section .main-image-box {
    position: relative;
    z-index: 2;
    width: 85%;
    margin-top: 15px;
    margin-left: 15px;
    border: 2px solid var(--color-dark-teal);
    border-top-left-radius: 45px;
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;
    overflow: hidden;
    background: var(--color-white);
}

.why-choose-section .main-image-box img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

.why-choose-section .small-image-box {
    position: absolute;
    bottom: 10px;
    right: 0;
    width: 50%;
    z-index: 3;
}

.why-choose-section .bg-cyan-shape {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
    z-index: 1;
}

.why-choose-section .small-image-inner {
    position: relative;
    z-index: 2;
    border: 2px solid var(--color-dark-teal);
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
    overflow: hidden;
    background: var(--color-white);
}

.why-choose-section .small-image-inner img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

/* ==================== RIGHT COLUMN: TEXT CONTENT ==================== */
.why-choose-section .content-column {
    padding-left: 10px;
}

.why-choose-section .sub-title {
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-choose-section .main-heading {
    color: var(--color-title);
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 20px 0;
}

.why-choose-section .description {
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

/* Feature List Styling */
.why-choose-section .feature-list {
    list-style: none;
    margin: 0 0 35px 0;
    padding: 0;
}

.why-choose-section .feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    padding: 0;
}

.why-choose-section .feature-item:last-child {
    margin-bottom: 0;
}

.why-choose-section .check-icon {
    width: 26px;
    height: 26px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-choose-section .check-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--color-white);
    stroke-width: 3;
    display: block;
}

.why-choose-section .feature-text {
    color: var(--color-dark-teal);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
}

/* CTA Button */
.why-choose-section .btn-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--hdr-gradient);
    color: var(--color-white) !important;
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 168, 236, 0.25);
}

.why-choose-section .btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 168, 236, 0.35);
    opacity: 0.95;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {
    .why-choose-section {
        padding-top: var(--section-padding-y-mobile);
        padding-bottom: var(--section-padding-y-mobile);
    }

    .why-choose-section .why-choose-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-choose-section .content-column {
        padding-left: 0;
        text-align: left;
    }

    .why-choose-section .main-heading {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .why-choose-section .main-heading {
        font-size: 26px;
    }

    .why-choose-section .main-image-box img {
        height: 320px;
    }

    .why-choose-section .small-image-inner img {
        height: 150px;
    }

    .why-choose-section .feature-text {
        font-size: 15px;
    }

    .why-choose-section .btn-book {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
SERVICES SECTION
   ========================================================================== */
.evti-hs-section {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    box-sizing: border-box;
}

/* Scoped Box-Sizing Reset */
.evti-hs-section *,
.evti-hs-section *::before,
.evti-hs-section *::after {
    box-sizing: border-box;
}

/* Header */
.evti-hs-section .evti-hs-header {
    text-align: center;
    margin-bottom: 50px;
}

.evti-hs-section .evti-hs-main-heading {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.25;
}

.evti-hs-section .evti-hs-description {
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 15px;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Layout */
.evti-hs-section .evti-hs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Wrapper & Offset Background Shape System */
.evti-hs-section .evti-hs-card-wrapper {
    position: relative;
    padding-top: 18px;
    padding-left: 18px;
}

/* Offset Teal Background (Hidden by default) */
.evti-hs-section .evti-hs-card-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 78%;
    height: 82%;
    background-color: var(--color-dark-teal);
    border-top-left-radius: 45px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Main White Card Front */
.evti-hs-section .evti-hs-card {
    position: relative;
    z-index: 2;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 12px;
    padding: 35px 25px 30px 25px;
    text-align: center;
    box-shadow: var(--color-shadow);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hover & Active States */
.evti-hs-section .evti-hs-card-wrapper:hover::before,
.evti-hs-section .evti-hs-card-wrapper.active::before {
    opacity: 1;
    visibility: visible;
}

.evti-hs-section .evti-hs-card-wrapper:hover .evti-hs-card,
.evti-hs-section .evti-hs-card-wrapper.active .evti-hs-card {
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transform: translate(6px, 6px);
}

/* Medium Square Icon & Image Box */
.evti-hs-section .evti-hs-icon-box {
    width: 110px;                  /* Medium Square Width */
    height: 110px;                 /* Medium Square Height */
    margin: 0 auto 22px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    border-radius: 12px;           /* Soft Rounded Corners for Square */
    overflow: hidden;
    aspect-ratio: 1 / 1;           /* Enforces 1:1 Square Ratio */
}

/* Image Inside Box */
.evti-hs-section .evti-hs-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;             /* Fills the square area nicely */
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

/* SVG Inside Box */
.evti-hs-section .evti-hs-icon-box svg {
    width: 80%;
    height: 80%;
    display: block;
}

.evti-hs-section .evti-hs-card-wrapper:hover .evti-hs-icon-box img {
    transform: scale(1.06);
}

.evti-hs-section .evti-hs-card-title {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.evti-hs-section .evti-hs-card-desc {
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
}

a.evti-hs-card-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Responsive Breakdown */
@media (max-width: 992px) {
    .evti-hs-section {
        padding-top: var(--section-padding-y-mobile);
        padding-bottom: var(--section-padding-y-mobile);
    }

    .evti-hs-section .evti-hs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .evti-hs-section .evti-hs-icon-box {
        width: 95px;
        height: 95px;
    }
}

@media (max-width: 600px) {
    .evti-hs-section .evti-hs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .evti-hs-section .evti-hs-main-heading {
        font-size: 28px;
    }

    .evti-hs-section .evti-hs-card {
        padding: 30px 20px 25px 20px;
    }
    
    .evti-hs-section .evti-hs-icon-box {
        width: 90px;
        height: 90px;
    }
}



 /* ==========================================================================
   FEATURED COURSES SECTION
   ========================================================================== */
.wc-courses-section {
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    background-color: var(--color-white);
    overflow: hidden;
}

.courses-container {
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

/* Base Box Sizing Reset */
.wc-courses-section *,
.wc-courses-section *::before,
.wc-courses-section *::after {
    box-sizing: border-box;
}

/* Section Header (Centered Alignment) */
.courses-header {
    text-align: center;
    margin-bottom: 40px;
}

.courses-header .sub-title {
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: block;
    margin-bottom: 8px;
}

.courses-header .section-heading {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--color-title);
    margin: 0;
    line-height: 1.25;
}

/* Products Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 15px;
}

/* Course Card */
.course-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: visible;
    position: relative;
    border: 1px solid var(--color-border);
    box-shadow: var(--color-shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Top Right Professional Round Badge */
.top-corner-round-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 65px;
    height: 65px;
    /* ডীপ/গাঢ় ব্যাকগ্রাউন্ড প্রফেশনাল ব্লার ফিল্টার সহ */
    background: #0f172a; 
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top-corner-round-badge span {
    color: #ff334b;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 0 2px;
}

.course-card:hover .top-corner-round-badge {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(255, 51, 75, 0.25);
    border-color: #ff334b;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 168, 236, 0.12);
    border-color: var(--color-primary);
}

/* Shine Effect */
.card-shine-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
    border-radius: 16px;
}

.card-shine-effect::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0) 30%, 
        rgba(255, 255, 255, 0.5) 50%, 
        rgba(255, 255, 255, 0) 70%
    );
    transform: translate(100%, -100%);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-card:hover .card-shine-effect::before {
    transform: translate(-100%, 100%);
}

.card-image-wrap {
    position: relative;
    width: 100%;
    padding-top: 62.5%;
    overflow: hidden;
    background-color: var(--color-bg-light);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.card-image-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-image-wrap img.hover-img {
    opacity: 0;
    transform: scale(1.02);
}

.course-card:hover .card-image-wrap img.main-img {
    opacity: 0;
    transform: scale(1.02);
}

.course-card:hover .card-image-wrap img.hover-img {
    opacity: 1;
    transform: scale(1);
}

/* Variant Badges */
.variant-badges {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    z-index: 2;
    flex-wrap: wrap;
}

.badge {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: var(--color-white);
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.badge.offline { background-color: #ff5252; }
.badge.online { background-color: var(--color-primary); }
.badge.recorded { background-color: var(--color-dark-teal); }

/* Card Content */
.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    z-index: 2;
}

/* Meta Bar: Category Left & Price Right */
.card-meta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.course-category {
    margin-bottom: 0;
}

.course-category a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    background-color: rgba(0, 168, 236, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.course-category a:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.course-category a i {
    font-size: 11px;
}

/* Price Alignment */
.course-price {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-title);
    margin-bottom: 0;
    text-align: right;
    white-space: nowrap;
}

.course-price del {
    color: #a0aec0;
    font-size: 13px;
    font-weight: 500;
    margin-right: 4px;
}

.course-price ins {
    text-decoration: none;
    color: var(--color-primary);
}

.course-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
}

.course-title a {
    color: var(--color-title);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.course-short-des {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--color-text);
    text-align: left;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Buttons */
.card-footer-btn {
    margin-top: auto;
}

.view-details-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background-color: var(--color-primary);
    color: var(--color-white) !important;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.course-card:hover .view-details-btn {
    background-color: var(--color-dark-teal);
}

.view-details-btn svg {
    transition: transform 0.3s ease;
}

.course-card:hover .view-details-btn svg {
    transform: translateX(3px);
}

/* Bottom Footer Button */
.courses-footer {
    text-align: center;
    margin-top: 50px;
}

.see-all-courses-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    background: var(--hdr-gradient);
    color: var(--color-white) !important;
    font-family: var(--font-accent);
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 168, 236, 0.25);
    transition: all 0.3s ease;
}

.see-all-courses-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 168, 236, 0.35);
    opacity: 0.95;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .wc-courses-section {
        padding-top: var(--section-padding-y-mobile);
        padding-bottom: var(--section-padding-y-mobile);
    }

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

@media screen and (max-width: 640px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }
    .courses-header .section-heading {
        font-size: 28px;
    }
}



/* ==========================================================================
   WP AFFILIATIONS SECTION (SYNCHRONIZED WITH GLOBAL BRAND VARIABLES)
   ========================================================================== */
.wp-affiliations-wrapper {
    background-color: var(--color-bg-light);
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

/* Scoped Box Sizing Reset */
.wp-affiliations-wrapper *,
.wp-affiliations-wrapper *::before,
.wp-affiliations-wrapper *::after {
    box-sizing: border-box;
}

.affiliation-banner {
    position: relative;
    width: 100%;
    max-width: var(--container-width);
    background: var(--color-white);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 168, 236, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(217, 119, 6, 0.04) 0%, transparent 40%);
    border-radius: 24px;
    border: 1px solid var(--color-border);
    box-shadow: var(--color-shadow);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.affiliation-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 168, 236, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Header Section */
.affiliation-banner .header-section {
    text-align: center;
    margin-bottom: 50px;
    z-index: 2;
}

.affiliation-banner .header-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 168, 236, 0.08);
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

.affiliation-banner .header-title {
    color: var(--color-title);
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    line-height: 1.2;
}

.affiliation-banner .header-subtitle {
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
}

/* Cards & Connector Wrapper */
.affiliation-banner .cards-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.affiliation-banner .connector-line {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(0, 168, 236, 0.1) 0%, 
        rgba(0, 168, 236, 0.8) 50%, 
        rgba(0, 168, 236, 0.1) 100%);
    transform: translateY(-50%);
    z-index: 1;
}

.affiliation-banner .connector-line::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 7px;
    background: #D97706;
    border-radius: 10px;
    box-shadow: 0 0 10px #D97706;
}

/* Affiliate Cards */
.affiliation-banner .affiliate-card {
    position: relative;
    z-index: 2;
    width: 280px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--color-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.affiliation-banner .affiliate-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px -10px rgba(0, 168, 236, 0.15);
}

.affiliation-banner .affiliate-card.highlight {
    border-top: 3px solid #D97706;
    box-shadow: 0 15px 35px -5px rgba(217, 119, 6, 0.15);
}

.affiliation-banner .logo-placeholder {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    background: var(--color-bg-light);
    border: 2px dashed var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    overflow: hidden;
}

.affiliation-banner .logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.affiliation-banner .logo-placeholder svg {
    width: 44px;
    height: 44px;
}

.affiliation-banner .org-short {
    color: var(--color-title);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.affiliation-banner .org-full {
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    min-height: 36px;
    margin-bottom: 12px;
}

.affiliation-banner .reg-number {
    display: inline-block;
    background: var(--color-bg-light);
    color: var(--color-title);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    border: 1px solid var(--color-border);
}

.affiliation-banner .reg-number span {
    color: var(--color-primary);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .wp-affiliations-wrapper {
        padding-top: var(--section-padding-y-mobile);
        padding-bottom: var(--section-padding-y-mobile);
    }

    .affiliation-banner {
        padding: 40px 20px;
    }

    .affiliation-banner .cards-container {
        flex-direction: column;
        gap: 25px;
    }

    .affiliation-banner .connector-line {
        width: 3px;
        height: 80%;
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(180deg, rgba(0, 168, 236, 0.1) 0%, rgba(0, 168, 236, 0.8) 50%, rgba(0, 168, 236, 0.1) 100%);
    }

    .affiliation-banner .affiliate-card {
        width: 100%;
        max-width: 320px;
    }
}


/* ==========================================================================
   INSTRUCTOR SECTION (TOP IMAGE + DOUBLE QUOTE LAYOUT)
   ========================================================================== */
.instructor-section {
    width: 100%;
    background-color: var(--color-bg-light);
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    box-sizing: border-box;
}

.instructor-section *,
.instructor-section *::before,
.instructor-section *::after {
    box-sizing: border-box;
}

.instructor-section .container {
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

.instructor-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.instructor-section .sub-title {
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    display: block;
}

.instructor-section .main-heading {
    color: var(--color-title);
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

/* Slider Outer Wrapper for Positioning Custom Arrows */
.instructor-slider-wrapper {
    position: relative;
    padding: 0 50px; /* Space for Navigation Arrows */
}

.instructor-slider {
    margin: 0 -15px;
}

.instructor-slide-item {
    padding: 15px;
    height: 100%;
}

/* Card Main Styling */
.instructor-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--color-shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.instructor-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 18px 40px rgba(0, 168, 236, 0.15);
}

/* 1. Large Top Image Styling */
.instructor-card .instructor-image-box {
    width: 100%;
    height: 280px; /* Large Image Display */
    overflow: hidden;
    position: relative;
    background: var(--color-bg-light);
}

.instructor-card .instructor-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.instructor-card:hover .instructor-image-box img {
    transform: scale(1.05);
}

/* 2. Name & Designation */
.instructor-card .instructor-info {
    padding: 22px 25px 0 25px;
    text-align: center;
}

.instructor-card .instructor-name {
    color: var(--color-title);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.instructor-card .instructor-designation {
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    display: block;
}

/* 3. Divider Line Bar */
.instructor-card .instructor-line-bar {
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    margin: 15px auto;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.instructor-card:hover .instructor-line-bar {
    width: 100px;
}

/* 4. Description Box with SVG Quote */
.instructor-card .instructor-description {
    padding: 0 25px 30px 25px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.instructor-card .quote-icon {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.instructor-card .quote-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--color-primary);
    opacity: 0.25;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.instructor-card:hover .quote-icon svg {
    opacity: 0.8;
    transform: scale(1.1);
}

.instructor-card .passage-text {
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

.instructor-card .passage-text p {
    margin: 0 0 8px 0;
}

.instructor-card .passage-text p:last-child {
    margin-bottom: 0;
}

/* Custom Navigation Arrows (Double Chevron SVGs) */
.slick-prev-custom,
.slick-next-custom {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-title);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.slick-prev-custom {
    left: 0;
}

.slick-next-custom {
    right: 0;
}

.slick-prev-custom:hover,
.slick-next-custom:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 6px 16px rgba(0, 168, 236, 0.3);
}

.slick-prev-custom svg,
.slick-next-custom svg {
    width: 22px;
    height: 22px;
}

/* Slick Dots Styling */
.instructor-slider .slick-dots {
    bottom: -40px;
}

.instructor-slider .slick-dots li button:before {
    font-size: 12px;
    color: var(--color-primary);
    opacity: 0.3;
}

.instructor-slider .slick-dots li.slick-active button:before {
    color: var(--color-primary);
    opacity: 1;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .instructor-slider-wrapper {
        padding: 0; /* Remove side padding on tablets */
    }
    
    .slick-prev-custom,
    .slick-next-custom {
        display: none !important; /* Hide arrows on smaller screens, rely on touch swipe & dots */
    }
}

@media (max-width: 768px) {
    .instructor-section .main-heading { 
        font-size: 28px; 
    }

    .instructor-card .instructor-image-box {
        height: 240px;
    }
}


/* ==========================================================================
   TESTIMONIAL SECTION (SYNCHRONIZED WITH GLOBAL BRAND VARIABLES)
   ========================================================================== */
.testimonial-section {
    width: 100%;
    background-color: var(--color-bg-light);
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    box-sizing: border-box;
}

/* Scoped Box-Sizing Reset Inside Section */
.testimonial-section *,
.testimonial-section *::before,
.testimonial-section *::after {
    box-sizing: border-box;
}

.testimonial-section .container {
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

.testimonial-header-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.testimonial-section .section-header {
    text-align: left;
}

.testimonial-section .sub-title {
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    display: block;
}

.testimonial-section .main-heading {
    color: var(--color-title);
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

/* Double Arrow Nav Styling */
.testimonial-nav-arrows {
    display: flex;
    gap: 12px;
}

.tst-arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    background: var(--color-white);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tst-arrow-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 168, 236, 0.25);
}

.tst-arrow-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Slider & Cards */
.testimonial-slider {
    margin: 0 -12px;
}

.testimonial-slide-item {
    padding: 12px;
    box-sizing: border-box;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: var(--color-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 35px rgba(0, 168, 236, 0.12);
}

.testimonial-card .quote-icon {
    color: rgba(0, 168, 236, 0.25);
    margin-bottom: 15px;
}

.testimonial-card .quote-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.testimonial-card .testimonial-content p {
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    font-style: italic;
}

.testimonial-card .testimonial-author {
    border-top: 1px solid var(--color-border);
    padding-top: 15px;
}

.testimonial-card .author-name {
    color: var(--color-title);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 3px 0;
}

.testimonial-card .author-info {
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    display: block;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .testimonial-section {
        padding-top: var(--section-padding-y-mobile);
        padding-bottom: var(--section-padding-y-mobile);
    }

    .testimonial-section .main-heading { 
        font-size: 32px; 
    }
}

@media (max-width: 600px) {
    .testimonial-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .testimonial-section .main-heading { 
        font-size: 26px; 
    }
}



/* ==========================================================================
   CALL TO ACTION (CTA) SECTION (SYNCHRONIZED WITH GLOBAL BRAND VARIABLES)
   ========================================================================== */
.evti-cta-section {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* Isolated Box Sizing Reset */
.evti-cta-section *,
.evti-cta-section *::before,
.evti-cta-section *::after {
    box-sizing: border-box;
}

/* Outer Card Box Container */
.evti-cta-section .evti-cta-card {
    position: relative;
    background-color: var(--color-bg-light);
    border: 2px solid var(--color-primary);
    border-top-left-radius: 20px;
    border-top-right-radius: 35px;
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 0px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 40px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: var(--color-shadow);
}

/* ==================== LEFT COLUMN: TEXT CONTENT ==================== */
.evti-cta-section .evti-cta-content {
    flex: 1;
    max-width: 500px;
    padding: 60px 20px;
    align-self: center;
}

.evti-cta-section .evti-cta-title {
    color: var(--color-title);
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 20px 0;
}

.evti-cta-section .evti-cta-description {
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

/* CTA Appointment Button */
.evti-cta-section .evti-cta-btn-appointment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--hdr-gradient);
    color: var(--color-white) !important;
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 168, 236, 0.25);
}

.evti-cta-section .evti-cta-btn-appointment:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 168, 236, 0.35);
    opacity: 0.95;
}

/* ==================== RIGHT COLUMN: IMAGE WRAPPER ==================== */
.evti-cta-section .evti-cta-image-wrap {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    max-width: 480px;
    height: 100%;
}

.evti-cta-section .evti-cta-image-wrap img {
    max-width: 100%;
    height: 390px;
    object-fit: contain;
    display: block;
    margin: 0;
    padding: 0;
}

/* ==================== BOTTOM-RIGHT ACCENT CORNER ==================== */
.evti-cta-section .evti-cta-green-corner-accent {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 75px;
    height: 75px;
    background-color: var(--color-accent-green);
    border-top-left-radius: 100%;
    z-index: 5;
    pointer-events: none;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {
    .evti-cta-section {
        padding-top: var(--section-padding-y-mobile);
        padding-bottom: var(--section-padding-y-mobile);
    }

    .evti-cta-section .evti-cta-card {
        flex-direction: column;
        align-items: center;
        padding: 40px 25px 0 25px;
        text-align: center;
    }

    .evti-cta-section .evti-cta-content {
        max-width: 100%;
        padding: 0 0 40px 0;
    }

    .evti-cta-section .evti-cta-title {
        font-size: 30px;
    }

    .evti-cta-section .evti-cta-image-wrap {
        max-width: 100%;
    }

    .evti-cta-section .evti-cta-image-wrap img {
        height: 320px;
    }
}

@media (max-width: 576px) {
    .evti-cta-section .evti-cta-card {
        border-top-left-radius: 15px;
        border-top-right-radius: 25px;
        border-bottom-left-radius: 25px;
        padding: 30px 15px 0 15px;
    }

    .evti-cta-section .evti-cta-title {
        font-size: 24px;
    }

    .evti-cta-section .evti-cta-description {
        font-size: 14px;
    }

    .evti-cta-section .evti-cta-btn-appointment {
        width: 100%;
    }

    .evti-cta-section .evti-cta-image-wrap img {
        height: 260px;
    }

    .evti-cta-section .evti-cta-green-corner-accent {
        width: 50px;
        height: 50px;
    }
}