/* =========================================================
   YOGMALTI — MAIN STYLESHEET
   Premium wellness / yoga landing page
   ========================================================= */

:root{
    --primary:#6f4aa8;
    --primary-dark:#4d2d7c;
    --primary-soft:#efe8f8;
    --accent:#d9a441;
    --accent-soft:#fff5df;
    --cream:#fffaf4;
    --surface:#ffffff;
    --surface-soft:#faf7fd;
    --text:#292332;
    --muted:#746d7d;
    --border:#e9e2ee;
    --shadow:0 18px 45px rgba(61,38,86,.10);
    --shadow-soft:0 10px 28px rgba(61,38,86,.08);
    --radius-lg:28px;
    --radius-md:18px;
    --radius-sm:12px;
    --container:1180px;
    --transition:.3s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    min-height:100vh;
    font-family:"Poppins","Inter",Arial,sans-serif;
    color:var(--text);
    background:var(--cream);
    line-height:1.7;
    overflow-x:hidden;
}

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

a{
    color:inherit;
    text-decoration:none;
}

button,
input,
textarea,
select{
    font:inherit;
}

button{
    cursor:pointer;
}

.container{
    width:min(100% - 40px,var(--container));
    margin-inline:auto;
}

.section{
    padding:100px 0;
}

.section-title{
    max-width:760px;
    margin:0 auto 48px;
    text-align:center;
}

.section-label{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:12px;
    color:var(--primary);
    font-size:.78rem;
    font-weight:800;
    letter-spacing:.16em;
    text-transform:uppercase;
}

.section-title h2,
.about-section h2,
.faq-heading h2,
.join-content h2{
    color:var(--primary-dark);
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(2rem,4vw,3.25rem);
    line-height:1.15;
    letter-spacing:-.025em;
}

.section-title p{
    max-width:650px;
    margin:15px auto 0;
    color:var(--muted);
}


/* =========================================================
   HEADER / NAVBAR
   ========================================================= */

.site-header{
    position:static;
    z-index:20;
    background:rgba(255,250,244,.96);
    border-bottom:1px solid var(--border);
}

.navbar{
    min-height:92px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
}

.brand img{
    width:105px;
    height:auto;
    object-fit:contain;
}

.brand-name{
    color:var(--primary-dark);
    font-family:Georgia,"Times New Roman",serif;
    font-size:1.65rem;
    font-weight:700;
    letter-spacing:.01em;
}

.navbar-devotional{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:14px;
}

.krishna-arjun-img{
    width:72px;
    height:52px;
    border-radius:12px;
    object-fit:contain !important;
    object-position:center;
    background:#fff;
    border:1px solid rgba(111,74,168,.18);
    box-shadow:var(--shadow-soft);
}

.devotional-text{
    color:var(--muted);
    font-size:.86rem;
    font-weight:600;
    white-space:nowrap;
}

.navbar-join-btn,
.btn,
.join-submit{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    min-height:48px;
    padding:0 22px;
    border:0;
    border-radius:999px;
    background:var(--primary);
    color:#fff;
    font-weight:700;
    letter-spacing:.02em;
    transition:transform var(--transition),
                background var(--transition),
                box-shadow var(--transition);
}

.navbar-join-btn:hover,
.btn-primary:hover,
.join-submit:hover{
    background:var(--primary-dark);
    transform:translateY(-2px);
    box-shadow:0 12px 24px rgba(111,74,168,.22);
}


/* =========================================================
   TEMPORARY JANMASHTAMI
   ========================================================= */

.janmashtami-temporary{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#f3e9ff,#fff5df);
    border-bottom:1px solid var(--border);
}

.janmashtami-inner{
    width:min(100% - 40px,900px);
    min-height:150px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:28px;
    padding:22px 0;
    text-align:left;
}

.janmashtami-inner > img{
    width:125px;
    height:105px;
    object-fit:contain !important;
    object-position:center;
    background:transparent;
    border-radius:22px;
    box-shadow:var(--shadow-soft);
}

.janmashtami-content h2{
    color:var(--primary-dark);
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(1.8rem,4vw,2.7rem);
    line-height:1.1;
}

.janmashtami-content p{
    margin-top:5px;
    color:var(--muted);
}


/* =========================================================
   FLOATING REGISTER
   ========================================================= */

.sticky-register{
    position:fixed;
    z-index:50;
    top:50%;
    right:0;
    transform:translateY(-50%);
    display:flex;
    align-items:center;
    gap:10px;
    padding:14px 12px 14px 17px;
    border-radius:16px 0 0 16px;
    background:var(--primary);
    color:#fff;
    box-shadow:0 12px 30px rgba(251, 251, 252, 0.22);
    writing-mode:vertical-rl;
    transition:background var(--transition),
                padding var(--transition);
}

