/* ==================== BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background: #0d0d0d;
    color: white;
    font-family: Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a,
button {
    transition: all 0.3s ease-in-out;
}

.center15 {
    object-position: center 15%;
}

.center10 {
    object-position: center 5%;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    background: #00d084;
    border-radius: 9999px;
}

::-webkit-scrollbar-track {
    background: #0d0d0d;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: sticky;
    top: 0;
    background: linear-gradient(to bottom, #141e30, #35577D);
    z-index: 1000;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    min-height: 72px;
}

.nav-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    opacity: 0.9;
}

.logo-link:hover {
    opacity: 1;
}

.logo-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: url('public/images/logo.jpeg') center/cover;
}

.logo-text {
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: -0.025em;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.logo-text:hover {
    color: #00d094;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    color: white;
    opacity: 0.85;
    text-decoration: none;
    font-weight: 500;
}

.nav-link:hover {
    color: #00d094;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    color: white;
    opacity: 0.85;
    background: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
    font-size: 1rem;
}

.dropdown-toggle:hover {
    color: #00d094;
}

.dropdown-arrow {
    width: 1rem;
    height: 1rem;
    margin-left: 0.25rem;
    transition: transform 0.2s;
}

.dropdown-arrow.active {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    width: 16rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    z-index: 20;
    display: none;
}

.dropdown-menu.active {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    transition: background 0.15s;
}

.dropdown-item:hover {
    background: #d1fae5;
}

.dropdown-item-title {
    font-weight: 500;
    color: #111827;
}

.dropdown-item:hover .dropdown-item-title {
    color: #059669;
}

.dropdown-item-desc {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admission-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    height: 56px;
    border-radius: 0.5rem;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7)), #10b981;
    color: white;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2), 0 1px 1px rgba(0, 0, 0, 0.2), inset 0 -6px 10px rgba(0, 0, 0, 0.3);
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.6);
}

.admission-btn:hover {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7)), #059669;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mobile-menu-btn {
    display: block;
    color: white;
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 0.375rem;
    cursor: pointer;
}

.mobile-menu-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #01aa7a;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}



.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu {
    display: none;
}

.mobile-link,
.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 8px;
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    z-index: 40;
}

.mobile-menu-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e5e7eb;
    z-index: 50;
}

/* Mobile overlay layers */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1001;
}

.mobile-menu-panel {
    position: sticky;
    left: 0;
    right: 0;
    top: 4.5rem;
    z-index: 1002;
}


.mobile-menu-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #111827;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
}

.mobile-nav-link:hover {
    background: #d1fae5;
}

a {
    text-decoration: none;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    padding: 0.5rem 0.75rem;
    color: #111827;
    background: none;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    font-size: 1rem;
}

.mobile-dropdown-toggle:hover {
    background: #d1fae5;
}

.mobile-dropdown-arrow {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s;
}

.mobile-dropdown-arrow.active {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    margin-left: 1rem;
    margin-top: 0.5rem;
    display: none;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-dropdown-content.active {
    display: flex;
}

.mobile-dropdown-item {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #374151;
    text-decoration: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

.mobile-dropdown-item:hover {
    background: #d1fae5;
    color: #059669;
}

/* ==================== WHATSAPP ICON ==================== */
.whatsapp-icon {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 50;
}

.whatsapp-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
    animation: breathing 3s ease-in-out infinite;
}

.whatsapp-link:hover {
    background: #128c7e;
    transform: scale(1.1);
    animation-play-state: paused;
}

@media (min-width: 640px) {
    .whatsapp-link {
        width: 4rem;
        height: 4rem;
    }
}

.whatsapp-img {
    width: 2.25rem;
    height: 2.25rem;
    object-fit: contain;
}

@media (min-width: 640px) {
    .whatsapp-img {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.whatsapp-tooltip {
    display: none;
    position: absolute;
    right: 5.6rem;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(to bottom right, #25d366, #128c7e, #25d366);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.6);
    opacity: 0;
    transform: translateY(-50%) scale(0.95);
    transition: all 0.3s;
    pointer-events: none;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .whatsapp-tooltip {
        display: block;
    }
}

.whatsapp-link:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.1));
}

@keyframes breathing {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.35);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 25px 10px rgba(34, 197, 94, 0.3);
    }
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: url('public/images/hero_sm.png') center 100% / cover;
    opacity: 1;
    pointer-events: none;
}

@media (min-width: 350px) and (max-width: 767px) {
    .hero-background {
        background: url('public/images/mobile-hero-2.png');
        background-size: cover;
        background-position: center;
        opacity: 0.6;
        background-repeat: no-repeat;

    }

    .hero-title {
        display: none;
    }

    .hero-description {
        display: none;
    }

    .hero-buttons {
        padding-bottom: 8rem;
    }

    .hero-text {
        justify-content: end;
        align-self: end;

    }

}

.text-decoration {
    text-decoration: none;
}


.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-text {
    text-align: center;
    padding: 0 1.25rem;
    width: 100%;
    margin-right: 0;
}

@media (min-width: 640px) {
    .hero-text {
        margin-right: 3.5rem;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
}

.hero-title-white {
    color: white;
}

.hero-description {
    color: #d1d5db;
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto 3rem;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7)), #10b981;
    color: white;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2), 0 1px 1px rgba(0, 0, 0, 0.2), inset 0 -6px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.1s;
}

@media (min-width: 350px) and (max-width: 450px) {
    .btn-primary {
        font-size: 0.9rem;
        padding: 0.75rem 0.75rem;
    }
}

.btn-primary:hover {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7)), #059669;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    background: #1f2937;
    border: none;
    cursor: pointer;
    transition: all 0.1s;
}

