/* =====================================================
   THEME 25 — YOGA & MINDFULNESS — SERENE ORGANIC UI
   ===================================================== */
:root { --t25-sage:        #7a9e7e; --t25-sage-dark:   #5c7f60; --t25-sage-deep:   #3d5e41; --t25-earth:       #c4956a; --t25-earth-light: #ddb896; --t25-cream:       #faf7f2; --t25-cream-mid:   #f2ece2; --t25-warm-white:  #fffef9; --t25-clay:        #8b6f5e; --t25-text-dark:   #2c2016; --t25-text-mid:    #5a4a3a; --t25-text-light:  #9c8878; --t25-border:      rgba(122, 158, 126, 0.18); --t25-border-warm: rgba(196, 149, 106, 0.20); --t25-shadow-sm:   0 4px 20px rgba(60, 45, 30, 0.08); --t25-shadow-md:   0 10px 40px rgba(60, 45, 30, 0.13); --t25-shadow-lg:   0 20px 60px rgba(60, 45, 30, 0.16); --t25-radius-sm:   10px; --t25-radius-md:   20px; --t25-radius-lg:   32px; --t25-radius-pill: 999px; --t25-font-display: "Cormorant Garamond", Georgia, serif; --t25-font-body:    "Jost", sans-serif; }
/* =====================================================
   HERO SECTION
   ===================================================== */
.theme25-hero { position: relative; width: 100%; height: 100vh; min-height: 560px; overflow: hidden; }
.theme25-hero .bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.theme25-hero .video-overlay { position: absolute; inset: 0; background: linear-gradient(
    180deg,
    rgba(20, 30, 20, 0.55) 0%,
    rgba(10, 18, 10, 0.65) 55%,
    rgba(5, 12, 5, 0.75) 100%
  ); display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px; }
.theme25-hero .hero-content { color: var(--t25-warm-white); max-width: 700px; animation: yogaReveal 1.4s cubic-bezier(0.22, 1, 0.36, 1) both; }
@keyframes yogaReveal {
 from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
 }
.hero-symbol { font-size: 2.4rem; margin-bottom: 20px; display: block; animation: floatSymbol 4s ease-in-out infinite; }
@keyframes floatSymbol {
 0%, 100% { transform: translateY(0); }
50% { transform: translateY(-8px); }
 }
.theme25-hero .hero-content h1 { font-family: var(--t25-font-display); font-size: clamp(3.5rem, 10vw, 7rem); font-weight: 700; line-height: 0.95; margin: 0 0 20px; letter-spacing: -1px; text-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.theme25-hero .hero-content h1 em { font-style: italic; font-weight: 400; color: var(--t25-earth-light); }
.theme25-hero .hero-tagline { font-family: var(--t25-font-body); font-size: clamp(0.85rem, 2vw, 1.05rem); font-weight: 300; color: rgba(255,255,255,0.78); letter-spacing: 3px; text-transform: uppercase; margin: 0 0 42px; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,0.45); font-family: var(--t25-font-body); font-size: 0.65rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; animation: scrollBounce25 2.5s ease-in-out infinite; }
.hero-scroll svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.45); }
@keyframes scrollBounce25 {
 0%, 100% { transform: translateX(-50%) translateY(0); }
50% { transform: translateX(-50%) translateY(8px); }
 }
/* =====================================================
   SHARED SECTION STYLES
   ===================================================== */
