/* Local fonts — DM Sans + Outfit (woff2, no external requests) */
@font-face {
    font-family: "DM Sans";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/dm-sans-latin-400-normal.woff2") format("woff2");
}

@font-face {
    font-family: "DM Sans";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/dm-sans-latin-500-normal.woff2") format("woff2");
}

@font-face {
    font-family: "DM Sans";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/dm-sans-latin-600-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Outfit";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/outfit-latin-600-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Outfit";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/outfit-latin-700-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Outfit";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("../fonts/outfit-latin-800-normal.woff2") format("woff2");
}

/* Brand: primary #22467E, accent #EC2629 — all UI tokens derive from these */
:root {
    --color-primary: #22467e;
    --color-accent: #ec2629;
    --color-primary-light: #3a6eb8;
    --color-primary-muted: #8ebaf0;
    --color-primary-rgb: 34, 70, 126;
    --color-accent-rgb: 236, 38, 41;
    --ink: #050a12;
    --ink-soft: #0c1526;
    --muted: rgba(255, 255, 255, 0.68);
    --accent: var(--color-accent);
    --accent-2: var(--color-primary-light);
    --accent-3: var(--color-primary-muted);
    --surface: rgba(255, 255, 255, 0.06);
    --surface-2: rgba(255, 255, 255, 0.1);
    --radius: 1.25rem;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    --gradient-hero: linear-gradient(135deg, #050a12 0%, #163358 38%, #22467e 100%);
    --gradient-card: linear-gradient(
        145deg,
        rgba(var(--color-primary-rgb), 0.22) 0%,
        rgba(var(--color-accent-rgb), 0.08) 100%
    );
}

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

html {
    scroll-behavior: smooth;
}

.theme-body {
    font-family: "DM Sans", system-ui, sans-serif;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.92);
    min-height: 100vh;
    overflow-x: hidden;
}

.theme-body h1,
.theme-body h2,
.theme-body h3,
.theme-body h4,
.theme-body .display-1,
.theme-body .display-2,
.theme-body .display-3,
.theme-body .display-4,
.theme-body .display-5,
.theme-body .display-6 {
    font-family: "Outfit", system-ui, sans-serif;
    letter-spacing: -0.02em;
}

.noise-overlay {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-nav {
    z-index: 1030;
    background: rgba(5, 10, 18, 0.88) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.35);
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

.site-nav .nav-link {
    color: rgba(255, 255, 255, 0.78) !important;
    font-weight: 500;
    padding: 0.5rem 0.85rem !important;
    border-radius: 999px;
    transition: color 0.2s, background 0.2s;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
    color: #fff !important;
    background: rgba(var(--color-primary-rgb), 0.28);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.65rem;
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(var(--color-accent-rgb), 0.4);
}

.brand-text {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #FFFFFF;
	margin-left: -35px;
}

.btn-nav-cta {
    background: var(--color-accent);
    border: none;
    color: #fff !important;
    font-weight: 600;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(var(--color-accent-rgb), 0.45);
}

.btn-nav-cta.active {
    background: var(--color-accent);
    border: none;
    color: #ccc !important;
    font-weight: 600;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(var(--color-accent-rgb), 0.45);
}


.btn-nav-cta:hover {
    filter: brightness(1.07);
    transform: translateY(-1px);
    color: #808080 !important;
}

.site-main {
    position: relative;
    z-index: 1;
    padding-top: 5.5rem;
}

/* Hero carousel */
.hero-wrap {
    position: relative;
    margin: 0 0 3rem;
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-carousel .carousel-item {
    min-height: 78vh;
    background: var(--gradient-hero);
}

.hero-carousel .carousel-inner {
    border-radius: 0 0 var(--radius) var(--radius);
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.carousel-item.active .hero-slide-bg {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(5, 10, 18, 0.94) 0%,
        rgba(var(--color-primary-rgb), 0.55) 52%,
        rgba(var(--color-accent-rgb), 0.12) 100%
    );
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    min-height: 78vh;
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.hero-kicker {
    display: inline-block;
    font-size: 1.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
    animation: fadeUp 0.8s ease both;
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeUp 0.8s 0.1s ease both;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 32rem;
    margin-bottom: 1.75rem;
    animation: fadeUp 0.8s 0.2s ease both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 40px rgba(var(--color-primary-rgb), 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: fadeUp 0.8s 0.3s ease both;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 16px 48px rgba(var(--color-primary-rgb), 0.55);
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 8%;
    opacity: 0.85;
}

.hero-carousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.35);
}

.hero-carousel .carousel-indicators .active {
    background: var(--color-accent);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section */
.section-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-3);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-lead {
    color: var(--muted);
    max-width: 40rem;
}

/* Course cards */
.course-card {
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--gradient-card);
    backdrop-filter: blur(12px);
    overflow: hidden;
    height: 100%;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, border-color 0.35s;
}

.course-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(var(--color-accent-rgb), 0.45);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.course-card .card-top {
    height: 6px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 45%, var(--color-accent) 100%);
}