.btn-secondary:hover {
    background: #374151;
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to top, black, transparent);
}

/* ==================== LOGOS SECTION ==================== */
.k2scope {
    font-family: sans-serif;
}

.k2scope.w-full {
    width: 100%;
}

.k2scope.overflow-hidden {
    overflow: hidden;
}

.k2scope.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.k2scope.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, #141e30, #35577D);
}

.k2scope .mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.k2scope .max-w-1280 {
    max-width: 1280px;
}

.k2scope .max-w-1500 {
    max-width: 1500px;
}

.k2scope .px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.k2scope .px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.k2scope .py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.k2scope .py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.k2scope .p-4 {
    padding: 1rem;
}

.k2scope .sm-p-6 {
    padding: 1.5rem;
}

.k2scope .text-center {
    text-align: center;
}

.k2scope .uppercase {
    text-transform: uppercase;
}

.k2scope .font-serif {
    font-family: Georgia, Cambria, "Times New Roman", Times, serif;
}

.k2scope .font-semibold {
    font-weight: 600;
}

.k2scope .text-12 {
    font-size: 12px;
}

.k2scope .sm-text-13 {
    font-size: 13px;
}

.k2scope .text-16 {
    font-size: 16px;
}

.k2scope .text-18 {
    font-size: 18px;
}

.k2scope .text-26 {
    font-size: 26px;
}

.k2scope .text-32 {
    font-size: 32px;
}

.k2scope .text-34 {
    font-size: 34px;
}

.k2scope .text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.k2scope .leading-7 {
    line-height: 1.75rem;
}

.k2scope .leading-8 {
    line-height: 2rem;
}

.k2scope .leading-1_35 {
    line-height: 1.35;
}

.k2scope .leading-1_1rem {
    line-height: 1.1rem;
}

.k2scope .tracking-0_1em {
    letter-spacing: 0.1em;
}

.k2scope .tracking-0_01em {
    letter-spacing: 0.01em;
}

.k2scope .text-E2EFF7 {
    color: #E2EFF7;
}

.k2scope .text-EAF3FA {
    color: #EAF3FA;
}

.k2scope .text-EAF4FB {
    color: #EAF4FB;
}

.k2scope .text-9EF566 {
    color: #9EF566;
}

.k2scope .text-C7F58D {
    color: #C7F58D;
}

.k2scope .text-D6E9F8 {
    color: #D6E9F8;
}

.k2scope .mt-1 {
    margin-top: 0.25rem;
}

.k2scope .mt-3 {
    margin-top: 0.75rem;
}

.k2scope .mt-4 {
    margin-top: 1rem;
}

.k2scope .mt-5 {
    margin-top: 1.25rem;
}

.k2scope .mt-7 {
    margin-top: 1.75rem;
}

.k2scope .mt-8 {
    margin-top: 2rem;
}

.k2scope .my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.k2scope .space-y-3>*+* {
    margin-top: 0.75rem;
}

.k2scope .space-y-4>*+* {
    margin-top: 1rem;
}

.k2scope .m-0 {
    margin: 0;
}

.k2scope .grid {
    display: grid;
}

.k2scope .grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.k2scope .grid-cols-1fr_auto {
    grid-template-columns: 1fr auto;
}

.k2scope .col-span-8 {
    grid-column: span 8 / span 8;
}

.k2scope .col-span-6 {
    grid-column: span 6 / span 6;
}

.k2scope .col-span-4 {
    grid-column: span 4 / span 4;
}

.k2scope .items-start {
    align-items: start;
}

.k2scope .items-center {
    align-items: center;
}

.k2scope .justify-center {
    justify-content: center;
}

.k2scope .gap-4 {
    gap: 1rem;
}

.k2scope .gap-8 {
    gap: 2rem;
}

.k2scope .gap-10 {
    gap: 2.5rem;
}

.k2scope .h-3 {
    height: 3px;
}

.k2scope .h-5 {
    height: 5px;
}

.k2scope .h-300 {
    height: 300px;
}

.k2scope .h-650 {
    height: 650px;
}

.k2scope .min-h-240 {
    min-height: 240px;
}

.k2scope .w-195 {
    width: 195px;
}

.k2scope .w-full {
    width: 100%;
}

.k2scope .relative {
    position: relative;
}

.k2scope .absolute {
    position: absolute;
}

.k2scope .absolute-fill {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.k2scope .inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.k2scope .top--3 {
    top: -0.75rem;
}

.k2scope .bottom--3 {
    bottom: -0.75rem;
}

.k2scope .left-6 {
    left: 1.5rem;
}

.k2scope .right-8 {
    right: 2rem;
}

.k2scope .object-cover {
    object-fit: cover;
}

.k2scope .overflow-hidden {
    overflow: hidden;
}

.k2scope .hidden {
    display: none;
}

.k2scope .pointer-events-none {
    pointer-events: none;
}

.k2scope .rounded-28 {
    border-radius: 28px;
}

.k2scope .rounded-26 {
    border-radius: 26px;
}

.k2scope .rounded-24 {
    border-radius: 24px;
}

.k2scope .border {
    border-width: 1px;
}

.k2scope .border-3 {
    border-width: 3px;
}

/* Mobile card shell */
.k2scope .border-20394B {
    border-color: #20394B;
}

.k2scope .bg-213457 {
    background-color: #213457;
}

.k2scope .shadow-a {
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.35), 0 6px 12px rgba(0, 0, 0, 0.25);
}

/* Mobile inner overlay (ring + inset) */


.k2scope .ring-white-10 {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.10);
}

.k2scope .inset-soft {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 -14px 32px rgba(0, 0, 0, 0.28);
}

/* Desktop card shell */
.k2scope .border-0e2333_70 {
    border-color: rgba(14, 35, 51, 0.70);
}

