/* =========================================
   Global Variables
========================================= */

:root {
    --primary: #1877f2;
    --primary-dark: #0058bc;
    --text-main: #181c23;
    --text-muted: #414754;
    --white: #ffffff;
    --light-border: rgba(229, 231, 235, 0.5);
}

/* =========================================
   Global Reset and Base Styles
========================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

/* =========================================
   Material Symbols
========================================= */

.material-symbols-outlined {
    display: inline-block;
    vertical-align: middle;

    font-variation-settings:
        "FILL" 0,
        "wght" 400,
        "GRAD" 0,
        "opsz" 24;
}

.material-symbols-outlined.filled-icon,
.filled-icon {
    font-variation-settings:
        "FILL" 1,
        "wght" 400,
        "GRAD" 0,
        "opsz" 24;
}

/* =========================================
   Global Fixed Navbar
========================================= */

:root {
    --navbar-black: #0c0c0d;
    --navbar-black-light: #141416;
    --navbar-blue: #1877f2;
    --navbar-blue-hover: #2f87f5;
    --navbar-white: #ffffff;
    --navbar-muted: #b7bcc7;
    --navbar-border: rgba(255, 255, 255, 0.1);
}

html {
    scroll-padding-top: 130px;
}

body {
    padding-top: 130px;
}

.global-navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;

    width: 100%;

    background: #010c37;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* =========================================
   Main Navbar
========================================= */

.main-navbar {
    position: relative;
    z-index: 2;

    background: #081A33;
    border-bottom: 1px solid var(--navbar-border);
}

.navbar-container {
    width: min(100% - 40px, 1280px);
    min-height: 80px;
    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Navbar Brand */
.navbar-brand {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    line-height: 0;
}

/* Navbar Logo Image */
.navbar-logo {
   display: block;
    width: auto;
    
    width: 250px;
    height: 100px;
    
    object-fit: contain;
    object-position: left center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.03);
    opacity: 0.92;
}

/* =========================================
   Desktop Main Links
========================================= */

.desktop-navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 2.4vw, 36px);
}

.main-nav-link {
    position: relative;

    padding: 28px 0 25px;

    color: #B8C7DC;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: 0.01em;

    transition: color 0.25s ease;
}

.main-nav-link::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 18px;

    width: 0;
    height: 2px;

    background: var(--navbar-blue);
    border-radius: 999px;

    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.main-nav-link:hover,
.main-nav-link.is-active {
    color: var(--navbar-white);
}

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

.main-nav-link.is-active {
    color: #ffffff;
}

/* =========================================
   Navbar Actions
========================================= */

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.navbar-enroll-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 24px;

    color: var(--navbar-white);
    background: var(--navbar-blue);

    border: 1px solid var(--navbar-blue);
    border-radius: 999px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.navbar-enroll-button:hover {
    background: var(--navbar-blue-hover);
    border-color: var(--navbar-blue-hover);

    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(24, 119, 242, 0.3);
}

/* =========================================
   Division Navbar
========================================= */

.division-navbar {
    position: relative;
    z-index: 1;

    min-height: 50px;

    display: flex;
    align-items: center;

    background: #04101F;
    /* border-top: 1px solid rgba(255, 255, 255, 0.08); */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.division-navbar-container {
    width: min(100% - 40px, 1280px);
    min-height: 49px;
    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(40px, 7vw, 90px);
}

.division-nav-link {
    position: relative;

    min-height: 49px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #B8C7DC;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;

    transition: color 0.25s ease;
}

.division-nav-link::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 0;

    width: 6px;
    height: 6px;

    background: var(--navbar-blue);
    border-radius: 50%;

    opacity: 0;
    transform: translate(-50%, 5px) scale(0.7);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.division-nav-link:hover,
.division-nav-link.is-active {
    color: #ffffff;
}

.division-nav-link.is-active {
    color: #ffffff;
}

.division-nav-link:hover::after,
.division-nav-link.is-active::after {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
}

/* =========================================
   Mobile Menu
========================================= */

.mobile-menu-button {
    display: none;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    color: var(--navbar-white);
    background: rgba(255, 255, 255, 0.06);

    border: 1px solid var(--navbar-border);
    border-radius: 10px;

    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

.mobile-menu-button:hover {
    color: var(--navbar-blue);
    background: rgba(255, 255, 255, 0.1);
}

.mobile-navbar {
    display: none;

    max-height: calc(100vh - 80px);
    overflow-y: auto;

    background: #010c37;
    border-top: 1px solid var(--navbar-border);
}

.mobile-navbar.is-open {
    display: block;
}

.mobile-navbar-links {
    width: min(100% - 32px, 600px);
    margin-inline: auto;
    padding: 20px 0 28px;

    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;

    padding: 13px 14px;

    color: #B8C7DC;

    border-radius: 9px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;

    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    color: var(--navbar-white);
    background: rgba(255, 255, 255, 0.07);
}

.mobile-nav-link.is-active {
    color: var(--navbar-blue);
}

.mobile-division-title {
    margin-top: 12px;
    padding: 14px 14px 8px;

    color: rgba(255, 255, 255, 0.45);

    border-top: 1px solid var(--navbar-border);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.mobile-division-link {
    padding-left: 24px;
}

.mobile-enroll-button {
    margin-top: 14px;
    padding: 13px 20px;

    color: var(--navbar-white);
    background: var(--navbar-blue);

    border-radius: 999px;

    text-align: center;
    font-size: 14px;
    font-weight: 700;
}

/* =========================================
   Responsive Navbar
========================================= */

@media (max-width: 900px) {
    html {
        scroll-padding-top: 80px;
    }

    body {
        padding-top: 80px;
    }

    .navbar-container {
        min-height: 80px;
    }

    .desktop-navbar,
    .navbar-enroll-button,
    .division-navbar {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        width: min(100% - 28px, 1280px);
    }

    
}

@media (max-width: 1024px) {
    .navbar-logo {
        height: 42px;
        max-width: 190px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .navbar-logo {
        height: 38px;
        max-width: 165px;
    }
}

/* Small Mobile */
@media (max-width: 420px) {
    .navbar-logo {
        height: 34px;
        max-width: 145px;
    }
}

/* =========================================
   Shared Effects
========================================= */

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--light-border);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.premium-shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* =========================================
   Value Cards
========================================= */

.value-card {
    padding: 32px;
    text-align: center;

    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(0, 88, 188, 0.12);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary);
    background: rgba(24, 119, 242, 0.1);
    border-radius: 50%;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}

.value-card:hover .value-icon {
    color: var(--white);
    background: var(--primary);
    transform: rotate(-5deg) scale(1.05);
}

/* =========================================
   Facility Cards
========================================= */

.facility-card img {
    transition: transform 0.5s ease;
}

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

/* =========================================
   Footer
========================================= */

.footer-link {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 20px;

    transition: color 0.25s ease;
}

.footer-link:hover {
    color: var(--primary);
}

/* =========================================
   Three.js Hero Canvas
========================================= */

#threejs-container-hero {
    position: relative;
    overflow: hidden;
}

#threejs-container-hero canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* =========================================
   Scroll Reveal
========================================= */

.reveal-section,
.reveal-element {
    opacity: 0;
    transform: translateY(40px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

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

/* =========================================
   Accessibility
========================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(24, 119, 242, 0.4);
    outline-offset: 4px;
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 767px) {
    .premium-shadow {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    }

    .value-card {
        padding: 24px;
    }

    #threejs-container-hero {
        min-height: 320px;
    }
}

/* =========================================
   Reduced Motion
========================================= */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-section,
    .reveal-element {
        opacity: 1;
        transform: none;
    }
}

/* =========================================
   Music Page
========================================= */

.music-page {
    background-color: #f9f9ff;
    color: #181c23;
}

/* =========================================
   Music Hero
========================================= */

.music-hero {
    position: relative;
}

.music-hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(24, 28, 35, 0.14);
}

.music-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.music-hero-image:hover img {
    transform: scale(1.04);
}

.music-accreditation-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.55);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* =========================================
   Music Information Cards
========================================= */

.music-info-card {
    background: #f9f9ff;
    border: 1px solid rgba(193, 198, 214, 0.35);
    border-radius: 16px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.music-info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(24, 119, 242, 0.3);
    box-shadow: 0 16px 40px rgba(24, 119, 242, 0.1);
}

/* =========================================
   Course Images
========================================= */

.course-image {
    overflow: hidden;
    border-radius: 16px;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.6s ease;
}

.course-image:hover img {
    transform: scale(1.06);
}

/* =========================================
   Learning Mode Cards
========================================= */

.learning-mode-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;

    background: #f9f9ff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(24, 28, 35, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.learning-mode-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(24, 28, 35, 0.14);
}

.learning-mode-card img {
    transition: transform 0.6s ease;
}

.learning-mode-card:hover img {
    transform: scale(1.08);
}

/* =========================================
   Performance Gallery
========================================= */

.performance-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.performance-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.7s ease;
}

.performance-card:hover img {
    transform: scale(1.06);
}

.performance-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.05) 70%,
            transparent
        );
}

/* =========================================
   Enrollment Form
========================================= */

.music-enrollment-form {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.45);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.music-enrollment-form input,
.music-enrollment-form select {
    width: 100%;
    color: #181c23;

    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.music-enrollment-form input:focus,
.music-enrollment-form select:focus {
    background: #ffffff;
    border-color: #1877f2;
    box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.16);
}

/* =========================================
   Form Message
========================================= */

.form-message {
    display: none;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
}

.form-message.is-visible {
    display: block;
}

.form-message.is-success {
    color: #075d35;
    background: #dcfce7;
}

.form-message.is-error {
    color: #991b1b;
    background: #fee2e2;
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 767px) {
    .music-accreditation-card {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 16px;
    }

    .learning-mode-card.featured {
        transform: none;
    }

    .learning-mode-card.featured:hover {
        transform: translateY(-8px);
    }
}

/* =========================================
   Media Page
========================================= */

.media-page {
    background-color: #f9f9ff;
    color: #181c23;
}

.text-balance {
    text-wrap: balance;
}

/* =========================================
   Main Header
========================================= */

#main-header {
    will-change: transform;
}

#main-header.header-hidden {
    transform: translateY(-100%);
}

/* =========================================
   Media Hero
========================================= */

.media-hero {
    min-height: 560px;
    display: flex;
    align-items: center;
}

.media-hero-background {
    position: absolute;
    inset: 0;
}

.media-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            #f9f9ff 0%,
            rgba(249, 249, 255, 0.96) 42%,
            rgba(249, 249, 255, 0.58) 70%,
            rgba(249, 249, 255, 0.12) 100%
        );
}

/* =========================================
   Shared Media Images
========================================= */

.media-image {
    overflow: hidden;
    border-radius: 24px;
}

.media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.65s ease;
}

.media-image:hover img {
    transform: scale(1.05);
}

/* =========================================
   Introduction
========================================= */

.media-stat-card {
    color: #ffffff;
    background: #1877f2;
    border-radius: 16px;
    box-shadow: 0 18px 38px rgba(24, 119, 242, 0.23);
}

/* =========================================
   Course Cards
========================================= */

.media-course-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;

    background: #f9f9ff;
    border: 1px solid rgba(193, 198, 214, 0.25);
    border-radius: 24px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.media-course-card:hover {
    transform: translateY(-8px);
    border-color: rgba(24, 119, 242, 0.28);
    box-shadow: 0 22px 48px rgba(24, 28, 35, 0.12);
}

.media-course-card img {
    transition: transform 0.6s ease;
}

.media-course-card:hover img {
    transform: scale(1.07);
}

/* =========================================
   Compact Courses
========================================= */

.media-compact-card {
    background: #f9f9ff;
    border: 1px solid rgba(193, 198, 214, 0.25);
    border-radius: 24px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.media-compact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(24, 28, 35, 0.1);
}

.media-compact-card img {
    transition: transform 0.55s ease;
}

.media-compact-card:hover img {
    transform: scale(1.06);
}

/* =========================================
   Student Projects
========================================= */

.media-project-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.media-project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.7s ease;
}

.media-project-card:hover img {
    transform: scale(1.08);
}

.media-project-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.86),
            rgba(0, 0, 0, 0.12) 65%,
            transparent
        );
}

.media-project-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    color: #ffffff;
    transform: translateY(12px);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.media-project-card:hover .media-project-content {
    transform: translateY(0);
}

/* =========================================
   Workshop Cards
========================================= */

.workshop-card {
    background: #f9f9ff;
    border: 1px solid rgba(193, 198, 214, 0.25);
    border-radius: 16px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.workshop-card:hover {
    transform: translateY(-4px);
    border-color: rgba(24, 119, 242, 0.28);
    box-shadow: 0 14px 35px rgba(24, 28, 35, 0.1);
}

.workshop-card.is-disabled {
    opacity: 0.65;
}

.workshop-card.is-disabled:hover {
    transform: none;
    box-shadow: none;
}

/* =========================================
   Enrollment Form
========================================= */

.media-enrollment-form {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.media-enrollment-form input,
.media-enrollment-form select,
.media-enrollment-form textarea {
    width: 100%;
    color: #ffffff;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.media-enrollment-form input::placeholder,
.media-enrollment-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.media-enrollment-form input:focus,
.media-enrollment-form select:focus,
.media-enrollment-form textarea:focus {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.14);
    outline: none;
}

.media-enrollment-form select option {
    color: #181c23;
    background: #ffffff;
}

/* =========================================
   Form Messages
========================================= */

.media-form-message {
    display: none;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
}

.media-form-message.is-visible {
    display: block;
}

.media-form-message.is-success {
    color: #075d35;
    background: #dcfce7;
}

.media-form-message.is-error {
    color: #991b1b;
    background: #fee2e2;
}

/* =========================================
   Bento Grid
========================================= */

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
}

.bento-item-4 {
    grid-column: span 4;
}

.bento-item-6 {
    grid-column: span 6;
}

.bento-item-12 {
    grid-column: span 12;
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 767px) {
    .media-hero {
        min-height: 540px;
    }

    .media-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(249, 249, 255, 0.98),
                rgba(249, 249, 255, 0.86)
            );
    }

    .bento-item-4,
    .bento-item-6 {
        grid-column: span 12;
    }

    .media-project-card {
        height: 340px !important;
    }
}

/* =========================================
   Gallery Page
========================================= */

.gallery-page {
    background: #f9f9ff;
    color: #181c23;
}

/* =========================================
   Category Filter
========================================= */

.gallery-filter-list {
    scrollbar-width: none;
}

.gallery-filter-list::-webkit-scrollbar {
    display: none;
}

.filter-chip {
    flex-shrink: 0;
    padding: 10px 22px;

    color: #414754;
    background: #ffffff;

    border: 1px solid #c1c6d6;
    border-radius: 999px;

    font-size: 12px;
    line-height: 16px;
    font-weight: 600;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.filter-chip:hover {
    color: #1877f2;
    border-color: #1877f2;
    transform: translateY(-2px);
}

.filter-chip.is-active {
    color: #ffffff;
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.2);
}

/* =========================================
   Gallery Grid
========================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 28px;
    gap: 24px;
}

.gallery-card {
    position: relative;
    grid-column: span 4;
    grid-row: span 12;

    min-height: 330px;
    overflow: hidden;

    background: #ffffff;
    border-radius: 18px;
    cursor: pointer;

    box-shadow: 0 8px 24px rgba(24, 28, 35, 0.06);

    transition:
        opacity 0.3s ease,
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.gallery-card-tall {
    grid-row: span 18;
    min-height: 500px;
}

.gallery-card-wide {
    grid-column: span 8;
    grid-row: span 12;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 42px rgba(24, 119, 242, 0.14);
}

.gallery-card:focus-visible {
    outline: 3px solid rgba(24, 119, 242, 0.45);
    outline-offset: 4px;
}

.gallery-card.is-hidden {
    display: none;
}

.gallery-card.is-filtering {
    opacity: 0;
    transform: scale(0.96);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.7s ease;
}

.gallery-card:hover img {
    transform: scale(1.07);
}

/* =========================================
   Gallery Overlay
========================================= */

.gallery-image-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 24px;

    color: #ffffff;

    background:
        linear-gradient(
            to top,
            rgba(0, 32, 79, 0.82),
            rgba(0, 88, 188, 0.24) 55%,
            transparent 80%
        );

    opacity: 0;

    transition: opacity 0.35s ease;
}

.gallery-card:hover .gallery-image-overlay,
.gallery-card:focus-visible .gallery-image-overlay {
    opacity: 1;
}