.sticky-register span{
    font-size:.8rem;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.sticky-register b{
    font-size:1rem;
    writing-mode:horizontal-tb;
}

.sticky-register:hover{
    background:var(--primary-dark);
    padding-right:16px;
}


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

.hero-section{
    position:relative;
    overflow:hidden;
    padding:92px 0 85px;
    background:
        radial-gradient(circle at 85% 20%,rgba(217,164,65,.15),transparent 28%),
        radial-gradient(circle at 5% 90%,rgba(111,74,168,.10),transparent 32%),
        var(--cream);
}

.hero-grid{
    min-height:580px;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    align-items:center;
    gap:70px;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-label{
    display:inline-flex;
    padding:8px 14px;
    border:1px solid rgba(111,74,168,.16);
    border-radius:999px;
    background:rgba(255,255,255,.7);
    color:var(--primary);
    font-size:.8rem;
    letter-spacing:.13em;
}

.hero-content h1{
    max-width:760px;
    margin:18px 0;
    color:var(--primary-dark);
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(3rem,6vw,5.4rem);
    line-height:1.02;
    letter-spacing:-.045em;
}

.hero-description{
    max-width:620px;
    color:var(--muted);
    font-size:1.06rem;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:30px;
}

.hero-highlights{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    max-width:700px;
    margin-top:38px;
}

.hero-highlight{
    display:flex;
    align-items:center;
    gap:10px;
    padding:14px;
    border:1px solid var(--border);
    border-radius:15px;
    background:rgba(255,255,255,.65);
}

.highlight-icon{
    width:40px;
    height:40px;
    flex:0 0 40px;
    display:grid;
    place-items:center;
    border-radius:12px;
    background:var(--primary-soft);
    color:var(--primary);
}

.hero-highlight span{
    color:var(--text);
    font-size:.8rem;
    font-weight:700;
    line-height:1.35;
}

.hero-visual{
    position:relative;
    display:grid;
    place-items:center;
    min-height:520px;
}

.hero-visual > img{
    position:relative;
    z-index:2;
    width:min(100%,510px);
    max-height:560px;
    object-fit:contain !important;
    object-position:center;
    border-radius:50% 50% 46% 46%;
    box-shadow:var(--shadow);
}

.hero-circle{
    position:absolute;
    width:430px;
    height:430px;
    border-radius:50%;
    background:var(--primary-soft);
}

.hero-decorative-circle{
    position:absolute;
    width:115px;
    height:115px;
    right:4%;
    top:8%;
    border:1px solid rgba(217,164,65,.5);
    border-radius:50%;
}

.hero-spark{
    position:absolute;
    width:12px;
    height:12px;
    border-radius:50%;
    background:var(--accent);
}

.spark-one{
    left:8%;
    top:22%;
}

.spark-two{
    right:10%;
    bottom:17%;
}


/* =========================================================
   GALLERY MARQUEE
   ========================================================= */

.gallery-section{
    padding:80px 0 95px;
    background:#fff;
}

.gallery-marquee{
    width:100%;
    overflow:hidden;
    padding:8px 0 15px;
    outline:none;
}

.gallery-track{
    width:max-content;
    display:flex;
    gap:18px;
    animation:yogmalti-marquee 34s linear infinite;
}

.gallery-marquee:hover .gallery-track,
.gallery-marquee:focus .gallery-track{
    animation-play-state:paused;
}

.gallery-item{
    width:240px;
    height:170px;
    flex:0 0 240px;
    overflow:hidden;
    border-radius:20px;
    box-shadow:var(--shadow-soft);
    background:var(--primary-soft);
    display:flex;
    align-items:center;
    justify-content:center;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:contain !important;
    object-position:center;
    transition:transform .5s ease;
}

.gallery-item:hover img{
    transform:scale(1.03);
}

@keyframes yogmalti-marquee{
    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}


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

.programs-section{
    background:var(--surface-soft);
}

.programs-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.program-card{
    overflow:hidden;
    border:1px solid var(--border);
    border-radius:var(--radius-md);
    background:#fff;
    box-shadow:var(--shadow-soft);
    transition:transform var(--transition),
                box-shadow var(--transition);
}

.program-card:hover{
    transform:translateY(-7px);
    box-shadow:var(--shadow);
}

.program-image{
    height:210px;
    overflow:hidden;
    background:var(--primary-soft);
    display:flex;
    align-items:center;
    justify-content:center;
}

.program-image img{
    width:100%;
    height:100%;
    object-fit:contain !important;
    object-position:center;
    transition:transform .55s ease;
}

.program-card:hover .program-image img{
    transform:scale(1.02);
}

.program-body{
    position:relative;
    padding:28px 22px 25px;
}

.professional-program-icon{
    width:52px;
    height:52px;
    display:grid;
    place-items:center;
    margin-top:-53px;
    margin-bottom:17px;
    border:5px solid #fff;
    border-radius:16px;
    background:var(--primary);
    color:#fff;
    font-size:1.1rem;
    box-shadow:0 8px 18px rgba(111,74,168,.18);
}

.program-body h3{
    margin-bottom:8px;
    color:var(--primary-dark);
    font-size:1.05rem;
    line-height:1.35;
}

.program-body p{
    color:var(--muted);
    font-size:.9rem;
}


/* =========================================================
   BENEFITS + STATS
   ========================================================= */

.benefits-section{
    background:#fff;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.benefit-card{
    padding:28px;
    border:1px solid var(--border);
    border-radius:var(--radius-md);
    background:linear-gradient(145deg,#fff,#faf7fd);
    transition:transform var(--transition),
                box-shadow var(--transition);
}

.benefit-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow-soft);
}

.benefit-icon{
    width:55px;
    height:55px;
    display:grid;
    place-items:center;
    margin-bottom:19px;
    border-radius:16px;
    background:var(--primary-soft);
    color:var(--primary);
    font-size:1.25rem;
}

.benefit-card h3{
    margin-bottom:8px;
    color:var(--primary-dark);
    font-size:1.05rem;
}

.benefit-card p{
    color:var(--muted);
    font-size:.9rem;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-top:65px;
    padding-top:42px;
    border-top:1px solid var(--border);
}

.stat-item{
    text-align:center;
    padding:18px;
}

.stat-item strong{
    display:block;
    color:var(--primary);
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(1.8rem,3vw,2.6rem);
    line-height:1.1;
}

.stat-item span{
    display:block;
    max-width:210px;
    margin:8px auto 0;
    color:var(--muted);
    font-size:.86rem;
}


/* =========================================================
   ABOUT / EXPERTS
   ========================================================= */

.about-section{
    background:var(--surface-soft);
}

.about-section > .container > .about-content,
.about-section .about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:65px;
}