.k2scope .bg-2a4360_92 {
    background-color: rgba(42, 67, 96, 0.92);
}

.k2scope .shadow-b {
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.45), 0 8px 18px rgba(0, 0, 0, 0.28);
}

/* Desktop inner overlay (ring + inset) */
.k2scope .inset-strong {
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -18px 36px rgba(0, 0, 0, 0.28);
}

/* Accents */
.k2scope .bg-D6E9F8-90 {
    background-color: rgba(214, 233, 248, 0.90);
}

.k2scope .bg-E1EEF8 {
    background-color: #E1EEF8;
}

.k2scope .drop-0_0_6_159F566_45 {
    text-shadow: 0 0 6px rgba(159, 245, 102, 0.45);
}

.k2scope .drop-0_0_6_159F566_5 {
    text-shadow: 0 0 6px rgba(159, 245, 102, 0.5);
}

/* Sizing parity helpers */
.k2scope .philosophy-card {
    position: relative;
    border-radius: 28px;
    border: 1px solid #20394B;
    background-color: #213457;
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.35), 0 6px 12px rgba(0, 0, 0, 0.25);
    padding: 1rem;
}

@media (min-width: 640px) {
    .k2scope .philosophy-card {
        padding: 1.5rem;
    }
}

.k2scope .philosophy-overlay {
    pointer-events: none;
    position: absolute;
    inset: 0;
    border-radius: 26px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 -14px 32px rgba(0, 0, 0, 0.28);
}

.k2scope .quote-card {
    position: relative;
    border-radius: 26px;
    border: 3px solid rgba(14, 35, 51, 0.70);
    background-color: rgba(42, 67, 96, 0.92);
    padding: 1.75rem 2rem;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.45), 0 8px 18px rgba(0, 0, 0, 0.28);
}

.k2scope .quote-overlay {
    pointer-events: none;
    position: absolute;
    inset: 0;
    border-radius: 24px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -18px 36px rgba(0, 0, 0, 0.28);
}

@media (min-width: 640px) {
    .k2scope .sm-text-18 {
        font-size: 18px;
    }

    .k2scope .sm-leading-8 {
        line-height: 2rem;
    }

    .k2scope .sm-text-13 {
        font-size: 13px;
    }
}



@media (min-width: 350px) and (max-width: 425px) {
    .k2scope .min-420-block {
        display: block;
        width: 12rem;
        height: auto;
    }

    .k2scope .sm-text-18 {
        font-size: 9px;

    }

}

@media (min-width: 425px) and (max-width: 450px) {
    .k2scope .min-420-block {
        display: block;

    }

    .k2scope .sm-text-18 {
        font-size: 10px;
        line-height: 1.2rem;
    }
}

@media (min-width: 450px) and (max-width: 650px) {
    .k2scope .min-420-block {
        display: block;
        height: 18rem;

    }

    .k2scope .sm-text-18 {
        font-size: 16px;
        line-height: 1.3rem;
    }
}

@media (min-width: 1024px) {
    .k2scope .lg-hidden {
        display: none;
    }

    .k2scope .lg-block {
        display: block;
    }

    .k2scope .lg-order-1 {
        order: 1;
    }

    .k2scope .lg-order-2 {
        order: 2;
    }
}

