
/* ============================= */
/* NAVYOGA HERO SECTION      */
/* ============================= */

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 88vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Desktop Video */
.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fallback Image */
.hero-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

/* Text */
.hero-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 10;
    padding: 20px;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: 52px;
    font-weight: 600;
}

.hero-sub {
    font-size: 20px;
    margin-top: 12px;
    letter-spacing: 0.4px;
    font-weight: 300;
}

/* CTA Button */
.hero-btn {
    margin-top: 26px;
    padding: 12px 28px;
    background: #b0895b;
    color: white;
    font-size: 17px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}
.hero-btn:hover {
    background: #8a6c49;
}

/* Mobile Behavior */
@media (max-width: 900px) {
    .hero-video {
        display: none;
    }
    .hero-image {
        display: block; 
    }
    .hero-title {
        font-size: 36px;
    }
    .hero-sub {
        font-size: 18px;
    }
}

/* ============================= */
/* ABOUT SECTION             */
/* ============================= */
.about-section {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

.about-btn {
    margin-top: 24px;
    padding: 12px 28px;
    background: #b0895b;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    font-size: 16px;
}

.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    border-radius: 18px;
}

/* ============================= */
/* WHY NAVYOGA SECTION       */
/* ============================= */
.why-section {
    text-align: center;
    padding: 100px 22px;
    background: #faf7f3;
}

.why-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

.why-box h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.why-box p {
    color: #555;
    line-height: 1.6;
}

/* ============================= */
/* COURSES PREVIEW SECTION   */
/* ============================= */
.courses-section {
    text-align: center;
    padding: 120px 22px;
}

.course-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 40px;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

.course-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.course-card img {
    width: 100%;
}

.course-card h3 {
    padding: 18px;
}

/* ============================= */
/* TTC SECTION               */
/* ============================= */
.ttc-section {
    padding: 100px 22px;
    background: #f5f1ea;
    text-align: center;
}

.ttc-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 20px;
}

.ttc-section p {
    max-width: 800px;
    margin: auto;
    line-height: 1.7;
}

.ttc-btn {
    margin-top: 24px;
    padding: 14px 34px;
    background: #b0895b;
    color: white;
    font-size: 18px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
}

/* HERO SECTION — Premium Temple Style */
.hero-section {
    position: relative;
    width: 100%;
    height: 92vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background video */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fallback image */
.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

/* Overlay for calm effect */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.25),
        rgba(0,0,0,0.45)
    );
}

/* Mandala watermark */
.hero-mandala {
    position: absolute;
    width: 420px;
    height: 420px;
    opacity: 0.08;
    background: url('/assets/icons/mandala-gold.png') no-repeat center/contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 20px;
    color: #fff;
}