.gallery-category {
    margin-bottom: 8px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 11px;
    line-height: 16px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gallery-title {
    color: #ffffff;

    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
}

.gallery-title-large {
    font-size: 28px;
    line-height: 36px;
}

.gallery-zoom {
    position: absolute;
    top: 16px;
    right: 16px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;

    opacity: 0;
    transform: translateY(-8px);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.gallery-card:hover .gallery-zoom,
.gallery-card:focus-visible .gallery-zoom {
    opacity: 1;
    transform: translateY(0);
}

.gallery-video-label {
    position: absolute;
    top: 16px;
    left: 16px;

    padding: 5px 9px;

    color: #ffffff;
    background: #1877f2;

    border-radius: 6px;

    font-size: 10px;
    line-height: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

/* =========================================
   Empty Gallery Message
========================================= */

.gallery-empty-message {
    display: none;
    padding: 48px 20px;
    text-align: center;

    color: #414754;
    background: #ffffff;

    border: 1px dashed #c1c6d6;
    border-radius: 18px;
}

.gallery-empty-message.is-visible {
    display: block;
}

/* =========================================
   Lightbox
========================================= */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    background: rgba(0, 0, 0, 0.88);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-content {
    width: min(100%, 1050px);
    max-height: calc(100vh - 80px);

    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: calc(100vh - 190px);

    object-fit: contain;
    border-radius: 12px;

    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-caption {
    margin-top: 20px;
    text-align: center;
}

.lightbox-caption p {
    margin-bottom: 5px;

    color: #adc6ff;

    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lightbox-caption h2 {
    color: #ffffff;

    font-size: 28px;
    line-height: 36px;
    font-weight: 700;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);

    border-radius: 50%;

    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

.lightbox-close:hover {
    color: #1877f2;
    background: #ffffff;
}

.lightbox-navigation {
    position: absolute;
    top: 50%;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);

    border-radius: 50%;
    transform: translateY(-50%);

    transition: background-color 0.25s ease;
}

.lightbox-navigation:hover {
    background: #1877f2;
}

.lightbox-previous {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

/* =========================================
   Newsletter
========================================= */

.gallery-newsletter-message {
    min-height: 20px;
    font-size: 13px;
    line-height: 20px;
}

.gallery-newsletter-message.is-success {
    color: #087443;
}

.gallery-newsletter-message.is-error {
    color: #ba1a1a;
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 1023px) {
    .gallery-card {
        grid-column: span 6;
    }

    .gallery-card-wide {
        grid-column: span 12;
    }
}

@media (max-width: 767px) {
    .gallery-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 16px;
    }

    .gallery-card,
    .gallery-card-tall,
    .gallery-card-wide {
        grid-column: auto;
        grid-row: auto;

        min-height: 340px;
        height: 340px;
    }

    .gallery-image-overlay {
        opacity: 1;
        padding: 20px;
    }

    .gallery-zoom {
        opacity: 1;
        transform: none;
    }

    .gallery-title-large {
        font-size: 22px;
        line-height: 30px;
    }

    .lightbox {
        padding: 16px;
    }

    .lightbox-navigation {
        top: auto;
        bottom: 24px;

        width: 46px;
        height: 46px;

        transform: none;
    }

    .lightbox-previous {
        left: calc(50% - 58px);
    }

    .lightbox-next {
        right: calc(50% - 58px);
    }

    .lightbox-caption {
        margin-bottom: 70px;
    }

    .lightbox-caption h2 {
        font-size: 22px;
        line-height: 30px;
    }
}

/* =========================================
   Contact Page
========================================= */

.contact-page {
    background: #f9f9ff;
    color: #181c23;
}

/* =========================================
   Contact Hero
========================================= */

.contact-hero-pattern {
    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(
            circle at 2px 2px,
            #1877f2 1px,
            transparent 0
        );

    background-size: 40px 40px;
    opacity: 0.05;
}

/* =========================================
   Contact Cards
========================================= */

.contact-form-card,
.contact-details-card {
    background: #ffffff;
}

/* =========================================
   Form Fields
========================================= */

.contact-field {
    position: relative;
}

.contact-label {
    display: block;
    margin-bottom: 8px;

    color: #414754;

    font-size: 12px;
    line-height: 16px;
    font-weight: 600;

    transition: color 0.25s ease;
}

.contact-field.is-focused .contact-label {
    color: #1877f2;
}

.contact-input {
    width: 100%;

    padding: 12px 16px;

    color: #181c23;
    background: #f9f9ff;

    border: 1px solid #c1c6d6;
    border-radius: 10px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    line-height: 20px;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.contact-input:focus {
    background: #ffffff;
    border-color: #1877f2;
    box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.14);
}

.contact-input::placeholder {
    color: #8b909b;
}

.contact-textarea {
    min-height: 130px;
    resize: vertical;
}

/* =========================================
   Contact Form Message
========================================= */

.contact-form-message {
    display: none;

    padding: 12px 16px;
    border-radius: 10px;

    font-size: 14px;
    line-height: 20px;
}

.contact-form-message.is-visible {
    display: block;
}

.contact-form-message.is-success {
    color: #075d35;
    background: #dcfce7;
}

.contact-form-message.is-error {
    color: #991b1b;
    background: #fee2e2;
}

/* =========================================
   Contact Details
========================================= */

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;

    color: inherit;
}

.contact-detail-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);

    border-radius: 50%;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

a.contact-detail-item:hover .contact-detail-icon {
    color: #ffffff;
    background: #1877f2;
    transform: scale(1.05);
}

.contact-detail-label {
    display: block;
    margin-bottom: 2px;

    color: #414754;

    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
}

.contact-detail-value {
    display: block;

    color: #181c23;

    font-size: 16px;
    line-height: 24px;
}

/* =========================================
   Social Links
========================================= */

.contact-social-link {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #414754;
    background: #ffffff;

    border: 1px solid rgba(193, 198, 214, 0.55);
    border-radius: 50%;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.contact-social-link:hover {
    color: #ffffff;
    background: #1877f2;
    transform: translateY(-3px);
}

/* =========================================
   Loading Icon
========================================= */

.contact-spinner {
    display: inline-block;
    animation: contact-spin 0.9s linear infinite;
}

@keyframes contact-spin {
    to {
        transform: rotate(360deg);
    }
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 767px) {
    .contact-form-card,
    .contact-details-card {
        border-radius: 16px;
    }
}

/* =========================================
   Global Footer
========================================= */

:root {
    --footer-black: #0c0c0d;
    --footer-black-light: #141416;
    --footer-blue: #1877f2;
    --footer-blue-hover: #2f87f5;
    --footer-white: #ffffff;
    --footer-muted: #adb3bf;
    --footer-border: rgba(255, 255, 255, 0.1);
}

.global-footer {
    position: relative;
    width: 100%;

    color: var(--footer-white);
    background: #061426;

    border-top: 1px solid var(--footer-border);
}

/* =========================================
   Footer Main Layout
========================================= */

.footer-container {
    width: min(100% - 80px, 1280px);
    margin-inline: auto;
    padding: 72px 0 64px;

    display: grid;
    grid-template-columns: 1.35fr 1fr 1.15fr 1.15fr;
    gap: 60px;
}

/* =========================================
   Footer Brand
========================================= */

.footer-brand-column {
    max-width: 290px;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 24px;

    color: var(--footer-white);

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 27px;
    line-height: 34px;
    font-weight: 800;
    letter-spacing: -0.04em;

    transition: color 0.25s ease;
}

.footer-brand:hover {
    color: var(--footer-blue);
}

.footer-description {
    margin-bottom: 28px;

    color: var(--footer-muted);

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
}

/* =========================================
   Footer Headings
========================================= */

.footer-heading {
    position: relative;

    margin-bottom: 25px;
    padding-bottom: 13px;

    color: var(--footer-white);

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    line-height: 26px;
    font-weight: 750;
}

.footer-heading::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 35px;
    height: 2px;

    background: var(--footer-blue);
    border-radius: 999px;
}

/* =========================================
   Footer Links
========================================= */

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-links a {
    position: relative;

    display: inline-flex;
    align-items: center;

    color: var(--footer-muted);

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    line-height: 22px;
    font-weight: 500;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-links a::before {
    content: "";

    width: 0;
    height: 2px;
    margin-right: 0;

    background: var(--footer-blue);
    border-radius: 999px;

    transition:
        width 0.25s ease,
        margin-right 0.25s ease;
}

.footer-links a:hover {
    color: var(--footer-white);
    transform: translateX(3px);
}

.footer-links a:hover::before {
    width: 12px;
    margin-right: 8px;
}

/* =========================================
   Social Media Links
========================================= */

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social-link {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--footer-white);
    background: #04101F;

    border: 1px solid var(--footer-border);
    border-radius: 9px;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-social-link:hover {
    color: var(--footer-white);
    background: var(--footer-blue);
    border-color: var(--footer-blue);

    transform: translateY(-4px);

    box-shadow:
        0 10px 24px
        rgba(24, 119, 242, 0.28);
}

/* =========================================
   Footer Bottom
========================================= */

.footer-bottom {
  width: 100%;
  min-height: 76px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  background: #04101F;
  border-top: 1px solid rgba(255, 255, 255, 0.08);

  text-align: center;
}

.footer-bottom p {
  margin: 0;

  color: var(--footer-muted);

  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  line-height: 21px;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-legal-links a {
    color: var(--footer-muted);

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;

    transition: color 0.25s ease;
}

.footer-legal-links a:hover {
    color: var(--footer-blue);
}

/* =========================================
   Footer Responsive
========================================= */

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 50px 70px;
    }

    .footer-brand-column {
        max-width: 100%;
    }
}

@media (max-width: 700px) {
    .footer-container {
        width: min(100% - 40px, 1280px);
        padding: 55px 0 48px;

        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-brand-column {
        text-align: left;
    }

    .footer-bottom-container {
        width: min(100% - 40px, 1280px);
        padding: 24px 0;

        flex-direction: column;
        justify-content: center;

        text-align: center;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
    }
}

@media (max-width: 420px) {
    .footer-brand {
        font-size: 24px;
        line-height: 31px;
    }

    .footer-heading {
        font-size: 17px;
    }

    .footer-social-link {
        width: 40px;
        height: 40px;
    }
}

/* =========================================
   ACADEMY GALLERY SECTION
========================================= */

.academy-gallery-section {
  position: relative;
  padding: 100px 0;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(24, 119, 242, 0.1),
      transparent 30%
    ),
    #f9f9ff;
  overflow: hidden;
}

.academy-gallery-container {
  width: min(100% - 40px, 1280px);
  margin: 0 auto;
}

.academy-gallery-heading {
  max-width: 720px;
  margin: 0 auto 55px;
  text-align: center;
}

.academy-gallery-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;
  padding: 8px 18px;

  color: #1877f2;
  background: rgba(24, 119, 242, 0.1);

  border-radius: 999px;

  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.academy-gallery-heading h2 {
  margin: 0 0 18px;

  color: #181c23;

  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.academy-gallery-heading h2 span {
  color: #1877f2;
}

.academy-gallery-heading p {
  max-width: 650px;
  margin: 0 auto;

  color: #555f6d;

  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

/* Gallery Grid */
.academy-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 20px;
}

/* Gallery Card */
.academy-gallery-card {
  position: relative;

  margin: 0;

  border-radius: 20px;
  overflow: hidden;

  background: #dfe8f5;

  cursor: pointer;

  box-shadow:
    0 12px 35px
    rgba(24, 119, 242, 0.08);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.academy-gallery-card-large {
  grid-row: span 2;
}

.academy-gallery-card:hover {
  transform: translateY(-7px);

  box-shadow:
    0 24px 50px
    rgba(24, 119, 242, 0.16);
}

.academy-gallery-card img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.7s ease,
    filter 0.5s ease;
}

.academy-gallery-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.72);
}

/* Overlay */
.academy-gallery-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;

  padding: 28px;

  color: #ffffff;

  background:
    linear-gradient(
      to top,
      rgba(7, 18, 35, 0.9) 0%,
      rgba(7, 18, 35, 0.35) 48%,
      transparent 75%
    );

  opacity: 0;

  transition: opacity 0.4s ease;
}

.academy-gallery-card:hover .academy-gallery-overlay,
.academy-gallery-card:focus .academy-gallery-overlay {
  opacity: 1;
}

.academy-gallery-overlay .gallery-category {
  margin-bottom: 8px;

  color: #8ec0ff;

  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.academy-gallery-overlay .gallery-title {
  max-width: 85%;
  margin: 0;

  color: #ffffff;

  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.academy-gallery-overlay .material-symbols-outlined {
  position: absolute;
  top: 22px;
  right: 22px;

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: rgba(24, 119, 242, 0.9);

  border-radius: 50%;

  font-size: 22px;
}

/* Button */
.academy-gallery-button-wrapper {
  display: flex;
  justify-content: center;

  margin-top: 48px;
}

.academy-gallery-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 15px 28px;

  color: #ffffff;
  background: #1877f2;

  border-radius: 12px;

  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.academy-gallery-button:hover {
  color: #ffffff;
  background: #0866d6;

  transform: translateY(-3px);

  box-shadow:
    0 14px 30px
    rgba(24, 119, 242, 0.3);
}

.academy-gallery-button .material-symbols-outlined {
  font-size: 20px;

  transition: transform 0.3s ease;
}

.academy-gallery-button:hover .material-symbols-outlined {
  transform: translateX(4px);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {
  .academy-gallery-section {
    padding: 80px 0;
  }

  .academy-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 280px;
  }

  .academy-gallery-card-large {
    grid-row: span 1;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 640px) {
  .academy-gallery-section {
    padding: 65px 0;
  }

  .academy-gallery-container {
    width: min(100% - 32px, 1280px);
  }

  .academy-gallery-heading {
    margin-bottom: 38px;
  }

  .academy-gallery-heading h2 {
    font-size: 30px;
    line-height: 1.25;
  }

  .academy-gallery-heading p {
    font-size: 15px;
  }

  .academy-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 270px;
    gap: 16px;
  }

  .academy-gallery-card,
  .academy-gallery-card-large {
    grid-row: span 1;
  }

  .academy-gallery-overlay {
    padding: 22px;

    opacity: 1;
  }

  .academy-gallery-overlay .gallery-title {
    font-size: 18px;
  }

  .academy-gallery-overlay .material-symbols-outlined {
    top: 18px;
    right: 18px;

    width: 40px;
    height: 40px;
  }

  .academy-gallery-button-wrapper {
    margin-top: 34px;
  }

  .academy-gallery-button {
    width: 100%;
  }
}

/* =========================================
   VIDEO TESTIMONIAL SECTION
========================================= */

.video-testimonial-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(24, 119, 242, 0.14),
      transparent 36%
    ),
    #f9f9ff;
}

.video-testimonial-container {
  width: min(100% - 40px, 1440px);
  margin: 0 auto;
}

/* Heading */
.video-testimonial-heading {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

.video-testimonial-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 16px;
  padding: 8px 18px;

  color: #1877f2;
  background: rgba(24, 119, 242, 0.1);

  border-radius: 999px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-testimonial-heading h2 {
  margin: 0 0 16px;

  color: #181c23;

  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.video-testimonial-heading h2 span {
  color: #1877f2;
}

.video-testimonial-heading p {
  max-width: 620px;
  margin: 0 auto;

  color: #555f6d;

  font-size: 16px;
  line-height: 1.7;
}

/* Carousel */
.video-testimonial-carousel {
  position: relative;
  width: 100%;
}

.video-testimonial-stage {
  position: relative;

  width: 100%;
  height: 410px;

  overflow: hidden;
}

/* Base card */
.video-testimonial-card {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 400px;
  height: 240px;

  overflow: hidden;

  background: #d8d8d8;
  border: 1px solid rgba(24, 119, 242, 0.14);
  border-radius: 18px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform:
    translate(-50%, -50%)
    scale(0.65);

  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease,
    visibility 0.45s ease,
    filter 0.45s ease,
    box-shadow 0.45s ease;
}

/* Center card */
.video-testimonial-card.is-active {
  z-index: 5;

  width: 500px;
  height: 300px;

  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform:
    translate(-50%, -50%)
    scale(1);

  filter: none;

  box-shadow:
    0 30px 70px
    rgba(24, 119, 242, 0.22);
}

/* Near-left card */
.video-testimonial-card.is-prev {
  z-index: 4;

  opacity: 0.86;
  visibility: visible;
  pointer-events: auto;

  transform:
    translate(calc(-50% - 350px), -50%)
    scale(0.76);

  filter: brightness(0.82);
}

/* Near-right card */
.video-testimonial-card.is-next {
  z-index: 4;

  opacity: 0.86;
  visibility: visible;
  pointer-events: auto;

  transform:
    translate(calc(-50% + 350px), -50%)
    scale(0.76);

  filter: brightness(0.82);
}

/* Far-left card */
.video-testimonial-card.is-far-prev {
  z-index: 3;

  opacity: 0.45;
  visibility: visible;
  pointer-events: auto;

  transform:
    translate(calc(-50% - 590px), -50%)
    scale(0.58);

  filter: brightness(0.68);
}

/* Far-right card */
.video-testimonial-card.is-far-next {
  z-index: 3;

  opacity: 0.45;
  visibility: visible;
  pointer-events: auto;

  transform:
    translate(calc(-50% + 590px), -50%)
    scale(0.58);

  filter: brightness(0.68);
}

/* Thumbnail and video */
.video-testimonial-thumbnail,
.video-testimonial-video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}

.video-testimonial-thumbnail {
  z-index: 2;
  opacity: 1;

  transition: opacity 0.35s ease;
}

.video-testimonial-video {
  z-index: 1;
  background: #000000;
}

/* Overlay */
.video-testimonial-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.42),
      transparent 62%
    );

  pointer-events: none;

  transition: opacity 0.3s ease;
}

/* Play button */
.video-testimonial-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;

  width: 66px;
  height: 66px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  color: #ffffff;
  background: #1877f2;

  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;

  cursor: pointer;

  transform: translate(-50%, -50%);

  box-shadow:
    0 12px 30px
    rgba(0, 0, 0, 0.3);

  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background 0.3s ease;
}

.video-testimonial-play:hover {
  background: #0866d6;

  transform:
    translate(-50%, -50%)
    scale(1.08);
}

.video-testimonial-play .material-symbols-outlined {
  font-size: 35px;
}

/* Playing state */
.video-testimonial-card.is-playing
.video-testimonial-thumbnail {
  opacity: 0;
  pointer-events: none;
}

.video-testimonial-card.is-playing
.video-testimonial-overlay {
  opacity: 0;
}