.about-section p{
    color:var(--muted);
}

.expert-banner{
    margin-top:55px;
    padding:18px 22px;
    border-radius:18px;
    background:var(--primary);
    color:#fff;
}

.experts-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
    margin-top:35px;
}

.expert-card{
    overflow:hidden;
    border:1px solid var(--border);
    border-radius:22px;
    background:#fff;
    box-shadow:var(--shadow-soft);
}

.expert-photo{
    height:310px;
    overflow:hidden;
    background:var(--primary-soft);
    display:flex;
    align-items:center;
    justify-content:center;
}

.expert-photo img{
    width:100%;
    height:100%;
    object-fit:contain !important;
    object-position:center;
}

.expert-info{
    padding:0 22px 22px;
}

.expert-info h3{
    color:var(--primary-dark);
}

.expert-details{
    padding:22px 0 0;
    list-style:none;
}

.expert-details li{
    margin-bottom:8px;
}

.expert-details li span{
    color:var(--primary);
}

.expert-details p{
    margin-top:5px;
    font-size:.88rem;
}


/* =========================================================
   CREDENTIALS BUTTON
   ========================================================= */

.credentials-trigger,
.credentials-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 18px;
    padding: 11px 20px;

    background-color: #6f4aa8 !important;
    color: #ffffff !important;

    border: 2px solid #6f4aa8 !important;
    border-radius: 999px;

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

    line-height: 1.2;
    text-align: center;

    cursor: pointer;
    text-decoration: none;

    box-shadow: 0 6px 18px rgba(111, 74, 168, 0.25);

    transition: all 0.3s ease;
}


/* Hover */

.credentials-trigger:hover,
.credentials-btn:hover {
    background-color: #4d2d7c !important;
    border-color: #4d2d7c !important;
    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow: 0 10px 24px rgba(111, 74, 168, 0.35);
}


/* Active */

.credentials-trigger:active,
.credentials-btn:active {
    transform: translateY(0);
}


/* Focus */

.credentials-trigger:focus-visible,
.credentials-btn:focus-visible {
    outline: 3px solid rgba(111, 74, 168, 0.25);
    outline-offset: 3px;
}


/* Mobile */

@media (max-width: 600px) {

    .credentials-trigger,
    .credentials-btn {
        padding: 10px 16px;
        font-size: 13px;
        margin-top: 14px;
    }

}

/* =========================================================
   CREDENTIALS MODAL
   ========================================================= */

.credentials-modal{
    position:fixed;
    inset:0;
    z-index:9999;

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

    padding:25px;

    background:rgba(24,16,31,.72);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
}

.credentials-modal.active{
    display:flex;
}

.credentials-modal-content{
    position:relative;

    width:min(95vw,1000px);
    max-height:92vh;

    padding:18px;

    overflow:auto;

    border:1px solid rgba(255,255,255,.35);
    border-radius:20px;

    background:#fff;

    box-shadow:
        0 30px 80px rgba(0,0,0,.35);
}

.credentials-modal-close{
    position:absolute;
    top:10px;
    right:10px;

    z-index:5;

    width:42px;
    height:42px;

    display:grid;
    place-items:center;

    border:0;
    border-radius:50%;

    background:var(--primary);
    color:#fff;

    font-size:1.5rem;
    line-height:1;

    cursor:pointer;

    box-shadow:0 8px 20px rgba(0,0,0,.18);

    transition:
        background var(--transition),
        transform var(--transition);
}

.credentials-modal-close:hover{
    background:var(--primary-dark);
    transform:rotate(90deg);
}

.credentials-modal-content img,
.credentials-image,
.credential-image{
    display:block;

    width:auto;
    max-width:100%;

    height:auto;
    max-height:calc(92vh - 55px);

    margin:0 auto;

    object-fit:contain !important;
    object-position:center;

    border-radius:10px;
}


/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonial-wrapper{
    position:relative;
    display:flex;
    align-items:center;
    gap:18px;
}

.testimonial-grid{
    min-width:0;
    width:100%;
    display:flex;
    gap:22px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scroll-snap-type:x mandatory;
    padding:20px 0 28px;
    scrollbar-width:none;
}

.testimonial-grid::-webkit-scrollbar{
    display:none;
}

.testimonial-card{
    flex:0 0 calc((100% - 44px) / 3);
    min-height:255px;
    display:flex;
    flex-direction:column;
    padding:30px 26px;
    scroll-snap-align:center;
    border:1px solid var(--border);
    border-radius:22px;
    background:#fff;
    box-shadow:var(--shadow-soft);
}