/* ==================== OFFERINGS SECTION ==================== */
.offerings-section {
    scroll-margin-top: 3rem;
    width: 100%;
    background: linear-gradient(to bottom, #037555 10%, #4689d4);
}

.offerings-container {
    max-width: 1536px;
    margin: 0 auto;
    padding: 3.5rem 1rem;
}

@media (min-width: 768px) {
    .offerings-container {
        padding: 5rem 2rem;
    }
}

.offerings-header {
    text-align: center;
}

.offerings-title {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: white;
}

@media (min-width: 768px) {
    .offerings-title {
        font-size: 2.125rem;
    }
}

.offerings-subtitle {
    margin-top: 0.75rem;
    font-size: 1.13rem;
    color: rgba(255, 255, 255, 0.8);
}

.offerings-slider {
    position: relative;
    margin-top: 2.5rem;
}

.slider-track {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    padding: 0.5rem;
    margin: 0 -0.5rem;
    cursor: grab;
}

.slider-track:active {
    cursor: grabbing;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .slider-track {
        gap: 1rem;
        padding: 1rem;
        margin: 0 -1rem;
    }
}

.slider-item {
    scroll-snap-align: center;
    flex-shrink: 0;
    width: 85%;
    padding: 0.5rem;
}

@media (min-width: 640px) {
    .slider-item {
        width: 50%;
    }
}

@media (min-width: 1024px) {
    .slider-item {
        width: 32%;
    }
}

@media (min-width: 768px) {
    .slider-item {
        padding: 1rem;
    }
}

.instrument-card {
    max-width: 28rem;
    height: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid #141e30;
    background: linear-gradient(to bottom, #35577D, #141e30);
    box-shadow: 26px 34px 64px -24px rgba(2, 6, 23, 0.62), 120px 160px 320px -150px rgba(2, 6, 23, 0.72);
    transition: all 0.3s;
    padding-bottom: 5rem;
}

.instrument-card:hover {
    box-shadow: 7px 12px 30px -7px rgba(2, 6, 23, 0.60), 9px 6px 26px 0px rgba(2, 6, 23, 0.66);
}

.card-image {
    height: 14rem;
    padding: 12px;
    border-radius: 1.6875rem;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.instrument-card:hover .card-image {
    transform: scale(1.02);
}

.card-content {
    padding: 1.25rem;
}

.card-title {
    font-size: 1.75rem;
    font-family: Arial, sans-serif;
    font-weight: bold;
    letter-spacing: -0.025em;
    color: #f3f4f6;
}

.card-description {
    margin-top: 0.5rem;
    font-size: 1rem;
    line-height: 1.625;
    color: #d1d5db;
}

.card-action {
    margin-top: 1rem;
    position: absolute;
    bottom: 1.75rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.75rem;
    border: 1px solid #d1d5db;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #f3f4f6;
    text-decoration: none;
    transition: all 0.3s;
}

.card-link:hover {
    background: #1f2937;
}

.card-arrow {
    height: 1rem;
    width: 1rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    height: 2.5rem;
    width: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.icon-5 {
    width: 20px;
    height: 20px;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

@media (min-width: 640px) {
    .slider-btn {
        display: flex;
    }
}

.slider-prev {
    left: 0.75rem;
}

@media (min-width: 768px) {
    .slider-prev {
        left: 1rem;
    }
}

.slider-next {
    right: 0.75rem;
}

@media (min-width: 768px) {
    .slider-next {
        right: 1rem;
    }
}

/* Keep the gentle transform nudge on the track */
.slider-track {
    transition: transform 220ms cubic-bezier(0.25, 0.8, 0.3, 1);
}

.slider-track.is-animating--next {
    transform: translateX(-8px);
}

.slider-track.is-animating--prev {
    transform: translateX(8px);
}

/* Card motion cues */
.slider-item {
    transition: transform 220ms cubic-bezier(0.25, 0.8, 0.3, 1),
        box-shadow 220ms ease;
    will-change: transform;
}

/* Entering from the right when going next, from the left when going prev */
.slider-item.shift-enter-next {
    transform: translateX(10px) scale(0.995);
}

.slider-item.shift-exit-next {
    transform: translateX(-10px) scale(0.995);
}

.slider-item.shift-enter-prev {
    transform: translateX(-10px) scale(0.995);
}

.slider-item.shift-exit-prev {
    transform: translateX(10px) scale(0.995);
}

/* Brief elevation for the card coming into focus */
.slider-item.shift-focused {
    box-shadow: 0 14px 28px -12px rgba(2, 6, 23, 0.40), 0 8px 18px -10px rgba(2, 6, 23, 0.32);
}


/* ==================== TEAM SECTION ==================== */
.team-section {
    width: 100%;
    background: linear-gradient(to bottom, #141e30, #35577D);
    font-family: sans-serif;
}

.team-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 1rem;
    text-align: center;
}

.team-title {
    color: white;
    font-weight: 600;
    letter-spacing: -0.015em;
    font-size: 1.875rem;
    line-height: 1.15;
    text-shadow: 5px 5px 0 rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
    .team-title {
        font-size: 3rem;
    }
}

.team-subtitle {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.75rem;
    color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 768px) {
    .team-subtitle {
        font-size: 1.125rem;
    }
}

.team-grid {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem 4.5rem;
}

@media (min-width: 640px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.member-avatar {
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
    object-fit: cover;
    /* box-shadow:rgba(0, 0, 0, 0.35) 0px 5px 10px 4px;
     */

    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

@media (min-width: 400px) and (max-width: 767px) {
    .member-avatar {
        height: 10.90rem;
        width: 10.90rem;
    }
}

.member-name {
    margin-top: 1rem;
    color: white;
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {
    .member-name {
        font-size: 1rem;
    }
}

.member-role {
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    line-height: 1.5rem;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    width: 100%;
    background: linear-gradient(to bottom, #037555 10%, #4689d4);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-container {
        padding: 5rem 2rem;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonials-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    height: 70%;
    min-height: 340px;

}

.testimonials-title {
    color: #242322;
    font-size: 1.75rem;
    font-weight: 600;

}

@media (min-width: 768px) {
    .testimonials-title {
        font-size: 2.25rem;
    }
}

.testimonials-subtitle {
    margin-top: 1rem;
    font-size: 0.9375rem;
    line-height: 1.625;
    color: #000000;
    max-width: 58ch;
}

@media (min-width: 768px) {
    .testimonials-subtitle {
        font-size: 1rem;
    }
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
    max-width: 700px;
}

@media (min-width: 768px) {
    .testimonials-stats {
        gap: 3rem 6rem;
    }
}

.stat-number {
    color: #13110F;
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 4.5rem;
    }
}

.stat-label {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #37322D;
}

.testimonials-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    border-radius: 1rem;
    background: rgba(15, 14, 14, 0.1);
    padding: 1.5rem;
    border: 1px solid transparent;
    height: 100%;

    box-shadow: 0 0 0 2px #0f0e0e, 6px 6px 0 #0f0e0e;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: #00d094;
    box-shadow: 0 0 2px #00d094, 6px 6px 0 #00d094;
}

.testimonial-large {
    grid-row: span 2;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: white;
}

.testimonial-role {
    font-size: 0.8125rem;
    color: #c9c5c2;
}

.testimonial-text {
    margin-top: 1rem;
    font-family: sans-serif;
    font-size: 0.75rem;
    line-height: 1.625;
    color: rgba(255, 255, 255, 0.69);
}

/* ==================== NEWSLETTER SECTION ==================== */
.newsletter-section {
    width: 100%;
    background: linear-gradient(to right, #00C3AD, #42D8DB, #77E7F0);
}

.newsletter-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    width: 100%;
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .newsletter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.newsletter-card {
    border-radius: 1.125rem;
    height: 520px;
    background: rgba(15, 14, 14, 0.1);
    display: grid;
    border: 3px solid transparent;
    box-shadow: 0 0 0 2px #0f0e0e, 6px 6px 0 #0f0e0e;
    align-items: center;
    grid-area: span 1;
}

.newsletter-title {
    color: #0F0E0D;
    font-size: 1.9rem;
    font-family: sans-serif;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-align: center;
    padding: 0 2rem;
}

.newsletter-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .newsletter-title {
        font-size: 1.9rem;
    }
}

.newsletter-description {
    margin-top: 1.25rem;
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.625;
    color: #2D2926;
    padding: 0 2rem;
}

.newsletter-action {
    display: flex;
    align-items: start;
    justify-content: center;
    /* margin-top: 2rem; */
}

.newsletter-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    height: 56px;
    border-radius: 0.5rem;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7)), #10b981;
    color: white;
    font-size: 1rem;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2), 0 1px 1px rgba(0, 0, 0, 0.2), inset 0 -6px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.1s;
}

.newsletter-btn:hover {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7)), #059669;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.newsletter-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    position: relative;
    height: 140px;
    width: 140px;
    object-fit: contain;
}

@media (min-width: 640px) {
    .logo-img {
        height: 170px;
        width: 170px;
    }
}

@media (min-width: 768px) {
    .logo-img {
        height: 200px;
        width: 200px;
    }
}

@media (min-width: 1024px) {
    .logo-img {
        height: 220px;
        width: 220px;
    }
}

/* ==================== GALLERY SECTION ==================== */
.gallery-section {
    width: 100%;
    background: linear-gradient(to bottom, #dadce0, #141e30);
}

.gallery-container {
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
    padding: 2rem 0.75rem 3.5rem;
}

@media (min-width: 640px) {
    .gallery-container {
        padding: 2rem 1rem 3.5rem;
    }
}

@media (min-width: 768px) {
    .gallery-container {
        padding: 2rem 1.25rem 3.5rem;
    }
}

.gallery-header {
    text-align: center;
}

.gallery-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.75rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .gallery-title {
        font-size: 2rem;
    }
}

.gallery-subtitle {
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8125rem;
}

@media (min-width: 768px) {
    .gallery-subtitle {
        font-size: 0.875rem;
    }
}

.gallery-grid {
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-column {
    display: grid;
    gap: 0.75rem;
    align-content: start;
}

.gallery-tile {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    aspect-ratio: 4/3;
    background: rgba(14, 22, 36, 1);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.6);
}

.gallery-tile.gallery-wide {
    aspect-ratio: 16/9;
}

.ratio-16-15 {
    aspect-ratio: 16/18;
}

.video-16-21 {
    aspect-ratio: 16/18;
}

.trailer-ratio {
    aspect-ratio: 16/12;
}

.Gallery-1 {
    aspect-ratio: 16/13.2;
}

.Gallery-7 {
    aspect-ratio: 16/15;
}

.Gallery-3 {
    aspect-ratio: 16/14;
}

.gallery-tile.gallery-logo {
    aspect-ratio: 4/3;
}

.ratio-16-21 {
    aspect-ratio: 16/25;
}

@media (min-width: 400px) and (max-width: 767px) {
    .ratio-16-21 {
        aspect-ratio: 16/18;
    }
}

.video-16-24 {
    aspect-ratio: 16/21.2;
}

.gallery-img {
    position: absolute;
    height: 100%;
    width: 100%;

}

.cover {
    object-fit: cover;
}

.contain {
    object-fit: contain;
}

.gallery-video-element {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: fill;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    scroll-margin-top: 3rem;
    min-height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, #35577D, #141e30);
}

.faq-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1rem;
}

