/* ============================================================
   DUSKY MAKEOVER STUDIO — Luxury Black & Gold Design System
   ============================================================ */

:root {
    --bg:          #0A0A0A;
    --bg-2:        #0E0E0E;
    --secondary:   #111111;
    --panel:       #151515;
    --gold:        #D4AF37;
    --gold-soft:   #e8cf86;
    --rose-gold:   #E6C58A;
    --white:       #ffffff;
    --dark:        #1a1a1a;
    --dark-2:      #2d2d2d;
    --light:       #f5f5f5;
    --muted:       #b7b3ab;
    --muted-2:     #8a8680;
    --line:        rgba(212, 175, 55, 0.18);
    --line-soft:   rgba(255, 255, 255, 0.08);

    --grad-gold:   linear-gradient(135deg, #f6e27a 0%, #D4AF37 35%, #b8892b 70%, #E6C58A 100%);
    --grad-dark:   linear-gradient(180deg, #0a0a0a 0%, #050505 100%);

    /* Section alternating backgrounds — rich dark tones with variety */
    --sec-white:   #0F0F0F;
    --sec-cream:   #141210;
    --sec-warm:    #171412;
    --sec-grey:    #121518;
    --sec-dark:    #1a1a1a;
    --sec-navy:    #111827;
    --sec-charcoal:#1A1A1E;
    --sec-deep:    #0D1117;

    --font-head:   'Cormorant Garamond', Georgia, serif;
    --font-body:   'Poppins', system-ui, sans-serif;

    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.22);
    --shadow-lg:   0 24px 60px rgba(0, 0, 0, 0.55);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);

    --radius:      18px;
    --radius-sm:   12px;
    --ease:        cubic-bezier(0.22, 1, 0.36, 1);
    --container:   1200px;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* Keep anchor targets clear of the sticky header + marquee */
:target { scroll-margin-top: 130px; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--light);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-head);
    font-weight: 600;
    line-height: 1.12;
    color: var(--white);
    letter-spacing: .3px;
    margin: 0 0 .5em;
}

::selection { background: var(--gold); color: #000; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: linear-gradient(#D4AF37, #8a6d1e); border-radius: 20px; }

/* ---------- Utilities ---------- */
.container { max-width: var(--container); }

.text-gold { color: var(--gold) !important; }
.bg-secondary-dark { background: var(--secondary); }

.gold-text {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section { padding: 110px 0; position: relative; }
.section-sm { padding: 80px 0; }

/* Contain any horizontal overflow at the section level instead of on
   html/body. Keeping html & body free of overflow lets position:sticky
   (header) and position:fixed (mobile CTA bar) work reliably on mobile.
   overflow-x:clip clips sideways only, without affecting vertical flow.
   The hero keeps its own overflow:hidden (universal) for its decorations. */
.section, .section-sm, .page-hero, .trust-section, .cta-banner,
.site-footer { overflow-x: clip; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
.eyebrow::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--gold);
    display: inline-block;
}

.section-title {
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    margin-bottom: 18px;
}
.section-title.center { text-align: center; }

.section-lead {
    color: var(--muted);
    max-width: 620px;
    font-weight: 300;
}
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin-inline: auto; }