/* Typography */
.hero-title {
    font-family: "Playfair Display", serif;
    font-size: 64px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.hero-gold-line {
    width: 80px;
    height: 3px;
    background: #b0895b;
    margin: 14px auto 18px;
    border-radius: 4px;
}

.hero-sub {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

/* CTA */
.hero-btn {
    margin-top: 28px;
    padding: 14px 34px;
    background: #b0895b;
    color: white;
    font-size: 18px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-block;
}
.hero-btn:hover {
    background: #8b6c49;
}

/* Mobile view */
@media (max-width: 900px) {
    .hero-video { display: none; }
    .hero-image { display: block; }
    .hero-title { font-size: 40px; }
    .hero-sub { font-size: 17px; }
    .hero-mandala { width: 260px; height: 260px; opacity: 0.12; }
}
/* ============================= */
/* ABOUT SECTION — PREMIUM   */
/* ============================= */

.about-section {
    max-width: 1250px;
    margin: 120px auto;
    padding: 0 26px;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left Accent Bar */
.about-accent {
    width: 6px;
    background: #b0895b;
    border-radius: 3px;
    height: 110px;
    margin-right: 18px;
}

/* Text Section */
.about-text {
    flex: 1;
}

.about-title {
    font-family: "Playfair Display", serif;
    font-size: 46px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.4px;
    position: relative;
}

/* Subtitle small gold line */
.about-title-line {
    width: 60px;
    height: 3px;
    background: #b0895b;
    border-radius: 3px;
    margin: 12px 0 18px;
}

.about-desc {
    font-size: 18px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 14px;
}

.about-btn {
    margin-top: 24px;
    padding: 12px 32px;
    background: #b0895b;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    display: inline-block;
    font-size: 17px;
    transition: 0.3s ease;
}
.about-btn:hover {
    background: #8a6c49;
}

/* Image Box */
.about-img {
    flex: 1;
    position: relative;
}

.about-img-wrapper {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
    transition: transform 0.4s ease;
}

.about-img-wrapper:hover {
    transform: scale(1.03);
}

.about-img-wrapper img {
    width: 100%;
    display: block;
    border-radius: 18px;
}

/* Mobile responsive */
@media (max-width: 900px) {
    .about-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .about-accent {
        display: none;
    }
    .about-title {
        font-size: 34px;
    }
    .about-img-wrapper {
        width: 100%;
    }
}
/* ============================= */
/* WHY NAVYOGA — PREMIUM     */
/* ============================= */

/* Why Section */
.why-section {
    text-align: center;
    padding: 100px 22px;
    background: #faf7f3;
}

.why-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 40px;
}

/* 3×2 Grid Desktop — Responsive */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* WHY BOX — With Hover Effects */
.why-box {
    padding: 30px 22px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
    text-align: center; /* 👈 centers title + text */
}

/* Hover: Lift + Glow + Gold Border */
.why-box:hover {
    transform: translateY(-8px);
    border-color: #b0895b;
    box-shadow: 0 18px 40px rgba(176,137,91,0.25);
    background: #fffdf6;
}

.why-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

/* Gold title hover */
.why-box:hover h3 {
    color: #b0895b;
}

.why-box p {
    color: #555;
    line-height: 1.6;
}

/* Icon */
.why-icon-wrap {
    width: 90px;
    height: 90px;
    margin: 0 auto 18px; /* 👈 centers the circle */
    border-radius: 50%;
    border: 3px solid #b0895b;
    background: #fffdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(176,137,91,0.22);
}

.why-icon {
    width: 72px;
    height: 72px;
    object-fit: contain;
    transform: scale(1.22);
}

/* Icon hover animation */
.why-box:hover .why-icon {
    transform: scale(1.08);
}


/* Hover effect — gold glow + slight scale */
.why-box:hover .why-icon-wrap {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(176,137,91,0.28);
}


.programs-section {
    text-align: center;
    padding: 120px 22px;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    margin-bottom: 12px;
}

.section-sub {
    color: #6a6a6a;
    max-width: 700px;
    margin: 0 auto 45px;
    font-size: 17px;
    line-height: 1.7;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 38px;
    max-width: 1200px;
    margin: auto;
}

.program-card {
    background: white;
    border-radius: 16px;
    padding: 28px 22px;
    border: 1px solid #eee;
    box-shadow: 0 2px 14px rgba(0,0,0,0.05);
    transition: 0.35s;
    text-align: center;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(176,137,91,0.15);
    border-color: #b0895b;
}

/* Placeholder circle for icon */
.program-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    border: 3px solid #b0895b;
    opacity: 0.7;
}

/* Buttons */
.program-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 24px;
    background: #b0895b;
    color: white;
    border-radius: 10px;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.program-btn:hover {
    background: #8a6c49;
}

/* Coming Soon */
.coming-soon {
    position: relative;
}

.coming-tag {
    margin-top: 14px;
    display: inline-block;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 8px;
    background: #fff4e6;
    color: #b0895b;
    border: 1px solid #ebd6ba;
}
/* Programs Section */
.programs-section {
    text-align: center;
    padding: 120px 22px;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    margin-bottom: 12px;
}

.section-sub {
    color: #6a6a6a;
    max-width: 700px;
    margin: 0 auto 45px;
    font-size: 17px;
    line-height: 1.7;
}

/* 4x2 grid layout */
.programs-grid-8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
    max-width: 1250px;
    margin: auto;
}

/* Cards */
.program-card {
    background: #fff;
    border-radius: 16px;
    padding: 26px 20px;
    border: 1px solid #eee;
    box-shadow: 0 2px 14px rgba(0,0,0,0.05);
    transition: 0.35s;
}

.program-card:hover {
    transform: translateY(-6px);
    border-color: #b0895b;
    box-shadow: 0 14px 34px rgba(176,137,91,0.15);
}

/* Icon Placeholder (circle) */
.program-icon {
    width: 70px;
    height: 70px;
    border: 3px solid #b0895b;
    border-radius: 50%;
    margin: 0 auto 16px;
    opacity: 0.65;
}

/* Coming Soon Tag */
.coming-tag {
    display: inline-block;
    margin-top: 12px;
    background: #fff4e6;
    color: #b0895b;
    border: 1px solid #ebd6ba;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 13px;
}

/* Mobile Responsive */
@media (max-width: 990px) {
    .programs-grid-8 {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
    }
}

@media (max-width: 520px) {
    .programs-grid-8 {
        grid-template-columns: 1fr;
    }
}
/* Learn More Button */
.program-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 20px;
    background: #b0895b;
    color: white;
    font-size: 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}