.section-title { font-family: var(--t25-font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; color: var(--t25-text-dark); margin: 0 0 12px; letter-spacing: -0.5px; line-height: 1.1; }
.section-title em { font-style: italic; font-weight: 400; color: var(--t25-sage); }
.section-subtitle { font-family: var(--t25-font-body); font-size: 0.95rem; font-weight: 300; color: var(--t25-text-light); margin: 0 0 52px; letter-spacing: 0.5px; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .t25-label { display: inline-block; background: rgba(122, 158, 126, 0.12); color: var(--t25-sage-dark); font-family: var(--t25-font-body); font-size: 0.68rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; padding: 5px 18px; border-radius: var(--t25-radius-pill); margin-bottom: 14px; border: 1px solid rgba(122, 158, 126, 0.25); }
/* =====================================================
   CONTACT CARDS
   ===================================================== */
.contact-cards-theme25 { background: var(--t25-cream); padding: 56px 32px; gap: 20px; }
.contact-cards-theme25 .contact-card { background: var(--t25-warm-white); border: 1px solid var(--t25-border); border-radius: var(--t25-radius-md); padding: 38px 22px 32px; text-align: center; box-shadow: var(--t25-shadow-sm); transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease; text-decoration: none; position: relative; overflow: hidden; }
.contact-cards-theme25 .contact-card::before { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--t25-sage), var(--t25-earth)); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.contact-cards-theme25 .contact-card:hover { transform: translateY(-8px); box-shadow: var(--t25-shadow-md); border-color: rgba(122, 158, 126, 0.35); }
.contact-cards-theme25 .contact-card:hover::before { transform: scaleX(1); }
.contact-cards-theme25 .card-icon-wrap { width: 64px; height: 64px; background: linear-gradient(135deg, rgba(122,158,126,0.10), rgba(196,149,106,0.08)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; transition: background 0.3s; }
.contact-cards-theme25 .contact-card:hover .card-icon-wrap { background: linear-gradient(135deg, rgba(122,158,126,0.20), rgba(196,149,106,0.15)); }
.contact-cards-theme25 .contact-card img { width: 28px; height: 28px; object-fit: contain; }
.contact-cards-theme25 .contact-card p { font-family: var(--t25-font-body); font-size: 0.85rem; font-weight: 500; color: var(--t25-text-dark); margin: 0; letter-spacing: 0.5px; }
/* =====================================================
   POSTER SECTION
   ===================================================== */
.theme25-poster { background: var(--t25-warm-white); padding: 100px 48px; position: relative; overflow: hidden; /* fade-in on scroll (controlled by global-script.js) */
  opacity: 0; transform: translateY(40px); animation: fadeUp 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards; animation-play-state: paused; }
/* Botanical decorative elements */
.theme25-poster::before { content: ""; position: absolute; top: -80px; right: -80px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(122,158,126,0.09) 0%, transparent 70%); pointer-events: none; }
.theme25-poster::after { content: ""; position: absolute; bottom: -60px; left: -60px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(196,149,106,0.07) 0%, transparent 70%); pointer-events: none; }
@keyframes fadeUp {
 from { opacity: 0; transform: translateY(40px); }
to { opacity: 1; transform: translateY(0); }
 }
.poster-content { max-width: 1100px; margin: 0 auto; display: flex; align-items: flex-start; justify-content: space-between; gap: 72px; position: relative; z-index: 1; }
.poster-left { flex: 1; }
.poster-right { flex: 0 0 auto; min-width: 300px; }
/* Mantra */
.poster-mantra { font-family: var(--t25-font-display); font-size: 1.1rem; font-weight: 400; color: var(--t25-sage); letter-spacing: 3px; margin-bottom: 16px; }
.poster-name { font-family: var(--t25-font-display); font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; color: var(--t25-text-dark); line-height: 1.0; margin: 0 0 10px; letter-spacing: -0.5px; }
.poster-name em { font-style: italic; font-weight: 400; color: var(--t25-sage-dark); }
.poster-designation { font-family: var(--t25-font-body); font-size: 0.95rem; font-weight: 300; color: var(--t25-text-light); margin: 0 0 24px; letter-spacing: 0.3px; }
/* Certification badges */
.poster-certifications { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.cert-badge { font-family: var(--t25-font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--t25-sage-dark); background: rgba(122,158,126,0.10); border: 1px solid rgba(122,158,126,0.28); border-radius: var(--t25-radius-pill); padding: 5px 14px; }
.poster-divider { width: 48px; height: 1.5px; background: linear-gradient(90deg, var(--t25-sage), var(--t25-earth)); border-radius: 2px; margin: 0 0 28px; }
.poster-contact { display: flex; align-items: center; gap: 12px; margin: 0 0 14px; font-family: var(--t25-font-body); font-size: 0.98rem; }
.poster-contact i { color: var(--t25-sage); width: 16px; text-align: center; }
.poster-contact a { color: var(--t25-text-mid); font-weight: 400; text-decoration: none; transition: color 0.2s; }
.poster-contact a:hover { color: var(--t25-sage-dark); }
.poster-location { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--t25-border); }
.poster-location-heading { font-family: var(--t25-font-body); font-size: 0.65rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--t25-text-light); margin: 0 0 10px; }
.poster-location p { font-family: var(--t25-font-body); font-size: 0.95rem; font-weight: 300; color: var(--t25-text-mid); margin: 0 0 5px; line-height: 1.6; }
/* Class Schedule Card */
.class-schedule { background: var(--t25-cream); border: 1px solid var(--t25-border); border-radius: var(--t25-radius-lg); padding: 32px 28px; box-shadow: var(--t25-shadow-sm); position: relative; overflow: hidden; }
.class-schedule::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--t25-sage), var(--t25-earth-light)); }
.schedule-heading { font-family: var(--t25-font-display); font-size: 1.3rem; font-weight: 600; color: var(--t25-text-dark); margin-bottom: 24px; letter-spacing: 0.3px; }
.schedule-item { display: flex; align-items: center; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--t25-border); }
.schedule-item:last-child { border-bottom: none; padding-bottom: 0; }
.schedule-item:first-of-type { padding-top: 0; }
.sch-time { font-family: var(--t25-font-display); font-size: 1.05rem; font-weight: 600; color: var(--t25-sage-dark); min-width: 68px; white-space: nowrap; }
.sch-info { display: flex; flex-direction: column; gap: 3px; }
.sch-name { font-family: var(--t25-font-body); font-size: 0.9rem; font-weight: 500; color: var(--t25-text-dark); }
.sch-days { font-family: var(--t25-font-body); font-size: 0.75rem; font-weight: 300; color: var(--t25-text-light); letter-spacing: 0.5px; }
/* =====================================================
   SERVICES SECTION
   ===================================================== */