.course-card .badge-cat {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-accent);
    background: rgba(var(--color-accent-rgb), 0.15);
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
}

.course-card .card-excerpt {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-meta {
    font-size: 0.85rem;
    color: var(--muted);
}

.course-meta strong {
    color: #fff;
    font-weight: 600;
}

.btn-course-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    color: var(--accent-3);
    text-decoration: none;
    font-size: 0.95rem;
    transition: gap 0.2s;
}

.btn-course-link:hover {
    color: var(--color-accent);
    gap: 0.55rem;
}

/* Glass panels */
.glass-panel {
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    padding: 2rem;
}

.form-control,
.form-select {
    background: rgba(192, 192, 192, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(var(--color-primary-rgb), 0.65);
    color: #808080;
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.2);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-submit-glow {
    border: none;
    border-radius: 999px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-submit-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(var(--color-primary-rgb), 0.45);
    color: #fff;
}

/* Partners marquee */
.partners-strip {
    position: relative;
    overflow: visible;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 3rem;
}

/* Homepage Partners — Swiper (centered ~600px) */
.partners-swiper-shell {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem 0.5rem;
    position: relative;
}

.partners-swiper {
    --swiper-theme-color: var(--color-primary);
    --swiper-navigation-size: 22px;
    padding-bottom: 2.25rem;
}

.partners-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partners-swiper .partner-logo--swiper {
    margin: 0 auto;
    width: 100%;
    max-width: 220px;
    height: 62px;
    padding: 0.65rem 0.95rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.11);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-swiper .partner-logo--swiper:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--color-accent-rgb), 0.45);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.partners-swiper .partner-logo--swiper img {
    max-height: 34px;
    max-width: 120px;
}

.partners-swiper-pagination.partners-swiper-pagination {
    bottom: 0;
}

.theme-body[data-theme="light"] .partners-swiper .partner-logo--swiper {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.1);
}

.partners-marquee {
    display: flex;
    width: max-content;
    animation: marquee 38s linear infinite;
}

.partners-marquee:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    flex: 0 0 auto;
    margin: 0 2rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-height: 44px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(1) brightness(1.2);
    opacity: 0.85;
    transition: filter 0.3s, opacity 0.3s;
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* CMS page wide banner (full bleed under nav) */
.cms-page-banner-wrap {
    width: 100%;
    margin: 0 0 0;
    line-height: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cms-page-banner {
    width: 100%;
    height: clamp(160px, 28vw, 360px);
    object-fit: cover;
    display: block;
}

/* Page hero (inner pages) */
.page-hero {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 2rem;
}

.page-hero h1 {
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.75rem);
}

.site-brand-logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.site-footer-logo {
    max-height: 46px;
    width: auto;
    object-fit: contain;
}

.contact-map-panel .contact-map-wrap {
    line-height: 0;
}

.contact-map-iframe {
    width: 100%;
    min-height: 320px;
    height: 42vw;
    max-height: 480px;
    border: 0;
    display: block;
}

@media (min-width: 992px) {
    .contact-map-iframe {
        height: 400px;
    }
}

.gallery-hero-lead {
    max-width: 42rem;
}

.gallery-intro {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, rgba(34, 70, 126, 0.25) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(236, 38, 41, 0.08) 100%);
}

.gallery-stat-pill {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1.15rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.2);
}

.gallery-stat-pill--accent {
    border-color: rgba(var(--color-accent-rgb), 0.35);
    background: rgba(var(--color-accent-rgb), 0.12);
}

.gallery-stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.gallery-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.gallery-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-tile--wide {
        grid-column: span 2;
    }
}

@media (min-width: 1100px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-tile--wide {
        grid-column: span 2;
    }
}

.gallery-tile {
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--gradient-card);
    backdrop-filter: blur(12px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, border-color 0.35s;
}

.gallery-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--color-accent-rgb), 0.35);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

.gallery-tile__media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: rgba(0, 0, 0, 0.35);
}

.gallery-tile--wide .gallery-tile__media {
    aspect-ratio: 21 / 9;
}

@media (max-width: 767.98px) {
    .gallery-tile--wide .gallery-tile__media {
        aspect-ratio: 4 / 3;
    }
}

.gallery-tile__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-tile__media:hover img,
.gallery-tile__media:focus-visible img {
    transform: scale(1.06);
}