@media (min-width: 768px) {
    .faq-container {
        padding: 6rem 1rem;
    }
}

.faq-header {
    margin-bottom: 3.125rem;
}

.faq-kicker {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.5);
}

.faq-title {
    margin-top: 1.25rem;
    margin-bottom: 0.625rem;
    font-size: 2rem;
    font-weight: 600;
    font-family: sans-serif;
    letter-spacing: -0.01em;
    color: white;
}

@media (min-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }
}

.faq-subtitle {
    font-size: 0.9375rem;
    line-height: 1.625;
    color: rgba(255, 255, 255, 0.6);
    font-family: sans-serif;
}

@media (min-width: 768px) {
    .faq-subtitle {
        font-size: 1rem;
    }
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq-question {
    font-family: sans-serif;
    margin-top: 1.25rem;
    margin-bottom: 0.4375rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

@media (min-width: 768px) {
    .faq-question {
        font-size: 1.25rem;
    }
}

.faq-answer {
    font-size: 0.9375rem;
    line-height: 1.625;
    color: rgba(255, 255, 255, 0.8);
}

/* ==================== FOOTER ==================== */
/* ===== Reference footer: layout, spacing, and logo image slot ===== */

/* Keep site background; only refine footer surface */
/* Base */

/* Footer shell */
.footer {
    width: 100%;
    background: linear-gradient(to bottom, #037555 30%, #4689d4);
    font-size: 1.125rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

@media (min-width: 768px) {
    .footer-container {
        padding: 4rem 1.5rem;
    }
}

/* Top row */
.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        justify-content: space-between;
    }
}

.footer-newsletter-label {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    font-weight: 400;
    color: rgba(15, 14, 14, 0.6);
}

.footer-newsletter-text {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.8);
}

.footer-admission-btn-container {
    display: inline-flex;
    align-items: flex-end;
    justify-content: flex-end;
    text-align: end;
}

@media (min-width:350px) and (max-width:450px) {
    .footer-admission-btn-container {
        justify-content: center;
        text-align: center;
        width: 100%;
    }
}

.footer-admission-btn {
    position: relative;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2), 0 1px 1px rgba(0, 0, 0, 0.2), inset 0 -6px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.1s;
    color: #fbf5f3;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7)), #10b981;
}