.program-btn:hover {
    background: #8a6c49;
}

.program-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.ttc-cards-section {
    padding: 120px 22px;
    background: #faf7f3;
    text-align: center;
}

.ttc-cards-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 20px;
}

.ttc-cards-sub {
    max-width: 750px;
    margin: 0 auto 50px;
    line-height: 1.7;
    color: #555;
    font-size: 18px;
}

/* GRID */
.ttc-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */
.ttc-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #eee4d4;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
}

.ttc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 40px rgba(176,137,91,0.25);
    border-color: #b0895b;
}

/* Image */
.ttc-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* Text */
.ttc-card-body {
    padding: 26px;
}

.ttc-card-body h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.ttc-card-body p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Button */
.ttc-card-btn {
    display: inline-block;
    background: #b0895b;
    color: white;
    padding: 12px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
}

.ttc-card-btn:hover {
    background: #8a6c49;
}

/* MOBILE */
@media (max-width: 900px) {
    .ttc-card-grid {
        grid-template-columns: 1fr;
    }
    .ttc-card img {
        height: 220px;
    }
}

.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 9999;
}

/* === HERO SLIDER FIX === */

/* force slides to control stacking */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 0;
    transition: opacity 1s ease;
}

/* ONLY active slide visible */
.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* force media to fill slide */
.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* prevent inactive slides from leaking */
.hero-slide:not(.active) video {
    display: none;
}

/* tidy box sizing so width math is predictable */
*, *::before, *::after { box-sizing: border-box; }

.testimonial-section {
    background: #ffffff;
    padding: 120px 22px;
    text-align: center;
}

.testimonial-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 10px;
}

.testimonial-sub {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* outer viewport that hides overflow */
.testimonial-slider {
    max-width: 920px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

/* flex track with no gaps (important) */
.testimonial-track {
    display: flex;
    gap: 0; /* no gap between slides */
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

/* each slide WILL be set dynamically to slider width in JS,
   but add safe defaults and visual styles here */
.testimonial-card {
    flex: 0 0 auto; /* width will be applied by JS for pixel-precision */
    width: 100%;    /* fallback */
    padding: 40px 30px;
    background: #faf7f3;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    text-align: center;
    margin: 0;
}

/* profile image */
.testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid #b0895b;
    object-fit: cover;
    display: inline-block;
    margin-bottom: 14px;
}

/* text */
.testimonial-name {
    font-size: 20px;
    font-weight: 600;
    margin-top: 8px;
}

.testimonial-text {
    margin-top: 12px;
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    padding: 0 40px;
}

/* dots */
.testimonial-dots {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    background: #dcdcdc;
    border-radius: 50%;
    cursor: pointer;
    transition: transform .2s, background .2s;
}

.testimonial-dot.active {
    background: #b0895b;
    transform: scale(1.2);
}

/* small responsive tweaks */
@media (max-width: 900px) {
    .testimonial-section { padding: 80px 16px; }
    .testimonial-text { padding: 0 18px; }
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DOTS */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 50; /* ABOVE overlay */
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
}

.hero-dot.active {
    background: #b0895b;
    transform: scale(1.2);
}

.ai-trust-strip{
    background:#fffdf6;
    padding:30px 16px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
    gap:26px;
    text-align:center;
    border-bottom:1px solid #eee;
}
.ai-trust-strip strong{
    font-size:26px;
    color:#b0895b;
}
.ai-trust-strip span{
    display:block;
    margin-top:6px;
    font-size:14px;
    color:#666;
}
.ai-path-section{
    padding:120px 22px;
    background:linear-gradient(180deg,#faf7f3,#fff);
    text-align:center;
}
.ai-path-section h2{
    font-family:"Playfair Display",serif;
    font-size:42px;
}
.ai-path-section p{
    max-width:720px;
    margin:14px auto 46px;
    font-size:18px;
    color:#555;
}
.ai-path-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:26px;
    max-width:1100px;
    margin:auto;
}
.ai-path-card{
    background:#fff;
    padding:26px 20px;
    border-radius:16px;
    border:1px solid #eee;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
    transition:.35s;
}
.ai-path-card:hover{
    transform:translateY(-6px);
    border-color:#b0895b;
}
.ai-path-btn{
    margin-top:40px;
    display:inline-block;
    padding:14px 34px;
    background:#b0895b;
    color:#fff;
    border-radius:10px;
    font-size:17px;
    text-decoration:none;
}
.ai-tag{
    display:inline-block;
    margin-top:10px;
    font-size:12px;
    background:#fff4e6;
    border:1px solid #ebd6ba;
    padding:4px 10px;
    border-radius:8px;
    color:#b0895b;
}