.video-testimonial-card.is-playing
.video-testimonial-play {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Controls */
.video-testimonial-controls {
  width: min(100%, 760px);
  margin: 8px auto 0;

  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
  gap: 24px;
}

.video-testimonial-info {
  text-align: center;
}

.video-testimonial-info h3 {
  margin: 0 0 5px;

  color: #181c23;

  font-size: 23px;
  line-height: 1.3;
  font-weight: 800;
}

.video-testimonial-info > span {
  display: block;
  margin-bottom: 10px;

  color: #1877f2;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-testimonial-info p {
  max-width: 520px;
  margin: 0 auto;

  color: #555f6d;

  font-size: 14px;
  line-height: 1.65;
}

/* Arrow buttons */
.video-testimonial-arrow {
  width: 62px;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  color: #181c23;
  background: transparent;

  border: 0;

  cursor: pointer;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.video-testimonial-arrow:hover {
  color: #1877f2;
  transform: scale(1.12);
}

.video-testimonial-arrow .material-symbols-outlined {
  font-size: 42px;
  font-weight: 300;
}

/* Dots */
.video-testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;
  margin-top: 16px;
}

.video-testimonial-dot {
  width: 8px;
  height: 8px;

  padding: 0;

  background: rgba(24, 119, 242, 0.25);

  border: 0;
  border-radius: 999px;

  cursor: pointer;

  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.video-testimonial-dot.is-active {
  width: 26px;
  background: #1877f2;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {
  .video-testimonial-section {
    padding: 85px 0;
  }

  .video-testimonial-stage {
    height: 370px;
  }

  .video-testimonial-card {
    width: 340px;
    height: 210px;
  }

  .video-testimonial-card.is-active {
    width: 430px;
    height: 265px;
  }

  .video-testimonial-card.is-prev {
    transform:
      translate(calc(-50% - 285px), -50%)
      scale(0.7);
  }

  .video-testimonial-card.is-next {
    transform:
      translate(calc(-50% + 285px), -50%)
      scale(0.7);
  }

  .video-testimonial-card.is-far-prev,
  .video-testimonial-card.is-far-next {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {
  .video-testimonial-section {
    padding: 68px 0;
  }

  .video-testimonial-container {
    width: min(100% - 28px, 1440px);
  }

  .video-testimonial-heading {
    margin-bottom: 38px;
  }

  .video-testimonial-heading h2 {
    font-size: 30px;
  }

  .video-testimonial-heading p {
    font-size: 15px;
  }

  .video-testimonial-stage {
    height: 245px;
  }

  .video-testimonial-card,
  .video-testimonial-card.is-active {
    width: calc(100% - 12px);
    max-width: 390px;
    height: 225px;
  }

  .video-testimonial-card.is-active {
    opacity: 1;
    visibility: visible;

    transform:
      translate(-50%, -50%)
      scale(1);
  }

  .video-testimonial-card.is-prev,
  .video-testimonial-card.is-next,
  .video-testimonial-card.is-far-prev,
  .video-testimonial-card.is-far-next {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .video-testimonial-controls {
    grid-template-columns: 44px 1fr 44px;
    gap: 10px;
  }

  .video-testimonial-arrow {
    width: 42px;
    height: 42px;
  }

  .video-testimonial-arrow .material-symbols-outlined {
    font-size: 28px;
  }

  .video-testimonial-play {
    width: 56px;
    height: 56px;
  }

  .video-testimonial-play .material-symbols-outlined {
    font-size: 30px;
  }

  .video-testimonial-info h3 {
    font-size: 20px;
  }

  .video-testimonial-info p {
    font-size: 13px;
  }
}

/* =========================================
   AANA ACADEMY WELCOME SECTION
========================================= */

.academy-welcome-section {
  position: relative;
  padding: 110px 0;

  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(24, 119, 242, 0.08),
      transparent 30%
    ),
    #f9f9ff;

  overflow: hidden;
}

.academy-welcome-container {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;

  gap: 72px;
}

/* =========================================
   LEFT IMAGE
========================================= */

.academy-welcome-visual {
  position: relative;
}

.academy-welcome-image-wrap {
  position: relative;

  width: 100%;
  min-height: 520px;

  overflow: hidden;

  border-radius: 30px;

  background: #e8edf5;

  box-shadow:
    0 30px 70px rgba(19, 49, 88, 0.14);
}

.academy-welcome-image {
  width: 100%;
  height: 100%;
  min-height: 520px;

  display: block;

  object-fit: cover;

  transition: transform 0.7s ease;
}

.academy-welcome-image-wrap:hover
.academy-welcome-image {
  transform: scale(1.035);
}

/* Image gradient */
.academy-welcome-image-wrap::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(6, 24, 49, 0.28),
      transparent 55%
    );

  pointer-events: none;
}

/* Floating excellence card */
.academy-welcome-floating-card {
  position: absolute;

  left: 28px;
  bottom: 28px;
  z-index: 3;

  min-width: 270px;

  display: flex;
  align-items: center;

  gap: 14px;

  padding: 18px 20px;

  background: rgba(255, 255, 255, 0.88);

  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    0 16px 35px rgba(12, 39, 77, 0.16);
}

.academy-welcome-floating-icon {
  width: 48px;
  height: 48px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: #1877f2;

  border-radius: 14px;
}

.academy-welcome-floating-icon
.material-symbols-outlined {
  font-size: 24px;
}

.academy-welcome-floating-card div:last-child {
  display: flex;
  flex-direction: column;
}

.academy-welcome-floating-card strong {
  color: #181c23;

  font-size: 15px;
  font-weight: 800;
}

.academy-welcome-floating-card span {
  color: #ffff;

  font-size: 12px;
}

/* =========================================
   RIGHT CONTENT
========================================= */

.academy-welcome-content {
  max-width: 560px;
}

.academy-welcome-label {
  display: inline-flex;

  margin-bottom: 18px;
  padding: 8px 15px;

  color: #1877f2;
  background: rgba(24, 119, 242, 0.09);

  border-radius: 999px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.academy-welcome-title {
  margin: 0;

  color: #181c23;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: clamp(38px, 4vw, 52px);
  line-height: 1.12;

  font-weight: 800;
  letter-spacing: -0.04em;
}

.academy-welcome-title span {
  color: #1877f2;
}

.academy-welcome-description {
  max-width: 540px;

  margin: 24px 0 0;

  color: #555f6d;

  font-size: 17px;
  line-height: 1.8;
}

.academy-welcome-divider {
  width: 70px;
  height: 3px;

  margin: 28px 0;

  background: #1877f2;

  border-radius: 999px;
}

/* =========================================
   STATS
========================================= */

.academy-welcome-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 16px;
}

.academy-welcome-stat-card {
  display: flex;
  align-items: center;

  gap: 15px;

  padding: 20px;

  background: #ffffff;

  border: 1px solid rgba(24, 119, 242, 0.12);
  border-radius: 18px;

  box-shadow:
    0 10px 28px rgba(19, 49, 88, 0.06);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.academy-welcome-stat-card:hover {
  transform: translateY(-4px);

  border-color: rgba(24, 119, 242, 0.26);

  box-shadow:
    0 18px 38px rgba(19, 49, 88, 0.1);
}

.academy-stat-icon {
  width: 46px;
  height: 46px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #1877f2;
  background: rgba(24, 119, 242, 0.09);

  border-radius: 13px;
}

.academy-stat-icon
.material-symbols-outlined {
  font-size: 23px;
}

.academy-welcome-stat-card > div:last-child {
  display: flex;
  flex-direction: column;
}

.academy-welcome-stat-card strong {
  color: #1877f2;

  font-size: 27px;
  line-height: 1;
  font-weight: 800;
}

.academy-welcome-stat-card span {
  margin-top: 5px;

  color: #667085;

  font-size: 11px;
  line-height: 1.4;

  font-weight: 700;
  letter-spacing: 0.06em;

  text-transform: uppercase;
}

/* =========================================
   LINK
========================================= */

.academy-welcome-link {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  margin-top: 30px;

  color: #1877f2;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  transition: gap 0.3s ease;
}

.academy-welcome-link:hover {
  gap: 13px;
}

.academy-welcome-link
.material-symbols-outlined {
  font-size: 19px;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {
  .academy-welcome-section {
    padding: 85px 0;
  }

  .academy-welcome-container {
    width: min(100% - 40px, 1280px);

    grid-template-columns: 1fr;

    gap: 50px;
  }

  .academy-welcome-content {
    max-width: 720px;
  }

  .academy-welcome-image-wrap,
  .academy-welcome-image {
    min-height: 450px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {
  .academy-welcome-section {
    padding: 65px 0;
  }

  .academy-welcome-container {
    width: min(100% - 30px, 1280px);

    gap: 38px;
  }

  .academy-welcome-image-wrap,
  .academy-welcome-image {
    min-height: 330px;
  }

  .academy-welcome-image-wrap {
    border-radius: 22px;
  }

  .academy-welcome-floating-card {
    left: 16px;
    right: 16px;
    bottom: 16px;

    min-width: 0;

    padding: 14px 16px;
  }

  .academy-welcome-title {
    font-size: 34px;
  }

  .academy-welcome-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .academy-welcome-stats {
    grid-template-columns: 1fr;
  }

  .academy-welcome-stat-card {
    padding: 18px;
  }
}

/* =========================================
   PROGRAMS SECTION
========================================= */

.academy-programs-section {
  position: relative;
  padding: 100px 0;

  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(24, 119, 242, 0.08),
      transparent 26%
    ),
    #f9f9ff;
}

.academy-programs-container {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
}

/* Heading */
.academy-programs-heading {
  margin-bottom: 48px;
}

.academy-programs-heading > div {
  max-width: 720px;
}

.academy-programs-label {
  display: inline-block;

  margin-bottom: 10px;

  color: #1877f2;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.academy-programs-heading h2 {
  margin: 0;

  color: #181c23;

  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(36px, 4vw, 50px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.academy-programs-heading p {
  max-width: 620px;

  margin: 16px 0 0;

  color: #667085;

  font-size: 16px;
  line-height: 1.75;
}

/* Grid */
.academy-programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 26px;
}

/* Card */
.academy-program-card {
  position: relative;

  overflow: hidden;

  background: #ffffff;

  border: 1px solid rgba(24, 119, 242, 0.1);
  border-radius: 26px;

  box-shadow:
    0 16px 40px rgba(18, 45, 82, 0.07);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.academy-program-card:hover {
  transform: translateY(-7px);

  border-color: rgba(24, 119, 242, 0.22);

  box-shadow:
    0 28px 60px rgba(18, 45, 82, 0.13);
}

/* Image */
.academy-program-image-wrap {
  position: relative;

  height: 280px;

  overflow: hidden;
}

.academy-program-image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.7s ease;
}

.academy-program-card:hover
.academy-program-image {
  transform: scale(1.06);
}

.academy-program-image-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(10, 26, 49, 0.46),
      transparent 58%
    );

  pointer-events: none;
}

/* Image badge */
.academy-program-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;

  display: inline-flex;
  align-items: center;

  gap: 7px;

  padding: 10px 14px;

  color: #ffffff;

  background: rgba(8, 25, 51, 0.55);

  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  font-size: 12px;
  font-weight: 700;
}

.academy-program-badge
.material-symbols-outlined {
  font-size: 18px;
}

/* Content */
.academy-program-content {
  padding: 30px;
}

.academy-program-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 20px;
}

.academy-program-top h3 {
  margin: 0;

  color: #181c23;

  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.academy-program-number {
  color: rgba(24, 119, 242, 0.18);

  font-size: 36px;
  line-height: 1;
  font-weight: 800;
}

.academy-program-description {
  margin: 14px 0 22px;

  color: #667085;

  font-size: 15px;
  line-height: 1.7;
}

/* List */
.academy-program-list {
  display: flex;
  flex-direction: column;

  gap: 12px;

  margin: 0 0 26px;
  padding: 0;

  list-style: none;
}

.academy-program-list li {
  display: flex;
  align-items: center;

  gap: 10px;

  color: #414754;

  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}

.academy-program-list
.material-symbols-outlined {
  width: 23px;
  height: 23px;

  flex-shrink: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: #1877f2;

  border-radius: 50%;

  font-size: 15px;
}

/* CTA */
.academy-program-link {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  color: #1877f2;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  transition: gap 0.3s ease;
}

.academy-program-link:hover {
  gap: 13px;
}

.academy-program-link
.material-symbols-outlined {
  font-size: 19px;
}

/* Tablet */
@media (max-width: 900px) {
  .academy-programs-section {
    padding: 80px 0;
  }

  .academy-programs-container {
    width: min(100% - 40px, 1280px);
  }

  .academy-programs-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .academy-programs-section {
    padding: 65px 0;
  }

  .academy-programs-container {
    width: min(100% - 30px, 1280px);
  }

  .academy-programs-heading {
    margin-bottom: 34px;
  }

  .academy-programs-heading h2 {
    font-size: 32px;
  }

  .academy-programs-heading p {
    font-size: 15px;
  }

  .academy-program-image-wrap {
    height: 230px;
  }

  .academy-program-content {
    padding: 24px 20px;
  }

  .academy-program-top h3 {
    font-size: 24px;
  }

  .academy-program-number {
    font-size: 30px;
  }

  .academy-program-description {
    font-size: 14px;
  }
}

/* =========================================
   ABOUT HERO
========================================= */

.about-hero {
  position: relative;

  padding: 105px 0;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 82% 25%,
      rgba(24, 119, 242, 0.12),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #f9f9ff 0%,
      #ffffff 100%
    );
}

.about-hero-container {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;

  align-items: center;
  gap: 70px;
}

/* =========================================
   LEFT CONTENT
========================================= */

.about-hero-content {
  position: relative;
  z-index: 3;

  max-width: 100%;
}

.about-hero-label {
  display: inline-flex;

  margin-bottom: 20px;
  padding: 8px 16px;

  color: #1877f2;
  background: rgba(24, 119, 242, 0.09);

  border-radius: 999px;

  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.about-hero-title {
 max-width: 760px;
  margin: 0;

  color: #181c23;

  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.about-hero-title span {
  display: block;

  margin-top: 4px;

  color: #1877f2;
}

.about-hero-description {
  max-width: 650px;

  margin: 26px 0 0;

  color: #555f6d;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: 17px;
  line-height: 1.8;

  text-align: justify;
}

.about-hero-line {
  width: 76px;
  height: 3px;

  margin: 30px 0;

  background: #1877f2;

  border-radius: 999px;
}

/* =========================================
   HIGHLIGHTS
========================================= */

.about-hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 14px;

  max-width: 650px;
}

.about-hero-highlights > div {
  padding: 18px;

  background: #ffffff;

  border: 1px solid rgba(24, 119, 242, 0.1);
  border-radius: 16px;

  box-shadow:
    0 10px 28px
    rgba(18, 45, 82, 0.05);
}

.about-hero-highlights strong {
  display: block;

  margin-bottom: 4px;

  color: #1877f2;

  font-size: 14px;
  font-weight: 800;
}

.about-hero-highlights span {
  color: #667085;

  font-size: 11px;
  line-height: 1.4;
  font-weight: 600;
}

/* =========================================
   RIGHT VISUAL
========================================= */

.about-hero-visual {
  position: relative;

  min-height: 430px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative blue shapes */
.about-hero-shape {
  position: absolute;

  border-radius: 50%;
}

.about-shape-one {
  width: 340px;
  height: 340px;

  background: rgba(24, 119, 242, 0.08);

  top: 20px;
  right: 30px;
}

.about-shape-two {
  width: 220px;
  height: 220px;

  background: rgba(24, 119, 242, 0.06);

  bottom: 30px;
  left: 20px;
}

/* Main visual card */
.about-hero-visual-card {
  position: relative;
  z-index: 2;

  width: min(100%, 360px);

  padding: 40px 34px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.95),
      rgba(245, 249, 255, 0.9)
    );

  border: 1px solid rgba(24, 119, 242, 0.14);
  border-radius: 28px;

  box-shadow:
    0 30px 70px
    rgba(24, 119, 242, 0.12);

  text-align: center;
}

.about-hero-visual-card
.material-symbols-outlined {
  width: 64px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 22px;

  color: #ffffff;
  background: #1877f2;

  border-radius: 18px;

  font-size: 30px;
}

.about-hero-visual-card strong {
  display: block;

  margin-bottom: 12px;

  color: #181c23;

  font-size: 22px;
  line-height: 1.3;
  font-weight: 800;
}

.about-hero-visual-card p {
  margin: 0;

  color: #667085;

  font-size: 14px;
  line-height: 1.7;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {
  .about-hero {
    padding: 85px 0;
  }

  .about-hero-container {
    width: min(100% - 40px, 1280px);

    grid-template-columns: 1fr;

    gap: 50px;
  }

  .about-hero-content {
    max-width: 760px;
  }

  .about-hero-visual {
    min-height: 360px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {
  .about-hero {
    padding: 65px 0;
  }

  .about-hero-container {
    width: min(100% - 30px, 1280px);

    gap: 38px;
  }

  .about-hero-title {
     font-size: 36px;
    line-height: 1.1;
  }

  .about-hero-description {
    font-size: 15px;
    line-height: 1.75;

    text-align: left;
  }

  .about-hero-highlights {
    grid-template-columns: 1fr;
  }

  .about-hero-visual {
    min-height: 320px;
  }

  .about-hero-visual-card {
    width: 100%;

    padding: 32px 24px;
  }
}

/* =========================================
   ABOUT STORY SECTION
========================================= */

.about-story-section {
  position: relative;
  padding: 110px 0;

  background:
    radial-gradient(
      circle at 86% 20%,
      rgba(24, 119, 242, 0.07),
      transparent 28%
    ),
    #ffffff;

  overflow: hidden;
}

.about-story-container {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;

  gap: 80px;
}

/* =========================================
   LEFT CONTENT
========================================= */

.about-story-content {
  max-width: 590px;
}

.about-story-label {
  display: inline-flex;

  margin-bottom: 16px;
  padding: 8px 15px;

  color: #1877f2;
  background: rgba(24, 119, 242, 0.09);

  border-radius: 999px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.about-story-title {
  margin: 0 0 24px;

  color: #181c23;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: clamp(38px, 4vw, 50px);
  line-height: 1.12;

  font-weight: 800;
  letter-spacing: -0.035em;
}

.about-story-text {
  margin: 0 0 18px;

  color: #5f6877;

  font-size: 16px;
  line-height: 1.85;

  text-align: left;
}

/* =========================================
   STATS
========================================= */

.about-story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 16px;

  margin-top: 30px;
}

.about-story-stat {
  display: flex;
  align-items: center;

  gap: 14px;

  padding: 18px;

  background: #f9fbff;

  border: 1px solid rgba(24, 119, 242, 0.12);
  border-radius: 16px;
}

.about-story-stat >
.material-symbols-outlined {
  width: 44px;
  height: 44px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #1877f2;
  background: rgba(24, 119, 242, 0.09);

  border-radius: 12px;

  font-size: 22px;
}

.about-story-stat strong {
  display: block;

  color: #1877f2;

  font-size: 25px;
  line-height: 1;
  font-weight: 800;
}

.about-story-stat p {
  margin: 5px 0 0;

  color: #687385;

  font-size: 11px;
  line-height: 1.4;

  font-weight: 700;
  letter-spacing: 0.06em;

  text-transform: uppercase;
}

/* =========================================
   RIGHT IMAGE
========================================= */

.about-story-visual {
  position: relative;

  min-height: 560px;
}

.about-story-image-wrap {
  position: relative;

  width: 100%;
  height: 520px;

  overflow: hidden;

  border-radius: 30px;

  box-shadow:
    0 32px 75px
    rgba(19, 49, 88, 0.14);
}

.about-story-image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.7s ease;
}

.about-story-image-wrap:hover
.about-story-image {
  transform: scale(1.035);
}

.about-story-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(10, 27, 51, 0.26),
      transparent 55%
    );

  pointer-events: none;
}

/* =========================================
   ACHIEVEMENT CARD
========================================= */

.about-story-achievement {
  position: absolute;

  left: -40px;
  bottom: 5px;

  width: 300px;

  display: flex;
  align-items: center;

  gap: 14px;

  padding: 20px;

  background: rgba(255, 255, 255, 0.92);

  border: 1px solid rgba(24, 119, 242, 0.12);
  border-radius: 18px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 18px 45px
    rgba(18, 45, 82, 0.15);
}

.about-story-achievement-icon {
  width: 48px;
  height: 48px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: #1877f2;

  border-radius: 13px;
}

.about-story-achievement-icon
.material-symbols-outlined {
  font-size: 24px;
}

.about-story-achievement strong {
  display: block;

  color: #181c23;

  font-size: 14px;
  line-height: 1.4;

  font-weight: 800;
}

.about-story-achievement p {
  margin: 4px 0 0;

  color: #6e7888;

  font-size: 11px;
  line-height: 1.45;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

  .about-story-section {
    padding: 85px 0;
  }

  .about-story-container {
    width: min(100% - 40px, 1280px);

    grid-template-columns: 1fr;

    gap: 50px;
  }

  .about-story-content {
    max-width: 760px;
  }

  .about-story-visual {
    min-height: 500px;
  }

  .about-story-achievement {
    left: 20px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .about-story-section {
    padding: 65px 0;
  }

  .about-story-container {
    width: min(100% - 30px, 1280px);

    gap: 38px;
  }

  .about-story-title {
    font-size: 34px;
  }

  .about-story-text {
    font-size: 15px;
    line-height: 1.75;
  }

  .about-story-stats {
    grid-template-columns: 1fr;
  }

  .about-story-visual {
    min-height: auto;
  }

  .about-story-image-wrap {
    height: 360px;

    border-radius: 22px;
  }

  .about-story-achievement {
    position: relative;

    left: auto;
    bottom: auto;

    width: 100%;

    margin-top: 16px;
  }
}

/* =========================================
   VISION & MISSION SECTION
========================================= */

.about-values-section {
  position: relative;
  padding: 110px 0;

  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(24, 119, 242, 0.07),
      transparent 28%
    ),
    #f9f9ff;

  overflow: hidden;
}

.about-values-container {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
}

/* =========================================
   HEADING
========================================= */

.about-values-heading {
  max-width: 720px;
  margin-bottom: 52px;
}

.about-values-label {
  display: inline-flex;

  margin-bottom: 14px;
  padding: 8px 15px;

  color: #1877f2;
  background: rgba(24, 119, 242, 0.09);

  border-radius: 999px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.about-values-heading h2 {
  margin: 0;

  color: #181c23;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: clamp(38px, 4vw, 50px);
  line-height: 1.15;

  font-weight: 800;
  letter-spacing: -0.035em;
}

.about-values-heading p {
  max-width: 620px;
  margin: 16px 0 0;

  color: #667085;

  font-size: 16px;
  line-height: 1.75;
}


/* =========================================
   GRID
========================================= */

.about-values-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;

  gap: 26px;

  align-items: stretch;
}


/* =========================================
   VISION CARD
========================================= */

.about-vision-card {
  position: relative;

  min-height: 560px;

  padding: 42px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.15),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      #1877f2 0%,
      #0f63d5 100%
    );

  border-radius: 28px;

  box-shadow:
    0 30px 70px
    rgba(24, 119, 242, 0.2);
}

.about-value-icon {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 28px;

  color: #1877f2;
  background: #ffffff;

  border-radius: 16px;

  box-shadow:
    0 12px 28px
    rgba(0, 0, 0, 0.12);
}

.about-value-icon
.material-symbols-outlined {
  font-size: 27px;
}

.about-value-eyebrow {
  display: block;

  margin-bottom: 12px;

  color: rgba(255, 255, 255, 0.75);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.about-vision-card h3 {
  max-width: 420px;

  margin: 0;

  color: #ffffff;

  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.15;

  font-weight: 800;
  letter-spacing: -0.03em;
}

.about-vision-quote {
  max-width: 480px;

  margin: auto 0 0;

  color: rgba(255, 255, 255, 0.92);

  font-size: 20px;
  line-height: 1.7;

  font-style: italic;
}

.about-vision-decoration {
  position: absolute;

  right: -80px;
  bottom: -80px;

  width: 240px;
  height: 240px;

  border: 45px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}


/* =========================================
   MISSION CARD
========================================= */

.about-mission-card {
  padding: 42px;

  background: #ffffff;

  border: 1px solid rgba(24, 119, 242, 0.1);
  border-radius: 28px;

  box-shadow:
    0 24px 60px
    rgba(18, 45, 82, 0.08);
}

.about-mission-header {
  display: flex;
  align-items: flex-start;

  gap: 18px;

  margin-bottom: 30px;
}

.about-value-icon.light {
  flex-shrink: 0;

  margin: 0;

  color: #ffffff;
  background: #1877f2;
}

.about-value-eyebrow.dark {
  margin-bottom: 8px;

  color: #1877f2;
}

.about-mission-header h3 {
  max-width: 480px;

  margin: 0;

  color: #181c23;

  font-size: 28px;
  line-height: 1.22;

  font-weight: 800;
  letter-spacing: -0.025em;
}


/* =========================================
   MISSION ITEMS
========================================= */

.about-mission-list {
  display: flex;
  flex-direction: column;

  gap: 0;
}

.about-mission-item {
  display: grid;
  grid-template-columns: 48px 1fr;

  gap: 16px;

  padding: 20px 0;

  border-top:
    1px solid rgba(24, 119, 242, 0.08);
}

.about-mission-item:first-child {
  border-top: 0;
}

.about-mission-number {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #1877f2;
  background: rgba(24, 119, 242, 0.08);

  border-radius: 12px;

  font-size: 12px;
  font-weight: 800;
}

.about-mission-item strong {
  display: block;

  margin-bottom: 5px;

  color: #181c23;

  font-size: 15px;
  line-height: 1.4;

  font-weight: 800;
}

.about-mission-item p {
  margin: 0;

  color: #667085;

  font-size: 13px;
  line-height: 1.65;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

  .about-values-section {
    padding: 85px 0;
  }

  .about-values-container {
    width: min(100% - 40px, 1280px);
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-vision-card {
    min-height: 460px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .about-values-section {
    padding: 65px 0;
  }

  .about-values-container {
    width: min(100% - 30px, 1280px);
  }

  .about-values-heading {
    margin-bottom: 36px;
  }

  .about-values-heading h2 {
    font-size: 34px;
  }

  .about-values-heading p {
    font-size: 15px;
  }

  .about-vision-card,
  .about-mission-card {
    padding: 28px 22px;

    border-radius: 22px;
  }

  .about-vision-card {
    min-height: 420px;
  }

  .about-vision-card h3 {
    font-size: 30px;
  }

  .about-vision-quote {
    font-size: 17px;
  }

  .about-mission-header {
    flex-direction: column;

    gap: 14px;
  }

  .about-mission-header h3 {
    font-size: 24px;
  }

  .about-mission-item {
    grid-template-columns: 42px 1fr;

    gap: 12px;
  }

}

/* =========================================
   FOUNDER SECTION
========================================= */

.about-founder-section {
  position: relative;

  padding: 110px 0;

  background:
    radial-gradient(
      circle at 12% 80%,
      rgba(24, 119, 242, 0.07),
      transparent 28%
    ),
    #ffffff;

  overflow: hidden;
}

.about-founder-container {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.85fr 1.15fr;

  align-items: center;

  gap: 80px;
}


/* =========================================
   FOUNDER IMAGE
========================================= */

.about-founder-visual {
  position: relative;
}

.about-founder-image-wrap {
  position: relative;

  width: 100%;

  aspect-ratio: 4 / 5;

  overflow: hidden;

  border-radius: 30px;

  background: #e8edf5;

  box-shadow:
    0 32px 75px
    rgba(19, 49, 88, 0.15);
}

.about-founder-image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.7s ease;
}

.about-founder-image-wrap:hover
.about-founder-image {
  transform: scale(1.035);
}

.about-founder-image-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(7, 22, 43, 0.65) 0%,
      rgba(7, 22, 43, 0.12) 52%,
      transparent 75%
    );

  pointer-events: none;
}