.footer-admission-btn:hover {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7)), #059669;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 400px) and (max-width: 767px) {
    .footer-admission-btn-container {
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .footer-admission-btn {
        text-align: center;
        font-size: 1.125rem;
        padding-left: 6rem;
        padding-right: 6rem;
    }
}

.footer-divider {
    margin: 2rem 0;
    height: 1px;
    width: 100%;
    background: rgba(0, 0, 0, 0.15);
}

/* Middle row: brand + navs */
.footer-middle {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer-middle {
        /* brand | navs wrapper */
        align-items: center;
    }
}

.footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    display: grid;
    height: 2.25rem;
    width: 2.25rem;
    place-items: center;
    border-radius: 0.375rem;
    background: #0F0E0E;
    color: white;
}



.footer-logo-icon {
    height: 1.25rem;
    width: 1.25rem;
}

.footer-brand-text {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    color: black;
}

/* Navs: titles removed and lists unified horizontally */
.footer-nav {
    width: 100%;
}

.footer-nav-title {
    display: none !important;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    /* wrap gracefully on small screens */
}

.footer-nav-align {
    width: 100%;
    display: flex;

}

.footer-nav-space-between {
    width: 110%;
    display: flex;
    justify-content: center;
}

/* Back-compat class kept as utility */
.footer-nav-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    /* justify-content: flex-start; */
    gap: 20rem;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-nav-link,
.footer-nav-button {
    color: #0a0c0e;
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 1.3;

    padding: 6px 2px;
    transition: color .16s ease, opacity .16s ease, text-decoration-color .16s ease;
}

.footer-nav-link:hover,
.footer-nav-button:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    color: #0a0c0e;
    opacity: 0.9;
}

.footer-nav-button {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

/* Bottom row */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        align-items: center;
    }
}

.footer-privacy-link {
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    font-size: inherit;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 4px;
}

.footer-social-link {
    height: 48px;
    /* larger touch target */
    width: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0b1320;
    transition: transform .16s ease, background .16s ease, box-shadow .2s ease, opacity .16s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.footer-social-link:hover {
    opacity: 0.8;
}

.footer-social-icon {
    width: 26px;
    /* increased visual size */
    height: 26px;
}

@media (max-width: 640px) {
    .footer-nav-row {
        gap: 20px;
    }

    .footer-social {
        gap: 14px;
    }

    .footer-social-link {
        height: 46px;
        width: 46px;
    }

    .footer-social-icon {
        width: 24px;
        height: 24px;
    }
}

/* Text elements */
.footer-newsletter-label,
.footer-newsletter-text,
.footer-brand-text,
.footer-privacy-link {
    color: #0a0c0e;
}

/* ===== Desktop-only control for two nav rows ===== */
/* Keep first row (first nav list) untouched, center second row (FAQ + Terms) just below it */
@media (min-width: 1024px) {

    /* Enable wrapping across lists */
    .footer-nav-list,
    .footer-nav-row {
        flex-wrap: wrap;
        /* allow multi-line rows */
        /* MDN: wrapping flex items */
        /* [web:41] */
    }

    /* Row 1: first UL spans full width and keeps its spacing/alignment */
    .footer-nav:first-of-type .footer-nav-list {
        flex-basis: 100%;
        /* occupy full first line */
        /* common technique to break rows */
        /* [web:57] */
        justify-content: center;
        /* unchanged alignment for first row */
        /* MDN: per-line alignment */
        /* [web:13] */
        gap: 6rem;
        /* preserve desktop gap configured for row 1 */
        /* Flexbox guide notes on gaps */
        /* [web:16] */
    }

    /* Row 2: second UL centered beneath row 1 */
    .footer-nav+.footer-nav .footer-nav-list {
        flex-basis: 100%;
        justify-content: center;
        /* center FAQ + Terms horizontally */
        /* [web:13] */
        gap: 28px;
        /* tidy spacing for the pair */
        /* [web:16] */
    }


}


/* ==================== TERMS MODAL ==================== */
.terms-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    place-items: center;
}

.terms-modal.active {
    display: grid;
}

.terms-backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 100% at 50% -10%, rgba(6, 24, 33, 0.75) 0%, rgba(6, 24, 33, 0.85) 45%, rgba(6, 24, 33, 0.92) 100%);
    backdrop-filter: blur(4px);
}

.terms-content {
    position: relative;
    z-index: 10;
    width: min(96vw, 54rem);
    max-height: 85vh;
    overflow: hidden;
    border-radius: 1rem;
    background: #f9fafb;
    color: #0b1320;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.terms-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: linear-gradient(to bottom, white, rgba(255, 255, 255, 0.95));
    padding: 1.5rem;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .terms-header {
        padding: 1.5rem 2rem 1rem;
    }
}

.terms-title {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #0b1320;
}

@media (min-width: 768px) {
    .terms-title {
        font-size: 1.5rem;
    }
}

.terms-subtitle {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #64748b;
}

@media (min-width: 768px) {
    .terms-subtitle {
        font-size: 0.8125rem;
    }
}

.terms-close {
    display: inline-flex;
    height: 2.25rem;
    width: 2.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    background: white;
    color: #64748b;
    cursor: pointer;
}

.terms-close:hover {
    background: #f1f5f9;
}

.terms-close-icon {
    height: 1.25rem;
    width: 1.25rem;
}

.terms-body {
    overflow-y: auto;
    padding: 1.25rem 1.5rem;
}

@media (min-width: 768px) {
    .terms-body {
        padding: 1.5rem 2rem;
    }
}

.terms-section-title {
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    color: #0b1320;
    font-weight: 600;
}

.terms-section:first-child .terms-section-title {
    margin-top: 0;
}