.divider-orn {
    display: flex; align-items: center; justify-content: center;
    gap: 14px; margin: 0 auto 46px; color: var(--gold);
}
.divider-orn::before, .divider-orn::after {
    content: ''; width: 60px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.divider-orn::after { background: linear-gradient(90deg, var(--gold), transparent); }

/* ---------- Buttons ---------- */
.btn {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: .9rem;
    letter-spacing: .5px;
    padding: 14px 30px;
    border-radius: 50px;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all .4s var(--ease);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn-gold {
    background: var(--grad-gold);
    color: #1a1205;
    box-shadow: var(--shadow-gold);
}
.btn-gold::before {
    content: '';
    position: absolute; top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.75), transparent);
    transform: skewX(-20deg);
    transition: left .7s var(--ease);
    z-index: -1;
}
.btn-gold:hover { color: #1a1205; transform: translateY(-3px); box-shadow: 0 16px 44px rgba(212,175,55,.4); }
.btn-gold:hover::before { left: 130%; }

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: #1a1205;
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-ghost {
    background: rgba(255,255,255,.04);
    color: var(--white);
    border-color: var(--line-soft);
    backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.btn-sm { padding: 10px 22px; font-size: .82rem; }
.btn-lg { padding: 17px 40px; font-size: .95rem; }

/* ---------- Glassmorphism ---------- */
.glass {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--line-soft);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* ============================================================
   PAGE LOADER
   ============================================================ */
#page-loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .6s ease, visibility .6s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-mark { text-align: center; }
.loader-logo {
    height: 150px; width: auto; display: block; margin: 0 auto;
    animation: loaderPulse 1.8s var(--ease) infinite;
}
@keyframes loaderPulse { 0%,100%{ transform: scale(1); opacity: .85; } 50%{ transform: scale(1.06); opacity: 1; } }
.loader-letters {
    font-family: var(--font-head);
    font-size: 2.6rem;
    letter-spacing: 4px;
    background: var(--grad-gold);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}
.loader-bar {
    display: block; height: 2px; width: 0;
    background: var(--grad-gold); margin: 14px auto 0;
    animation: loaderBar 1.3s var(--ease) infinite;
}
@keyframes loaderBar { 0%{width:0} 50%{width:120px} 100%{width:0} }

/* ============================================================
   TOP BAR + HEADER
   ============================================================ */
.topbar {
    background: var(--sec-dark);
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: .8rem;
    padding: 9px 0;
    color: #b7b3ab;
}
.topbar-text { color: var(--rose-gold); letter-spacing: .5px; }
.topbar-links a { margin-left: 26px; color: #b7b3ab; }
.topbar-links a:hover { color: var(--gold); }

.site-header {
    position: sticky; top: 36px; z-index: 1000;
    background: rgba(5,5,5,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212,175,55,.15);
    transition: background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled {
    background: rgba(5,5,5,.98);
    border-bottom-color: rgba(212,175,55,.2);
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.navbar { padding: 10px 0; transition: padding .4s var(--ease); }
.site-header.scrolled .navbar { padding: 6px 0; }

.navbar-brand { display: inline-flex; flex-direction: row; align-items: center; gap: 12px; line-height: 1; padding: 6px 0; }
.brand-logo {
    height: 60px; width: auto; display: block; flex: 0 0 auto;
    transition: height .4s var(--ease);
}
.site-header.scrolled .brand-logo { height: 48px; }
.brand-text { display: flex; flex-direction: column; }
.brand-mark {
    font-family: var(--font-head);
    font-size: 1.75rem; font-weight: 600;
    background: var(--grad-gold);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: .5px; line-height: 1; white-space: nowrap;
    transition: font-size .4s var(--ease);
}
.brand-sub {
    font-family: var(--font-body);
    font-size: .58rem; font-weight: 500;
    letter-spacing: 5px; text-transform: uppercase;
    color: var(--rose-gold); margin-top: 5px;
    padding-top: 5px; position: relative;
}
.brand-sub::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}
.site-header.scrolled .brand-mark { font-size: 1.55rem; }

.navbar-nav .nav-link {
    color: #f5f5f5 !important;
    font-size: .86rem;
    font-weight: 400;
    letter-spacing: .6px;
    padding: 8px 16px !important;
    position: relative;
}
.navbar-nav .nav-link::after {
    content: ''; position: absolute; left: 16px; bottom: 2px;
    width: 0; height: 1.5px; background: var(--gold);
    transition: width .35s var(--ease);
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--gold) !important; }
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { width: calc(100% - 32px); }
.nav-cta.active::after { display: none; }

.navbar-toggler { border: none; padding: 8px; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-line {
    display: block; width: 26px; height: 2px;
    background: var(--gold); margin: 5px 0;
    transition: .3s var(--ease);
}

/* Nav dropdown */
.dropdown-menu-lux {
    background: rgba(10,10,10,.98);
    border: 1px solid rgba(212,175,55,.15);
    border-radius: var(--radius-sm);
    padding: 8px;
    margin-top: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.dropdown-menu-lux .dropdown-item {
    color: #f5f5f5; font-size: .86rem;
    border-radius: 8px; padding: 9px 14px;
    transition: all .3s var(--ease);
}
.dropdown-menu-lux .dropdown-item:hover,
.dropdown-menu-lux .dropdown-item:focus {
    background: rgba(212,175,55,.12); color: var(--gold);
}
.dropdown-menu-lux .dropdown-divider { border-color: rgba(255,255,255,.08); opacity: 1; }
.dropdown-item-all { color: var(--gold) !important; font-weight: 500; }
.dropdown-courses { min-width: 300px; }

/* Open dropdowns on hover (desktop only) */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block; margin-top: 0;
        animation: dropFade .3s var(--ease);
    }
}
@keyframes dropFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
    background:
        radial-gradient(1000px 600px at 80% -10%, rgba(212,175,55,.12), transparent 60%),
        radial-gradient(800px 500px at 0% 100%, rgba(230,197,138,.08), transparent 55%),
        #050505;
    padding: 90px 0 60px;
    color: #f5f5f5;
}
#gold-particles {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

.hero-eyebrow {
    color: var(--gold); letter-spacing: 4px; font-size: .74rem;
    text-transform: uppercase; margin-bottom: 22px;
    display: inline-flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content:''; width:40px; height:1px; background: var(--gold); }

.hero-title {
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 24px;
}
.hero-title .gold-text { display: inline; }
.hero-lead {
    color: #b7b3ab;
    font-size: 1.08rem;
    max-width: 560px;
    margin-bottom: 14px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-media { position: relative; }
.hero-img-frame {
    position: relative;
    border-radius: 260px 260px 24px 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 3/4;
    background: linear-gradient(160deg,#1a1a1a,#0a0a0a);
}
.hero-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-frame::after {
    content:''; position:absolute; inset:0;
    background: linear-gradient(180deg, transparent 55%, rgba(5,5,5,.55));
}
.hero-badge {
    position: absolute; z-index: 3;
    background: rgba(5,5,5,.7);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 18px;
    backdrop-filter: blur(10px);
    display: flex; align-items: center; gap: 12px;
    box-shadow: var(--shadow-lg);
}
.hero-badge i { color: var(--gold); font-size: 1.5rem; }
.hero-badge .hb-num { font-family: var(--font-head); font-size: 1.5rem; color: var(--white); line-height: 1; }
.hero-badge .hb-label { font-size: .68rem; color: var(--muted); letter-spacing: .5px; }
.hero-badge.bg-a { top: 24px; left: -26px; }
.hero-badge.bg-b { bottom: 40px; right: -20px; }

.floating-ring {
    position: absolute; border: 1px solid var(--line);
    border-radius: 50%; z-index: 1;
}
.ring-1 { width: 340px; height: 340px; top: -60px; right: -60px; }
.ring-2 { width: 180px; height: 180px; bottom: 10px; left: -50px; border-color: rgba(230,197,138,.16); }

.scroll-indicator {
    position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
    z-index: 3; color: var(--muted); text-align: center;
    font-size: .68rem; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-indicator .mouse {
    width: 24px; height: 40px; border: 1.5px solid var(--gold);
    border-radius: 14px; margin: 0 auto 8px; position: relative;
}
.scroll-indicator .mouse::after {
    content:''; position:absolute; top:7px; left:50%; transform:translateX(-50%);
    width:4px; height:8px; background: var(--gold); border-radius:3px;
    animation: mouseScroll 1.6s infinite;
}
@keyframes mouseScroll { 0%{opacity:0;top:7px} 40%{opacity:1} 80%{opacity:0;top:20px} 100%{opacity:0} }

/* ============================================================
   TRUST / COUNTERS
   ============================================================ */
.trust-section { background: #1a1a1a; border-block: 1px solid rgba(212,175,55,.15); color: #f5f5f5; }
.counter-item { text-align: center; padding: 18px 8px; }
.counter-num {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 700;
    background: var(--grad-gold);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.counter-label { color: var(--muted); font-size: .82rem; letter-spacing: 1px; margin-top: 8px; text-transform: uppercase; }
.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 40px; }
.trust-badge {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1px solid rgba(212,175,55,.2); border-radius: 50px;
    padding: 10px 22px; color: #f5f5f5; font-size: .82rem; letter-spacing: 1px;
    background: rgba(255,255,255,.04);
}
.trust-badge i { color: var(--gold); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-img-wrap { position: relative; }
.about-img-main {
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line); box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5; background: #111;
    position: relative;
}
.about-img-main img { width:100%; height:100%; object-fit: cover; }
.about-img-main .section-slider { border-radius: 0; height: 100%; }
.about-img-main .section-slider .swiper-slide img { border-radius: 0; aspect-ratio: 4/5; }
.about-img-main .swiper-pagination { bottom: 14px !important; z-index: 10; }
.about-exp {
    position: absolute; bottom: 20px; right: 16px; z-index: 20;
    background: var(--grad-gold); color:#1a1205;
    border-radius: 16px; padding: 20px 26px; text-align:center;
    box-shadow: var(--shadow-gold);
}
.about-exp .num { font-family: var(--font-head); font-size: 2.4rem; font-weight:700; line-height:1; }
.about-exp .txt { font-size:.72rem; letter-spacing:1px; text-transform:uppercase; font-weight:500; }

.feature-pill {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 0; border-bottom: 1px solid var(--line-soft);
}
.feature-pill i {
    color: var(--gold); font-size: 1.1rem; margin-top: 4px;
    width: 34px; height: 34px; flex: 0 0 34px;
    border: 1px solid var(--line); border-radius: 50%;
    display: grid; place-items: center;
}
.feature-pill h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 500; color: var(--white); margin: 0 0 2px; }
.feature-pill p { margin: 0; color: var(--muted); font-size: .88rem; }

/* ============================================================
   FOUNDER
   ============================================================ */
.founder-section { background: var(--secondary); }
.founder-img-wrap { position: relative; }
.founder-img {
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line); box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5; background:#111;
}
.founder-img img { width:100%; height:100%; object-fit: cover; }
.founder-sign {
    font-family: var(--font-head); font-size: 2rem; font-style: italic; color: var(--gold);
    margin-top: 16px;
}
.founder-role { color: var(--rose-gold); letter-spacing: 2px; text-transform: uppercase; font-size: .8rem; }

.credentials-list { margin-top: 24px; display: grid; gap: 12px; }
.credentials-list li { display:flex; gap: 12px; align-items:center; color: var(--light); }
.credentials-list i { color: var(--gold); }

/* Timeline */
.timeline { position: relative; margin-top: 40px; padding-left: 30px; }
.timeline::before {
    content:''; position:absolute; left: 6px; top: 6px; bottom: 6px;
    width: 2px; background: linear-gradient(var(--gold), transparent);
}
.timeline-item { position: relative; padding-bottom: 26px; }
.timeline-item::before {
    content:''; position: absolute; left: -30px; top: 6px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--gold); box-shadow: 0 0 0 4px rgba(212,175,55,.18);
}
.timeline-item h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 500; margin: 0 0 3px; color: var(--white); }
.timeline-item p { margin: 0; color: var(--muted); font-size: .88rem; }

/* Workshop chips */
.workshop-chips { display:flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.workshop-chips span {
    border: 1px solid var(--line); border-radius: 50px;
    padding: 8px 18px; font-size: .82rem; color: var(--rose-gold);
}

/* ============================================================
   WHY CHOOSE US — icon cards
   ============================================================ */
.why-card {
    position: relative;
    border: 1px solid rgba(212,175,55,.25);
    border-radius: var(--radius);
    height: 100%;
    min-height: 260px;
    transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.why-card__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.why-card__bg img,
.why-card__bg .img-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}
.why-card:hover .why-card__bg img {
    transform: scale(1.08);
}
.why-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(5,5,5,.2) 0%, rgba(5,5,5,.65) 40%, rgba(5,5,5,.88) 100%);
    transition: background .4s var(--ease);
}
.why-card:hover .why-card__overlay {
    background: linear-gradient(180deg, rgba(5,5,5,.15) 0%, rgba(5,5,5,.55) 35%, rgba(5,5,5,.82) 100%);
}
.why-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    min-height: 260px;
    padding: 24px 22px;
}
.why-card:hover { transform: translateY(-8px); border-color: var(--line); box-shadow: var(--shadow-lg); }
.why-icon {
    width: 48px; height: 48px; border-radius: 14px;
    display: grid; place-items: center; font-size: 1.3rem;
    color: var(--gold); background: rgba(212,175,55,.12);
    border: 1px solid rgba(212,175,55,.25); margin-bottom: 14px;
    transition: transform .45s var(--ease);
}
.why-card:hover .why-icon { transform: rotate(-6deg) scale(1.06); }
.why-card h3 { font-size: 1.2rem; margin-bottom: 6px; color: var(--white); text-shadow: 0 2px 6px rgba(0,0,0,.6); }
.why-card p { color: #e0e0e0; font-size: .85rem; margin: 0; line-height: 1.5; text-shadow: 0 1px 4px rgba(0,0,0,.5); }

/* ============================================================
   COURSES
   ============================================================ */
.course-card {
    position: relative;
    background: linear-gradient(165deg, #141416, #0c0c0e);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 34px 30px;
    height: 100%;
    display: flex; flex-direction: column;
    transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
    overflow: hidden;
}
.course-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: var(--shadow-lg); }
.course-card.featured { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.course-badge {
    position: absolute; top: 22px; right: 22px;
    background: var(--grad-gold); color:#1a1205;
    font-size: .68rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    padding: 6px 14px; border-radius: 50px;
}
.course-duration { color: var(--rose-gold); font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.course-title { font-size: 1.55rem; margin-bottom: 12px; padding-right: 40px; color: var(--white); }
.course-summary { color: var(--muted); font-size: .9rem; margin-bottom: 18px; }
.course-features { margin-bottom: 22px; display: grid; gap: 9px; }
.course-features li { display:flex; gap:10px; align-items:flex-start; color: var(--light); font-size: .88rem; }
.course-features i { color: var(--gold); margin-top: 5px; font-size: .75rem; }
.course-foot { margin-top: auto; display:flex; align-items:center; justify-content: space-between; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.course-price { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--gold); line-height:1; }
.course-price small { display:block; font-family: var(--font-body); font-size:.62rem; letter-spacing:1px; color: var(--muted-2); text-transform: uppercase; }

/* Course detail page */
.course-detail-media {
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line); box-shadow: var(--shadow-lg);
    aspect-ratio: 16/9; background: linear-gradient(160deg,#1a1a1a,#0a0a0a);
}
.course-detail-media img { width: 100%; height: 100%; object-fit: cover; }
.detail-subhead { font-size: 1.5rem; margin: 26px 0 16px; }
.detail-check {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 12px 16px; border: 1px solid var(--line-soft);
    border-radius: var(--radius-sm); background: var(--panel);
    color: var(--light); font-size: .92rem; height: 100%;
    transition: border-color .3s var(--ease);
}
.detail-check:hover { border-color: var(--gold); }
.detail-check i { color: var(--gold); margin-top: 4px; font-size: .8rem; flex: 0 0 auto; }

.course-sidebar {
    border-radius: var(--radius); padding: 30px;
    position: sticky; top: 110px;
}
.sidebar-price {
    font-family: var(--font-head); font-size: 2.8rem; font-weight: 700;
    color: var(--gold); line-height: 1; margin-bottom: 22px;
}
.sidebar-price small { display: block; font-family: var(--font-body); font-size: .64rem; letter-spacing: 1px; color: var(--muted-2); text-transform: uppercase; margin-top: 4px; }
.sidebar-meta { margin-bottom: 22px; }
.sidebar-meta li {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 0; border-bottom: 1px solid var(--line-soft);
    font-size: .88rem; color: var(--muted);
}
.sidebar-meta li i { color: var(--gold); width: 20px; text-align: center; }
.sidebar-meta li strong { margin-left: auto; color: var(--white); font-weight: 500; text-align: right; }
.sidebar-actions { margin-bottom: 22px; }
.sidebar-trust { display: grid; gap: 10px; }
.sidebar-trust li { display: flex; align-items: center; gap: 10px; color: var(--rose-gold); font-size: .84rem; }
.sidebar-trust li i { color: var(--gold); }

/* Comparison table */
.compare-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 560px; background: var(--panel); }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line-soft); }
.compare-table thead th { background: #000; color: var(--gold); font-family: var(--font-head); font-size: 1.2rem; }
.compare-table td:first-child { color: var(--muted); }
.compare-table td:last-child, .compare-table th:last-child { text-align: right; color: var(--white); }
.compare-table tr:hover td { background: rgba(212,175,55,.04); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filters { display:flex; flex-wrap:wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.gallery-filter {
    background: transparent; border: 1px solid var(--line-soft);
    color: var(--muted); border-radius: 50px; padding: 9px 22px;
    font-size: .82rem; letter-spacing: .5px; cursor: pointer;
    transition: all .3s var(--ease);
}
.gallery-filter:hover, .gallery-filter.active { background: var(--gold); color:#1a1205; border-color: var(--gold); }

.masonry { columns: 3; column-gap: 18px; }
.masonry .g-item { break-inside: avoid; margin-bottom: 18px; }
.g-card {
    position: relative; display: block; border-radius: var(--radius-sm);
    overflow: hidden; border: 1px solid var(--line-soft);
}
.g-card img { width: 100%; transition: transform .6s var(--ease); }
.g-card::after {
    content: '\f00e'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; inset: 0; display: grid; place-items: center;
    color: var(--gold); font-size: 1.6rem;
    background: rgba(5,5,5,.55); opacity: 0; transition: opacity .4s var(--ease);
}
.g-card:hover img { transform: scale(1.08); }
.g-card:hover::after { opacity: 1; }
.g-tag {
    position: absolute; bottom: 12px; left: 12px; z-index: 2;
    background: rgba(5,5,5,.7); color: var(--rose-gold);
    font-size: .7rem; letter-spacing: 1px; text-transform: uppercase;
    padding: 5px 12px; border-radius: 50px; border: 1px solid var(--line);
}

/* ============================================================
   CERTIFICATIONS
   ============================================================ */
.cert-card {
    text-align: center; padding: 34px 24px; height: 100%;
    background: linear-gradient(160deg, #131313, #0a0a0a);
    border: 1px solid var(--line-soft); border-radius: var(--radius);
    transition: all .45s var(--ease);
}
.cert-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: var(--shadow-lg); }
.cert-icon { font-size: 2.6rem; color: var(--gold); margin-bottom: 16px; }
.cert-card h3 { font-size: 1.35rem; }
.cert-card p { color: var(--muted); font-size: .88rem; margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-section { }
.testi-card {
    background: linear-gradient(160deg, #1a1a1e, #111114);
    border: 1px solid var(--line-soft); border-radius: var(--radius);
    padding: 34px 30px; height: 100%;
}
.testi-stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 2px; }
.testi-quote { font-family: var(--font-head); font-size: 1.25rem; font-style: italic; color: var(--light); line-height: 1.5; margin-bottom: 22px; }
.testi-author { display:flex; align-items:center; gap: 14px; }
.testi-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--grad-gold); color:#1a1205; display:grid; place-items:center;
    font-family: var(--font-head); font-size: 1.3rem; font-weight: 700;
    flex: 0 0 52px;
}
.testi-author h4 { font-family: var(--font-body); font-size: .95rem; font-weight: 500; margin: 0; color: var(--white); }
.testi-author span { font-size: .8rem; color: var(--muted); }

.swiper { padding-bottom: 56px !important; }
.swiper-pagination-bullet { background: var(--muted); opacity: .5; }
.swiper-pagination-bullet-active { background: var(--gold); opacity: 1; width: 26px; border-radius: 6px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
    border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
    margin-bottom: 14px; overflow: hidden; background: var(--panel);
    transition: border-color .3s var(--ease);
}
.faq-item.open { border-color: var(--gold); }
.faq-q {
    width: 100%; text-align: left; background: transparent; border: none;
    color: var(--white); font-family: var(--font-head); font-size: 1.2rem;
    padding: 22px 24px; cursor: pointer; display: flex; justify-content: space-between;
    align-items: center; gap: 16px;
}
.faq-q i { color: var(--gold); transition: transform .4s var(--ease); flex: 0 0 auto; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a-inner { padding: 0 24px 22px; color: var(--muted); font-size: .92rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { position: relative; }
.contact-info-card {
    background: linear-gradient(160deg,#141416,#0c0c0e);
    border: 1px solid var(--line-soft); border-radius: var(--radius);
    padding: 20px 24px; margin-bottom: 16px; display:flex; gap: 16px; align-items:center;
    transition: all .4s var(--ease);
}
.contact-info-card:hover { border-color: var(--gold); transform: translateX(6px); }
.contact-info-card .ci-icon {
    width: 52px; height: 52px; border-radius: 14px; flex: 0 0 52px;
    display:grid; place-items:center; color: var(--gold); font-size: 1.3rem;
    background: rgba(212,175,55,.08); border: 1px solid var(--line);
}
.contact-info-card h4 { font-family: var(--font-body); font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin: 0 0 4px; }
.contact-info-card a, .contact-info-card p { color: var(--white); margin: 0; font-size: 1rem; }

.form-wrap {
    background: linear-gradient(160deg,#141416,#0c0c0e);
    border: 1px solid var(--line-soft); border-radius: var(--radius);
    padding: 40px;
}
.form-label { font-size: .8rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-control, .form-select {
    background: #0a0a0a; border: 1px solid var(--line-soft); color: var(--white);
    border-radius: var(--radius-sm); padding: 13px 16px; font-size: .92rem;
}
.form-control:focus, .form-select:focus {
    background: #0a0a0a; color: var(--white);
    border-color: var(--gold); box-shadow: 0 0 0 .2rem rgba(212,175,55,.15);
}
.form-control::placeholder { color: var(--muted-2); }
.form-select option { background: #0a0a0a; }

.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); filter: grayscale(1) contrast(1.05); transition: filter .5s var(--ease); }
.map-wrap:hover { filter: grayscale(0); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display:block; }

.alert-lux { border-radius: var(--radius-sm); border: 1px solid var(--line); padding: 16px 20px; }
.alert-lux.success { background: rgba(46,160,90,.12); border-color: rgba(46,160,90,.5); color: #8ff0b5; }
.alert-lux.error { background: rgba(200,60,60,.12); border-color: rgba(200,60,60,.5); color: #f7a9a9; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    position: relative; padding: 150px 0 90px; text-align: center;
    background:
        radial-gradient(700px 400px at 50% -10%, rgba(212,175,55,.13), transparent 60%),
        #050505;
    border-bottom: 1px solid rgba(212,175,55,.15);
    color: #f5f5f5;
}
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 14px; }
.breadcrumb-lux { display:flex; justify-content:center; gap: 10px; color: var(--muted); font-size: .84rem; letter-spacing: .5px; }
.breadcrumb-lux a:hover { color: var(--gold); }
.breadcrumb-lux .sep { color: var(--gold); }

/* ============================================================
   CTA BANNER + FOOTER
   ============================================================ */
.cta-banner { padding: 40px 0 90px; }
.cta-inner {
    border-radius: 24px; padding: 60px 40px; text-align: center;
    background:
        radial-gradient(600px 300px at 50% 0%, rgba(212,175,55,.14), transparent 65%),
        rgba(255,255,255,.03);
    border: 1px solid var(--line);
}
.cta-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.cta-text { color: var(--muted); max-width: 560px; margin: 0 auto 30px; }
.cta-actions { display:flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.site-footer { background: #030303; border-top: 1px solid var(--line); padding: 72px 0 0; }
.footer-brand { display:inline-flex; flex-direction: row; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-logo { height: 66px; width: auto; flex: 0 0 auto; }
.footer-about { color: var(--muted); font-size: .9rem; max-width: 340px; }
.footer-social { display:flex; gap: 12px; margin-top: 20px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%; display:grid; place-items:center;
    border: 1px solid var(--line); color: var(--gold); transition: all .35s var(--ease);
}
.footer-social a:hover { background: var(--gold); color:#000; transform: translateY(-4px); }
.footer-heading { font-family: var(--font-body); font-size: .82rem; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: var(--muted); font-size: .9rem; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact li { display:flex; gap: 12px; margin-bottom: 14px; color: var(--muted); font-size: .9rem; }
.footer-contact i { color: var(--gold); margin-top: 4px; }
.footer-contact a { color: var(--muted); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
    margin-top: 56px; border-top: 1px solid var(--line-soft); padding: 24px 0;
    display:flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
    color: var(--muted-2); font-size: .82rem;
}
.footer-credit { color: var(--gold); }

/* ============================================================
   FLOATING WHATSAPP + STICKY CTA + SCROLL TOP
   ============================================================ */
.wa-float {
    position: fixed; bottom: 26px; right: 26px; z-index: 900;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; color:#fff; display:grid; place-items:center;
    font-size: 1.7rem; box-shadow: 0 10px 30px rgba(37,211,102,.4);
    transition: transform .35s var(--ease);
}
.wa-float:hover { transform: scale(1.1); color:#fff; }
.wa-float-pulse {
    position:absolute; inset:0; border-radius:50%; background:#25D366;
    animation: waPulse 2s infinite; z-index:-1;
}
@keyframes waPulse { 0%{transform:scale(1);opacity:.6} 100%{transform:scale(1.8);opacity:0} }

.mobile-sticky-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 899;
    display: flex; background: rgba(5,5,5,.96); border-top: 1px solid var(--line);
    backdrop-filter: blur(10px);
}
.msc-item {
    flex: 1; text-align: center; padding: 11px 4px; color: var(--light);
    font-size: .68rem; letter-spacing: .5px; display:flex; flex-direction: column; gap: 3px;
    border-right: 1px solid var(--line-soft);
}
.msc-item i { font-size: 1.1rem; color: var(--gold); }
.msc-item:last-child { border-right: none; }
.msc-wa i { color: #25D366; }
.msc-enroll { background: var(--grad-gold); color:#1a1205; }
.msc-enroll i { color:#1a1205; }

.scroll-top {
    position: fixed; bottom: 96px; right: 28px; z-index: 890;
    width: 46px; height: 46px; border-radius: 50%;
    border: 1px solid var(--gold); background: rgba(5,5,5,.8); color: var(--gold);
    opacity: 0; visibility: hidden; transition: all .35s var(--ease); cursor: pointer;
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--gold); color:#000; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
.float-anim { animation: floatY 6s ease-in-out infinite; }
.float-anim.delay { animation-delay: 1.5s; }

@keyframes spinSlow { to { transform: rotate(360deg); } }
.ring-1 { animation: spinSlow 40s linear infinite; }
.ring-2 { animation: spinSlow 30s linear infinite reverse; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
    .hero-badge.bg-a { left: 0; }
    .hero-badge.bg-b { right: 0; }
}
@media (max-width: 991px) {
    .section { padding: 80px 0; }
    .site-header { background: rgba(5,5,5,.98); }
    .navbar-collapse {
        background: #111; margin-top: 14px; border-radius: var(--radius);
        border: 1px solid rgba(212,175,55,.15); padding: 16px;
        max-height: calc(100vh - 96px);
        max-height: calc(100dvh - 96px);
        overflow-y: auto;
        overscroll-behavior: contain;
    }
    .navbar-nav .nav-link { padding: 12px 16px !important; }

    /* Dropdowns become inline accordions inside the mobile menu
       (instead of absolutely-positioned menus that fly off-screen). */
    .navbar-nav .dropdown-menu {
        position: static !important;
        transform: none !important;
        inset: auto !important;
        float: none;
        width: 100%;
        margin: 2px 0 6px;
        padding: 4px 0 4px 8px;
        border: none;
        border-left: 2px solid var(--line);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }
    .navbar-nav .dropdown-menu .dropdown-item { padding: 11px 14px; font-size: .9rem; }
    .navbar-nav .dropdown-menu .dropdown-divider { margin: 4px 0; }
    .dropdown-courses { min-width: 0; }
    /* Caret indicates expandable submenu; rotate when open */
    .navbar-nav .dropdown-toggle::after {
        margin-left: 8px; vertical-align: middle;
        transition: transform .3s var(--ease);
    }
    .navbar-nav .dropdown-toggle[aria-expanded="true"]::after { transform: rotate(180deg); }
    /* Tapping a toggle should not show the gold underline animation */
    .navbar-nav .dropdown-toggle::before { display: none; }
    .brand-logo { height: 50px; }
    .site-header.scrolled .brand-logo { height: 44px; }
    .brand-mark { font-size: 1.45rem; }
    .site-header.scrolled .brand-mark { font-size: 1.3rem; }
    .nav-cta { margin-top: 8px; display: inline-block; }
    .masonry { columns: 2; }
    .about-exp { right: 10px; }
    .hero {
        min-height: auto;
        display: block;
        padding: 24px 0 0;
    }
    .hero .container { padding-left: 16px; padding-right: 16px; }
    .hero .col-lg-6 { padding-left: 0; padding-right: 0; }
    .hero-lead { margin-bottom: 10px; }
    .hero-actions { margin-bottom: 8px; gap: 8px; }
    .hero-eyebrow { margin-bottom: 10px; }
    .hero-title { margin-bottom: 10px; }
    .hero-media {
        margin-top: 0;
        max-width: 100%;
        width: 100%;
        margin-inline: 0;
    }
    .hero-img-frame {
        border-radius: 24px 24px 24px 24px;
        border-left: 1px solid var(--line);
        border-right: 1px solid var(--line);
        max-height: none;
        aspect-ratio: 3/4;
    }
    .hero-img-frame img,
    .hero-img-frame .img-fallback {
        max-height: none;
        min-height: unset;
    }
    .hero-badge.bg-a { left: 10px; top: 10px; }
    .hero-badge.bg-b { right: 10px; bottom: 10px; }
    .float-anim { animation: none !important; transform: none !important; }
    .scroll-indicator { display: none; }
    .floating-ring { display: none; }
    body { padding-bottom: 58px; } /* space for mobile sticky bar */
    .wa-float { display: none; }
    .scroll-top { bottom: 140px; }
    .footer-bottom { justify-content: center; text-align: center; }

    /* Sections padding on tablet */
    .section-title { font-size: clamp(1.8rem, 5vw, 2.6rem); }

    /* Founder/About text-center sections on mobile */
    #founder .text-center .section-lead,
    #about .text-center .section-lead,
    #founder-intro .text-center .section-lead { max-width: 100% !important; }

    /* Why Choose Us — 2 columns on tablet */
    .why-card { min-height: 240px; }
    .why-card__content { min-height: 240px; }

    /* Hero mini cards side by side still OK at tablet, just tighter */
    .hero-mini-cards { gap: 10px; }

    /* Marquee */
    .marquee-track { animation-duration: 30s; }

    /* Page hero (inner pages) tighter on mobile */
    .page-hero { padding: 100px 0 60px; }
    .page-hero h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
}
@media (max-width: 575px) {
    .section { padding: 64px 0; }
    .masonry { columns: 1; }
    .form-wrap { padding: 26px 20px; }
    .cta-inner { padding: 40px 22px; }
    .hero-actions .btn { flex: 1 1 100%; }
    .hero-lead { font-size: .97rem; }
    .hero-title { margin-bottom: 14px; }
    .hero-eyebrow { margin-bottom: 12px; }

    /* Section titles tighter on mobile */
    .section-title { font-size: clamp(1.6rem, 7vw, 2.2rem); margin-bottom: 14px; }
    .section-lead { font-size: .92rem; }
    .eyebrow { font-size: .68rem; letter-spacing: 3px; margin-bottom: 12px; }

    /* Founder/About grid — 2 columns, tighter */
    .founder-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .founder-grid__item { border-radius: 12px; border-width: 1px; }

    /* Why Choose Us cards tighter */
    .why-card { min-height: 220px; }
    .why-card__content { min-height: 220px; padding: 16px 14px; }
    .why-card__title { font-size: 1rem; }
    .why-card__desc { font-size: .78rem; }

    /* Counter section */
    .counter-num { font-size: 2rem !important; }
    .counter-label { font-size: .7rem; }

    /* Trust badges wrap */
    .trust-badges { gap: 8px; }
    .trust-badge { padding: 8px 14px; font-size: .72rem; }

    /* Course cards */
    .course-card { padding: 24px 18px; }
    .course-title { font-size: 1.3rem; }
    .course-price { font-size: 1.6rem; }

    /* Testimonial cards */
    .testi-card { padding: 24px 20px; }
    .testi-quote { font-size: 1.05rem; }

    /* FAQ */
    .faq-question { font-size: 1.1rem; }
    .faq-answer { font-size: .95rem; }

    /* Contact cards */
    .contact-info-card { padding: 16px 14px; }

    /* Marquee smaller text */
    .mq-item { padding: 7px 16px; font-size: .65rem; }
    /* Header offset matches thinner marquee on mobile */
    .site-header { top: 30px !important; }

    /* Hero mini cards (CTA) */
    .hero-mini-cards { margin-top: 14px; }
    .hmc { min-height: 140px; }
    .hmc__content { min-height: 140px; padding: 12px 10px; }
    .hmc__title { font-size: .88rem; }
    .hmc__desc { font-size: .72rem; }
    .hmc__badge { top: 8px; right: 8px; font-size: .58rem; padding: 3px 8px; }

    /* Video wrap on testimonials */
    .video-wrap video { border-radius: 12px; }

    /* Footer tighter */
    .site-footer { padding: 50px 0 0; }
    .footer-social a { width: 38px; height: 38px; font-size: 1rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ============================================================
   IMAGE FALLBACK  (elegant gold placeholder for empty slots)
   Rendered by img_smart() when a photo file is not present.
   Keeps layout intact and looks premium until real photos
   are dropped into assets/images/.
   ============================================================ */
.img-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 220px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(120% 100% at 50% 0%, rgba(212, 175, 55, 0.10) 0%, rgba(212, 175, 55, 0) 60%),
        linear-gradient(160deg, #141414 0%, #0c0c0c 55%, #080808 100%);
    border: 1px solid var(--line);
    color: var(--gold);
    text-align: center;
}
.img-fallback::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: inherit;
    pointer-events: none;
}
.img-fallback::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg, rgba(212, 175, 55, 0.035) 0 2px, transparent 2px 9px);
    pointer-events: none;
}
.img-fallback .ifb-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    padding: 1.5rem;
}
.img-fallback .ifb-inner i {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 14px rgba(212, 175, 55, 0.35));
}
.img-fallback .ifb-label {
    font-family: var(--font-head);
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--gold-soft);
}
.img-fallback .ifb-label::after {
    content: "";
    display: block;
    width: 42px;
    height: 2px;
    margin: 0.5rem auto 0;
    background: var(--grad-gold);
    border-radius: 2px;
    opacity: 0.85;
}

/* ============================================================
   HERO MINI CTA CARDS (image-background, inside hero column)
   ============================================================ */
.hero-mini-cards {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}
.hmc {
    flex: 1;
    position: relative;
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 200px;
    text-decoration: none;
    color: var(--white);
    border: 1px solid var(--line);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.hmc:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(212,175,55,.15);
    color: var(--white);
}
.hmc__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hmc__bg-img,
.hmc__bg img,
.hmc__bg .img-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}
.hmc:hover .hmc__bg img,
.hmc:hover .hmc__bg-img {
    transform: scale(1.06);
}
.hmc__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(5,5,5,.2) 0%, rgba(5,5,5,.78) 50%, rgba(5,5,5,.92) 100%);
}
.hmc:hover .hmc__overlay {
    background: linear-gradient(180deg, rgba(5,5,5,.15) 0%, rgba(5,5,5,.7) 50%, rgba(5,5,5,.88) 100%);
}
.hmc__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    min-height: 200px;
    padding: 18px 16px;
}
.hmc__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: #1a1205;
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: 4px 10px;
    border-radius: 50px;
}
.hmc__badge--rose { background: var(--rose-gold); }
.hmc__eyebrow {
    font-size: .65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 4px;
}
.hmc__title {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 6px;
    color: var(--white);
}
.hmc__desc {
    font-size: .78rem;
    line-height: 1.5;
    color: var(--muted);
    margin-bottom: 10px;
}
.hmc__link {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .3s var(--ease);
}
.hmc:hover .hmc__link { gap: 10px; }

@media (max-width: 991px) {
    .hero-mini-cards { margin-top: 24px; }
    .hmc { min-height: 180px; }
    .hmc__content { min-height: 180px; padding: 14px; }
}
@media (max-width: 575px) {
    .hero-mini-cards { flex-direction: column; gap: 12px; margin-top: 18px; }
    .hmc { min-height: 160px; }
    .hmc__content { min-height: 160px; padding: 14px 12px; }
    .hmc__title { font-size: .95rem; }
    .hmc__desc { font-size: .75rem; margin-bottom: 8px; }
}

/* ============================================================
   SECTION IMAGE SLIDER (Founder & About auto-slide)
   ============================================================ */
.section-slider {
    border-radius: var(--radius);
    overflow: hidden;
}
.section-slider .swiper-slide img,
.section-slider .swiper-slide .img-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
    border-radius: var(--radius);
}
.section-slider .swiper-pagination {
    bottom: 14px !important;
}
.section-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,.5);
    opacity: 1;
}
.section-slider .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 22px;
    border-radius: 4px;
}

/* Fix head-cropping on Why Choose Us card images that have faces at top */
.why-card--top-crop .why-card__bg img {
    object-position: top center;
}

/* ============================================================
   FAQ — Always-open style (no accordion trigger)
   ============================================================ */
.faq-item-open {
    padding: 28px 0;
    border-bottom: 1px solid var(--line-soft);
}
.faq-item-open:last-of-type { border-bottom: none; }
.faq-question {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.35;
}
.faq-answer {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   MARQUEE SCROLLING TICKER (above header)
   ============================================================ */
.marquee-bar {
    background: var(--gold);
    overflow: hidden;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 1002;
}
.marquee-track {
    display: inline-flex;
    animation: marqueeScroll 40s linear infinite;
}
.marquee-content {
    display: inline-flex;
    align-items: center;
}
.mq-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 28px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #1a1205;
    white-space: nowrap;
}
.mq-item i {
    font-size: .7rem;
    color: #3d2a00;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-bar:hover .marquee-track {
    animation-play-state: paused;
}
@media (max-width: 575px) {
    .mq-item { padding: 8px 20px; font-size: .7rem; }
    .marquee-track { animation-duration: 30s; }
}

/* ============================================================
   DARK SECTION VARIANT (used for Why Choose Us, etc.)
   Gives dark contrast between light sections — like Kalpana ref
   ============================================================ */
.section--dark {
    background: var(--sec-navy);
    color: #f5f5f5;
}
.section--dark .eyebrow { color: var(--gold); }
.section--dark .section-title { color: #fff; }
.section--dark .section-lead { color: #b7b3ab; }
.section--dark .divider-orn { color: var(--gold); }
.section--dark .divider-orn::before,
.section--dark .divider-orn::after { background: rgba(212,175,55,.25); }

/* Founder section with brown background */
#founder { color: #f5f5f5; }
#founder .section-title { color: #ffffff; }
#founder .section-lead { color: #e8ddd4; }
#founder .founder-role { color: var(--gold); }
#founder .credentials-list li { color: #f5f5f5; }
#founder .credentials-list i { color: var(--gold); }
#founder .workshop-chips span { color: #f5f5f5; border-color: rgba(255,255,255,.2); }
#founder .eyebrow { color: var(--gold); }
#founder .eyebrow::before { background: var(--gold); }

/* Courses section with blue background */
#courses-preview { color: #f5f5f5; }
#courses-preview .section-title { color: #ffffff; }
#courses-preview .section-lead { color: #dce8f8; }
#courses-preview .eyebrow { color: var(--gold); }
#courses-preview .eyebrow::before { background: var(--gold); }
#courses-preview .divider-orn { color: var(--gold); }

/* Testimonials section with light pink background */
#testimonials { color: #1a1a1a; }
#testimonials .section-title { color: #1a1a1a; }
#testimonials .section-lead { color: #4a3a3a; }
#testimonials .eyebrow { color: #8B4513; }
#testimonials .eyebrow::before { background: #8B4513; }
#testimonials .divider-orn { color: var(--gold); }

/* About page - Our Story section with dark maroon background */
#our-story { color: #f5f5f5; }
#our-story .section-title { color: #ffffff; }
#our-story .section-lead { color: #e8cfd5; }
#our-story .eyebrow { color: var(--gold); }
#our-story .eyebrow::before { background: var(--gold); }
#our-story p { color: #e0c8cc; }

/* About page - Our Approach section with light pink background */
#our-approach { color: #1a1a1a; }
#our-approach .section-title { color: #1a1a1a; }
#our-approach .section-lead { color: #4a3a3a; }
#our-approach .eyebrow { color: #8B4513; }
#our-approach .eyebrow::before { background: #8B4513; }
#our-approach .divider-orn { color: var(--gold); }
#our-approach .feature-pill h4 { color: #1a1a1a; }
#our-approach .feature-pill p { color: #3d3535; }
#our-approach .feature-pill i { color: #8B4513; }
#our-approach .feature-pill { border-bottom-color: rgba(0,0,0,.08); }

/* Founder page - intro section (brown) */
#founder-intro { color: #f5f5f5; }
#founder-intro .section-title { color: #ffffff; }
#founder-intro .section-lead { color: #e8ddd4; }
#founder-intro .founder-role { color: var(--gold); }
#founder-intro .credentials-list li { color: #f5f5f5; }
#founder-intro .credentials-list i { color: var(--gold); }
#founder-intro .eyebrow { color: var(--gold); }
#founder-intro .eyebrow::before { background: var(--gold); }

/* Founder page - workshops section (dark indigo) */
#workshops-timeline { color: #f5f5f5; }
#workshops-timeline .section-title { color: #ffffff; }
#workshops-timeline .section-lead { color: #c8c4d8; }
#workshops-timeline .eyebrow { color: var(--gold); }
#workshops-timeline .eyebrow::before { background: var(--gold); }
#workshops-timeline .workshop-chips span { color: #f5f5f5; border-color: rgba(255,255,255,.15); }
#workshops-timeline .timeline-item h4 { color: #fff; }
#workshops-timeline .timeline-item p { color: #b7b3c8; }

/* Gallery page (dark navy) */
#gallery-section { color: #f5f5f5; }
#gallery-section .section-title { color: #ffffff; }
#gallery-section .section-lead { color: #c8d4e8; }
#gallery-section .eyebrow { color: var(--gold); }
#gallery-section .divider-orn { color: var(--gold); }
#gallery-section .gallery-filter { color: #f5f5f5; }

/* Contact page (dark blue) */
#register .section-title { color: #ffffff; }
#register .section-lead { color: #c8d4e8; }
#register .eyebrow { color: var(--gold); }
#register .eyebrow::before { background: var(--gold); }

/* Courses page - grid (dark indigo) */
#courses-grid { color: #f5f5f5; }
#courses-grid .section-title { color: #ffffff; }
#courses-grid .section-lead { color: #c8c4e8; }
#courses-grid .eyebrow { color: var(--gold); }
#courses-grid .divider-orn { color: var(--gold); }

/* Courses page - flagship (dark purple) */
#flagship { color: #f5f5f5; }
#flagship .section-title { color: #ffffff; }
#flagship .section-lead { color: #e0c8d8; }
#flagship .eyebrow { color: var(--gold); }
#flagship .divider-orn { color: var(--gold); }

/* Certifications page sections */
#cert-cards { color: #f5f5f5; }
#cert-milestones { color: #f5f5f5; }
#cert-milestones .section-title { color: #ffffff; }
#cert-milestones .section-lead { color: #e0c8d8; }
#cert-milestones .eyebrow { color: var(--gold); }
#cert-milestones .eyebrow::before { background: var(--gold); }
#cert-proof { color: #f5f5f5; }
#cert-proof .section-title { color: #ffffff; }
#cert-proof .section-lead { color: #b7b3ab; }
#cert-proof .eyebrow { color: var(--gold); }
#cert-proof .divider-orn { color: var(--gold); }

/* Testimonials page */
#video-testi { color: #f5f5f5; }
#video-testi .section-title { color: #ffffff; }
#video-testi .section-lead { color: #c8c4e8; }
#video-testi .eyebrow { color: var(--gold); }
#video-testi .divider-orn { color: var(--gold); }
#written-reviews { color: #f5f5f5; }
#written-reviews .section-title { color: #ffffff; }
#written-reviews .eyebrow { color: var(--gold); }
#written-reviews .divider-orn { color: var(--gold); }

/* FAQ page content */
#faq-content { color: #f5f5f5; }
#faq-content .faq-question { color: #ffffff; }
#faq-content .faq-answer { color: #c8d4d8; }
#faq-content .section-lead { color: #c8d4d8; }

/* ============================================================
   FOUNDER IMAGE GRID (text on top, images in a row below)
   ============================================================ */
.credentials-list--inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}
.credentials-list--inline li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
}

.founder-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.founder-grid__item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    display: block;
    border: 2px solid rgba(255,255,255,.1);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.founder-grid__item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0,0,0,.3);
    border-color: var(--gold);
}
.founder-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}
.founder-grid__item:hover img {
    transform: scale(1.06);
}