/* Founder name card */
.about-founder-name-card {
  position: absolute;

  left: 24px;
  right: 24px;
  bottom: 24px;

  padding: 20px;

  color: #ffffff;

  background: rgba(8, 25, 51, 0.62);

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.about-founder-name-label {
  display: block;

  margin-bottom: 6px;

  color: #8fc0ff;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.about-founder-name-card h3 {
  margin: 0;

  color: #ffffff;

  font-size: 22px;
  line-height: 1.25;

  font-weight: 800;
}

.about-founder-name-card p {
  margin: 5px 0 0;

  color: rgba(255, 255, 255, 0.82);

  font-size: 12px;
}


/* =========================================
   CONTENT
========================================= */

.about-founder-content {
  max-width: 650px;
}

.about-founder-label {
  display: inline-flex;

  margin-bottom: 18px;
  padding: 8px 15px;

  color: #1877f2;
  background: rgba(24, 119, 242, 0.09);

  border-radius: 999px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.about-founder-title {
  margin: 0;

  color: #181c23;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: clamp(40px, 4vw, 54px);
  line-height: 1.1;

  font-weight: 800;
  letter-spacing: -0.04em;
}

.about-founder-title span {
  display: block;

  color: #1877f2;
}


/* =========================================
   QUOTE
========================================= */

.about-founder-quote {
  position: relative;

  margin-top: 30px;

  padding: 24px 26px 24px 64px;

  background: #f7faff;

  border: 1px solid rgba(24, 119, 242, 0.12);
  border-left: 4px solid #1877f2;

  border-radius: 16px;
}

.about-founder-quote >
.material-symbols-outlined {
  position: absolute;

  left: 22px;
  top: 22px;

  color: #1877f2;

  font-size: 30px;
}

.about-founder-quote p {
  margin: 0;

  color: #414754;

  font-size: 16px;
  line-height: 1.75;

  font-style: italic;
  font-weight: 500;
}


/* =========================================
   DESCRIPTION
========================================= */

.about-founder-description {
  max-width: 620px;

  margin: 26px 0 0;

  color: #626b7a;

  font-size: 15px;
  line-height: 1.8;
}


/* =========================================
   HIGHLIGHTS
========================================= */

.about-founder-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 14px;

  margin-top: 30px;
}

.about-founder-highlight {
  display: flex;
  align-items: center;

  gap: 13px;

  padding: 17px;

  background: #ffffff;

  border: 1px solid rgba(24, 119, 242, 0.11);
  border-radius: 16px;

  box-shadow:
    0 10px 28px
    rgba(18, 45, 82, 0.05);
}

.about-founder-highlight-icon {
  width: 42px;
  height: 42px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #1877f2;

  background: rgba(24, 119, 242, 0.09);

  border-radius: 12px;
}

.about-founder-highlight-icon
.material-symbols-outlined {
  font-size: 21px;
}

.about-founder-highlight strong {
  display: block;

  color: #181c23;

  font-size: 13px;
  line-height: 1.4;

  font-weight: 800;
}

.about-founder-highlight span {
  display: block;

  margin-top: 3px;

  color: #7a8493;

  font-size: 11px;
  line-height: 1.4;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

  .about-founder-section {
    padding: 85px 0;
  }

  .about-founder-container {
    width: min(100% - 40px, 1280px);

    grid-template-columns: 1fr;

    gap: 50px;
  }

  .about-founder-visual {
    max-width: 600px;
  }

  .about-founder-content {
    max-width: 760px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .about-founder-section {
    padding: 65px 0;
  }

  .about-founder-container {
    width: min(100% - 30px, 1280px);

    gap: 38px;
  }

  .about-founder-image-wrap {
    border-radius: 22px;
  }

  .about-founder-name-card {
    left: 16px;
    right: 16px;
    bottom: 16px;

    padding: 16px;
  }

  .about-founder-name-card h3 {
    font-size: 19px;
  }

  .about-founder-title {
    font-size: 34px;
  }

  .about-founder-quote {
    padding:
      22px
      20px
      22px
      54px;
  }

  .about-founder-quote >
  .material-symbols-outlined {
    left: 17px;
  }

  .about-founder-quote p {
    font-size: 15px;
  }

  .about-founder-description {
    font-size: 14px;
    line-height: 1.75;
  }

  .about-founder-highlights {
    grid-template-columns: 1fr;
  }

}

/* =========================================
   MODERN FACILITIES SECTION
========================================= */

.facilities-section {
  position: relative;
  padding: 110px 0;

  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(24, 119, 242, 0.08),
      transparent 28%
    ),
    #f9f9ff;

  overflow: hidden;
}

.facilities-container {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
}

/* =========================================
   HEADING
========================================= */

.facilities-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 40px;

  margin-bottom: 52px;
}

.facilities-heading-content {
  max-width: 760px;
}

.facilities-label {
  display: inline-flex;

  margin-bottom: 14px;
  padding: 8px 15px;

  color: #1877f2;
  background: rgba(24, 119, 242, 0.09);

  border-radius: 999px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.facilities-heading h2 {
  margin: 0;

  color: #181c23;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: clamp(38px, 4vw, 50px);
  line-height: 1.12;

  font-weight: 800;
  letter-spacing: -0.035em;
}

.facilities-heading h2 span {
  display: block;

  color: #1877f2;
}

.facilities-heading p {
  max-width: 650px;

  margin: 16px 0 0;

  color: #667085;

  font-size: 16px;
  line-height: 1.75;
}

/* Virtual Tour */
.facilities-tour-link {
  flex-shrink: 0;

  display: inline-flex;
  align-items: center;

  gap: 8px;

  padding-bottom: 5px;

  color: #1877f2;

  border-bottom: 1px solid rgba(24, 119, 242, 0.35);

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  transition:
    gap 0.3s ease,
    border-color 0.3s ease;
}

.facilities-tour-link:hover {
  gap: 13px;
  border-color: #1877f2;
}

.facilities-tour-link
.material-symbols-outlined {
  font-size: 19px;
}

/* =========================================
   GRID
========================================= */

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 24px;
}

/* =========================================
   CARD
========================================= */

.facility-modern-card {
  position: relative;

  overflow: hidden;

  background: #ffffff;

  border: 1px solid rgba(24, 119, 242, 0.1);
  border-radius: 24px;

  box-shadow:
    0 16px 40px rgba(18, 45, 82, 0.07);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.facility-modern-card:hover {
  transform: translateY(-7px);

  border-color: rgba(24, 119, 242, 0.23);

  box-shadow:
    0 28px 60px rgba(18, 45, 82, 0.13);
}

/* =========================================
   IMAGE
========================================= */

.facility-image-wrap {
  position: relative;

  height: 260px;

  overflow: hidden;
}

.facility-image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.7s ease;
}

.facility-modern-card:hover
.facility-image {
  transform: scale(1.06);
}

.facility-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(7, 22, 43, 0.42),
      transparent 58%
    );

  pointer-events: none;
}

/* Icon badge */
.facility-icon-badge {
  position: absolute;

  left: 18px;
  bottom: 18px;

  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: rgba(24, 119, 242, 0.9);

  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;

  backdrop-filter: blur(10px);
}

.facility-icon-badge
.material-symbols-outlined {
  font-size: 23px;
}

/* Number */
.facility-image-number {
  position: absolute;

  top: 16px;
  right: 16px;

  color: rgba(255, 255, 255, 0.9);

  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* =========================================
   CONTENT
========================================= */

.facility-content {
  padding: 24px;
}

.facility-content h3 {
  margin: 0 0 10px;

  color: #181c23;

  font-size: 21px;
  line-height: 1.3;

  font-weight: 800;
}

.facility-content p {
  margin: 0;

  color: #667085;

  font-size: 14px;
  line-height: 1.7;
}

.facility-meta {
  display: inline-flex;

  margin-top: 18px;

  color: #1877f2;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;

  text-transform: uppercase;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

  .facilities-section {
    padding: 85px 0;
  }

  .facilities-container {
    width: min(100% - 40px, 1280px);
  }

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

  .facilities-heading {
    align-items: flex-start;
  }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .facilities-section {
    padding: 65px 0;
  }

  .facilities-container {
    width: min(100% - 30px, 1280px);
  }

  .facilities-heading {
    flex-direction: column;
    align-items: flex-start;

    gap: 22px;

    margin-bottom: 36px;
  }

  .facilities-heading h2 {
    font-size: 34px;
  }

  .facilities-heading p {
    font-size: 15px;
  }

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

  .facility-image-wrap {
    height: 230px;
  }

  .facility-content {
    padding: 22px 20px;
  }

}

/* =========================================
   ACADEMY GALLERY
========================================= */

.academy-gallery-section {
  position: relative;

  padding: 110px 0;

  background:
    radial-gradient(
      circle at 85% 12%,
      rgba(24, 119, 242, 0.08),
      transparent 28%
    ),
    #ffffff;

  overflow: hidden;
}

.academy-gallery-container {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
}

/* =========================================
   HEADING
========================================= */

.academy-gallery-heading {
  max-width: 720px;

  margin: 0 auto 52px;

  text-align: center;
}

.academy-gallery-label {
  display: inline-flex;

  margin-bottom: 14px;
  padding: 8px 15px;

  color: #1877f2;
  background: rgba(24, 119, 242, 0.09);

  border-radius: 999px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.academy-gallery-heading h2 {
  margin: 0;

  color: #181c23;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: clamp(38px, 4vw, 50px);
  line-height: 1.13;

  font-weight: 800;
  letter-spacing: -0.035em;
}

.academy-gallery-heading h2 span {
  color: #1877f2;
}

.academy-gallery-heading p {
  max-width: 650px;

  margin: 16px auto 0;

  color: #667085;

  font-size: 16px;
  line-height: 1.75;
}


/* =========================================
   GRID
========================================= */

.academy-gallery-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  grid-auto-flow: dense;
  grid-auto-rows: 190px;

  gap: 18px;
}


/* =========================================
   CARD SIZE VARIANTS
========================================= */

.academy-gallery-card-small {
  grid-row: span 1;
}

.academy-gallery-card-medium {
  grid-row: span 2;
}

.academy-gallery-card-large {
  grid-row: span 2;
}


/* =========================================
   CARD
========================================= */

.academy-gallery-card {
  position: relative;

  overflow: hidden;

  background: #e7edf5;

  border-radius: 20px;

  cursor: pointer;

  box-shadow:
    0 14px 35px
    rgba(18, 45, 82, 0.07);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

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

  box-shadow:
    0 24px 50px
    rgba(18, 45, 82, 0.14);
}


/* =========================================
   IMAGE
========================================= */

.academy-gallery-card img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.7s ease,
    filter 0.4s ease;
}

.academy-gallery-card:hover img {
  transform: scale(1.065);
}


/* =========================================
   OVERLAY
========================================= */

.academy-gallery-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 22px;

  background:
    linear-gradient(
      to top,
      rgba(5, 18, 38, 0.82) 0%,
      rgba(5, 18, 38, 0.18) 55%,
      transparent 78%
    );

  opacity: 0;

  transition: opacity 0.35s ease;
}

.academy-gallery-card:hover
.academy-gallery-overlay {
  opacity: 1;
}

.gallery-category {
  margin-bottom: 6px;

  color: #8fc0ff;

  font-size: 10px;
  line-height: 1;

  font-weight: 700;
  letter-spacing: 0.1em;

  text-transform: uppercase;
}

.gallery-title {
  max-width: 82%;

  margin: 0;

  color: #ffffff;

  font-size: 18px;
  line-height: 1.25;

  font-weight: 800;
}

.gallery-zoom {
  position: absolute;

  top: 18px;
  right: 18px;

  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: rgba(24, 119, 242, 0.88);

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;

  backdrop-filter: blur(8px);

  font-size: 20px;
}


/* =========================================
   CTA
========================================= */

.academy-gallery-footer {
  display: flex;
  justify-content: center;

  margin-top: 42px;
}

.academy-gallery-button {
  min-height: 50px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 0 24px;

  color: #ffffff;
  background: #1877f2;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  box-shadow:
    0 12px 30px
    rgba(24, 119, 242, 0.2);

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.academy-gallery-button:hover {
  background: #0866d6;

  transform: translateY(-2px);

  box-shadow:
    0 16px 35px
    rgba(24, 119, 242, 0.28);
}

.academy-gallery-button
.material-symbols-outlined {
  font-size: 19px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

  .academy-gallery-section {
    padding: 85px 0;
  }

  .academy-gallery-container {
    width: min(100% - 40px, 1280px);
  }

  .academy-gallery-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    grid-auto-rows: 220px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .academy-gallery-section {
    padding: 65px 0;
  }

  .academy-gallery-container {
    width: min(100% - 30px, 1280px);
  }

  .academy-gallery-heading {
    margin-bottom: 36px;
  }

  .academy-gallery-heading h2 {
    font-size: 34px;
  }

  .academy-gallery-heading p {
    font-size: 15px;
  }

  .academy-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;

    gap: 15px;
  }

  .academy-gallery-card-small,
  .academy-gallery-card-medium,
  .academy-gallery-card-large {
    grid-row: span 1;
  }

  .academy-gallery-overlay {
    opacity: 1;

    padding: 20px;
  }

  .gallery-title {
    font-size: 17px;
  }

}

/* =========================================
   CALL TO ACTION
========================================= */

.academy-cta-section {
  position: relative;

  padding: 100px 0;

  background: #ffffff;
}

.academy-cta-container {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
}

.academy-cta-card {
  position: relative;

  overflow: hidden;

  padding: 85px 60px;

  background:
    linear-gradient(
      135deg,
      #061426 0%,
      #081a33 50%,
      #0c2548 100%
    );

  border-radius: 34px;

  box-shadow:
    0 30px 80px
    rgba(6, 20, 38, 0.22);
}

/* =========================================
   CONTENT
========================================= */

.academy-cta-content {
  position: relative;
  z-index: 3;

  max-width: 820px;

  margin: 0 auto;

  text-align: center;
}

.academy-cta-label {
  display: inline-flex;

  margin-bottom: 20px;
  padding: 9px 16px;

  color: #9fc8ff;

  background: rgba(24, 119, 242, 0.16);

  border: 1px solid rgba(143, 192, 255, 0.18);
  border-radius: 999px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.academy-cta-content h2 {
  margin: 0;

  color: #ffffff;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.08;

  font-weight: 800;
  letter-spacing: -0.04em;
}

.academy-cta-content h2 span {
  display: block;

  color: #66a8ff;
}

.academy-cta-content p {
  max-width: 680px;

  margin: 22px auto 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 16px;
  line-height: 1.8;
}

/* =========================================
   BUTTONS
========================================= */

.academy-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;

  flex-wrap: wrap;

  gap: 14px;

  margin-top: 34px;
}

.academy-cta-btn {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 0 24px;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.academy-cta-btn-primary {
  color: #ffffff;

  background: #1877f2;

  box-shadow:
    0 14px 30px
    rgba(24, 119, 242, 0.28);
}

.academy-cta-btn-primary:hover {
  background: #0d68dc;

  transform: translateY(-2px);

  box-shadow:
    0 18px 38px
    rgba(24, 119, 242, 0.34);
}

.academy-cta-btn-secondary {
  color: #ffffff;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.16);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.academy-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.11);

  border-color: rgba(255, 255, 255, 0.28);

  transform: translateY(-2px);
}

.academy-cta-btn .material-symbols-outlined {
  font-size: 19px;
}

/* =========================================
   BACKGROUND GLOWS
========================================= */

.academy-cta-glow {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(10px);
}

.academy-cta-glow-one {
  width: 360px;
  height: 360px;

  top: -180px;
  right: -100px;

  background:
    rgba(24, 119, 242, 0.2);
}

.academy-cta-glow-two {
  width: 300px;
  height: 300px;

  left: -120px;
  bottom: -170px;

  background:
    rgba(77, 144, 255, 0.12);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .academy-cta-section {
    padding: 80px 0;
  }

  .academy-cta-container {
    width: min(100% - 40px, 1280px);
  }

  .academy-cta-card {
    padding: 70px 40px;
  }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .academy-cta-section {
    padding: 65px 0;
  }

  .academy-cta-container {
    width: min(100% - 30px, 1280px);
  }

  .academy-cta-card {
    padding: 52px 22px;

    border-radius: 24px;
  }

  .academy-cta-content h2 {
    font-size: 34px;
  }

  .academy-cta-content p {
    font-size: 15px;
  }

  .academy-cta-actions {
    flex-direction: column;
  }

  .academy-cta-btn {
    width: 100%;
  }

}

/* =========================================
   MUSIC PAGE HERO
========================================= */

.music-page-hero {
  position: relative;

  padding: 100px 0;

  background:
    radial-gradient(
      circle at 86% 20%,
      rgba(24, 119, 242, 0.11),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #f9f9ff 0%,
      #ffffff 100%
    );

  overflow: hidden;
}

.music-page-hero-container {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;

  align-items: center;

  gap: 75px;
}


/* =========================================
   LEFT CONTENT
========================================= */

.music-page-hero-content {
  position: relative;
  z-index: 3;

  max-width: 620px;
}

.music-page-hero-label {
  display: inline-flex;
  align-items: center;

  gap: 7px;

  margin-bottom: 20px;
  padding: 8px 15px;

  color: #1877f2;
  background: rgba(24, 119, 242, 0.09);

  border-radius: 999px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.music-page-hero-label
.material-symbols-outlined {
  font-size: 16px;
}


/* =========================================
   TITLE
========================================= */

.music-page-hero-title {
  margin: 0;

  color: #181c23;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: clamp(46px, 5vw, 66px);
  line-height: 1.05;

  font-weight: 800;
  letter-spacing: -0.045em;
}

.music-page-hero-title span {
  display: block;

  color: #1877f2;
}


/* =========================================
   DESCRIPTION
========================================= */

.music-page-hero-description {
  max-width: 570px;

  margin: 25px 0 0;

  color: #626b7a;

  font-size: 16px;
  line-height: 1.8;

  text-align: left;
}


/* =========================================
   BUTTONS
========================================= */

.music-page-hero-actions {
  display: flex;
  align-items: center;

  flex-wrap: wrap;

  gap: 14px;

  margin-top: 30px;
}

.music-page-hero-btn {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 0 24px;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.music-page-hero-btn-primary {
  color: #ffffff;
  background: #1877f2;

  box-shadow:
    0 12px 30px
    rgba(24, 119, 242, 0.22);
}

.music-page-hero-btn-primary:hover {
  background: #0d68dc;

  transform: translateY(-2px);

  box-shadow:
    0 17px 36px
    rgba(24, 119, 242, 0.29);
}

.music-page-hero-btn-secondary {
  color: #1877f2;
  background: #ffffff;

  border: 1px solid rgba(24, 119, 242, 0.16);
}

.music-page-hero-btn-secondary:hover {
  background: #f5f9ff;

  border-color: rgba(24, 119, 242, 0.28);

  transform: translateY(-2px);
}

.music-page-hero-btn
.material-symbols-outlined {
  font-size: 18px;
}


/* =========================================
   HIGHLIGHTS
========================================= */

.music-page-hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 14px;

  margin-top: 34px;
}

.music-page-hero-highlight {
  display: flex;
  align-items: center;

  gap: 12px;

  padding: 14px;

  background: rgba(255, 255, 255, 0.75);

  border: 1px solid rgba(24, 119, 242, 0.1);
  border-radius: 14px;
}

.music-page-hero-highlight >
.material-symbols-outlined {
  width: 38px;
  height: 38px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #1877f2;
  background: rgba(24, 119, 242, 0.09);

  border-radius: 10px;

  font-size: 19px;
}

.music-page-hero-highlight strong {
  display: block;

  color: #181c23;

  font-size: 12px;
  font-weight: 800;
}

.music-page-hero-highlight span {
  display: block;

  margin-top: 2px;

  color: #7a8493;

  font-size: 10px;
}


/* =========================================
   RIGHT VISUAL
========================================= */

.music-page-hero-visual {
  position: relative;

  min-height: 500px;
}

.music-page-hero-image-wrap {
  position: relative;

  width: 100%;
  height: 470px;

  overflow: hidden;

  border-radius: 30px;

  background: #e8edf5;

  box-shadow:
    0 30px 70px
    rgba(18, 45, 82, 0.14);
}

.music-page-hero-image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.7s ease;
}

.music-page-hero-image-wrap:hover
.music-page-hero-image {
  transform: scale(1.035);
}

.music-page-hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(8, 24, 48, 0.25),
      transparent 55%
    );

  pointer-events: none;
}