.terms-list {
    margin-top: 0.25rem;
    margin-bottom: 1rem;
    list-style: disc;
    padding-left: 1.25rem;
}

.terms-list li {
    margin-top: 0.35rem;
    font-size: 1.02rem;
    line-height: 1.75;
    color: #334155;
}

.terms-list li::marker {
    color: #94a3b8;
}

.terms-footer {
    position: sticky;
    bottom: 0;
    background: linear-gradient(to top, white, rgba(255, 255, 255, 0.95));
    padding: 1rem 1.5rem;
    box-shadow: 0 -1px 0 rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media (min-width: 768px) {
    .terms-footer {
        padding: 1rem 2rem;
    }
}

.terms-close-btn {
    display: inline-flex;
    align-items: center;
    border-radius: 0.5rem;
    border: 1px solid #cbd5e1;
    background: white;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
    cursor: pointer;
}

.terms-close-btn:hover {
    background: #f1f5f9;
}

/* ==================== UTILITY CLASSES ==================== */
.main-content {
    overflow-x: hidden;
    box-sizing: border-box;
}

/* ======================K2Music section==================== */
/* Scoped wrapper */
.k2why {
    font-family: "Figtree", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Section background gradient exactly as TSX */
.k2why.section {
    width: 100%;
    background-image: linear-gradient(to bottom, #037555 10%, #4689d4);
}

/* Container paddings */
.k2why .container {
    max-width: 1536px;
    /* max-w-screen-2xl */
    margin: 0 auto;
    padding: 3.5rem 1rem;
    /* px-4 py-14 */
}

@media (min-width: 768px) {
    .k2why .container {
        padding: 5rem 2rem;
    }

    /* md:px-8 md:py-20 */
}

/* Centered header block */
.k2why .header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
    text-align: center;
}

/* Title styles from TSX */
.k2why .title {
    display: inline-block;
    font-weight: 800;
    /* font-extrabold */
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-size: 32px;
    line-height: 1;
    color: #ffffff;
    text-shadow: 5px 5px 0 rgba(0, 0, 0, 0.40);
}

@media (min-width: 768px) {
    .k2why .title {
        font-size: 44px;
    }
}

/* Cards row */
.k2why .cards {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    gap: 2.5rem;
    /* gap-10 */
}

@media (min-width: 768px) {
    .k2why .cards {
        flex-direction: row;
        gap: 3.5rem;
    }

    /* md:flex-row md:gap-14 */
}

/* Card */
.k2why .card {
    flex: 1;
    height: 30rem;
    /* h-[30rem] */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    /* rounded-2xl */
    border: 1px solid rgba(255, 255, 255, 0.10);
    /* border-[#ffffff1a] */
    /* dark:bg-gradient-to-b from-[#35577D] to-[#141e30] -> apply directly */
    background-image: linear-gradient(to bottom, #35577D, #141e30);
    /* shadow stack */
    box-shadow:
        26px 34px 64px -24px rgba(2, 6, 23, 0.62),
        120px 160px 320px -150px rgba(2, 6, 23, 0.72);
    padding: 1.25rem;
    /* p-5 */
    padding-bottom: 5rem;
    /* pb-20 */
    transition: box-shadow 0.3s ease;
}

.k2why .card:hover {
    box-shadow:
        7px 12px 30px -7px rgba(2, 6, 23, 0.60),
        9px 6px 26px 0 rgba(2, 6, 23, 0.66);
}

.k2why .card-title {
    font-size: 1.125rem;
    /* text-lg */
    font-weight: 600;
    /* font-semibold */
    color: #ffffff;
}

.k2why .card-list {
    margin: 0.75rem 0 0 1.25rem;
    /* mt-3 ml-5 */
    padding: 0;
}

.k2why .card-list li {
    list-style: disc;
    font-size: 0.9rem;
    color: #d1d5db;
    /* text-gray-300 */
    line-height: 1.625;
    /* leading-relaxed approx */
    margin-top: 0.75rem;
}

/* Affiliated To header */
.k2why .aff-header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5rem;
}

.k2why .aff-title {
    display: inline-block;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-size: 32px;
    line-height: 1;
    color: #ffffff;
    text-shadow: 5px 5px 0 rgba(0, 0, 0, 0.40);
}

@media (min-width: 768px) {
    .k2why .aff-title {
        font-size: 44px;
    }
}

/* Logos row */
.k2why .logos-wrap {
    width: 100%;
    padding: 0 1rem 2rem;
    /* px-4 pb-8 */
}

@media (min-width: 768px) {
    .k2why .logos-wrap {
        padding: 2rem 2rem 2rem;
    }

    /* md:px-8 md:py-8 */
}

.k2why .logos {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 0;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .k2why .logos {
        flex-direction: row;
        /* sm:flex-row */
        gap: 11rem;
        /* sm:gap-44 (approx 176px) */
        margin-bottom: 2.5rem;
        /* sm:mb-10 */
    }
}

/* Individual logo cards */
.k2why .logo-card {
    height: 7rem;
    width: 25rem;
    border: 2px solid rgba(251, 243, 243, 0.10);
    /* border-[#fbf3f31a] */
    border-radius: 1rem;
    /* rounded-2xl */
    padding: 1rem;
    /* px-4 py-4 */
    color: #fbf5f3;
    /* outer border + offset shadow frame */
    box-shadow:
        0 0 0 2.5px #fbf5f3,
        7px 7px 0 #fbf5f3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (min-width: 300px) and (max-width: 639px) {

    .k2why .logo-card--trinity {
        background-image: url('public/images/Trinity.png');
        height: 10rem;
        width: 22rem;
    }

    .k2why .logo-card--prayag {
        background-image: url('public/images/Prayag_Logo.png');
        height: 10rem;
        width: 22rem;
        /* sm:ml-12 */
    }
}

/* Trinity image card with full-cover */
.k2why .logo-card--trinity {
    background-image: url('public/images/Trinity.png');
}

/* Prayag card uses contain on purple bg */
.k2why .logo-card--prayag {
    background-image: url('public/images/Prayag_Logo.png');
    background-color: rgba(251, 243, 243, 0.10);
    /* #5e0752e0 */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.80;
}

/* .footer-admission-btn-container {
    display: inline-flex;
    align-items: flex-end;
    justify-content: flex-end;
      text-align: end ;
}

.footer-admission-btn{
    position: relative;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-family: sans-serif;
    font-size: 1rem;
    font-weight: 400;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2), 0 1px 1px rgba(0, 0, 0, 0.2), inset 0 -6px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.1s;
    color: #fbf5f3;
    justify-self: end;
     background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7)), #10b981;
}


@media (min-width: 400px) and (max-width: 767px) {
    .footer-admission-btn-container {
       justify-content: center;
       text-align: center;
       width: 100%;
 
    }

    .footer-admission-btn{
       justify-content: stretch;
       text-align: center;
        font-size:  1.125rem;
        padding-left: 6rem;
        padding-right: 6rem;
    }
  
    
}

.footer-admission-btn:hover {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7)), #059669;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
} */

/* ==================== GALLERY REFRESH ==================== */
.gallery-refresh-section {
    padding: 6rem 1rem;
    background: linear-gradient(to bottom, #324261, #141e30);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.gallery-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.gallery-subtitle {
    font-size: 1.125rem;
    color: #9ca3af;
    line-height: 1.6;
}

.gallery-grid-refresh {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.gallery-item-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #1a1a1a;
    box-shadow: 8px 8px 2px 3px rgba(0, 0, 0, 0.1), 8px 8px 2px 3px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 2px 3px rgba(0, 0, 0, 0.1), 8px 8px 2px 3px rgba(0, 0, 0, 0.06);
}

.gallery-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-img-refresh {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-card:hover .gallery-img-refresh {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.gallery-item-card:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-card-content {
    color: white;
}

.gallery-card-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #00d084;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.gallery-card-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

@media (max-width: 768px) {
    .gallery-title {
        font-size: 2.25rem;
    }

    .gallery-grid-refresh {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1rem;
    }

    /* On mobile, show overlay always or simplified */
    .gallery-overlay {
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    }
}

/* ==================== GALLERY CATEGORY BUTTONS ==================== */
.gallery-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .gallery-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.gallery-category-btn {
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-category-btn:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px -10px rgba(0, 208, 132, 0.3);
}

/* Always visible overlay for category buttons */
.gallery-overlay-always {
    opacity: 1 !important;
    transform: translateY(0) !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
}

/* Gallery section - no background, uses parent gradient */
.gallery-section {
    background: transparent;
    animation: fadeInUp 0.5s ease;
}

/* ==================== GALLERY BACK BUTTON ==================== */
.gallery-back-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 2rem auto;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.15) 0%, rgba(0, 208, 132, 0.05) 100%);
    border: 1px solid rgba(0, 208, 132, 0.4);
    border-radius: 50px;
    color: #00d084;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-back-btn:hover {
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.25) 0%, rgba(0, 208, 132, 0.1) 100%);
    border-color: #00d084;
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(0, 208, 132, 0.2);
}