.theme25-services { padding: 100px 32px; background: var(--t25-cream); text-align: center; }
.theme25-services .section-title { color: var(--t25-text-dark); }
.theme25-services .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1100px; margin: 0 auto 56px; }
.theme25-services .service-item { position: relative; border-radius: var(--t25-radius-md); overflow: hidden; cursor: pointer; }
.theme25-services .service-item img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.theme25-services .service-item:hover img { transform: scale(1.06); }
.theme25-services .service-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(61, 94, 65, 0.72) 0%, transparent 55%); opacity: 0; transition: opacity 0.35s ease; pointer-events: none; }
.theme25-services .service-item:hover::after { opacity: 1; }
.theme25-services .service-label { position: absolute; bottom: 18px; left: 0; right: 0; text-align: center; font-family: var(--t25-font-display); font-size: 1.15rem; font-weight: 600; font-style: italic; color: #fff; letter-spacing: 0.5px; opacity: 0; transform: translateY(8px); transition: all 0.32s ease; z-index: 2; }
.theme25-services .service-item:hover .service-label { opacity: 1; transform: translateY(0); }
.services-save { text-align: center; }
/* =====================================================
   MAP SECTION
   ===================================================== */
.theme25-map { padding: 100px 32px; background: var(--t25-warm-white); text-align: center; }
.theme25-map .map-wrapper { max-width: 920px; margin: 0 auto; border-radius: var(--t25-radius-lg); overflow: hidden; box-shadow: var(--t25-shadow-lg); border: 1px solid var(--t25-border); }
.theme25-map .map-wrapper iframe { width: 100%; height: 420px; border: 0; display: block; }
/* =====================================================
   PAYMENT SECTION
   ===================================================== */
.theme25-payment { padding: 100px 32px; background: var(--t25-cream); text-align: center; }
.theme25-payment .upi-id { display: inline-block; background: var(--t25-warm-white); border: 1px solid var(--t25-border-warm); border-radius: var(--t25-radius-pill); padding: 11px 30px; font-family: var(--t25-font-body); font-size: 0.98rem; font-weight: 400; color: var(--t25-text-mid); margin-bottom: 48px; letter-spacing: 0.3px; }
.theme25-payment .upi-id strong { color: var(--t25-sage-dark); font-weight: 600; }
.theme25-payment .payment-icons { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; }
.theme25-payment .payment-icons a { display: flex; align-items: center; justify-content: center; background: var(--t25-warm-white); border: 1px solid var(--t25-border); border-radius: var(--t25-radius-md); padding: 20px 28px; box-shadow: var(--t25-shadow-sm); transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease; }
.theme25-payment .payment-icons a:hover { transform: translateY(-6px); box-shadow: var(--t25-shadow-md); border-color: rgba(122,158,126,0.30); }
.theme25-payment .payment-icons img { width: 80px; height: auto; display: block; }
/* =====================================================
   SOCIAL SECTION
   ===================================================== */
.contact-social-section-theme25 { padding: 100px 32px; background: var(--t25-sage-deep); text-align: center; }
.contact-social-section-theme25 .section-header .t25-label { background: rgba(255,255,255,0.10); color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.18); }
.contact-social-section-theme25 .section-title { color: var(--t25-warm-white); }
.contact-social-section-theme25 .section-subtitle { color: rgba(255,255,255,0.50); margin-bottom: 0; }
.contact-social-section-theme25 .social-cards { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 40px; }
.contact-social-section-theme25 .social-card { width: 88px; height: 88px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--t25-radius-md); display: flex; justify-content: center; align-items: center; text-decoration: none; transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease; }
.contact-social-section-theme25 .social-card:hover { transform: translateY(-8px) scale(1.05); background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.30); }
.contact-social-section-theme25 .social-card img { width: 42px; height: 42px; object-fit: contain; }
/* =====================================================
   BUTTON — THEME 25
   ===================================================== */