/* =========================================
   ACCREDITATION CARD
========================================= */

.music-page-accreditation-card {
  position: absolute;

  left: -34px;
  bottom: 0;

  min-width: 260px;

  display: flex;
  align-items: center;

  gap: 13px;

  padding: 18px;

  background: rgba(255, 255, 255, 0.94);

  border: 1px solid rgba(24, 119, 242, 0.12);
  border-radius: 17px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 18px 45px
    rgba(18, 45, 82, 0.14);

  z-index: 4;
}

.music-page-accreditation-icon {
  width: 46px;
  height: 46px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: #1877f2;

  border-radius: 12px;
}

.music-page-accreditation-icon
.material-symbols-outlined {
  font-size: 23px;
}

.music-page-accreditation-label {
  display: block;

  margin-bottom: 4px;

  color: #7a8493;

  font-size: 10px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.music-page-accreditation-card strong {
  display: block;

  color: #181c23;

  font-size: 14px;
  font-weight: 800;
}


/* =========================================
   DECORATIVE SHAPE
========================================= */

.music-page-hero-shape {
  position: absolute;

  top: -35px;
  right: -35px;

  width: 180px;
  height: 180px;

  background: rgba(24, 119, 242, 0.07);

  border-radius: 50%;

  z-index: -1;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

  .music-page-hero {
    padding: 85px 0;
  }

  .music-page-hero-container {
    width: min(100% - 40px, 1280px);

    grid-template-columns: 1fr;

    gap: 50px;
  }

  .music-page-hero-content {
    max-width: 760px;
  }

  .music-page-hero-visual {
    min-height: 470px;
  }

  .music-page-accreditation-card {
    left: 20px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .music-page-hero {
    padding: 65px 0;
  }

  .music-page-hero-container {
    width: min(100% - 30px, 1280px);

    gap: 38px;
  }

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

  .music-page-hero-description {
    font-size: 15px;
    line-height: 1.75;
  }

  .music-page-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .music-page-hero-btn {
    width: 100%;
  }

  .music-page-hero-highlights {
    grid-template-columns: 1fr;
  }

  .music-page-hero-visual {
    min-height: auto;
  }

  .music-page-hero-image-wrap {
    height: 340px;

    border-radius: 22px;
  }

  .music-page-accreditation-card {
    position: relative;

    left: auto;
    bottom: auto;

    width: 100%;
    min-width: 0;

    margin-top: 16px;
  }

}

/* =========================================
   MUSIC INTRODUCTION
========================================= */

.music-intro-section {
  position: relative;

  padding: 105px 0;

  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(24, 119, 242, 0.07),
      transparent 28%
    ),
    #f9f9ff;

  overflow: hidden;
}

.music-intro-container {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.music-intro-heading {
  max-width: 760px;

  margin: 0 auto 52px;

  text-align: center;
}

.music-intro-label {
  display: inline-flex;

  margin-bottom: 14px;
  padding: 8px 15px;

  color: #1877f2;
  background: rgba(24, 119, 242, 0.09);

  border-radius: 999px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.music-intro-heading h2 {
  margin: 0;

  color: #181c23;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: clamp(38px, 4vw, 50px);
  line-height: 1.14;

  font-weight: 800;
  letter-spacing: -0.035em;
}

.music-intro-heading p {
  max-width: 680px;

  margin: 16px auto 0;

  color: #667085;

  font-size: 16px;
  line-height: 1.8;
}


/* =========================================
   GRID
========================================= */

.music-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}


/* =========================================
   CARD
========================================= */

.music-intro-card {
  position: relative;

  min-height: 320px;

  display: flex;
  flex-direction: column;

  padding: 30px;

  background: #ffffff;

  border: 1px solid rgba(24, 119, 242, 0.1);
  border-radius: 24px;

  box-shadow:
    0 16px 40px
    rgba(18, 45, 82, 0.06);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.music-intro-card:hover {
  transform: translateY(-6px);

  border-color: rgba(24, 119, 242, 0.22);

  box-shadow:
    0 26px 55px
    rgba(18, 45, 82, 0.12);
}


/* =========================================
   CARD TOP
========================================= */

.music-intro-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  margin-bottom: 34px;
}

.music-intro-icon {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #1877f2;

  background: rgba(24, 119, 242, 0.09);

  border-radius: 14px;
}

.music-intro-icon
.material-symbols-outlined {
  font-size: 25px;
}

.music-intro-number {
  color: rgba(24, 119, 242, 0.2);

  font-size: 14px;
  line-height: 1;

  font-weight: 800;
  letter-spacing: 0.08em;
}


/* =========================================
   CARD CONTENT
========================================= */

.music-intro-card h3 {
  margin: 0 0 12px;

  color: #181c23;

  font-size: 21px;
  line-height: 1.3;

  font-weight: 800;
}

.music-intro-card p {
  margin: 0;

  color: #667085;

  font-size: 14px;
  line-height: 1.75;
}

.music-intro-meta {
  display: inline-flex;

  margin-top: auto;
  padding-top: 24px;

  color: #1877f2;

  font-size: 10px;
  line-height: 1.4;

  font-weight: 700;
  letter-spacing: 0.08em;

  text-transform: uppercase;
}


/* =========================================
   FEATURED CARD
========================================= */

.music-intro-card-featured {
  background:
    linear-gradient(
      145deg,
      #1877f2 0%,
      #0e65d7 100%
    );

  border-color: transparent;

  box-shadow:
    0 22px 48px
    rgba(24, 119, 242, 0.2);
}

.music-intro-card-featured
.music-intro-icon {
  color: #1877f2;

  background: #ffffff;
}

.music-intro-card-featured
.music-intro-number {
  color: rgba(255, 255, 255, 0.36);
}

.music-intro-card-featured h3 {
  color: #ffffff;
}

.music-intro-card-featured p {
  color: rgba(255, 255, 255, 0.8);
}

.music-intro-card-featured
.music-intro-meta {
  color: rgba(255, 255, 255, 0.82);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

  .music-intro-section {
    padding: 85px 0;
  }

  .music-intro-container {
    width: min(100% - 40px, 1280px);
  }

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

  .music-intro-card:last-child {
    grid-column: 1 / -1;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

  .music-intro-section {
    padding: 65px 0;
  }

  .music-intro-container {
    width: min(100% - 30px, 1280px);
  }

  .music-intro-heading {
    margin-bottom: 36px;
  }

  .music-intro-heading h2 {
    font-size: 34px;
  }

  .music-intro-heading p {
    font-size: 15px;
  }

  .music-intro-grid {
    grid-template-columns: 1fr;

    gap: 15px;
  }

  .music-intro-card,
  .music-intro-card:last-child {
    grid-column: auto;

    min-height: 280px;

    padding: 24px;
  }

  .music-intro-card-top {
    margin-bottom: 28px;
  }

}

/* =========================================
   KEYBOARD & PIANO SECTION
========================================= */

.keyboard-course-section {
  position: relative;

  padding: 110px 0;

  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(24, 119, 242, 0.07),
      transparent 28%
    ),
    #ffffff;

  overflow: hidden;
}

.keyboard-course-container {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;

  align-items: center;

  gap: 80px;
}


/* =========================================
   LEFT VISUAL
========================================= */

.keyboard-course-visual {
  position: relative;

  min-height: 560px;
}

.keyboard-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  align-items: start;

  gap: 16px;
}

.keyboard-image-card {
  position: relative;

  overflow: hidden;

  border-radius: 26px;

  box-shadow:
    0 24px 60px
    rgba(18, 45, 82, 0.12);
}

.keyboard-image-card-main {
  height: 430px;
}

.keyboard-image-card-secondary {
  height: 430px;

  margin-top: 55px;
}

.keyboard-image-card img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.7s ease;
}

.keyboard-image-card:hover img {
  transform: scale(1.045);
}


/* =========================================
   FLOATING CARD
========================================= */

.keyboard-floating-card {
  position: absolute;

  left: 50%;
  bottom: 10px;

  transform: translateX(-50%);

  min-width: 245px;

  display: flex;
  align-items: center;

  gap: 13px;

  padding: 17px;

  background: rgba(255, 255, 255, 0.94);

  border: 1px solid rgba(24, 119, 242, 0.12);
  border-radius: 17px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 18px 45px
    rgba(18, 45, 82, 0.14);

  z-index: 4;
}

.keyboard-floating-icon {
  width: 44px;
  height: 44px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;

  background: #1877f2;

  border-radius: 12px;
}

.keyboard-floating-icon
.material-symbols-outlined {
  font-size: 22px;
}

.keyboard-floating-card span {
  display: block;

  margin-bottom: 3px;

  color: #ffff;

  font-size: 10px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.keyboard-floating-card strong {
  display: block;

  color: #181c23;

  font-size: 14px;
  font-weight: 800;
}


/* =========================================
   RIGHT CONTENT
========================================= */

.keyboard-course-content {
  max-width: 650px;
}

.keyboard-course-label {
  display: inline-flex;

  margin-bottom: 16px;
  padding: 8px 15px;

  color: #1877f2;

  background: rgba(24, 119, 242, 0.09);

  border-radius: 999px;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.keyboard-course-content h2 {
  margin: 0;

  color: #181c23;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: clamp(38px, 4vw, 50px);
  line-height: 1.12;

  font-weight: 800;
  letter-spacing: -0.035em;
}

.keyboard-course-content h2 span {
  display: block;

  color: #1877f2;
}

.keyboard-course-description {
  max-width: 590px;

  margin: 20px 0 0;

  color: #626b7a;

  font-size: 16px;
  line-height: 1.8;
}


/* =========================================
   FEATURES
========================================= */

.keyboard-course-features {
  display: flex;
  flex-direction: column;

  gap: 18px;

  margin-top: 30px;
}

.keyboard-course-feature {
  display: flex;
  align-items: flex-start;

  gap: 14px;
}

.keyboard-feature-icon {
  width: 42px;
  height: 42px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #1877f2;

  background: rgba(24, 119, 242, 0.09);

  border-radius: 12px;
}

.keyboard-feature-icon
.material-symbols-outlined {
  font-size: 20px;
}

.keyboard-course-feature h3 {
  margin: 0 0 5px;

  color: #181c23;

  font-size: 15px;
  line-height: 1.4;

  font-weight: 800;
}

.keyboard-course-feature p {
  margin: 0;

  color: #667085;

  font-size: 13px;
  line-height: 1.65;
}


/* =========================================
   COURSE INFO PANEL
========================================= */

.keyboard-course-info {
  margin-top: 32px;

  padding: 26px;

  background:
    linear-gradient(
      145deg,
      #f7faff 0%,
      #ffffff 100%
    );

  border: 1px solid rgba(24, 119, 242, 0.11);

  border-radius: 22px;

  box-shadow:
    0 15px 38px
    rgba(18, 45, 82, 0.06);
}

.keyboard-course-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 22px 30px;
}

.keyboard-info-item span {
  display: block;

  margin-bottom: 5px;

  color: #8a94a3;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.keyboard-info-item strong {
  display: block;

  color: #181c23;

  font-size: 14px;
  line-height: 1.45;

  font-weight: 800;
}


/* =========================================
   INFO FOOTER
========================================= */

.keyboard-course-info-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-top: 24px;
  padding-top: 22px;

  border-top:
    1px solid rgba(24, 119, 242, 0.1);
}

.keyboard-course-info-footer > div > span {
  display: block;

  margin-bottom: 4px;

  color: #8a94a3;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.keyboard-course-info-footer > div > strong {
  color: #181c23;

  font-size: 13px;
  font-weight: 700;
}

.keyboard-course-fee-btn {
  flex-shrink: 0;

  min-height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 7px;

  padding: 0 18px;

  color: #ffffff;

  background: #1877f2;

  border-radius: 999px;

  font-size: 12px;
  font-weight: 700;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.keyboard-course-fee-btn:hover {
  background: #0d68dc;

  transform: translateY(-2px);

  box-shadow:
    0 12px 28px
    rgba(24, 119, 242, 0.24);
}

.keyboard-course-fee-btn
.material-symbols-outlined {
  font-size: 17px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

  .keyboard-course-section {
    padding: 85px 0;
  }

  .keyboard-course-container {
    width: min(100% - 40px, 1280px);

    grid-template-columns: 1fr;

    gap: 55px;
  }

  .keyboard-course-content {
    max-width: 760px;

    order: 1;
  }

  .keyboard-course-visual {
    max-width: 720px;

    min-height: 520px;

    order: 2;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .keyboard-course-section {
    padding: 65px 0;
  }

  .keyboard-course-container {
    width: min(100% - 30px, 1280px);

    gap: 38px;
  }

  .keyboard-course-content h2 {
    font-size: 34px;
  }

  .keyboard-course-description {
    font-size: 15px;
    line-height: 1.75;
  }

  .keyboard-course-visual {
    min-height: auto;
  }

  .keyboard-image-grid {
    gap: 10px;
  }

  .keyboard-image-card-main,
  .keyboard-image-card-secondary {
    height: 280px;

    border-radius: 18px;
  }

  .keyboard-image-card-secondary {
    margin-top: 30px;
  }

  .keyboard-floating-card {
    position: relative;

    left: auto;
    bottom: auto;

    transform: none;

    width: 100%;

    margin-top: 16px;
  }

  .keyboard-course-info {
    padding: 22px 18px;
  }

  .keyboard-course-info-grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .keyboard-course-info-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .keyboard-course-fee-btn {
    width: 100%;
  }

}

/* =========================================
   GUITAR COURSE SECTION
========================================= */

.guitar-course-section {
  position: relative;

  padding: 110px 0;

  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(24, 119, 242, 0.07),
      transparent 28%
    ),
    #ffffff;

  overflow: hidden;
}

.guitar-course-container {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
}

.guitar-course-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;

  align-items: center;

  gap: 75px;
}


/* =========================================
   LEFT CONTENT
========================================= */

.guitar-course-content {
  max-width: 650px;
}

.guitar-course-label {
  display: inline-flex;

  margin-bottom: 16px;
  padding: 8px 15px;

  color: #1877f2;

  background:
    rgba(24, 119, 242, 0.09);

  border-radius: 999px;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guitar-course-title {
  margin: 0;

  color: #181c23;

  font-family:
    "Plus Jakarta Sans",
    sans-serif;

  font-size:
    clamp(38px, 4vw, 50px);

  line-height: 1.12;

  font-weight: 800;

  letter-spacing: -0.035em;
}

.guitar-course-title span {
  display: block;

  color: #1877f2;
}

.guitar-course-description {
  max-width: 590px;

  margin: 20px 0 0;

  color: #626b7a;

  font-size: 16px;
  line-height: 1.8;
}


/* =========================================
   FEATURE GRID
========================================= */

.guitar-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 16px;

  margin-top: 30px;
}

.guitar-feature-card {
  min-height: 180px;

  padding: 22px;

  background: #ffffff;

  border:
    1px solid
    rgba(24, 119, 242, 0.11);

  border-radius: 18px;

  box-shadow:
    0 12px 30px
    rgba(18, 45, 82, 0.05);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.guitar-feature-card:hover {
  transform: translateY(-4px);

  border-color:
    rgba(24, 119, 242, 0.23);

  box-shadow:
    0 20px 42px
    rgba(18, 45, 82, 0.1);
}

.guitar-feature-card-wide {
  grid-column: 1 / -1;

  min-height: 150px;
}

.guitar-feature-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  margin-bottom: 20px;
}

.guitar-feature-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #1877f2;

  background:
    rgba(24, 119, 242, 0.09);

  border-radius: 12px;
}

.guitar-feature-icon
.material-symbols-outlined {
  font-size: 20px;
}

.guitar-feature-number {
  color:
    rgba(24, 119, 242, 0.2);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.08em;
}

.guitar-feature-card h3 {
  margin: 0 0 7px;

  color: #181c23;

  font-size: 16px;
  line-height: 1.4;

  font-weight: 800;
}

.guitar-feature-card p {
  margin: 0;

  color: #667085;

  font-size: 13px;
  line-height: 1.65;
}


/* =========================================
   COURSE DETAILS
========================================= */

.guitar-course-details {
  margin-top: 30px;

  padding: 26px;

  background:
    linear-gradient(
      145deg,
      #f6f9ff,
      #ffffff
    );

  border:
    1px solid
    rgba(24, 119, 242, 0.11);

  border-radius: 22px;

  box-shadow:
    0 16px 40px
    rgba(18, 45, 82, 0.06);
}


/* Details Header */
.guitar-course-details-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 25px;
}

.guitar-course-details-header span {
  display: block;

  margin-bottom: 4px;

  color: #1877f2;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guitar-course-details-header h3 {
  margin: 0;

  color: #181c23;

  font-size: 18px;
  font-weight: 800;
}

.guitar-details-icon {
  width: 44px;
  height: 44px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;

  background: #1877f2;

  border-radius: 12px;
}

.guitar-details-icon
.material-symbols-outlined {
  font-size: 21px;
}


/* =========================================
   DETAIL GRID
========================================= */

.guitar-course-details-grid {
  display: grid;
  grid-template-columns:
    repeat(2, 1fr);

  gap: 14px;
}

.guitar-detail-item {
  display: flex;
  align-items: center;

  gap: 12px;

  min-height: 88px;

  padding: 15px;

  background:
    rgba(255, 255, 255, 0.8);

  border:
    1px solid
    rgba(24, 119, 242, 0.08);

  border-radius: 14px;
}

.guitar-detail-icon {
  width: 38px;
  height: 38px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #1877f2;

  background:
    rgba(24, 119, 242, 0.08);

  border-radius: 10px;
}

.guitar-detail-icon
.material-symbols-outlined {
  font-size: 18px;
}

.guitar-detail-label {
  display: block;

  margin-bottom: 4px;

  color: #8a94a3;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guitar-detail-item strong {
  display: block;

  color: #181c23;

  font-size: 12px;
  line-height: 1.45;

  font-weight: 800;
}


/* =========================================
   FEE FOOTER
========================================= */

.guitar-course-details-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-top: 22px;
  padding-top: 22px;

  border-top:
    1px solid
    rgba(24, 119, 242, 0.1);
}

.guitar-fee-content {
  max-width: 330px;
}

.guitar-fee-label {
  display: block;

  margin-bottom: 4px;

  color: #8a94a3;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guitar-fee-content strong {
  display: block;

  color: #181c23;

  font-size: 12px;
  line-height: 1.45;

  font-weight: 700;
}

.guitar-fee-button {
  min-height: 44px;

  flex-shrink: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 7px;

  padding: 0 18px;

  color: #ffffff;

  background: #1877f2;

  border-radius: 999px;

  font-size: 12px;
  font-weight: 700;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.guitar-fee-button:hover {
  background: #0d68dc;

  transform: translateY(-2px);

  box-shadow:
    0 12px 28px
    rgba(24, 119, 242, 0.22);
}

.guitar-fee-button
.material-symbols-outlined {
  font-size: 17px;
}


/* =========================================
   RIGHT IMAGE
========================================= */

.guitar-course-visual {
  position: relative;
}

.guitar-main-image {
  position: relative;

  height: 610px;

  overflow: hidden;

  background: #e7edf5;

  border-radius: 30px;

  box-shadow:
    0 30px 70px
    rgba(18, 45, 82, 0.14);
}

.guitar-main-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.7s ease;
}

.guitar-main-image:hover img {
  transform: scale(1.035);
}

.guitar-image-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(8, 24, 48, 0.42),
      transparent 55%
    );
}


/* =========================================
   IMAGE BADGE
========================================= */