.gallery-back-btn svg {
    transition: transform 0.3s ease;
}

.gallery-back-btn:hover svg {
    transform: translateX(-3px);
}

/* ==================== GALLERY SECTION TITLE ==================== */
.gallery-section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 1rem 0 2rem;
    background: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

/* ==================== GALLERY SECTION ANIMATION ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== FOOTER LOCATION & MAP ==================== */
.footer-location-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
    padding: 1rem 0;
    font-family: "Figtree", sans-serif;
}

@media (min-width: 768px) {
    .footer-location-section {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 4rem;
    }
}

.footer-location-info {
    flex: 1;
    color: #e5e7eb;
}

.footer-location-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: white;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.footer-location-sub {
    display: block;
    margin-top: 0.25rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: #9EF566;
    /* Using the brand accent color from earlier sections */
    letter-spacing: 0.01em;
}

.footer-location-address {
    margin-top: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 420px;
    border-left: 3px solid #9EF566;
    padding-left: 1rem;
}

.footer-location-address strong {
    display: block;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
}

.footer-map-container {
    flex: 1;
    width: 100%;
}

.footer-map-frame {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    width: 100%;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* ==================== GALLERY FULLSCREEN BUTTON ==================== */
/* Gallery Fullscreen Button */
.gallery-fullscreen-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 150;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    padding: 0;
    pointer-events: auto;
}

.gallery-fullscreen-btn svg {
    width: 20px;
    height: 20px;
}

.gallery-fullscreen-btn i {
    font-size: 20px;
}

/* Show button on hover - multiple selectors for reliability */
.gallery-item-card:hover .gallery-fullscreen-btn,
.gallery-img-wrapper:hover .gallery-fullscreen-btn {
    opacity: 1;
    transform: scale(1);
}

.gallery-fullscreen-btn:hover {
    background: rgba(0, 208, 132, 0.9);
    border-color: rgba(0, 208, 132, 1);
    transform: scale(1.1) !important;
    opacity: 1 !important;
}

.gallery-fullscreen-btn:active {
    transform: scale(0.95) !important;
}

/* On mobile, always show the fullscreen button */
@media (max-width: 768px) {
    .gallery-fullscreen-btn {
        opacity: 1 !important;
        transform: scale(1) !important;
        background: rgba(0, 0, 0, 0.8);
    }
}

.top {
    background-position: top !important;
}