.gallery-tile__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, transparent 40%, rgba(255, 255, 255, 0.12) 50%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s, transform 0.6s;
    transform: translateX(-100%);
    pointer-events: none;
}

.gallery-tile__media:hover .gallery-tile__shine,
.gallery-tile__media:focus-visible .gallery-tile__shine {
    opacity: 1;
    transform: translateX(100%);
}

.gallery-tile__cta {
    position: absolute;
    bottom: 0.85rem;
    right: 0.85rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s, transform 0.25s;
    pointer-events: none;
}

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

.gallery-tile__media:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.gallery-tile__media--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    aspect-ratio: 4 / 3;
}

.gallery-tile__empty-label {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.9rem;
}

.gallery-tile__body {
    padding: 1.15rem 1.25rem 1.35rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gallery-tile__date {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.gallery-tile__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.gallery-tile__excerpt {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.55;
    margin-bottom: 0;
    flex: 1;
}

.gallery-empty-icon {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.2);
}

.gallery-empty a {
    color: var(--accent-3);
}

.whatsapp-fab {
    position: fixed;
    bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
    right: max(1.25rem, env(safe-area-inset-right, 0px));
    z-index: 1040;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #25d366;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    box-shadow: 0 4px 22px rgba(37, 211, 102, 0.5), 0 2px 8px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none !important;
}

.whatsapp-fab:hover {
    color: #fff !important;
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp-fab:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.9);
    outline-offset: 3px;
}

.course-detail-tabs {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.course-detail-tabs .nav-link {
    color: rgba(255, 255, 255, 0.55);
    border: 1px solid transparent;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.course-detail-tabs .nav-link:hover {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.08);
}

.course-detail-tabs .nav-link.active {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12) rgba(255, 255, 255, 0.12) transparent;
}

.cms-content {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
}

.cms-content p {
    margin-bottom: 1rem;
}

.cms-content ul {
    padding-left: 1.25rem;
}

.cms-content a {
    color: var(--accent-3);
}

.theme-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.35);
}

.theme-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.55);
}

/* Footer */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, rgba(5, 10, 18, 0.35) 0%, #03060c 100%);
    border-top: 1px solid rgba(var(--color-primary-rgb), 0.25);
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 200px;
    background: radial-gradient(ellipse, rgba(var(--color-primary-rgb), 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer a:hover {
    color: var(--color-accent);
}

/* Alerts */
.alert {
    border-radius: 0.85rem;
    border: none;
}

.alert-success {
    background: rgba(var(--color-primary-rgb), 0.18);
    color: #dce8f7;
}

.alert-danger {
    background: rgba(var(--color-accent-rgb), 0.15);
    color: #fecaca;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-carousel .carousel-item,
    .hero-slide-content {
        min-height: 65vh;
    }
}

.animate-fade-in {
    animation: fadeUp 0.75s ease both;
}

/* Header theme toggle */
.theme-toggle-btn {
    background: transparent !important;
    border: none;
    box-shadow: none;
    cursor: pointer;
}

.theme-toggle-btn:focus-visible {
    outline: 3px solid rgba(var(--color-primary-rgb), 0.35);
    outline-offset: 3px;
}


.site-logo {
	  display: inline-block;        /* Allows the span to have width and height */
	  width: 150px;                 /* Adjust to your logo's width */
	  height: 50px;                 /* Adjust to your logo's height */
	  background-image: url('../../imgs/G-TEC_logo_new_dark_tr.png'); 
	  background-size: contain;     /* Ensures the full logo fits without cropping */
	  background-repeat: no-repeat;
	  background-position: center;
}
			





/* Light theme overrides */
.theme-body[data-theme="light"] {
    --ink: #f5f7fb;
    --ink-soft: #ffffff;
    --muted: rgba(0, 0, 0, 0.62);
    --surface: rgba(0, 0, 0, 0.06);
    --surface-2: rgba(0, 0, 0, 0.1);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
    --gradient-hero: linear-gradient(135deg, #f5f7fb 0%, #dbe9ff 38%, rgba(34, 70, 126, 0.22) 100%);
    --gradient-card: linear-gradient(
        145deg,
        rgba(var(--color-primary-rgb), 0.12) 0%,
        rgba(var(--color-accent-rgb), 0.06) 100%
    );

    background: var(--ink);
    color: rgba(0, 0, 0, 0.9);
}

.theme-body[data-theme="light"] .text-white {
    color: rgba(0, 0, 0, 0.92) !important;
}

.theme-body[data-theme="light"] .text-white-50 {
    color: rgba(0, 0, 0, 0.55) !important;
}

.theme-body[data-theme="light"] .site-nav {
    background: rgba(255, 255, 255, 0.86) !important;
    border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.25);
}

.theme-body[data-theme="light"] .site-nav .nav-link {
    color: rgba(0, 0, 0, 0.65) !important;
}

.theme-body[data-theme="light"] .site-nav .nav-link:hover,
.theme-body[data-theme="light"] .site-nav .nav-link.active {
    color: rgba(0, 0, 0, 0.92) !important;
    background: rgba(var(--color-primary-rgb), 0.14);
}





.theme-body[data-theme="light"] .hero-slide-overlay {
    background: linear-gradient(
        120deg,
        rgba(245, 247, 251, 0.92) 0%,
        rgba(var(--color-primary-rgb), 0.28) 52%,
        rgba(var(--color-accent-rgb), 0.08) 100%
    );
}

.theme-body[data-theme="light"] .hero-title {
    color: rgba(0, 0, 0, 0.92);
}

.theme-body[data-theme="light"] .hero-sub {
    color: var(--muted);
}

.theme-body[data-theme="light"] .hero-carousel .carousel-indicators [data-bs-target] {
    background: rgba(0, 0, 0, 0.15);
}

.theme-body[data-theme="light"] .glass-panel {
    border-color: rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.72);
}

.theme-body[data-theme="light"] .form-control,
.theme-body[data-theme="light"] .form-select {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: rgba(0, 0, 0, 0.92);
}

.theme-body[data-theme="light"] .form-control:focus,
.theme-body[data-theme="light"] .form-select:focus {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(var(--color-primary-rgb), 0.55);
    color: rgba(0, 0, 0, 0.92);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.18);
}