/* Responsive: 3 columns on tablet, 2 on mobile */
@media (max-width: 991px) {
    .founder-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (max-width: 575px) {
    .founder-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .founder-grid__item { border-radius: var(--radius-sm); }
    .credentials-list--inline { flex-direction: column; align-items: center; gap: 6px; }
}

/* Student Work section (testimonials page) */
#student-work { color: #f5f5f5; }
#student-work .section-title { color: #ffffff; }
#student-work .section-lead { color: #e0c8d8; }
#student-work .eyebrow { color: var(--gold); }
#student-work .eyebrow::before { background: var(--gold); }

/* ============================================================
   MAKEUP ACADEMY PAGE — Card styles
   ============================================================ */
.why-academy-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 30px 24px;
    height: 100%;
    transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.why-academy-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.wa-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: grid; place-items: center; font-size: 1.3rem;
    color: var(--gold); background: rgba(212,175,55,.1);
    border: 1px solid rgba(212,175,55,.2); margin-bottom: 16px;
}
.why-academy-card h3 { font-size: 1.15rem; color: #fff; margin-bottom: 8px; }
.why-academy-card p { color: #b7b3ab; font-size: .88rem; margin: 0; }

.curriculum-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    height: 100%;
    transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.curriculum-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.cc-num {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}
.curriculum-card h4 { font-size: 1rem; color: #fff; margin-bottom: 6px; }
.curriculum-card p { color: #b7b3ab; font-size: .82rem; margin: 0; }

.curriculum-chip {
    display: inline-flex; align-items: center;
    background: rgba(212,175,55,.08);
    border: 1px solid rgba(212,175,55,.2);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: .82rem;
    color: #f5f5f5;
}
.curriculum-chip i { color: var(--gold); }

/* ============================================================
   BRIDAL MAKEUP PAGE — Card styles
   ============================================================ */
.bridal-stat-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    height: 100%;
    transition: transform .4s var(--ease);
}
.bridal-stat-card:hover { transform: translateY(-4px); }
.bs-num {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}
.bs-label { font-size: .82rem; color: #e8cfd5; text-transform: uppercase; letter-spacing: 1px; }

.bridal-service-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    padding: 30px 24px;
    height: 100%;
    transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.bridal-service-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.bsc-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: grid; place-items: center; font-size: 1.2rem;
    color: var(--gold); background: rgba(212,175,55,.1);
    border: 1px solid rgba(212,175,55,.2); margin-bottom: 16px;
}
.bridal-service-card h3 { font-size: 1.15rem; color: #fff; margin-bottom: 8px; }
.bridal-service-card p { color: #b7b3ab; font-size: .88rem; margin: 0; }

.process-step {
    text-align: center;
    padding: 24px 16px;
}
.ps-num {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
}
.process-step h4 { font-size: 1.1rem; color: #fff; margin-bottom: 8px; }
.process-step p { color: #d4e8e8; font-size: .85rem; margin: 0; }

/* Compact section — less vertical padding for denser pages */
.section-compact { padding: 60px 0; position: relative; overflow-x: clip; }
@media (max-width: 991px) { .section-compact { padding: 48px 0; } }
@media (max-width: 575px) { .section-compact { padding: 36px 0; } }

/* Compact why-academy card */
.why-academy-card.compact { padding: 22px 18px; }
.why-academy-card.compact h3 { font-size: 1rem; }
.why-academy-card.compact p { font-size: .82rem; }
.why-academy-card.compact .wa-icon { width: 44px; height: 44px; font-size: 1.1rem; margin-bottom: 12px; }

/* Ensure why-card shows content even when image fails to load */
.why-card .why-card__bg .img-fallback {
    background: linear-gradient(160deg, #1a1a1e, #0a0a0e);
}
.why-card .why-card__content { z-index: 3; }

/* ============================================================
   WHY CARD V2 — uses inline background-image, simpler approach
   ============================================================ */
.why-card-v2 {
    position: relative;
    border-radius: var(--radius);
    min-height: 280px;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1e;
    border: 1px solid rgba(212,175,55,.2);
    overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.why-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(212,175,55,.15);
}
.wv2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.7) 50%, rgba(0,0,0,.92) 100%);
}
.wv2-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    min-height: 280px;
    padding: 22px 18px;
}
.wv2-icon {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 12px;
}
.wv2-content h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.wv2-content p {
    font-size: .82rem;
    color: #ddd;
    margin: 0;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
@media (max-width: 575px) {
    .why-card-v2 { min-height: 220px; }
    .wv2-content { min-height: 220px; padding: 16px 14px; }
    .wv2-content h3 { font-size: .95rem; }
    .wv2-content p { font-size: .75rem; }
}

/* ============================================================
   BRIDAL PACKAGES — pricing cards
   ============================================================ */
.pkg-card {
    background: #fff;
    border: 1px solid #e8e0d8;
    border-radius: var(--radius);
    padding: 32px 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.pkg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,.08);
}
.pkg-card--featured {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(184,134,11,.12);
}
.pkg-badge {
    position: absolute;
    top: -1px; left: 20px;
    background: var(--grad-gold);
    color: #1a1205;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: 6px 16px;
    border-radius: 0 0 8px 8px;
}
.pkg-title {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    margin-top: 12px;
}
.pkg-price {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}
.pkg-price small {
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 400;
    color: #8a8680;
}
.pkg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: grid;
    gap: 10px;
}
.pkg-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .88rem;
    color: #3d3535;
}
.pkg-features i {
    color: var(--gold);
    font-size: .65rem;
    margin-top: 6px;
}
.pkg-note {
    font-size: .82rem;
    color: #8a8680;
    margin-bottom: 20px;
    margin-top: auto;
}
@media (max-width: 575px) {
    .pkg-card { padding: 24px 18px; }
    .pkg-title { font-size: 1.3rem; }
    .pkg-price { font-size: 1.5rem; }
}

/* Force browser to respect EXIF orientation on all images */
img { image-orientation: from-image; }

/* ============================================================
   DEVELOPER CREDIT — OhamWeb with glowing animation
   ============================================================ */
.dev-credit-wrap {
    text-align: center;
    padding: 1px 0 4px;
    border-top: 1px solid rgba(255,255,255,.05);
    margin-top: 1px;
}
.dev-credit {
    font-size: .82rem;
    letter-spacing: .5px;
    color: #888;
    white-space: nowrap;
    margin: 0;
}
.ohamweb-link {
    font-weight: 700;
    font-size: .92rem;
    letter-spacing: 1.5px;
    text-decoration: none;
    color: #E7267C;
    animation: ohamGlow 2s ease-in-out infinite;
}
@keyframes ohamGlow {
    0%, 100% {
        color: #E7267C;
        text-shadow: none;
        opacity: .6;
    }
    50% {
        color: #E7267C;
        text-shadow: 0 0 8px #E7267C, 0 0 20px #E7267C, 0 0 40px #E7267C, 0 0 60px #E7267C;
        opacity: 1;
    }
}
.ohamweb-link:hover {
    color: #fff;
    text-shadow: 0 0 14px #E7267C, 0 0 30px #E7267C, 0 0 60px #E7267C, 0 0 100px #E7267C;
    opacity: 1;
}