.guitar-image-badge {
  position: absolute;

  left: 22px;
  bottom: 22px;

  display: flex;
  align-items: center;

  gap: 12px;

  min-width: 220px;

  padding: 15px;

  background:
    rgba(255, 255, 255, 0.92);

  border:
    1px solid
    rgba(255, 255, 255, 0.3);

  border-radius: 16px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 16px 38px
    rgba(18, 45, 82, 0.16);
}

.guitar-image-badge-icon {
  width: 42px;
  height: 42px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;

  background: #1877f2;

  border-radius: 11px;
}

.guitar-image-badge-icon
.material-symbols-outlined {
  font-size: 20px;
}

.guitar-image-badge span {
  display: block;

  margin-bottom: 3px;

  color: #ffff;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guitar-image-badge strong {
  display: block;

  color: #181c23;

  font-size: 13px;
  font-weight: 800;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

  .guitar-course-section {
    padding: 85px 0;
  }

  .guitar-course-container {
    width:
      min(100% - 40px, 1280px);
  }

  .guitar-course-layout {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .guitar-course-content {
    max-width: 760px;
  }

  .guitar-main-image {
    height: 480px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .guitar-course-section {
    padding: 65px 0;
  }

  .guitar-course-container {
    width:
      min(100% - 30px, 1280px);
  }

  .guitar-course-layout {
    gap: 38px;
  }

  .guitar-course-title {
    font-size: 34px;
  }

  .guitar-course-description {
    font-size: 15px;
    line-height: 1.75;
  }

  .guitar-feature-grid {
    grid-template-columns: 1fr;
  }

  .guitar-feature-card-wide {
    grid-column: auto;
  }

  .guitar-course-details {
    padding: 20px;
  }

  .guitar-course-details-grid {
    grid-template-columns: 1fr;
  }

  .guitar-course-details-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .guitar-fee-button {
    width: 100%;
  }

  .guitar-main-image {
    height: 380px;

    border-radius: 22px;
  }

  .guitar-image-badge {
    left: 15px;
    right: 15px;
    bottom: 15px;

    min-width: 0;
  }

}

/* =========================================
   MUSIC THEORY & PERFORMANCE
========================================= */

.music-training-section {
  position: relative;

  padding: 110px 0;

  background:
    radial-gradient(
      circle at 82% 20%,
      rgba(24, 119, 242, 0.18),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #061426 0%,
      #081a33 55%,
      #0a203d 100%
    );

  overflow: hidden;
}

.music-training-container {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;

  align-items: center;

  gap: 80px;
}


/* =========================================
   LEFT CONTENT
========================================= */

.music-training-content {
  position: relative;
  z-index: 3;

  max-width: 650px;
}

.music-training-label {
  display: inline-flex;

  margin-bottom: 18px;
  padding: 8px 15px;

  color: #8fc0ff;

  background:
    rgba(24, 119, 242, 0.14);

  border:
    1px solid
    rgba(143, 192, 255, 0.13);

  border-radius: 999px;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.music-training-title {
  margin: 0;

  color: #ffffff;

  font-family:
    "Plus Jakarta Sans",
    sans-serif;

  font-size:
    clamp(38px, 4vw, 52px);

  line-height: 1.1;

  font-weight: 800;
  letter-spacing: -0.035em;
}

.music-training-title span {
  display: block;

  color: #66a8ff;
}

.music-training-description {
  max-width: 600px;

  margin: 22px 0 0;

  color:
    rgba(255, 255, 255, 0.72);

  font-size: 16px;
  line-height: 1.8;
}


/* =========================================
   TRAINING LIST
========================================= */

.music-training-list {
  display: flex;
  flex-direction: column;

  gap: 12px;

  margin-top: 32px;
}

.music-training-item {
  position: relative;

  display: grid;
  grid-template-columns: 46px 1fr auto;

  align-items: center;

  gap: 14px;

  padding: 16px 18px;

  background:
    rgba(255, 255, 255, 0.055);

  border:
    1px solid
    rgba(255, 255, 255, 0.08);

  border-radius: 16px;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.music-training-item:hover {
  transform: translateX(5px);

  background:
    rgba(255, 255, 255, 0.085);

  border-color:
    rgba(102, 168, 255, 0.23);
}

.music-training-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;

  background:
    rgba(24, 119, 242, 0.8);

  border-radius: 12px;
}

.music-training-icon
.material-symbols-outlined {
  font-size: 20px;
}

.music-training-item h3 {
  margin: 0 0 4px;

  color: #ffffff;

  font-size: 15px;
  line-height: 1.4;

  font-weight: 800;
}

.music-training-item p {
  margin: 0;

  color:
    rgba(255, 255, 255, 0.63);

  font-size: 12px;
  line-height: 1.55;
}

.music-training-number {
  color:
    rgba(255, 255, 255, 0.18);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.08em;
}


/* =========================================
   RIGHT VISUAL
========================================= */

.music-training-visual {
  position: relative;

  min-height: 500px;
}

.music-training-image-wrap {
  position: relative;

  width: 100%;
  height: 480px;

  overflow: hidden;

  border:
    1px solid
    rgba(255, 255, 255, 0.11);

  border-radius: 28px;

  box-shadow:
    0 35px 80px
    rgba(0, 0, 0, 0.3);

  z-index: 2;
}

.music-training-image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.7s ease;
}

.music-training-image-wrap:hover
.music-training-image {
  transform: scale(1.04);
}

.music-training-image-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(5, 18, 38, 0.55),
      transparent 55%
    );
}


/* =========================================
   IMAGE BADGE
========================================= */

.music-training-image-badge {
  position: absolute;

  left: 22px;
  bottom: 22px;

  display: flex;
  align-items: center;

  gap: 12px;

  padding: 15px;

  background:
    rgba(6, 20, 38, 0.72);

  border:
    1px solid
    rgba(255, 255, 255, 0.12);

  border-radius: 16px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.music-training-image-badge-icon {
  width: 42px;
  height: 42px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;

  background: #1877f2;

  border-radius: 11px;
}

.music-training-image-badge-icon
.material-symbols-outlined {
  font-size: 20px;
}

.music-training-image-badge span {
  display: block;

  margin-bottom: 3px;

  color: #ffff;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.music-training-image-badge strong {
  display: block;

  color: #ffffff;

  font-size: 12px;
  line-height: 1.4;

  font-weight: 800;
}


/* =========================================
   GLOW
========================================= */

.music-training-glow {
  position: absolute;

  width: 280px;
  height: 280px;

  right: -70px;
  bottom: -40px;

  background:
    rgba(24, 119, 242, 0.18);

  border-radius: 50%;

  filter: blur(60px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

  .music-training-section {
    padding: 85px 0;
  }

  .music-training-container {
    width:
      min(100% - 40px, 1280px);

    grid-template-columns: 1fr;

    gap: 50px;
  }

  .music-training-content {
    max-width: 760px;
  }

  .music-training-visual {
    max-width: 760px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .music-training-section {
    padding: 65px 0;
  }

  .music-training-container {
    width:
      min(100% - 30px, 1280px);

    gap: 38px;
  }

  .music-training-title {
    font-size: 34px;
  }

  .music-training-description {
    font-size: 15px;
  }

  .music-training-item {
    grid-template-columns:
      42px 1fr;

    padding: 14px;
  }

  .music-training-number {
    display: none;
  }

  .music-training-image-wrap {
    height: 340px;

    border-radius: 22px;
  }

  .music-training-image-badge {
    left: 15px;
    right: 15px;
    bottom: 15px;
  }

}

/* =========================================
   MEDIA PAGE HERO
========================================= */

.media-page-hero {
  position: relative;

  min-height: 720px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: #061426;
}


/* =========================================
   BACKGROUND
========================================= */

.media-page-hero-bg {
  position: absolute;
  inset: 0;
}

.media-page-hero-bg img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;
}

.media-page-hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(4, 16, 31, 0.94) 0%,
      rgba(4, 16, 31, 0.82) 38%,
      rgba(4, 16, 31, 0.42) 65%,
      rgba(4, 16, 31, 0.18) 100%
    ),
    linear-gradient(
      to top,
      rgba(4, 16, 31, 0.4),
      transparent 45%
    );
}


/* =========================================
   CONTAINER
========================================= */

.media-page-hero-container {
  position: relative;
  z-index: 3;

  width: min(100% - 64px, 1280px);

  margin: 0 auto;

  padding: 100px 0;
}


/* =========================================
   CONTENT
========================================= */

.media-page-hero-content {
  max-width: 670px;
}


/* Label */
.media-page-hero-label {
  display: inline-flex;
  align-items: center;

  gap: 7px;

  margin-bottom: 20px;
  padding: 8px 15px;

  color: #a9ceff;

  background:
    rgba(24, 119, 242, 0.18);

  border:
    1px solid
    rgba(143, 192, 255, 0.18);

  border-radius: 999px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.09em;

  text-transform: uppercase;
}

.media-page-hero-label
.material-symbols-outlined {
  font-size: 16px;
}


/* =========================================
   TITLE
========================================= */

.media-page-hero-title {
  max-width: 670px;

  margin: 0;

  color: #ffffff;

  font-family:
    "Plus Jakarta Sans",
    sans-serif;

  font-size:
    clamp(46px, 5.3vw, 70px);

  line-height: 1.04;

  font-weight: 800;

  letter-spacing: -0.045em;
}

.media-page-hero-title span {
  display: block;

  color: #65a8ff;
}


/* =========================================
   DESCRIPTION
========================================= */

.media-page-hero-description {
  max-width: 590px;

  margin: 25px 0 0;

  color:
    rgba(255, 255, 255, 0.74);

  font-size: 16px;
  line-height: 1.8;
}


/* =========================================
   BUTTONS
========================================= */

.media-page-hero-actions {
  display: flex;
  align-items: center;

  flex-wrap: wrap;

  gap: 14px;

  margin-top: 32px;
}

.media-page-hero-btn {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 0 24px;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.media-page-hero-btn-primary {
  color: #ffffff;

  background: #1877f2;

  box-shadow:
    0 15px 35px
    rgba(24, 119, 242, 0.28);
}

.media-page-hero-btn-primary:hover {
  background: #0d68dc;

  transform: translateY(-2px);

  box-shadow:
    0 20px 42px
    rgba(24, 119, 242, 0.34);
}

.media-page-hero-btn-secondary {
  color: #ffffff;

  background:
    rgba(255, 255, 255, 0.07);

  border:
    1px solid
    rgba(255, 255, 255, 0.18);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.media-page-hero-btn-secondary:hover {
  background:
    rgba(255, 255, 255, 0.12);

  border-color:
    rgba(255, 255, 255, 0.28);

  transform: translateY(-2px);
}

.media-page-hero-btn
.material-symbols-outlined {
  font-size: 18px;
}


/* =========================================
   HIGHLIGHTS
========================================= */

.media-page-hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  max-width: 590px;

  gap: 12px;

  margin-top: 34px;
}

.media-page-hero-highlight {
  display: flex;
  align-items: center;

  gap: 12px;

  padding: 14px;

  background:
    rgba(255, 255, 255, 0.055);

  border:
    1px solid
    rgba(255, 255, 255, 0.09);

  border-radius: 14px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.media-page-hero-highlight >
.material-symbols-outlined {
  width: 38px;
  height: 38px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;

  background: #1877f2;

  border-radius: 10px;

  font-size: 19px;
}

.media-page-hero-highlight strong {
  display: block;

  color: #ffffff;

  font-size: 12px;
  line-height: 1.4;

  font-weight: 800;
}

.media-page-hero-highlight span {
  display: block;

  margin-top: 2px;

  color:
    rgba(255, 255, 255, 0.56);

  font-size: 10px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

  .media-page-hero {
    min-height: 650px;
  }

  .media-page-hero-container {
    width:
      min(100% - 40px, 1280px);

    padding: 85px 0;
  }

  .media-page-hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(4, 16, 31, 0.94),
        rgba(4, 16, 31, 0.68)
      );
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .media-page-hero {
    min-height: auto;
  }

  .media-page-hero-container {
    width:
      min(100% - 30px, 1280px);

    padding: 75px 0;
  }

  .media-page-hero-bg img {
    object-position: 65% center;
  }

  .media-page-hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(4, 16, 31, 0.96),
        rgba(4, 16, 31, 0.78)
      );
  }

  .media-page-hero-title {
    font-size: 38px;
    line-height: 1.07;
  }

  .media-page-hero-description {
    font-size: 15px;
    line-height: 1.75;
  }

  .media-page-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .media-page-hero-btn {
    width: 100%;
  }

  .media-page-hero-highlights {
    grid-template-columns: 1fr;
  }

}

/* =========================================
   MEDIA INTRODUCTION
========================================= */

.media-intro-section {
  position: relative;

  padding: 110px 0;

  background:
    radial-gradient(
      circle at 88% 16%,
      rgba(24, 119, 242, 0.07),
      transparent 28%
    ),
    #ffffff;

  overflow: hidden;
}

.media-intro-container {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;

  align-items: center;

  gap: 80px;
}


/* =========================================
   LEFT CONTENT
========================================= */

.media-intro-content {
  max-width: 620px;
}

.media-intro-label {
  display: inline-flex;

  margin-bottom: 16px;
  padding: 8px 15px;

  color: #1877f2;
  background: rgba(24, 119, 242, 0.09);

  border-radius: 999px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.media-intro-title {
  margin: 0;

  color: #181c23;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: clamp(38px, 4vw, 52px);
  line-height: 1.1;

  font-weight: 800;
  letter-spacing: -0.035em;
}

.media-intro-title span {
  display: block;

  color: #1877f2;
}

.media-intro-description {
  max-width: 580px;

  margin: 20px 0 0;

  color: #626b7a;

  font-size: 16px;
  line-height: 1.8;
}


/* =========================================
   FEATURES
========================================= */

.media-intro-features {
  display: flex;
  flex-direction: column;

  gap: 14px;

  margin-top: 30px;
}

.media-intro-feature {
  display: flex;
  align-items: flex-start;

  gap: 15px;

  padding: 18px;

  background: #f9fbff;

  border: 1px solid rgba(24, 119, 242, 0.1);
  border-radius: 16px;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.media-intro-feature:hover {
  transform: translateY(-3px);

  border-color: rgba(24, 119, 242, 0.22);

  box-shadow:
    0 16px 35px
    rgba(18, 45, 82, 0.08);
}

.media-intro-feature-icon {
  width: 46px;
  height: 46px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #1877f2;

  background: rgba(24, 119, 242, 0.09);

  border-radius: 12px;
}

.media-intro-feature-icon
.material-symbols-outlined {
  font-size: 22px;
}

.media-intro-feature h3 {
  margin: 0 0 5px;

  color: #181c23;

  font-size: 15px;
  line-height: 1.4;

  font-weight: 800;
}

.media-intro-feature p {
  margin: 0;

  color: #667085;

  font-size: 13px;
  line-height: 1.65;
}


/* =========================================
   SMALL NOTE
========================================= */

.media-intro-note {
  display: flex;
  align-items: center;

  gap: 9px;

  margin-top: 22px;

  color: #4d5969;

  font-size: 12px;
  font-weight: 600;
}

.media-intro-note
.material-symbols-outlined {
  color: #1877f2;

  font-size: 19px;
}


/* =========================================
   RIGHT VISUAL
========================================= */

.media-intro-visual {
  position: relative;

  min-height: 520px;
}

.media-intro-image-wrap {
  position: relative;

  width: 100%;
  height: 480px;

  overflow: hidden;

  border-radius: 30px;

  box-shadow:
    0 32px 75px
    rgba(18, 45, 82, 0.14);
}

.media-intro-image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.7s ease;
}

.media-intro-image-wrap:hover
.media-intro-image {
  transform: scale(1.035);
}

.media-intro-image-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(7, 22, 43, 0.32),
      transparent 55%
    );

  pointer-events: none;
}


/* =========================================
   STAT CARD
========================================= */

.media-intro-stat-card {
  position: absolute;

  left: -35px;
  bottom: 5px;

  min-width: 230px;

  display: flex;
  align-items: center;

  gap: 13px;

  padding: 18px;

  background: rgba(255, 255, 255, 0.94);

  border: 1px solid rgba(24, 119, 242, 0.12);
  border-radius: 17px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 18px 45px
    rgba(18, 45, 82, 0.14);

  z-index: 4;
}

.media-intro-stat-icon {
  width: 44px;
  height: 44px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;

  background: #1877f2;

  border-radius: 12px;
}

.media-intro-stat-icon
.material-symbols-outlined {
  font-size: 21px;
}

.media-intro-stat-card strong {
  display: block;

  color: #1877f2;

  font-size: 24px;
  line-height: 1;

  font-weight: 800;
}

.media-intro-stat-card span {
  display: block;

  margin-top: 5px;

  color: #ffff;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.07em;
  text-transform: uppercase;
}


/* =========================================
   PROJECT CARD
========================================= */

.media-intro-project-card {
  position: absolute;

  top: 25px;
  right: -24px;

  display: flex;
  align-items: center;

  gap: 11px;

  padding: 14px 16px;

  background: rgba(8, 25, 51, 0.78);

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow:
    0 16px 38px
    rgba(8, 25, 51, 0.16);

  z-index: 3;
}

.media-intro-project-card >
.material-symbols-outlined {
  color: #75b2ff;

  font-size: 22px;
}

.media-intro-project-card strong {
  display: block;

  color: #ffffff;

  font-size: 12px;
  font-weight: 800;
}

.media-intro-project-card span {
  display: block;

  margin-top: 2px;

  color: rgba(255, 255, 255, 0.6);

  font-size: 9px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

  .media-intro-section {
    padding: 85px 0;
  }

  .media-intro-container {
    width: min(100% - 40px, 1280px);

    grid-template-columns: 1fr;

    gap: 50px;
  }

  .media-intro-content {
    max-width: 760px;
  }

  .media-intro-visual {
    max-width: 760px;
  }

  .media-intro-stat-card {
    left: 20px;
  }

  .media-intro-project-card {
    right: 20px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .media-intro-section {
    padding: 65px 0;
  }

  .media-intro-container {
    width: min(100% - 30px, 1280px);

    gap: 38px;
  }

  .media-intro-title {
    font-size: 34px;
  }

  .media-intro-description {
    font-size: 15px;
    line-height: 1.75;
  }

  .media-intro-feature {
    padding: 15px;
  }

  .media-intro-visual {
    min-height: auto;
  }

  .media-intro-image-wrap {
    height: 340px;

    border-radius: 22px;
  }

  .media-intro-stat-card,
  .media-intro-project-card {
    position: relative;

    left: auto;
    right: auto;
    top: auto;
    bottom: auto;

    width: 100%;

    margin-top: 14px;
  }

}

/* =========================================
   MEDIA PROGRAMS
========================================= */

.media-programs-section {
  position: relative;

  padding: 110px 0;

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(24, 119, 242, 0.08),
      transparent 28%
    ),
    #f9f9ff;

  overflow: hidden;
}

.media-programs-container {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.media-programs-heading {
  max-width: 760px;

  margin: 0 auto 52px;

  text-align: center;
}

.media-programs-label {
  display: inline-flex;

  margin-bottom: 14px;
  padding: 8px 15px;

  color: #1877f2;
  background: rgba(24, 119, 242, 0.09);

  border-radius: 999px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.media-programs-heading h2 {
  margin: 0;

  color: #181c23;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: clamp(38px, 4vw, 50px);
  line-height: 1.13;

  font-weight: 800;
  letter-spacing: -0.035em;
}

.media-programs-heading h2 span {
  display: block;

  color: #1877f2;
}

.media-programs-heading p {
  max-width: 680px;

  margin: 16px auto 0;

  color: #667085;

  font-size: 16px;
  line-height: 1.75;
}


/* =========================================
   MAIN GRID
========================================= */

.media-programs-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 22px;
}


/* =========================================
   MAIN COURSE CARD
========================================= */

.media-program-card {
  display: flex;
  flex-direction: column;

  overflow: hidden;

  background: #ffffff;

  border:
    1px solid
    rgba(24, 119, 242, 0.1);

  border-radius: 24px;

  box-shadow:
    0 16px 40px
    rgba(18, 45, 82, 0.07);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.media-program-card:hover {
  transform: translateY(-7px);

  border-color:
    rgba(24, 119, 242, 0.22);

  box-shadow:
    0 28px 58px
    rgba(18, 45, 82, 0.13);
}


/* =========================================
   IMAGE
========================================= */

.media-program-image {
  position: relative;

  height: 230px;

  overflow: hidden;
}

.media-program-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.7s ease;
}

.media-program-card:hover
.media-program-image img {
  transform: scale(1.06);
}

.media-program-image-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(5, 18, 38, 0.55),
      transparent 60%
    );
}


/* Number */
.media-program-number {
  position: absolute;

  top: 18px;
  right: 18px;

  color:
    rgba(255, 255, 255, 0.82);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.08em;
}