.quote-mark{
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    margin-bottom:18px;
    border-radius:12px;
    background:var(--primary-soft);
    color:var(--primary);
}

.testimonial-card > p{
    color:var(--muted);
    font-size:.94rem;
}

.testimonial-author{
    margin-top:auto;
    padding-top:24px;
    color:var(--primary-dark);
}

.testimonial-arrow{
    position:relative;
    z-index:3;
    width:48px;
    height:48px;
    flex:0 0 48px;
    display:grid;
    place-items:center;
    border:1px solid var(--border);
    border-radius:50%;
    background:#fff;
    color:var(--primary);
    box-shadow:var(--shadow-soft);
    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.testimonial-arrow:hover{
    background:var(--primary);
    color:#fff;
    transform:scale(1.05);
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-section{
    background:#fff;
}

.faq-grid{
    display:grid;
    grid-template-columns:.7fr 1.3fr;
    gap:70px;
    align-items:start;
}

.faq-list{
    display:grid;
    gap:13px;
}

.faq-list details{
    padding:19px 22px;
    border:1px solid var(--border);
    border-radius:16px;
    background:var(--surface-soft);
}

.faq-list summary{
    cursor:pointer;
    color:var(--primary-dark);
    font-weight:700;
    list-style:none;
}

.faq-list summary::-webkit-details-marker{
    display:none;
}

.faq-list summary::after{
    content:"+";
    float:right;
    color:var(--primary);
    font-size:1.2rem;
}

.faq-list details[open] summary::after{
    content:"−";
}

.faq-list details p{
    padding-top:12px;
    color:var(--muted);
    font-size:.9rem;
}


/* =========================================================
   CONTACT / JOIN
   ========================================================= */

.contact-section{
    padding:100px 0;
    background:var(--surface-soft);
}

.contact-box{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    padding:55px;
    border:1px solid var(--border);
    border-radius:30px;
    background:#fff;
    box-shadow:var(--shadow);
}

.join-content p{
    max-width:560px;
    margin:18px 0 25px;
    color:var(--muted);
}

.join-form{
    display:grid;
    gap:17px;
}

.form-row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.form-group{
    display:grid;
    gap:7px;
}

.form-group label{
    color:var(--primary-dark);
    font-size:.82rem;
    font-weight:700;
}

.form-group input,
.form-group textarea,
.form-group select{
    width:100%;
    border:1px solid var(--border);
    border-radius:12px;
    outline:none;
    background:#fff;
    color:var(--text);
    padding:13px 14px;
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(111,74,168,.09);
}

.form-group textarea{
    min-height:120px;
    resize:vertical;
}

.join-submit{
    width:max-content;
    margin-top:4px;
}

.contact-box > .contact-details,
.contact-box > .contact-info{
    display:grid;
    align-content:center;
    gap:18px;
}

.contact-box .contact-item,
.contact-box .find-us,
.contact-box .follow-us,
.contact-box .contact-quote{
    padding:20px;
    border:1px solid var(--border);
    border-radius:16px;
    background:var(--surface-soft);
}

.location-icon,
.footer-icon{
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    flex:0 0 42px;
    border-radius:12px;
    background:var(--primary-soft);
    color:var(--primary);
}

.location-info{
    display:flex;
    align-items:center;
    gap:12px;
}

.map-button,
.instagram-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:8px;
    color:var(--primary);
    font-weight:700;
}

.contact-quote{
    color:var(--primary-dark);
    font-family:Georgia,"Times New Roman",serif;
    font-size:1.15rem;
    line-height:1.5;
}

.quote-mark i,
.benefit-icon i,
.professional-program-icon i,
.footer-icon i,
.location-icon i{
    line-height:1;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer{
    padding:65px 0 25px;
    background:#241b2e;
    color:#eee8f2;
}

.footer-main{
    display:grid;
    grid-template-columns:1.3fr repeat(3,1fr);
    gap:35px;
    padding-bottom:42px;
}

.footer-brand img{
    width:150px;
    object-fit:contain !important;
    
}

.footer-brand p{
    margin-top:15px;
    color:#fff;
    font-family:Georgia,"Times New Roman",serif;
    font-size:1rem;
}

.footer-brand span{
    color:#bcb2c4;
    font-size:.85rem;
}

.footer-item{
    display:flex;
    align-items:flex-start;
    gap:13px;
}

.footer-item strong{
    display:block;
    margin-bottom:4px;
    color:#fff;
    font-size:.88rem;
}

.footer-item p,
.footer-item a{
    color:#bcb2c4;
    font-size:.8rem;
}

.footer-item a:hover,
.footer-links a:hover{
    color:#fff;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding-top:22px;
    border-top:1px solid rgba(255,255,255,.12);
}

.footer-bottom p{
    color:#bcb2c4;
    font-size:.8rem;
}

.footer-links{
    display:flex;
    gap:22px;
}

.footer-links a{
    color:#bcb2c4;
    font-size:.8rem;
}


/* =========================================================
   WHATSAPP
   ========================================================= */

.floating-whatsapp{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:60;
    width:56px;
    height:56px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#25d366;
    color:#fff;
    font-size:1.55rem;
    box-shadow:0 12px 28px rgba(0,0,0,.18);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.floating-whatsapp:hover{
    transform:translateY(-4px) scale(1.04);
    box-shadow:0 16px 34px rgba(0,0,0,.23);
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.skip-link{
    position:absolute;
    left:-9999px;
    top:10px;
    z-index:100;
    padding:10px 15px;
    border-radius:8px;
    background:#fff;
    color:var(--primary-dark);
}

.skip-link:focus{
    left:10px;
}


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

@media (max-width:1100px){

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

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

    .hero-grid{
        gap:40px;
    }

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

    .sticky-krishna{
        width:78px;
        max-width:78px;
    }
}


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

@media (max-width:760px){

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

    .section{
        padding:72px 0;
    }


    /* Navbar remains normal flow */
    .navbar{
        min-height:auto;
        padding:15px 0;
        align-items:center;
        gap:12px;
    }

    .brand{
        gap:7px;
    }

    .brand img{
        width:68px;
        object-fit:contain !important;
    }

    .brand-name{
        font-size:1.2rem;
    }

    .navbar-devotional{
        gap:8px;
    }

    .krishna-arjun-img{
        width:55px;
        height:42px;
        border-radius:9px;
        object-fit:contain !important;
    }

    .devotional-text{
        display:none;
    }

    .navbar-join-btn{
        min-height:40px;
        padding:0 14px;
        font-size:.72rem;
    }


    /* Janmashtami */
    .janmashtami-inner{
        min-height:125px;
        gap:15px;
        padding:16px 0;
    }

    .janmashtami-inner > img{
        width:88px;
        height:82px;
        border-radius:16px;
        object-fit:contain !important;
    }

    .janmashtami-content h2{
        font-size:1.55rem;
    }

    .janmashtami-content p{
        font-size:.76rem;
    }


    /* Sticky Register */
    .sticky-register{
        top:auto;
        bottom:105px;
        transform:none;
        padding:11px 9px 11px 13px;
        border-radius:13px 0 0 13px;
    }

    .sticky-register span{
        font-size:.67rem;
    }


    /* Sticky Krishna above Register */
    .sticky-krishna{
        top:auto;
        bottom:160px;

        width:70px;
        max-width:70px;

        padding:3px;
    }

    .sticky-krishna img{
        width:100%;
        height:auto;
        max-height:95px;
        object-fit:contain !important;
    }


    /* Hero */
    .hero-section{
        padding:62px 0 55px;
    }

    .hero-grid{
        grid-template-columns:1fr;
        gap:40px;
        min-height:auto;
    }

    .hero-content{
        text-align:center;
    }

    .hero-content h1{
        font-size:clamp(2.45rem,12vw,3.8rem);
    }

    .hero-description{
        margin-inline:auto;
        font-size:.94rem;
    }

    .hero-actions{
        justify-content:center;
    }

    .hero-highlights{
        grid-template-columns:1fr;
        text-align:left;
    }

    .hero-visual{
        min-height:380px;
    }

    .hero-visual > img{
        width:min(100%,380px);
        object-fit:contain !important;
    }

    .hero-circle{
        width:310px;
        height:310px;
    }


    /* Gallery */
    .gallery-section{
        padding:60px 0 70px;
    }

    .gallery-item{
        width:190px;
        height:140px;
        flex-basis:190px;
    }

    .gallery-item img{
        object-fit:contain !important;
    }


    /* Programs */
    .programs-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:12px;
    }

    .program-image{
        height:135px;
    }

    .program-image img{
        object-fit:contain !important;
    }

    .program-body{
        padding:22px 13px 18px;
    }

    .professional-program-icon{
        width:42px;
        height:42px;
        margin-top:-43px;
        margin-bottom:12px;
        border-width:4px;
        border-radius:12px;
        font-size:.9rem;
    }

    .program-body h3{
        font-size:.88rem;
    }

    .program-body p{
        font-size:.74rem;
        line-height:1.5;
    }


    /* Benefits */
    .benefits-grid{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
        gap:8px;
        margin-top:45px;
        padding-top:28px;
    }

    .stat-item{
        padding:12px 5px;
    }

    .stat-item strong{
        font-size:1.65rem;
    }

    .stat-item span{
        font-size:.72rem;
    }


    /* About */
    .about-section > .container > .about-content,
    .about-section .about-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .experts-grid{
        grid-template-columns:1fr;
    }

    .expert-photo{
        height:280px;
    }

    .expert-photo img{
        object-fit:contain !important;
    }


    /* Credentials */
    .credentials-btn{
        width:100%;
        margin-top:15px;
    }

    .credentials-modal{
        padding:12px;
    }

    .credentials-modal-content{
        width:100%;
        max-height:94vh;
        padding:12px;
        border-radius:16px;
    }

    .credentials-modal-close{
        width:38px;
        height:38px;
        top:7px;
        right:7px;
        font-size:1.3rem;
    }

    .credentials-modal-content img,
    .credentials-image,
    .credential-image{
        width:auto;
        max-width:100%;
        height:auto;
        max-height:calc(94vh - 45px);
        object-fit:contain !important;
    }


    /* Testimonials */
    .testimonial-wrapper{
        gap:8px;
    }

    .testimonial-arrow{
        width:40px;
        height:40px;
        flex-basis:40px;
    }

    .testimonial-grid{
        gap:14px;
    }

    .testimonial-card{
        flex:0 0 calc(100% - 12px);
        min-height:235px;
        padding:25px 21px;
    }


    /* FAQ */
    .faq-grid{
        grid-template-columns:1fr;
        gap:32px;
    }


    /* Contact */
    .contact-box{
        grid-template-columns:1fr;
        gap:35px;
        padding:30px 20px;
        border-radius:22px;
    }

    .form-row{
        grid-template-columns:1fr;
    }


    /* Footer */
    .footer-main{
        grid-template-columns:1fr;
        gap:28px;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
    }

    .footer-links{
        flex-wrap:wrap;
        gap:12px 20px;
    }


    /* WhatsApp */
    .floating-whatsapp{
        right:15px;
        bottom:17px;
        width:51px;
        height:51px;
        font-size:1.35rem;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width:390px){

    .brand img{
        width:58px;
        object-fit:contain !important;
    }

    .brand-name{
        font-size:1.05rem;
    }

    .navbar-join-btn{
        padding:0 11px;
        font-size:.67rem;
    }

    .krishna-arjun-img{
        width:48px;
        height:38px;
        object-fit:contain !important;
    }

    .programs-grid{
        gap:9px;
    }

    .program-image{
        height:120px;
    }

    .program-body{
        padding-inline:11px;
    }

    .section-title h2,
    .about-section h2,
    .faq-heading h2,
    .join-content h2{
        font-size:2rem;
    }

    .sticky-krishna{
        width:62px;
        max-width:62px;
        bottom:150px;
    }

    .sticky-krishna img{
        max-height:85px;
        object-fit:contain !important;
    }
}


/* =========================================================
   GLOBAL IMAGE SAFETY
   IMPORTANT:
   No image should ever be cropped.
   ========================================================= */

img{
    max-width:100%;
}

.gallery-item img,
.program-image img,
.expert-photo img,
.hero-visual > img,
.hero-circle img,
.janmashtami-inner > img,
.krishna-arjun-img,
.sticky-krishna img,
.credentials-modal img,
.credentials-image,
.credential-image{
    object-fit:contain !important;
    object-position:center center;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */




/* =========================================================
   FINAL FIXES — NO CROPPING + HERO CIRCLE + STICKY KRISHNA
   ========================================================= */

/* Never crop images */
img {
    max-width: 100%;
    height: auto;
}

/* ---------------------------------------------------------
   HERO: image must fit completely inside the circle
   --------------------------------------------------------- */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
}

.hero-circle {
    position: absolute;
    z-index: 1;
    width: 470px;
    height: 470px;
    border-radius: 50%;
    background: var(--primary-soft);
}

.hero-visual > img {
    position: relative;
    z-index: 2;
    display: block;

    width: min(430px, 88%);
    height: min(430px, 88%);

    max-width: 430px;
    max-height: 430px;

    object-fit: contain !important;
    object-position: center center;

    /* Do not force the photo itself into an oval/circle */
    border-radius: 0 !important;
    box-shadow: none;
}

/* ---------------------------------------------------------
   GALLERY / PROGRAM / TRAINER — COMPLETE IMAGE
   --------------------------------------------------------- */
.gallery-item img,
.program-image img,
.expert-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center center;
}

/* ---------------------------------------------------------
   CREDENTIALS — COMPLETE DEGREE/CERTIFICATE
   --------------------------------------------------------- */
.credentials-modal-content {
    overflow: auto;
}

.credentials-modal-content img,
.credentials-image,
.credential-image {
    display: block;
    width: auto !important;
    height: auto !important;

    max-width: 100% !important;
    max-height: calc(92vh - 55px) !important;

    margin: 0 auto;

    object-fit: contain !important;
    object-position: center center;
}

/* ---------------------------------------------------------
   JANMASHTAMI — COMPLETE IMAGE
   --------------------------------------------------------- */
.janmashtami-inner > img {
    width: 125px;
    height: 105px;
    object-fit: contain !important;
    object-position: center center;
}

/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */
@media (max-width: 760px) {

    .hero-visual {
        min-height: 350px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-circle {
        width: 320px;
        height: 320px;
        border-radius: 50%;
    }

    .hero-visual > img {
        width: 290px;
        height: 290px;

        max-width: 290px;
        max-height: 290px;

        object-fit: contain !important;
        object-position: center center;

        border-radius: 0 !important;
        box-shadow: none;
    }

    /* Register stays fixed on the right */
    .sticky-register {
        right: 0;
        top: auto;
        bottom: 105px;
        transform: none;
        z-index: 100;
    }

    /* Krishna stays directly above Register */
    .sticky-krishna {
        right: 0;
        top: auto;
        bottom: 160px;

        width: 70px;
        min-height: 0;
        max-width: 70px;

        padding: 2px;
        z-index: 99;
    }

    .sticky-krishna img {
        width: 100%;
        height: auto;
        max-width: 100%;
        max-height: 95px;
        object-fit: contain !important;
    }

    .gallery-item img,
    .program-image img,
    .expert-photo img {
        object-fit: contain !important;
    }

    .janmashtami-inner > img {
        width: 88px;
        height: 82px;
        object-fit: contain !important;
    }

    .credentials-modal {
        padding: 10px;
    }

    .credentials-modal-content {
        width: 100%;
        max-width: 100%;
        max-height: 94vh;
        padding: 10px;
    }

    .credentials-modal-content img,
    .credentials-image,
    .credential-image {
        max-width: 100% !important;
        max-height: calc(94vh - 45px) !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
    }
}

/* ---------------------------------------------------------
   VERY SMALL PHONES
   --------------------------------------------------------- */
@media (max-width: 390px) {

    .hero-circle {
        width: 290px;
        height: 290px;
    }

    .hero-visual > img {
        width: 265px;
        height: 265px;
        max-width: 265px;
        max-height: 265px;
        object-fit: contain !important;
    }

    .sticky-krishna {
        width: 62px;
        max-width: 62px;
        bottom: 150px;
    }

    .sticky-krishna img {
        max-height: 85px;
        object-fit: contain !important;
    }
}

/* Final absolute no-crop rule for all relevant site images */
.gallery-item,
.program-image,
.expert-photo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item img,
.program-image img,
.expert-photo img,
.hero-visual > img,
.janmashtami-inner > img,
.sticky-krishna img,
.credentials-modal-content img {
    object-fit: contain !important;
    object-position: center center;
}


/* =========================================================
   FLOATING IMAGE STACK
   Two WhatsApp-style circular images:
   Upper image + Shri Krishna
   ========================================================= */

.floating-image-stack{
    position:fixed;
    right:18px;
    bottom:92px;
    z-index:9998;

    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;

    pointer-events:none;
}

.sticky-floating-image{
    width:62px;
    height:62px;
    flex:0 0 62px;

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

    overflow:hidden;
    border-radius:50%;

    background:#fff;
    border:3px solid #fff;

    box-shadow:
        0 8px 22px rgba(0,0,0,.20),
        0 0 0 2px rgba(111,74,168,.15);

    pointer-events:auto;
}

.sticky-floating-image img{
    display:block;
    width:100%;
    height:100%;

    max-width:none;

    object-fit:contain !important;
    object-position:center center;

    border-radius:50%;
}





/* Slight hover effect */
.sticky-floating-image:hover{
    transform:scale(1.06);
    box-shadow:
        0 10px 26px rgba(0,0,0,.24),
        0 0 0 2px rgba(111,74,168,.22);
}

/* Register remains below the image stack */
.sticky-register{
    position:fixed;
    right:0;
    top:50%;
    transform:translateY(-50%);
    z-index:9999;
}

/* =========================================================
   HERO — COMPLETE IMAGE INSIDE CIRCLE
   ========================================================= */

.hero-visual{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:520px;
}

.hero-circle{
    position:absolute;
    z-index:1;
    width:470px;
    height:470px;
    border-radius:50%;
    background:var(--primary-soft);
}

.hero-visual > img{
    position:relative;
    z-index:2;
    display:block;

    width:min(430px,88%);
    height:min(430px,88%);
    max-width:430px;
    max-height:430px;

    object-fit:contain !important;
    object-position:center center;

    border-radius:0 !important;
    box-shadow:none;
}

/* =========================================================
   NO-CROP IMAGE SAFETY
   ========================================================= */

.gallery-item,
.program-image,
.expert-photo{
    display:flex;
    align-items:center;
    justify-content:center;
}

.gallery-item img,
.program-image img,
.expert-photo img,
.janmashtami-inner > img,
.credentials-modal-content img,
.credentials-image,
.credential-image{
    object-fit:contain !important;
    object-position:center center;
}

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

@media (max-width:760px){

    .floating-image-stack{
        right:12px;
        bottom:82px;
        gap:8px;
    }

    .sticky-floating-image{
        width:54px;
        height:54px;
        flex-basis:54px;
        border-width:2px;
    }

    .sticky-register{
        right:0;
        top:auto;
        bottom:18px;
        transform:none;
        z-index:9999;
    }

    .hero-visual{
        min-height:350px;
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .hero-circle{
        width:320px;
        height:320px;
        border-radius:50%;
    }

    .hero-visual > img{
        width:290px;
        height:290px;
        max-width:290px;
        max-height:290px;
        object-fit:contain !important;
        object-position:center center;
        border-radius:0 !important;
        box-shadow:none;
    }

    .gallery-item img,
    .program-image img,
    .expert-photo img{
        object-fit:contain !important;
    }
}

/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width:390px){

    .floating-image-stack{
        right:9px;
        bottom:78px;
        gap:7px;
    }

    .sticky-floating-image{
        width:48px;
        height:48px;
        flex-basis:48px;
    }

    .hero-circle{
        width:290px;
        height:290px;
    }

    .hero-visual > img{
        width:265px;
        height:265px;
        max-width:265px;
        max-height:265px;
        object-fit:contain !important;
    }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion:reduce){
    .sticky-floating-image{
        transition:none;
    }
}
 /* =========================================================
   FINAL MOBILE REGISTER BUTTON FIX
   ========================================================= */

@media (max-width: 760px) {

    .sticky-register {
        position: fixed;

        right: 0;
        top: 45%;
        bottom: auto;

        width: 35px;
        height: 215px;

        padding: 10px 6px;

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

        writing-mode: vertical-rl;

        transform: translateY(-50%);

        border-radius: 16px 0 0 16px;

        z-index: 9999;

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

        white-space: nowrap;

        box-shadow:
            0 8px 22px rgba(111, 74, 168, 0.25);
    }

    .sticky-register span {
        writing-mode: vertical-rl;
        white-space: nowrap;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .06em;
    }

    .sticky-register b {
        writing-mode: horizontal-tb;
        font-size: 17px;
        margin-top: 5px;
    }


    /* Floating images stay on lower-right */

    .floating-image-stack {
        right: 12px;
        bottom: 82px;

        z-index: 9998;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 390px) {

    .sticky-register {
        top: 40%;

        width: 46px;
        height: 145px;

        padding: 9px 5px;

        font-size: 12px;
    }

    .sticky-register span {
        font-size: 12px;
    }

    .sticky-register b {
        font-size: 16px;
    }

    .floating-image-stack {
        right: 9px;
        bottom: 78px;
    }

}
/* =========================================================
   MOBILE REGISTER BUTTON - EXTRA SLIM
   ========================================================= */

@media (max-width: 760px) {

    .sticky-register {
        right: 0 !important;
        left: auto !important;

        top: 45% !important;
        bottom: auto !important;

        width: 38px !important;
        min-width: 38px !important;
        max-width: 38px !important;

        height: 145px !important;

        padding: 8px 4px !important;

        writing-mode: vertical-rl !important;
        transform: translateY(-50%) !important;

        border-radius: 12px 0 0 12px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 5px !important;

        z-index: 9999 !important;

        overflow: visible !important;
    }

    .sticky-register span {
        font-size: 10px !important;
        font-weight: 700 !important;
        letter-spacing: .04em !important;

        writing-mode: vertical-rl !important;

        white-space: nowrap !important;
    }

    .sticky-register b {
        font-size: 14px !important;

        writing-mode: horizontal-tb !important;

        margin: 0 !important;
    }
}


/* =========================================================
   VERY SMALL PHONES - EVEN SLIMMER
   ========================================================= */

@media (max-width: 390px) {

    .sticky-register {
        width: 35px !important;
        min-width: 35px !important;
        max-width: 35px !important;

        height: 135px !important;

        padding: 7px 3px !important;

        border-radius: 10px 0 0 10px !important;
    }

    .sticky-register span {
        font-size: 9px !important;
    }

    .sticky-register b {
        font-size: 13px !important;
    }
}

/* =========================================================
   JANMASHTAMI ONE-TIME ANIMATION
   ========================================================= */

#janmashtami-popup {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 999999;

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

    padding-top: 70px;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    background: transparent;

    transition: opacity 0.6s ease;
}


/* SHOW POPUP */

#janmashtami-popup.show {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   KRISHNA + TEXT
   ========================================================= */

.janmashtami-box {
    position: relative;

    z-index: 1000001;

    width: 100%;

    text-align: center;

    animation: krishnaEntry 1.2s ease-out forwards;
}


/* Krishna Image */

.janmashtami-box img {
    display: block;

    width: 230px;
    max-width: 60vw;

    height: auto;

    margin: 0 auto;

    object-fit: contain;

    filter: drop-shadow(
        0 8px 15px rgba(0,0,0,0.25)
    );
}


/* शुभ जन्माष्टमी */

.janmashtami-box h1 {
    margin: 18px 0 0;

    padding: 0;

    font-family:
        "Noto Sans Devanagari",
        "Mangal",
        sans-serif;

    font-size: 46px;

    font-weight: 800;

    line-height: 1.2;

    text-align: center;

    color: #7b1fa2;

    text-shadow:
        0 3px 10px rgba(0,0,0,0.20);
}


/* =========================================================
   KRISHNA ENTRY
   ========================================================= */

@keyframes krishnaEntry {

    0% {
        opacity: 0;

        transform:
            translateY(-100px)
            scale(0.5);
    }

    60% {
        opacity: 1;

        transform:
            translateY(10px)
            scale(1.08);
    }

    100% {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}


/* =========================================================
   FLOWER CONTAINER
   ========================================================= */

#petals {

    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    z-index: 1000000;

    pointer-events: none;
}


/* =========================================================
   FLOWERS
   ========================================================= */

.petal {

    position: absolute;

    top: -40px;

    width: 16px;
    height: 22px;

    background: #ff69b4;

    border-radius:
        100% 0 100% 0;

    opacity: 1;

    display: block;

    animation-name: fallPetal;

    animation-play-state: running;

    animation-timing-function: linear;

    animation-fill-mode: forwards;

    will-change:
        top,
        transform;
}


/* Different sizes */

.petal:nth-child(2n) {
    width: 20px;
    height: 26px;
}

.petal:nth-child(3n) {
    width: 13px;
    height: 18px;
}


/* Different colours */

.petal:nth-child(4n) {
    background: #ff1493;
}

.petal:nth-child(5n) {
    background: #ffd166;
}

.petal:nth-child(6n) {
    background: #ff9fba;
}

.petal:nth-child(7n) {
    background: #f7a8d0;
}


/* =========================================================
   FLOWER FALL
   ========================================================= */

@keyframes fallPetal {

    0% {
        top: -50px;

        transform:
            translateX(0)
            rotate(0deg);
    }

    25% {
        transform:
            translateX(70px)
            rotate(120deg);
    }

    50% {
        transform:
            translateX(-70px)
            rotate(240deg);
    }

    75% {
        transform:
            translateX(60px)
            rotate(300deg);
    }

    100% {
        top: 110vh;

        transform:
            translateX(-50px)
            rotate(360deg);
    }
}


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

@media (max-width: 600px) {

    #janmashtami-popup {
        padding-top: 50px;
    }

    .janmashtami-box img {
        width: 180px;
        max-width: 55vw;
    }

    .janmashtami-box h1 {
        margin-top: 14px;

        font-size: 32px;
    }

    .petal {
        width: 12px;
        height: 17px;
    }
}