.theme-body[data-theme="light"] .form-control::placeholder {
    color: rgba(0, 0, 0, 0.45);
}

.theme-body[data-theme="light"] .course-card {
    border-color: rgba(0, 0, 0, 0.08);
}

.theme-body[data-theme="light"] .course-card .card-excerpt {
    color: rgba(0, 0, 0, 0.68);
}

.theme-body[data-theme="light"] .course-meta strong {
    color: rgba(0, 0, 0, 0.95);
}

.theme-body[data-theme="light"] .partners-strip {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.theme-body[data-theme="light"] .partner-logo {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(0, 0, 0, 0.07);
}

.theme-body[data-theme="light"] .page-hero {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.theme-body[data-theme="light"] .cms-page-banner-wrap {
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.theme-body[data-theme="light"] .course-detail-tabs {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.theme-body[data-theme="light"] .course-detail-tabs .nav-link {
    color: rgba(0, 0, 0, 0.55);
}

.theme-body[data-theme="light"] .course-detail-tabs .nav-link:hover {
    color: rgba(0, 0, 0, 0.85);
    border-color: rgba(0, 0, 0, 0.08);
}

.theme-body[data-theme="light"] .course-detail-tabs .nav-link.active {
    color: rgba(0, 0, 0, 0.92);
    background-color: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) transparent;
}

.theme-body[data-theme="light"] .theme-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(0, 0, 0, 0.28);
}

.theme-body[data-theme="light"] .theme-breadcrumb .breadcrumb-item.active {
    color: rgba(0, 0, 0, 0.5);
}

.theme-body[data-theme="light"] .cms-content {
    color: rgba(0, 0, 0, 0.72);
}

.theme-body[data-theme="light"] .site-footer {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, #f0f3f8 100%);
    border-top: 1px solid rgba(var(--color-primary-rgb), 0.2);
}

.theme-body[data-theme="light"] .site-footer a {
    color: rgba(0, 0, 0, 0.65);
}

.theme-body[data-theme="light"] .site-footer a:hover {
    color: var(--color-accent);
}

.theme-body[data-theme="light"] .gallery-intro {
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.theme-body[data-theme="light"] .gallery-stat-num,
.theme-body[data-theme="light"] .gallery-tile__title,
.theme-body[data-theme="light"] .gallery-empty-icon {
    color: rgba(0, 0, 0, 0.92);
}

.theme-body[data-theme="light"] .gallery-tile__excerpt {
    color: rgba(0, 0, 0, 0.68);
}

.theme-body[data-theme="light"] .site-logo {






  display: inline-block;        /* Allows the span to have width and height */
  width: 150px;                 /* Adjust to your logo's width */
  height: 50px;                 /* Adjust to your logo's height */
  background-image: url('../../imgs/G-TEC_logo_new_light_tr.png'); 
  background-size: contain;     /* Ensures the full logo fits without cropping */
  background-repeat: no-repeat;
  background-position: center;
}

.theme-body[data-theme="light"] .brand-text {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #1B437F;
	margin-left: -35px;
}