/* Category */
.media-program-category {
  position: absolute;

  left: 18px;
  bottom: 18px;

  display: inline-flex;
  align-items: center;

  gap: 7px;

  padding: 9px 12px;

  color: #ffffff;

  background:
    rgba(8, 25, 51, 0.7);

  border:
    1px solid
    rgba(255, 255, 255, 0.18);

  border-radius: 999px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  font-size: 10px;
  font-weight: 700;
}

.media-program-category
.material-symbols-outlined {
  font-size: 16px;
}


/* =========================================
   CONTENT
========================================= */

.media-program-content {
  flex: 1;

  display: flex;
  flex-direction: column;

  padding: 26px;
}

.media-program-content h3 {
  margin: 0;

  color: #181c23;

  font-size: 20px;
  line-height: 1.3;

  font-weight: 800;
}

.media-program-description {
  margin: 12px 0 0;

  color: #667085;

  font-size: 13px;
  line-height: 1.7;
}


/* =========================================
   LIST
========================================= */

.media-program-list {
  display: flex;
  flex-direction: column;

  gap: 10px;

  margin: 22px 0 0;
  padding: 0;

  list-style: none;
}

.media-program-list li {
  display: flex;
  align-items: flex-start;

  gap: 9px;

  color: #4e5868;

  font-size: 12px;
  line-height: 1.5;

  font-weight: 500;
}

.media-program-list
.material-symbols-outlined {
  width: 20px;
  height: 20px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: #1877f2;

  border-radius: 50%;

  font-size: 13px;
}


/* =========================================
   FOOTER
========================================= */

.media-program-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  margin-top: auto;
  padding-top: 22px;

  border-top:
    1px solid
    rgba(24, 119, 242, 0.09);
}

.media-program-footer > div span {
  display: block;

  margin-bottom: 4px;

  color: #8a94a3;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.media-program-footer > div strong {
  color: #181c23;

  font-size: 12px;
  font-weight: 800;
}

.media-program-footer > a {
  display: inline-flex;
  align-items: center;

  gap: 6px;

  color: #1877f2;

  font-size: 12px;
  font-weight: 800;

  text-decoration: none;

  transition: gap 0.3s ease;
}

.media-program-footer > a:hover {
  gap: 10px;
}

.media-program-footer
.material-symbols-outlined {
  font-size: 17px;
}


/* =========================================
   SECONDARY PROGRAMS
========================================= */

.media-programs-secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 22px;

  margin-top: 22px;
}

.media-secondary-card {
  display: grid;
  grid-template-columns: 190px 1fr;

  overflow: hidden;

  background: #ffffff;

  border:
    1px solid
    rgba(24, 119, 242, 0.1);

  border-radius: 22px;

  box-shadow:
    0 14px 36px
    rgba(18, 45, 82, 0.06);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.media-secondary-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 22px 46px
    rgba(18, 45, 82, 0.11);
}

.media-secondary-image {
  min-height: 220px;

  overflow: hidden;
}

.media-secondary-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.media-secondary-card:hover
.media-secondary-image img {
  transform: scale(1.05);
}

.media-secondary-content {
  display: flex;
  flex-direction: column;

  justify-content: center;

  padding: 25px;
}

.media-secondary-label {
  display: inline-flex;

  width: fit-content;

  margin-bottom: 10px;

  color: #1877f2;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.09em;

  text-transform: uppercase;
}

.media-secondary-content h3 {
  margin: 0;

  color: #181c23;

  font-size: 19px;
  font-weight: 800;
}

.media-secondary-content p {
  margin: 10px 0 18px;

  color: #667085;

  font-size: 12px;
  line-height: 1.65;
}

.media-secondary-content a {
  display: inline-flex;
  align-items: center;

  width: fit-content;

  gap: 6px;

  color: #1877f2;

  font-size: 12px;
  font-weight: 800;

  text-decoration: none;
}

.media-secondary-content a
.material-symbols-outlined {
  font-size: 17px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

  .media-programs-section {
    padding: 85px 0;
  }

  .media-programs-container {
    width:
      min(100% - 40px, 1280px);
  }

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

  .media-programs-secondary {
    grid-template-columns: 1fr;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .media-programs-section {
    padding: 65px 0;
  }

  .media-programs-container {
    width:
      min(100% - 30px, 1280px);
  }

  .media-programs-heading {
    margin-bottom: 36px;
  }

  .media-programs-heading h2 {
    font-size: 34px;
  }

  .media-programs-heading p {
    font-size: 15px;
  }

  .media-programs-grid {
    grid-template-columns: 1fr;
  }

  .media-program-image {
    height: 230px;
  }

  .media-secondary-card {
    grid-template-columns: 1fr;
  }

  .media-secondary-image {
    height: 220px;
    min-height: 0;
  }

}

/* =========================================
   CONTACT PAGE
========================================= */

.contact-hero {
  position: relative;

  padding: 110px 0 150px;

  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(24, 119, 242, 0.1),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #f8fbff 0%,
      #ffffff 100%
    );

  overflow: hidden;
}


/* =========================================
   CONTACT HERO CONTENT
========================================= */

.contact-hero .max-w-container-max {
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  margin: 0;

  color: #181c23;

  font-family: "Plus Jakarta Sans", sans-serif;

  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.08;

  font-weight: 800;
  letter-spacing: -0.04em;
}

.contact-hero p {
  max-width: 650px;

  margin: 20px auto 0;

  color: #667085;

  font-size: 16px;
  line-height: 1.75;
}


/* =========================================
   MAIN CONTACT LAYOUT
========================================= */

.contact-form-card,
.contact-details-card {
  background: #ffffff;

  border: 1px solid rgba(24, 119, 242, 0.1) !important;

  border-radius: 24px !important;

  box-shadow:
    0 24px 60px
    rgba(18, 45, 82, 0.08) !important;
}


/* =========================================
   CONTACT FORM CARD
========================================= */

.contact-form-card {
  padding: 34px !important;
}

.contact-form-card h2 {
  margin-bottom: 28px !important;

  color: #181c23;

  font-size: 24px;
  font-weight: 800;
}


/* =========================================
   FORM FIELDS
========================================= */

.contact-field {
  display: flex;
  flex-direction: column;

  gap: 8px;
}

.contact-label {
  color: #303744;

  font-size: 12px;
  line-height: 1.4;

  font-weight: 700;
}

.contact-input {
  width: 100%;

  min-height: 52px;

  padding: 0 16px;

  color: #181c23;
  background: #f8faff;

  border: 1px solid rgba(24, 119, 242, 0.11);
  border-radius: 13px;

  outline: none;

  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-input::placeholder {
  color: #9aa3b2;
}

.contact-input:hover {
  background: #ffffff;

  border-color: rgba(24, 119, 242, 0.2);
}

.contact-input:focus {
  background: #ffffff;

  border-color: #1877f2;

  box-shadow:
    0 0 0 4px
    rgba(24, 119, 242, 0.09);
}

.contact-textarea {
  min-height: 150px;

  padding: 15px 16px;

  resize: vertical;
}

select.contact-input {
  cursor: pointer;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

#contact-submit-button {
  min-height: 54px;

  margin-top: 4px;

  background: #1877f2 !important;

  border-radius: 999px !important;

  box-shadow:
    0 14px 30px
    rgba(24, 119, 242, 0.22) !important;

  font-size: 14px !important;
  font-weight: 700 !important;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease !important;
}

#contact-submit-button:hover {
  background: #0d68dc !important;

  transform: translateY(-2px);

  box-shadow:
    0 18px 38px
    rgba(24, 119, 242, 0.3) !important;
}


/* =========================================
   FORM MESSAGE
========================================= */

.contact-form-message {
  display: none;

  padding: 12px 14px;

  border-radius: 12px;

  font-size: 13px;
  line-height: 1.5;
}

.contact-form-message.success {
  display: block;

  color: #087443;

  background: #ecfdf3;

  border: 1px solid #b7efcf;
}

.contact-form-message.error {
  display: block;

  color: #b42318;

  background: #fff1f0;

  border: 1px solid #ffd2cc;
}


/* =========================================
   CONTACT DETAILS
========================================= */

.contact-details-card {
  padding: 30px !important;
}

.contact-details-card h2 {
  margin-bottom: 24px !important;

  color: #181c23;

  font-size: 22px;
  font-weight: 800;
}

.contact-detail-item {
  display: flex;
  align-items: center;

  gap: 14px;

  padding: 14px;

  color: inherit;

  background: #f9fbff;

  border: 1px solid rgba(24, 119, 242, 0.08);
  border-radius: 14px;

  text-decoration: none;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

a.contact-detail-item:hover {
  transform: translateY(-2px);

  background: #ffffff;

  border-color: rgba(24, 119, 242, 0.2);

  box-shadow:
    0 12px 28px
    rgba(18, 45, 82, 0.07);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #1877f2;
  background: rgba(24, 119, 242, 0.09);

  border-radius: 12px;
}

.contact-detail-icon
.material-symbols-outlined {
  font-size: 21px;
}

.contact-detail-label {
  display: block;

  margin-bottom: 3px;

  color: #8993a2;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail-value {
  display: block;

  color: #181c23;

  font-size: 13px;
  line-height: 1.45;

  font-weight: 700;
}


/* =========================================
   BUSINESS HOURS
========================================= */

.contact-details-card + div {
  background:
    linear-gradient(
      145deg,
      #f7faff,
      #ffffff
    ) !important;

  border: 1px solid rgba(24, 119, 242, 0.1) !important;

  border-radius: 22px !important;

  box-shadow:
    0 16px 38px
    rgba(18, 45, 82, 0.06);
}

.contact-details-card + div h2 {
  color: #181c23;

  font-size: 18px;
  font-weight: 800;
}


/* =========================================
   SOCIAL LINKS
========================================= */

.contact-social-link {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #1877f2;

  background: #ffffff;

  border: 1px solid rgba(24, 119, 242, 0.11);
  border-radius: 12px;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-social-link:hover {
  color: #ffffff;
  background: #1877f2;

  transform: translateY(-3px);

  box-shadow:
    0 12px 28px
    rgba(24, 119, 242, 0.2);
}

.contact-social-link
.material-symbols-outlined {
  font-size: 20px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

  .contact-hero {
    padding: 85px 0 120px;
  }

  .contact-form-card,
  .contact-details-card {
    padding: 28px !important;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .contact-hero {
    padding: 65px 0 95px;
  }

  .contact-hero h1 {
    font-size: 36px;
  }

  .contact-hero p {
    font-size: 15px;
    line-height: 1.7;
  }

  .contact-form-card,
  .contact-details-card {
    padding: 22px !important;

    border-radius: 20px !important;
  }

  .contact-form-card h2 {
    font-size: 21px;
  }

  .contact-input {
    min-height: 50px;
  }

  .contact-textarea {
    min-height: 140px;
  }

}

/* =========================================
   LEARNING MODES
========================================= */

.learning-modes-section {
    padding: 100px 0;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(24, 119, 242, 0.07),
            transparent 28%
        ),
        #f8faff;
}

.learning-modes-container {
    width: min(100% - 64px, 1280px);
    margin: 0 auto;
}


/* Heading */

.learning-modes-heading {
    max-width: 700px;

    margin: 0 auto 48px;

    text-align: center;
}

.learning-modes-label {
    display: inline-flex;

    margin-bottom: 12px;

    color: #1877f2;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.learning-modes-heading h2 {
    margin: 0;

    color: #181c23;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(36px, 4vw, 48px);
    line-height: 1.15;

    font-weight: 800;
    letter-spacing: -0.035em;
}

.learning-modes-heading p {
    margin: 13px 0 0;

    color: #667085;

    font-size: 15px;
}


/* =========================================
   GRID
========================================= */

.learning-modes-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}


/* =========================================
   CARD
========================================= */

.learning-mode-modern-card {
    position: relative;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(24, 119, 242, 0.1);
    border-radius: 24px;

    box-shadow:
        0 16px 40px
        rgba(18, 45, 82, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.learning-mode-modern-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 26px 55px
        rgba(18, 45, 82, 0.12);
}


/* Featured */

.learning-mode-featured {
    border: 2px solid #1877f2;
}

.learning-mode-popular {
    position: absolute;

    top: 16px;
    right: 16px;

    z-index: 5;

    padding: 7px 12px;

    color: #ffffff;
    background: #1877f2;

    border-radius: 999px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* =========================================
   IMAGE
========================================= */

.learning-mode-image {
    position: relative;

    height: 220px;

    overflow: hidden;
}

.learning-mode-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.65s ease;
}

.learning-mode-modern-card:hover
.learning-mode-image img {
    transform: scale(1.05);
}

.learning-mode-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(7, 22, 43, 0.34),
            transparent 55%
        );
}

.learning-mode-icon {
    position: absolute;

    left: 18px;
    bottom: 18px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: #1877f2;

    border-radius: 13px;
}

.learning-mode-icon
.material-symbols-outlined {
    font-size: 21px;
}


/* =========================================
   CONTENT
========================================= */

.learning-mode-content {
    padding: 25px;
}

.learning-mode-type {
    display: block;

    margin-bottom: 6px;

    color: #1877f2;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.learning-mode-content h3 {
    margin: 0;

    color: #181c23;

    font-size: 23px;
    font-weight: 800;
}

.learning-mode-content p {
    min-height: 44px;

    margin: 10px 0 22px;

    color: #667085;

    font-size: 13px;
    line-height: 1.65;
}


/* Select Button */

.learning-mode-select {
    width: 100%;
    min-height: 47px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    color: #1877f2;
    background: transparent;

    border: 1px solid #1877f2;
    border-radius: 999px;

    cursor: pointer;

    font-family: inherit;

    font-size: 12px;
    font-weight: 700;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.learning-mode-select:hover {
    color: #ffffff;
    background: #1877f2;

    transform: translateY(-2px);
}

.learning-mode-select
.material-symbols-outlined {
    font-size: 17px;
}


/* =========================================
   POPUP
========================================= */

.learning-popup {
    position: fixed;
    inset: 0;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

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


/* Backdrop */

.learning-popup-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(3, 12, 25, 0.68);

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}


/* Popup Card */

.learning-popup-card {
    position: relative;
    z-index: 2;

    width: min(100%, 430px);

    padding: 30px;

    background: #ffffff;

    border-radius: 26px;

    box-shadow:
        0 35px 90px
        rgba(0, 0, 0, 0.25);

    transform: translateY(20px) scale(0.97);

    transition: transform 0.3s ease;
}

.learning-popup.active
.learning-popup-card {
    transform: translateY(0) scale(1);
}


/* Close */

.learning-popup-close {
    position: absolute;

    top: 16px;
    right: 16px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #526071;
    background: #f2f5fa;

    border: 0;
    border-radius: 50%;

    cursor: pointer;
}

.learning-popup-close
.material-symbols-outlined {
    font-size: 20px;
}


/* Header */

.learning-popup-header {
    padding-right: 40px;

    margin-bottom: 25px;
}

.learning-popup-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 17px;

    color: #ffffff;
    background: #1877f2;

    border-radius: 14px;
}

.learning-popup-icon
.material-symbols-outlined {
    font-size: 25px;
}

.learning-popup-header > span {
    display: block;

    margin-bottom: 5px;

    color: #1877f2;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.learning-popup-header h3 {
    margin: 0;

    color: #181c23;

    font-size: 26px;
    font-weight: 800;
}


/* =========================================
   POPUP DETAILS
========================================= */

.learning-popup-details {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.learning-popup-detail {
    display: flex;
    align-items: center;

    gap: 13px;

    padding: 14px;

    background: #f7faff;

    border: 1px solid rgba(24, 119, 242, 0.08);
    border-radius: 14px;
}

.learning-popup-detail >
.material-symbols-outlined {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1877f2;
    background: rgba(24, 119, 242, 0.09);

    border-radius: 11px;

    font-size: 19px;
}

.learning-popup-detail small {
    display: block;

    margin-bottom: 3px;

    color: #8a94a3;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.learning-popup-detail strong {
    color: #181c23;

    font-size: 13px;
    font-weight: 800;
}


/* Contact Button */

.learning-popup-contact {
    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 22px;

    color: #ffffff;
    background: #1877f2;

    border-radius: 999px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.learning-popup-contact:hover {
    background: #0d68dc;

    transform: translateY(-2px);
}

.learning-popup-contact
.material-symbols-outlined {
    font-size: 18px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .learning-modes-section {
        padding: 80px 0;
    }

    .learning-modes-container {
        width: min(100% - 40px, 1280px);
    }

    .learning-modes-grid {
        grid-template-columns: 1fr 1fr;
    }

    .learning-mode-modern-card:last-child {
        grid-column: 1 / -1;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .learning-modes-section {
        padding: 65px 0;
    }

    .learning-modes-container {
        width: min(100% - 30px, 1280px);
    }

    .learning-modes-heading {
        margin-bottom: 34px;
    }

    .learning-modes-heading h2 {
        font-size: 32px;
    }

    .learning-modes-grid {
        grid-template-columns: 1fr;
    }

    .learning-mode-modern-card:last-child {
        grid-column: auto;
    }

    .learning-mode-image {
        height: 210px;
    }

    .learning-mode-content p {
        min-height: auto;
    }

    .learning-popup-card {
        padding: 25px 20px;

        border-radius: 22px;
    }

}

/* =========================================
   STUDENT PERFORMANCES
========================================= */

.student-performance-section {
    position: relative;

    padding: 105px 0;

    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(24, 119, 242, 0.07),
            transparent 28%
        ),
        #ffffff;

    overflow: hidden;
}

.student-performance-container {
    width: min(100% - 64px, 1280px);
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.student-performance-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 48px;
}

.student-performance-heading > div {
    max-width: 700px;
}

.student-performance-label {
    display: inline-flex;

    margin-bottom: 12px;

    color: #1877f2;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.student-performance-heading h2 {
    margin: 0;

    color: #181c23;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(38px, 4vw, 50px);
    line-height: 1.12;

    font-weight: 800;
    letter-spacing: -0.035em;
}

.student-performance-heading p {
    max-width: 600px;

    margin: 14px 0 0;

    color: #667085;

    font-size: 15px;
    line-height: 1.75;
}


/* Gallery Button */

.student-performance-gallery-link {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #1877f2;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: gap 0.3s ease;
}

.student-performance-gallery-link:hover {
    gap: 12px;
}

.student-performance-gallery-link
.material-symbols-outlined {
    font-size: 18px;
}


/* =========================================
   GRID
========================================= */

.student-performance-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    grid-template-rows:
        repeat(2, 230px);

    gap: 16px;
}


/* Main card */

.student-performance-card-main {
    grid-column: span 2;
    grid-row: span 2;
}


/* Wide card */

.student-performance-card-wide {
    grid-column: span 2;
}


/* =========================================
   CARD
========================================= */

.student-performance-card {
    position: relative;

    overflow: hidden;

    background: #e8edf5;

    border-radius: 22px;

    cursor: pointer;

    box-shadow:
        0 16px 38px
        rgba(18, 45, 82, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

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

    box-shadow:
        0 26px 55px
        rgba(18, 45, 82, 0.14);
}


/* Image */

.student-performance-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s ease,
        filter 0.4s ease;
}

.student-performance-card:hover img {
    transform: scale(1.06);
}


/* =========================================
   OVERLAY
========================================= */

.student-performance-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5, 18, 38, 0.82) 0%,
            rgba(5, 18, 38, 0.2) 55%,
            transparent 80%
        );
}


/* =========================================
   CONTENT
========================================= */

.student-performance-content {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 3;

    padding: 22px;
}

.student-performance-category {
    display: block;

    margin-bottom: 6px;

    color: #8fc0ff;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.student-performance-content h3 {
    margin: 0;

    color: #ffffff;

    font-size: 18px;
    line-height: 1.3;

    font-weight: 800;
}

.student-performance-card-main
.student-performance-content h3 {
    font-size: 26px;
}

.student-performance-content p {
    max-width: 430px;

    margin: 8px 0 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 12px;
    line-height: 1.6;
}


/* =========================================
   OPEN ICON
========================================= */