.btn-Know-theme25 { background: linear-gradient(135deg, var(--t25-sage), var(--t25-sage-dark)); color: #fff; box-shadow: 0 6px 24px rgba(92, 127, 96, 0.32); font-family: var(--t25-font-body); font-size: 0.9rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; }
.btn-Know-theme25:hover,
.btn-Know-theme25:focus { background: linear-gradient(135deg, var(--t25-sage-dark), var(--t25-sage-deep)); color: #fff; box-shadow: 0 10px 32px rgba(61, 94, 65, 0.40); }
/* =====================================================
   SLIDER SECTION
   ===================================================== */
.banner .slide-bg::before { background: linear-gradient(
    to bottom,
    rgba(20, 30, 18, 0.65) 0%,
    rgba(10, 18, 10, 0.55) 100%
  ); }
.slide-content h2 { font-family: var(--t25-font-display); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; font-style: italic; color: var(--t25-warm-white); margin-bottom: 12px; letter-spacing: -0.3px; }
.slide-content p { font-family: var(--t25-font-body); font-size: clamp(0.9rem, 2vw, 1.1rem); font-weight: 300; color: rgba(250, 247, 242, 0.85); margin-bottom: 28px; letter-spacing: 0.3px; }
/* =====================================================
   RESPONSIVE — TABLET (≤ 992px)
   ===================================================== */
@media (max-width: 992px) {
 .poster-content { flex-direction: column; gap: 48px; }
.poster-right { min-width: unset; width: 100%; }
.class-schedule { max-width: 480px; margin: 0 auto; }
.poster-divider { margin: 0 0 28px; }
.theme25-poster { padding: 72px 32px; }
.theme25-services .services-grid { grid-template-columns: repeat(2, 1fr); }
.theme25-services .service-item img { height: 220px; }
.contact-cards-theme25 { padding: 48px 20px; gap: 16px; }
 }
/* =====================================================
   RESPONSIVE — MOBILE (≤ 576px)
   ===================================================== */
@media (max-width: 576px) {
 .theme25-hero { height: 100svh; min-height: 500px; }
.theme25-hero .hero-content h1 { font-size: 3.2rem; }
.hero-symbol { font-size: 1.8rem; }
.theme25-hero .hero-tagline { font-size: 0.75rem; letter-spacing: 2px; }
/* Contact cards */
  .contact-cards-theme25 { padding: 38px 14px; gap: 12px; }
.contact-cards-theme25 .contact-card { padding: 28px 12px 22px; }
.contact-cards-theme25 .card-icon-wrap { width: 52px; height: 52px; }
.contact-cards-theme25 .contact-card img { width: 24px; height: 24px; }
.contact-cards-theme25 .contact-card p { font-size: 0.78rem; }
/* Poster */
  .theme25-poster { padding: 56px 20px; }
.poster-name { font-size: 2.4rem; }
.poster-certifications { gap: 8px; }
.cert-badge { font-size: 0.65rem; padding: 4px 11px; }
/* Schedule */
  .class-schedule { padding: 24px 20px; }
.schedule-heading { font-size: 1.1rem; }
.sch-time { font-size: 0.9rem; min-width: 58px; }
.sch-name { font-size: 0.85rem; }
/* Services */
  .theme25-services { padding: 64px 16px; }
.theme25-services .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
.theme25-services .service-item img { height: 155px; }
/* Map */
  .theme25-map { padding: 64px 16px; }
.theme25-map .map-wrapper iframe { height: 280px; }
/* Payment */
  .theme25-payment { padding: 64px 16px; }
.theme25-payment .payment-icons { gap: 14px; }
.theme25-payment .payment-icons a { padding: 14px 18px; }
.theme25-payment .payment-icons img { width: 64px; }
/* Social */
  .contact-social-section-theme25 { padding: 64px 16px; }
.contact-social-section-theme25 .social-card { width: 72px; height: 72px; }
.contact-social-section-theme25 .social-card img { width: 34px; height: 34px; }
/* Shared */
  .section-title { font-size: 1.9rem; }
.section-subtitle { font-size: 0.88rem; }
 }
/* =====================================================
   VERY SMALL (≤ 380px)
   ===================================================== */
@media (max-width: 380px) {
 .theme25-services .services-grid { grid-template-columns: 1fr; }
.theme25-services .service-item img { height: 200px; }
.hero-symbol { display: none; }
.poster-certifications { flex-direction: column; align-items: flex-start; }
 }