.student-performance-open {
    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 3;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: rgba(24, 119, 242, 0.85);

    border-radius: 11px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    font-size: 19px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .student-performance-section {
        padding: 85px 0;
    }

    .student-performance-container {
        width: min(100% - 40px, 1280px);
    }

    .student-performance-grid {
        grid-template-columns:
            repeat(2, 1fr);

        grid-template-rows:
            repeat(3, 230px);
    }

    .student-performance-card-main {
        grid-column: span 2;
        grid-row: span 1;
    }

    .student-performance-card-wide {
        grid-column: span 2;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .student-performance-section {
        padding: 65px 0;
    }

    .student-performance-container {
        width: min(100% - 30px, 1280px);
    }

    .student-performance-heading {
        flex-direction: column;
        align-items: flex-start;

        gap: 20px;

        margin-bottom: 34px;
    }

    .student-performance-heading h2 {
        font-size: 34px;
    }

    .student-performance-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;

        gap: 14px;
    }

    .student-performance-card,
    .student-performance-card-main,
    .student-performance-card-wide {
        grid-column: auto;
        grid-row: auto;

        height: 260px;
    }

    .student-performance-card-main {
        height: 330px;
    }

    .student-performance-card-main
    .student-performance-content h3 {
        font-size: 22px;
    }

}

/* =========================================
   FULL WIDTH CONTACT LOCATION
========================================= */

.contact-location-section {
    width: 100%;

    margin-top: 32px;
    padding: 28px;

    background: #ffffff;

    border: 1px solid rgba(24, 119, 242, 0.1);
    border-radius: 24px;

    box-shadow:
        0 18px 45px
        rgba(18, 45, 82, 0.07);
}


/* =========================================
   LOCATION HEADER
========================================= */

.contact-location-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 22px;
}

.contact-location-title-area {
    display: flex;
    align-items: center;

    gap: 14px;
}


/* Icon */
.contact-location-title-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: #1877f2;

    border-radius: 13px;

    box-shadow:
        0 10px 24px
        rgba(24, 119, 242, 0.2);
}

.contact-location-title-icon
.material-symbols-outlined {
    font-size: 23px;
}


/* Label */
.contact-location-label {
    display: block;

    margin-bottom: 4px;

    color: #1877f2;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}


/* Title */
.contact-location-header h2 {
    margin: 0;

    color: #181c23;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 21px;
    line-height: 1.3;

    font-weight: 800;
}


/* Address */
.contact-location-header p {
    margin: 4px 0 0;

    color: #667085;

    font-size: 12px;
    line-height: 1.5;
}


/* =========================================
   GET DIRECTIONS BUTTON
========================================= */

.contact-location-direction {
    min-height: 46px;

    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 0 20px;

    color: #ffffff;
    background: #1877f2;

    border-radius: 999px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    box-shadow:
        0 12px 28px
        rgba(24, 119, 242, 0.18);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-location-direction:hover {
    background: #0d68dc;

    transform: translateY(-2px);

    box-shadow:
        0 16px 34px
        rgba(24, 119, 242, 0.26);
}

.contact-location-direction
.material-symbols-outlined {
    font-size: 18px;
}


/* =========================================
   GOOGLE MAP
========================================= */

.contact-location-map {
    position: relative;

    width: 100%;
    height: 390px;

    overflow: hidden;

    background: #eef3f9;

    border: 1px solid rgba(24, 119, 242, 0.08);
    border-radius: 18px;
}

.contact-location-map iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .contact-location-section {
        margin-top: 28px;
        padding: 24px;
    }

    .contact-location-map {
        height: 340px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .contact-location-section {
        margin-top: 24px;

        padding: 18px;

        border-radius: 20px;
    }


    .contact-location-header {
        flex-direction: column;
        align-items: flex-start;

        gap: 18px;
    }


    .contact-location-title-icon {
        width: 44px;
        height: 44px;
    }


    .contact-location-header h2 {
        font-size: 18px;
    }


    .contact-location-direction {
        width: 100%;
    }


    .contact-location-map {
        height: 280px;

        border-radius: 14px;
    }

}

/* =========================================
   UPCOMING CLASSES
========================================= */

.upcoming-classes-section {
    position: relative;

    padding: 100px 0;

    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(24, 119, 242, 0.07),
            transparent 28%
        ),
        #f4f6ff;

    overflow: hidden;
}

.upcoming-classes-container {
    width: min(100% - 64px, 1280px);
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.upcoming-classes-heading {
    max-width: 720px;

    margin-bottom: 42px;
}

.upcoming-classes-label {
    display: block;

    margin-bottom: 10px;

    color: #1877f2;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.upcoming-classes-heading h2 {
    margin: 0;

    color: #181c23;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(36px, 4vw, 48px);
    line-height: 1.15;

    font-weight: 800;
    letter-spacing: -0.035em;
}

.upcoming-classes-heading p {
    margin: 10px 0 0;

    color: #667085;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   LIST
========================================= */

.upcoming-classes-list {
    display: flex;
    flex-direction: column;

    gap: 16px;
}


/* =========================================
   CLASS CARD
========================================= */

.upcoming-class-card {
    display: grid;

    grid-template-columns:
        90px
        1px
        minmax(0, 1fr)
        150px
        110px;

    align-items: center;

    gap: 24px;

    min-height: 108px;

    padding: 20px 22px;

    background: #ffffff;

    border: 1px solid rgba(24, 119, 242, 0.1);
    border-radius: 18px;

    box-shadow:
        0 12px 32px
        rgba(18, 45, 82, 0.05);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.upcoming-class-card:hover {
    transform: translateY(-3px);

    border-color:
        rgba(24, 119, 242, 0.2);

    box-shadow:
        0 18px 40px
        rgba(18, 45, 82, 0.09);
}


/* =========================================
   DATE
========================================= */

.upcoming-class-date {
    text-align: center;
}

.upcoming-class-date strong {
    display: block;

    color: #1877f2;

    font-size: 28px;
    line-height: 1;

    font-weight: 800;
}

.upcoming-class-date span {
    display: block;

    margin-top: 5px;

    color: #667085;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.08em;
}


/* Divider */

.upcoming-class-divider {
    width: 1px;
    height: 48px;

    background:
        rgba(24, 119, 242, 0.15);
}


/* =========================================
   CONTENT
========================================= */

.upcoming-class-content {
    min-width: 0;
}

.upcoming-class-category {
    display: block;

    margin-bottom: 4px;

    color: #1877f2;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.upcoming-class-content h3 {
    margin: 0;

    color: #181c23;

    font-size: 17px;
    line-height: 1.35;

    font-weight: 800;
}

.upcoming-class-content p {
    margin: 5px 0 0;

    color: #667085;

    font-size: 12px;
    line-height: 1.55;
}


/* =========================================
   STATUS
========================================= */

.upcoming-class-meta {
    text-align: right;
}

.upcoming-class-meta > span {
    display: block;

    margin-bottom: 4px;

    color: #8a94a3;

    font-size: 8px;
    font-weight: 700;

    text-transform: uppercase;
}

.class-status {
    font-size: 12px;
    font-weight: 800;
}

.class-status-open {
    color: #1877f2;
}

.class-status-limited {
    color: #d56a00;
}


/* =========================================
   BUTTON
========================================= */

.upcoming-class-button {
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 18px;

    color: #ffffff;
    background: #1877f2;

    border-radius: 10px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.upcoming-class-button:hover {
    background: #0d68dc;

    transform: translateY(-2px);

    box-shadow:
        0 10px 24px
        rgba(24, 119, 242, 0.2);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .upcoming-classes-section {
        padding: 80px 0;
    }

    .upcoming-classes-container {
        width: min(100% - 40px, 1280px);
    }

    .upcoming-class-card {
        grid-template-columns:
            72px
            1px
            1fr;

        gap: 18px;
    }

    .upcoming-class-meta,
    .upcoming-class-button {
        grid-column: 3;
    }

    .upcoming-class-meta {
        text-align: left;
    }

    .upcoming-class-button {
        width: fit-content;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .upcoming-classes-section {
        padding: 65px 0;
    }

    .upcoming-classes-container {
        width: min(100% - 30px, 1280px);
    }

    .upcoming-classes-heading {
        margin-bottom: 32px;
    }

    .upcoming-classes-heading h2 {
        font-size: 32px;
    }

    .upcoming-class-card {
        grid-template-columns: 58px 1fr;

        gap: 14px;

        padding: 18px;
    }

    .upcoming-class-divider {
        display: none;
    }

    .upcoming-class-content {
        grid-column: 2;
    }

    .upcoming-class-meta {
        grid-column: 2;

        text-align: left;
    }

    .upcoming-class-button {
        grid-column: 2;

        width: 100%;
    }

    .upcoming-class-date strong {
        font-size: 24px;
    }

}

.upcoming-class-card {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        150px
        110px;

    align-items: center;

    gap: 24px;

    min-height: 105px;

    padding: 22px 24px;

    background: #ffffff;

    border: 1px solid rgba(24, 119, 242, 0.1);
    border-radius: 18px;

    box-shadow:
        0 12px 32px
        rgba(18, 45, 82, 0.05);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.upcoming-class-card:hover {
    transform: translateY(-3px);

    border-color: rgba(24, 119, 242, 0.2);

    box-shadow:
        0 18px 40px
        rgba(18, 45, 82, 0.09);
}


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

    .upcoming-class-card {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .upcoming-class-meta {
        text-align: left;
    }

    .upcoming-class-button {
        width: 100%;
    }

}

/* =========================================
   EVENT POSTER CAROUSEL
========================================= */

.event-poster-section {
    width: 100%;
    padding: 70px 0;
    background: #ffffff;
    overflow: hidden;
}


/* =========================================
   CAROUSEL CONTAINER
========================================= */

.event-poster-carousel {
    position: relative;

    width: 100%;
    max-width: 1400px;

    height: 560px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================
   POSTER SLOTS
========================================= */

.event-poster-slots {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(220px, 1fr)
        minmax(280px, 1.15fr)
        minmax(220px, 1fr);

    align-items: center;

    gap: 80px;

    padding: 0 70px;
}


/* =========================================
   POSTER
========================================= */

.event-poster-slot {
    width: 100%;

    height: 520px;

    overflow: hidden;

    transition:
        opacity 0.5s ease,
        transform 0.5s ease;

    display: flex;
    align-items: center;
    justify-content: center;
}


.event-poster-slot img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
}
/* ------------------------------------------------------- */
/* =========================================
   EVENT POSTER SECTION
========================================= */

.event-poster-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}


/* =========================================
   CAROUSEL WRAPPER
========================================= */

.event-poster-carousel {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 560px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}


/* =========================================
   POSTER SLOTS
========================================= */

.event-poster-slots {
    width: 100%;
    height: 100%;

    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;

    align-items: center;
    justify-items: center;

    gap: 55px;

    padding: 0 70px;
}


/* =========================================
   INDIVIDUAL POSTER SLOT
========================================= */

.event-poster-slot {
    position: relative;

    width: 100%;
    max-width: 360px;
    height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 12px;

    transition:
        opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================
   POSTER IMAGE
========================================= */

.event-poster-slot img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 12px;

    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.5s cubic-bezier(0.22, 1, 0.36, 1);

    will-change: transform, opacity;
}


/* =========================================
   SIDE POSTERS
========================================= */

.event-poster-left,
.event-poster-right {
    opacity: 0.55;

    transform: scale(0.88);

    filter: brightness(0.92);
}


/* =========================================
   CENTER POSTER
========================================= */

.event-poster-center {
    opacity: 1;

    transform: scale(1);

    z-index: 5;

    filter: brightness(1);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.16);
}


/* =========================================
   SMOOTH NEXT ANIMATION
========================================= */

.poster-slide-out-left {
    transform:
        translateX(-90px)
        scale(0.78);

    opacity: 0;

    filter: blur(2px);
}


.poster-slide-to-left {
    transform:
        translateX(-30px)
        scale(0.88);

    opacity: 0.55;

    filter: brightness(0.92);
}


.poster-slide-to-center {
    transform:
        translateX(0)
        scale(1);

    opacity: 1;

    filter: brightness(1);

    z-index: 5;
}


/* =========================================
   SMOOTH PREVIOUS ANIMATION
========================================= */

.poster-slide-to-right {
    transform:
        translateX(30px)
        scale(0.88);

    opacity: 0.55;

    filter: brightness(0.92);
}


.poster-slide-out-right {
    transform:
        translateX(90px)
        scale(0.78);

    opacity: 0;

    filter: blur(2px);
}


/* =========================================
   ARROW BUTTONS
========================================= */

.event-poster-arrow {
    position: absolute;

    top: 50%;

    width: 46px;
    height: 46px;

    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.96);

    color: #111827;

    cursor: pointer;

    z-index: 20;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.10);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


/* =========================================
   ARROW HOVER
========================================= */

.event-poster-arrow:hover {
    transform:
        translateY(-50%)
        scale(1.08);

    background: #ffffff;

    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.16);
}


/* =========================================
   ARROW ACTIVE
========================================= */

.event-poster-arrow:active {
    transform:
        translateY(-50%)
        scale(0.92);
}


/* =========================================
   ARROW ICON
========================================= */

.event-poster-arrow
.material-symbols-outlined {
    font-size: 24px;

    transition:
        transform 0.25s ease;
}


/* =========================================
   ARROW ICON HOVER
========================================= */

.event-poster-prev:hover
.material-symbols-outlined {
    transform: translateX(-2px);
}


.event-poster-next:hover
.material-symbols-outlined {
    transform: translateX(2px);
}


/* =========================================
   LEFT ARROW
========================================= */

.event-poster-prev {
    left: 18px;
}


/* =========================================
   RIGHT ARROW
========================================= */

.event-poster-next {
    right: 18px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .event-poster-carousel {
        height: 500px;
    }


    .event-poster-slots {
        grid-template-columns:
            0.85fr
            1.15fr
            0.85fr;

        gap: 30px;

        padding: 0 55px;
    }


    .event-poster-slot {
        height: 440px;
        max-width: 310px;
    }


    .event-poster-arrow {
        width: 42px;
        height: 42px;
    }


    .event-poster-prev {
        left: 12px;
    }


    .event-poster-next {
        right: 12px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .event-poster-section {
        padding: 55px 0;
    }


    .event-poster-carousel {
        height: 460px;
    }


    .event-poster-slots {
        grid-template-columns:
            55px
            minmax(220px, 280px)
            55px;

        gap: 12px;

        padding: 0 4px;
    }


    .event-poster-slot {
        height: 390px;

        border-radius: 10px;
    }


    .event-poster-slot img {
        border-radius: 10px;
    }


    .event-poster-left,
    .event-poster-right {
        opacity: 0.35;

        transform: scale(0.78);
    }


    .event-poster-center {
        transform: scale(1);
    }


    .event-poster-arrow {
        width: 38px;
        height: 38px;
    }


    .event-poster-arrow
    .material-symbols-outlined {
        font-size: 21px;
    }


    .event-poster-prev {
        left: 5px;
    }


    .event-poster-next {
        right: 5px;
    }


    /* Mobile animation */

    .poster-slide-out-left {
        transform:
            translateX(-60px)
            scale(0.72);
    }


    .poster-slide-out-right {
        transform:
            translateX(60px)
            scale(0.72);
    }


    .poster-slide-to-left {
        transform:
            translateX(-15px)
            scale(0.78);
    }


    .poster-slide-to-right {
        transform:
            translateX(15px)
            scale(0.78);
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .event-poster-carousel {
        height: 430px;
    }


    .event-poster-slots {
        grid-template-columns:
            42px
            minmax(210px, 250px)
            42px;

        gap: 8px;
    }


    .event-poster-slot {
        height: 360px;
    }


    .event-poster-arrow {
        width: 36px;
        height: 36px;
    }


    .event-poster-prev {
        left: 2px;
    }


    .event-poster-next {
        right: 2px;
    }

}

/* =========================================
   FACILITY CARD FOOTER
========================================= */

.facility-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}


/* =========================================
   FOOTER
========================================= */

.facility-card-footer {
    margin-top: auto;
    padding-top: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    border-top: 1px solid rgba(0, 0, 0, 0.06);
}


/* =========================================
   CARD TAG
========================================= */

.facility-card-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;

    color: #1877f2;

    white-space: nowrap;
}


/* =========================================
   APPLY BUTTON
========================================= */

.facility-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    padding: 10px 18px;

    background: #1877f2;
    color: #ffffff;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    box-shadow:
        0 6px 18px rgba(24, 119, 242, 0.18);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}


/* =========================================
   BUTTON HOVER
========================================= */

.facility-apply-btn:hover {
    background: #1268d8;

    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(24, 119, 242, 0.25);
}


/* =========================================
   BUTTON ICON
========================================= */

.facility-apply-btn .material-symbols-outlined {
    font-size: 17px;

    transition:
        transform 0.25s ease;
}


.facility-apply-btn:hover
.material-symbols-outlined {
    transform: translateX(3px);
}


/* =========================================
   ACTIVE
========================================= */

.facility-apply-btn:active {
    transform: translateY(0) scale(0.97);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 640px) {

    .facility-card-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .facility-card-tag {
        white-space: normal;
    }

    .facility-apply-btn {
        width: 100%;
    }

}

/* =========================================
   FACILITY CARDS
========================================= */

.facility-card {
    position: relative;

    display: flex;
    flex-direction: column;

    height: 100%;

    background: #ffffff;

    border: 1px solid #dce6f5;

    border-radius: 24px;

    overflow: hidden;

    box-shadow:
        0 8px 30px rgba(15, 23, 42, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* =========================================
   CARD HOVER
========================================= */

.facility-card:hover {
    transform: translateY(-6px);

    border-color: #b9d3ff;

    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.13);
}


/* =========================================
   CARD IMAGE
========================================= */

.facility-card > .aspect-video {
    position: relative;

    margin: 0;

    border-radius: 0;

    box-shadow: none;

    overflow: hidden;
}


.facility-card > .aspect-video img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.5s ease;
}


.facility-card:hover > .aspect-video img {
    transform: scale(1.04);
}


/* =========================================
   IMAGE ICON
========================================= */

.facility-image-icon {
    position: absolute;

    left: 18px;
    bottom: 18px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1877f2;

    color: #ffffff;

    border-radius: 12px;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.18);

    z-index: 2;
}


.facility-image-icon .material-symbols-outlined {
    font-size: 24px;
}


/* =========================================
   CARD TITLE
========================================= */

.facility-card h3 {
    margin: 0;

    padding:
        24px
        24px
        0;

    font-size: 22px;

    line-height: 1.3;

    font-weight: 700;

    color: #0f172a;
}


/* =========================================
   CARD DESCRIPTION
========================================= */

.facility-card > p {
    margin: 0;

    padding:
        10px
        24px
        0;

    font-size: 15px;

    line-height: 1.65;

    color: #64748b;
}


/* =========================================
   CARD FOOTER
========================================= */

.facility-card-footer {
    margin-top: auto;

    padding:
        20px
        24px
        24px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    border-top:
        1px solid #edf1f7;

    margin-top: 20px;
}


/* =========================================
   CARD TAG
========================================= */

.facility-card-tag {
    display: block;

    font-size: 11px;

    line-height: 1.4;

    font-weight: 700;

    letter-spacing: 0.08em;

    color: #1877f2;

    max-width: 60%;
}


/* =========================================
   APPLY NOW BUTTON
========================================= */

.facility-apply-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    flex-shrink: 0;

    padding:
        10px
        17px;

    min-height: 42px;

    background: #1877f2;

    color: #ffffff;

    border-radius: 10px;

    font-size: 13px;

    font-weight: 700;

    line-height: 1;

    text-decoration: none;

    box-shadow:
        0 7px 18px rgba(24, 119, 242, 0.20);

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}


/* =========================================
   BUTTON HOVER
========================================= */

.facility-apply-btn:hover {
    background: #1268d8;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(24, 119, 242, 0.28);
}


/* =========================================
   BUTTON ICON
========================================= */

.facility-apply-btn .material-symbols-outlined {
    font-size: 18px;

    transition:
        transform 0.25s ease;
}


.facility-apply-btn:hover
.material-symbols-outlined {
    transform: translateX(3px);
}


/* =========================================
   BUTTON ACTIVE
========================================= */

.facility-apply-btn:active {
    transform: scale(0.97);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .facility-card h3 {
        font-size: 20px;

        padding:
            22px
            22px
            0;
    }

    .facility-card > p {
        padding:
            10px
            22px
            0;
    }

    .facility-card-footer {
        padding:
            18px
            22px
            22px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 640px) {

    .facility-card {
        border-radius: 20px;
    }


    .facility-card h3 {
        font-size: 20px;

        padding:
            20px
            20px
            0;
    }


    .facility-card > p {
        padding:
            10px
            20px
            0;

        font-size: 14px;
    }


    .facility-card-footer {
        flex-direction: column;

        align-items: stretch;

        padding:
            18px
            20px
            20px;

        gap: 14px;
    }


    .facility-card-tag {
        max-width: 100%;
    }


    .facility-apply-btn {
        width: 100%;

        min-height: 44px;
    }


    .facility-image-icon {
        width: 44px;
        height: 44px;

        left: 15px;
        bottom: 15px;
    }

}