:root {
    --gold: #C8960C;
    --deep-gold: #A07408;
    --light-gold: #F5D87A;
    --pale-gold: #FDF3D0;
    --maroon: #7B1C1C;
    --dark-maroon: #4A0E0E;
    --cream: #FBF6EC;
    --white: #FFFFFF;
    --text-dark: #1A1008;
    --text-mid: #4A3720;
    --text-light: #7A6040;
    --shadow: rgba(120, 70, 0, 0.18);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  *{
    box-sizing:border-box;
}

.hero-slider{
    width:100%;
    overflow:hidden;
    background:#fff8f1;
}
section.vedio-row {
    background: linear-gradient(160deg, var(--dark-maroon) 0%, #6B1515 45%, #8B2020 100%);
}

section.vedio-row {
    padding: 80px 0 80px;
}

section.vedio-row .row {
    align-items: center;
    justify-content: center;
}
.slides{
    width:200%;
    display:flex;
    animation:slider 10s infinite;
}
.gift-row-body li {
    font-size: 0.83rem;
    color: rgb(253 243 208);
    line-height: 1.65;
}

.gift-row-body ol {
    padding-left: 15px;
}
.hero{
    width:100%;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:80px 8%;
}

.hero-content-col{
    max-width:100%;
}

.hero-badge{
    display:inline-block;
    background:#f2d9b7;
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:20px;
    font-size:14px;
}


.hero-desc{
    font-size:18px;
    line-height:1.8;
}

.hero-cta-group{
    margin-top:30px;
    display:flex;
    gap:15px;
}

.btn-primary,
.btn-secondary{
    padding:15px 30px;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
}

.hero-img-col{
    text-align:center;
}
.hero-badge {
    text-align: center;
}
.video-inner {
    padding: 10px;
    background: #fff7e1;
    border-radius: 20px;
}

.video-inner video {
    border-radius: 20px;
}
.hero h1 {
    text-align: center;
}
@keyframes slider{
    0%,45%{
        transform:translateX(0);
    }
    50%,95%{
        transform:translateX(-50%);
    }
    100%{
        transform:translateX(0);
    }
}

/* Mobile */
@media(max-width:768px){

    .hero{
        flex-direction:column-reverse;
        text-align:center;
        min-height:auto;
        padding:60px 20px;
    }

    .hero-cta-group{
        justify-content:center;
        flex-wrap:wrap;
    }

}

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Noto Serif Tamil', 'Tiro Tamil', serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ── STICKY HEADER ── */
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 18px rgba(0,0,0,0.35);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  header a.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  header img.logo {
    height: 64px;
    width: auto;
    filter: drop-shadow(0 1px 6px rgba(0,0,0,0.5));
  }
  header .site-name
 {
    font-family: 'Cinzel', serif;
    font-size: 1.85rem;
    color: #6a1515;
    letter-spacing: 0.08em;
    line-height: 1.3;
    font-weight: 800;
    display: none;
}
  @media (min-width: 480px) { header .site-name { display: block; } }

 header .cta-top {
        background: #d61d1d;
    color: #f5d87a;
    font-family: 'Noto Serif Tamil', serif;
    font-weight: 700;
    font-size: 16px;
    padding: 9px 25px;
    border-radius: 5px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
    animation: pulseGlow 1.8s infinite;
}
  header .cta-top:hover {     background: var(--light-gold);
    transform: scale(1.04);
    color: #6a1515 !important; }

    .fixy-btn a:hover, .fixy-btn a:focus {
    background: #591111;
}

  /* ── HERO ── */
  .hero {
    position: relative;
    background: linear-gradient(160deg, var(--dark-maroon) 0%, #6B1515 45%, #8B2020 100%);
    overflow: hidden;
    padding: 60px 20px 80px;
    text-align: center;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8960C' fill-opacity='0.06'%3E%3Cpath d='M30 0l3.09 9.51H42.72l-8.32 6.04 3.09 9.51L30 19.02l-7.49 6.04 3.09-9.51L17.28 9.51H26.91z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
  }
  .hero-badge {
    display: inline-block;
    background: rgba(200,150,12,0.2);
    border: 1px solid var(--gold);
    color: var(--light-gold);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    padding: 5px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
    font-family: 'Cinzel', serif;
  }
  .hero h1 {
    font-family: 'Noto Serif Tamil', serif;
    font-size: clamp(2rem, 7vw, 20px);
    font-weight: 700;
    color: var(--light-gold);
    line-height: 1.25;
    margin-bottom: 10px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  }
  .hero h2 {
    font-family: 'Noto Serif Tamil', serif;
    font-size: clamp(1rem, 3.5vw, 19px);
    font-weight: 400;
    color: rgba(255,240,180,0.85);
    margin-bottom: 28px;
    font-style: italic;
  }
  .hero-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 30px;
  }
 .hero-desc {
    font-size: 16px;
    color: rgba(253, 243, 208, 0.9);
    line-height: 30px;
}
  .hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  @media (min-width: 480px) {
    .hero-cta-group { flex-direction: row; justify-content: center; }
  }
  .btn-primary {
    display: inline-block;
    background: #f5d87a;
    color: var(--dark-maroon);
    font-family: 'Noto Serif Tamil', serif;
    font-weight: 700;
    font-size: 18px;
    padding: 10px 50px;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(200, 150, 12, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,150,12,0.55); }
  .btn-secondary {
   display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f5d87a;
    font-family: 'Noto Serif Tamil', serif;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    border: 1px solid rgb(245 216 122);
    padding: 10px 50px;
    border-radius: 5px;
    transition: background 0.2s;
  }
  .btn-secondary:hover { background: rgba(200,150,12,0.12); }
  /* ── HERO LAYOUT: two-column on desktop ── */
  .hero {
    padding: 0 !important;
    grid-template-columns: 1fr;
  }
  @media (min-width: 768px) {
    .hero { grid-template-columns: 1fr 1fr; min-height: 560px; }
  }
  .hero-content-col {
    padding: 10px 10px 10px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
  }
  @media (max-width: 767px) {
    .guru-inner {
    flex-direction: column;
}
.guru-content {
    text-align: center;
}
    .hero-content-col { padding: 44px 22px 36px; text-align: center; }
    .hero-cta-group { justify-content: center; }
  }
  .hero-badge {
    margin-bottom: 18px;
    display: inline-block;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
}


  .hero h1 { margin-bottom: 8px; }
  .hero h2 { margin-bottom: 20px; }
  .hero-divider { margin: 0 0 22px 0; }
  @media (max-width: 767px) {
    .hero-divider { margin: 0 auto 22px; }
  }
  .hero-desc { margin: 0 0 30px 0; max-width: 100%; }

  /* Guru image column */
  .hero-img-col {
    position: relative;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
/*  .hero-img-col::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--dark-maroon) 0%, transparent 30%);
    z-index: 2;
    pointer-events: none;
  }*/
  @media (max-width: 767px) {
    .hero-img-col::before { background: linear-gradient(0deg, var(--dark-maroon) 0%, transparent 50%); }
  }
  .hero-guru-photo {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    /* object-position: top center; */
    /* position: absolute; */
    /* inset: 0; */
    /* display: block; */
}
  @media (max-width: 767px) {
    .hero-guru-photo { position: relative; inset: auto; width: 100%; height: 100%; }
    .hero-img-col { min-height: 0; }
  }

  /* Stats badges row */
  .hero-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
  }
  @media (max-width: 767px) { .hero-stats { justify-content: center; } }
  .hero-stat-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(200,150,12,0.4);
    border-radius: 14px;
    padding: 20px 18px;
    backdrop-filter: blur(6px);
    min-width: 180px;
    position: relative;
    overflow: hidden;
  }
  .hero-divider {
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    align-items: center;
    justify-content: center;
}
  .hero-stat-badge::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--light-gold));
  }
  .hero-stat-badge .s-num {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f5d87a;
    line-height: 1;
  }
  .hero-stat-badge .s-label {
    font-size: 14px;
    color: rgb(245 216 122);
    margin-top: 4px;
    text-align: center;
    letter-spacing: 0.03em;
}

  /* ── CONTACT / ENROLLMENT FORM ── */
  .form-section-bg {
    background: linear-gradient(135deg, var(--pale-gold) 0%, #FFF8E0 100%);
    position: relative;
    overflow: hidden;
  }
  .form-section-bg::before {
    content: '✦';
    position: absolute;
    font-size: 18rem;
    color: rgba(200,150,12,0.04);
    top: -60px; right: -60px;
    pointer-events: none;
    line-height: 1;
  }
  @media (min-width: 680px) { .form-wrap { grid-template-columns: 1fr 1fr; } }

  .form-info h3 {
    font-family: 'Noto Serif Tamil', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-maroon);
    margin-bottom: 18px;
  }
  .form-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
  }
  .form-info-item .fi-icon {
    width: 38px; height: 38px;
    background: var(--dark-maroon);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }
  .form-info-item a {
    text-decoration: none;
}
  .form-info-item .fi-text strong { display: block; font-size: 0.88rem; color: var(--dark-maroon); }
  .form-info-item .fi-text span { font-size: 16px;
    color: #000; }

  .enroll-form {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 6px 32px rgba(120,70,0,0.12);
    border: 1px solid rgba(200,150,12,0.2);
  }
  .enroll-form h3 {
    font-family: 'Noto Serif Tamil', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-maroon);
    margin-bottom: 6px;
  }
  .enroll-form p.form-sub {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 22px;
  }
  .form-group { margin-bottom: 16px; }
  .form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 6px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid rgba(200,150,12,0.3);
    border-radius: 10px;
    font-family: 'Noto Serif Tamil', serif;
    font-size: 0.88rem;
    color: var(--text-dark);
    background: var(--cream);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,150,12,0.12);
    background: var(--white);
  }
  .form-group textarea { resize: vertical; min-height: 80px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  @media (max-width: 400px) { .form-row { grid-template-columns: 1fr; } }
  .form-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--dark-maroon), var(--maroon));
    color: var(--light-gold);
    font-family: 'Noto Serif Tamil', serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(74,14,14,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .form-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,14,14,0.4); }
  .form-privacy { font-size: 0.72rem; color: var(--text-light); text-align: center; margin-top: 10px; }

  /* Success message */
  .form-success {
    display: none;
    background: linear-gradient(135deg, #e8f8e8, #f0fff0);
    border: 1.5px solid #4CAF50;
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    margin-top: 12px;
  }
  .form-success .success-icon { font-size: 2.5rem; margin-bottom: 8px; }
  .form-success h4 { color: #2e7d32; font-size: 1rem; margin-bottom: 6px; }
  .form-success p { font-size: 0.85rem; color: #4a7a4a; }

  /* ── SECTION WRAPPER ── */
  .section { padding: 64px 20px; }
/*  .section-inner { max-width: 1200px; margin: 0 auto; }*/
  .section-title {
    font-family: 'Noto Serif Tamil', serif;
    font-size: clamp(1.4rem, 4.5vw, 2rem);
    font-weight: 700;
    color: var(--dark-maroon);
    text-align: center;
    margin-bottom: 10px;
  }
  .section-sub {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 40px;
    font-style: italic;
  }
  .gold-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 12px auto 36px;
    border-radius: 2px;
  }

  /* ── PURPOSE SECTION ── */
  .purpose-bg { background: var(--white); }
  .purpose-box {
    background: linear-gradient(135deg, var(--pale-gold) 0%, #FFF9E8 100%);
    border: 1px solid rgba(200,150,12,0.25);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 4px 24px var(--shadow);
  }
  .purpose-box p {
    font-size: clamp(1rem, 2.5vw, 1.18rem);
    line-height: 2;
    color: var(--text-mid);
  }
  .purpose-box strong { color: var(--dark-maroon); font-weight: 700; }

  /* ── BENEFITS GRID ── */
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 8px;
  }
  .benefit-card {
    background: var(--white);
    border-radius: 14px;
    padding: 28px 22px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 3px 16px var(--shadow);
    transition: transform 0.2s;
    margin-bottom: 20px;
    height: 230px;
  }
  .benefit-card:hover { transform: translateY(-4px); }
  .benefit-icon { font-size: 2rem; margin-bottom: 12px; }
  .benefit-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-maroon);
    margin-bottom: 8px;
  }
  .benefit-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

  /* ── TWO WINGS ── */
  .wings-bg { background: linear-gradient(180deg, var(--cream) 0%, #F5E8C0 100%); }
  .wings-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  @media (max-width: 560px) { .wings-container { grid-template-columns: 1fr; } }
  .wing-card {
    background: var(--white);
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 24px var(--shadow);
    border-top: 5px solid var(--gold);
  }
  .wing-card .wing-icon { font-size: 3rem; margin-bottom: 14px; }
  .wing-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-maroon);
    margin-bottom: 10px;
  }
  .wing-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.8; }

  /* ── GURU SECTION ── */
  .guru-bg { background: var(--dark-maroon); }
  .guru-inner img {width:100%;}
  .guru-inner {
    display: flex;
    gap: 160px;
    align-items: center;
}
  @media (min-width: 640px) {
    .guru-inner { grid-template-columns: auto 1fr; }
  }
 /* .guru-portrait {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(145deg, #8B2020, var(--dark-maroon));
    border: 5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5.5rem;
    margin: 0 auto;
    box-shadow: 0 8px 36px rgba(0,0,0,0.5), 0 0 0 8px rgba(200,150,12,0.15);
  }*/
  .guru-content h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.2rem, 4vw, 1.7rem);
    color: var(--light-gold);
    margin-bottom: 6px;
  }
  .guru-content .guru-title {
    color: rgba(245,216,122,0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-style: italic;
  }
  .guru-content p {
    color: rgb(253 243 208);
    font-size: clamp(0.88rem, 2.2vw, 1rem);
    line-height: 1.9;
    margin-bottom: 16px;
  }
  .stat-row {
    display: flex;
    gap: 28px;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
}
  .stat-item { text-align: center; }
  .stat-num {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
  }
  .stat-label { font-size: 0.75rem; color: rgba(245,216,122,0.7); display: block; margin-top: 2px; }

  /* ── FREE GIFTS ── */
  .gifts-bg {
    background: linear-gradient(160deg, var(--dark-maroon) 0%, #6B1515 50%, #3A0808 100%);
    position: relative;
    overflow: hidden;
  }
  .gifts-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='%23C8960C' fill-opacity='0.08'/%3E%3C/svg%3E") repeat;
    pointer-events: none;
  }
  .gifts-bg .section-title { color: var(--light-gold); }
  .gifts-bg .section-sub { color: rgba(245,216,122,0.65); }
  .gifts-bg .gold-line { background: var(--gold); }
  .gifts-center-badge {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--gold), var(--deep-gold));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    margin: 0 auto 36px;
    box-shadow: 0 0 0 8px rgba(200,150,12,0.15), 0 4px 24px rgba(0,0,0,0.4);
  }
  .gifts-ribbon { display: flex; flex-direction: column; gap: 16px; max-width: 700px; margin: 0 auto; }
  .gift-row {
    display: flex; align-items: stretch;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,150,12,0.25);
    border-radius: 16px; overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
    backdrop-filter: blur(4px);
  }
  .gift-row:hover { transform: translateX(6px); border-color: rgba(200,150,12,0.6); }
  .gift-row-num {
    min-width: 100px;
    background: var(--light-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 16px 10px;
  }
  .gift-row-num span.num-digit { font-family: 'Cinzel', serif; font-size: 1.4rem; font-weight: 700; color: var(--dark-maroon); line-height: 1; }
  .gift-row-num span.num-free { font-size: 0.55rem; font-weight: 800; color: var(--dark-maroon); letter-spacing: 0.12em; background: rgba(0,0,0,0.15); padding: 2px 5px; border-radius: 4px; }
  .gift-row-icon { width: 60px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; background: rgba(200,150,12,0.08); border-right: 1px solid rgba(200,150,12,0.15); flex-shrink: 0; }
  .gift-row-body { flex: 1; padding: 18px 20px; display: flex; flex-direction: column; justify-content: center; }
  .gift-row-body h3 { font-size: 1rem; font-weight: 700; color: var(--light-gold); margin-bottom: 5px; }
  .gift-row-body p { font-size: 0.83rem; color: rgb(253 243 208); line-height: 1.65; }
  .gift-row-arrow { display: flex; align-items: center; padding: 0 16px; color: rgba(200,150,12,0.4); font-size: 1.2rem; flex-shrink: 0; }
  .gifts-total-strip {
    max-width: 700px;
    margin: 24px auto 0;
    background: var(--light-gold);
    border-radius: 5px;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    flex-wrap: wrap;
  }
  .gifts-total-strip .total-label { font-family: 'Noto Serif Tamil', serif; font-weight: 700; color: var(--dark-maroon); font-size: 0.95rem; }
  .gifts-total-strip .total-free { font-family: 'Cinzel', serif; font-weight: 700; color: var(--dark-maroon); font-size: 1.2rem; background: rgba(0,0,0,0.12); padding: 3px 14px; border-radius: 20px; }
  @media (max-width: 480px) {
    .gift-row-icon { width: 44px; font-size: 1.4rem; }
    .gift-row-num { min-width: 44px; }
    .gift-row-body { padding: 14px 14px; }
    .gift-row-arrow { padding: 0 10px; }
  }

  /* ── TRANSFORMATION ── */
  .transform-bg { background: var(--pale-gold); }
  .transform-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    list-style: none;
  }
  .gift-row-icon {
    display: none;
}
  .transform-list li {
    background: var(--white);
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 2px 10px var(--shadow);
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.7;
  }
  .transform-list li::before {
    content: '✦';
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
  }

  /* ── REGISTER SECTION ── */
  .register-bg {
    background: linear-gradient(135deg, var(--dark-maroon) 0%, #8B2020 100%);
    text-align: center;
  }
  .register-bg .section-title { color: var(--light-gold); }
  .register-bg .section-sub { color: rgba(245,216,122,0.75); }
  .register-box {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(200,150,12,0.35);
    border-radius: 20px;
    padding: 44px 28px;
    max-width: 560px;
    margin: 0 auto;
    backdrop-filter: blur(4px);
  }
  .register-box .big-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--deep-gold));
    color: var(--dark-maroon);
    font-family: 'Noto Serif Tamil', serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 42px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(200,150,12,0.5);
    transition: transform 0.2s, box-shadow 0.2s;
    display: block;
    margin-bottom: 20px;
  }
  .register-box .big-cta:hover { transform: scale(1.04); box-shadow: 0 8px 32px rgba(200,150,12,0.65); }
  .register-box .phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--light-gold);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.2s;
  }
  .register-box .phone-link:hover { color: var(--gold); }
  .register-box .phone-link .ph-icon { font-size: 1.3rem; }
  .register-box small { display: block; color: rgba(245,216,122,0.55); font-size: 0.78rem; margin-top: 16px; }

  /* ── URGENCY STRIP ── */
  .urgency {
    background: var(--gold);
    color: var(--dark-maroon);
    text-align: center;
    padding: 14px 20px;
    font-weight: 700;
    font-size: 0.95rem;
  }
  .urgency span { margin: 0 12px; }

  /* ── FOOTER ── */
  footer {
    background: #1A0808;
    color: var(--light-gold);
    text-align: center;
    padding: 32px 20px 100px;
    font-size: 1rem;
    line-height: 2;
}
  footer a { color: var(--light-gold); text-decoration: none; }
  footer a:hover { text-decoration: underline; }
  footer .footer-logo { margin-bottom: 14px; }
  footer .footer-logo img { height: 180px; opacity: 0.85; }

  /* ── PULSE ANIMATION ── */
  @keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(200,150,12,0.45); }
    50% { box-shadow: 0 4px 36px rgba(200,150,12,0.8); }
  }
  .btn-primary { animation: pulse 2.5s ease-in-out infinite; }

  /* ── WHATSAPP FLOAT ── */
  .wa-float {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    text-decoration: none;
    font-size: 1.7rem;
    transition: transform 0.2s;
  }
  .wa-float:hover { transform: scale(1.12); }
  .hero-divider {
    margin-left: auto;
    margin-right: auto;
}
.wa-float img {
    width: 30px;
}
section#enroll .section-inner {
    max-width: 1200px;
}
.timer-box {
    width: 80px;
    height: 70px;
    border-radius: 10px;
    background: rgb(106 21 21);
    backdrop-filter: blur(15px);
    border: 1px solid 1px solid var(--gold);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.event-countdown {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}
.event-countdown {
    margin-top: 0px;
    margin-bottom: 0px;
}
.timer-box p {
    color: #fff;
    margin-top: 0px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
}
.timer-box span {
    color: #f5d87a;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
}
.hero h2 {
    text-align: center;
}
p.hero-desc {
    text-align: center;
}
div#register h3 {
    text-align: center;
}

p.form-sub {
    text-align: center;
}

.fixed-bar
 {
       position: fixed;
    bottom: 0;
    background: #f1f1f1;
    width: 100%;
    height: 90px;
    z-index: 999;
    padding: 10px 0;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}
.wing-icon img {
    width: 65px;
}
.fixed-bar .fix-wrap {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
}

.fixy-btn a {
    background: #d61d1d;
    color: #f5d87a;
    font-family: 'Noto Serif Tamil', serif;
    font-weight: 700;
    font-size: 16px;
    padding: 9px 25px;
    border-radius: 5px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
    animation: pulseGlow 1.8s infinite;
}
@keyframes pulseGlow{
    0%,100%{
        transform: scale(1);
        filter: brightness(1);
    }
    50%{
        transform: scale(1.1);
        filter: brightness(1.25);
    }
}
.fix-left {
    text-align: center;
}

.fix-left h3 {
    text-transform: uppercase;
    color: #6a1515;
}















.fix-title h3 {
    font-size: 16px;
    text-align: center;
    color: red;
    font-weight: 800;
}

.enroll-form {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


section#enroll .gold-line {
    margin: 12px auto 15px !important;
}
section#enroll  .logo-wrap img {
    width: 200px;
    margin: 0 auto;
}

section#enroll  .logo-wrap {
    margin: 0 auto 20px;
    text-align: center;
}

section#enroll  h3.site-name {
    font-family: 'Cinzel', serif;
    font-size: 1.85rem;
    color: #6a1515;
    letter-spacing: 0.08em;
    line-height: 1.3;
    font-weight: 800;
}

section#enroll .fix-title h3 {
    font-size: 28px !important;
}

.reg-texts {
    margin-bottom: 30px;
}

@media(max-width:767px){


.logo-wrap img {
    width: 200px;
    margin: 0 auto;
}

.logo-wrap {
    margin: 0 auto 0px;
    text-align: center;
}

h3.site-name {
    font-family: 'Cinzel', serif;
    font-size: 1.85rem;
    color: #6a1515;
    letter-spacing: 0.08em;
    line-height: 1.3;
    font-weight: 800;
}

section#enroll .fix-title h3 {
    font-size: 28px !important;
}

.reg-texts {
    margin-bottom: 30px;
}
.enroll-form {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

section#enroll .timer-box {
        width: 50px !important;
        height: 50px !important;
    }


  .stat-num {
    font-size: 14px !important;
}

.stat-label {
    font-size: 10px !important;
}

.stat-row {
    align-items: center;
    justify-content: center;
}

.hero-cta-group a {
    width: 265px;
    text-align: center !important;
    display: block;
}
.fixed-bar {
    width: 100%;
}

.fixy-btn a {
    font-size: 12px !important;
}

.fix-left h3 {
    font-size: 12px;
}

.fixed-bar .fix-wrap {
    gap: 15px !important;
}

.fixed-bar {
    height: 90px;
        border-radius: 0px !important;
        padding-left: 10px;
        padding-right: 10px !important;
}

.timer-box {
    width: 35px !important;
    height: 35px !important;
}


.guru-inner {
    gap: 30px;
}
.guru-inner img {
    width: 100%;
}
.guru-portrait {
    width: 100%;
    height: 100%;
    background: transparent !important;
    border: none !important;
}
.timer-box p {
    font-size: 6px !important;
    font-weight: 600 !important;
    letter-spacing: 0px !important;
    line-height: 6px !important;
}
.event-countdown {
    gap: 5px !important;

}
.timer-box span{
  font-size: 16px !important;
        line-height: 16px !important;
}
.fixy-btn p {
    text-align: center;
    margin-bottom: 10px;
    color: red;
    text-transform: uppercase;
    font-weight: 700;
}

.fix-right {
    text-align: center;
}
.fix-title h3 {
    font-size: 16px;
    text-align: center;
    color: red;
    font-weight: 800;
            font-family: 'Cinzel', serif;
        margin-bottom: 0px;
        text-transform: capitalize !important;
}

}





.fixy-btn p {
    text-align: center;
    margin-bottom: 10px;
    color: red;
    text-transform: uppercase;
    font-weight: 700;
   
    font-size: 14px;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}
.timer-box p {
    margin-bottom: 0px;
}
@media(min-width:1025px){
  .fix-title h3 {
    font-size: 28px !important;
        text-align: center;
        color: #d61d1d;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: 'Cinzel', serif;
        margin-bottom: 0px;
}
}




@keyframes zoomLight {
    0%{
        transform: scale(1);

    }
    50%{
        transform: scale(1.08);
    }
    100%{
        transform: scale(1.1);
    }
}






























@media(min-width:1200px) and (max-width: 1479px) {
  .hero h1 {
    font-size: 28px !important;
    text-align: center;
}
.hero h2 {
    margin-bottom: 10px !important;
}
.hero h2 {
    font-size: 14px !important;
}

.btn-primary
 {
    font-size: 16px !important;
    padding: 10px 30px !important;
}
.hero-content-col {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}
p.hero-desc {
    font-size: 16px !important;
}
.hero-desc {
    margin: 0 0 0px 0 !important;
}
.hero { grid-template-columns: 1fr 1fr; min-height: 430px !important; }

.hero-content-col {
    padding: 0px 20px 0px 20px !important;
}


}


@media (max-width: 767px){

.video-inner {
    padding: 10px 10px 5px !important;
    margin: 0 10px !important;
}



  .urgency div{
    display:inline-block;
    animation:marquee 15s linear infinite;
}
.urgency{
  padding: 10px 5px !important;
  background: #fcf4b1 !important;
}
    .urgency span {
        font-size: 14px;
        color: var(--dark-maroon) !important;
    }

.hero-badge {
        color: rgb(253 243 208) !important;
        font-weight: 600 !important;
        font-size: 14px !important;
        width: 100% !important;
    }

.stat-num {
    color: rgb(253 243 208) !important;
}
.hero h2 {
    margin-bottom: 10px !important;
}

.hero-content-col.item1 {
    padding-top: 0px !important;
    padding-bottom: 30px !important;
}
span.stat-label {
    color: rgb(253 243 208) !important;
}

section.section.gifts-bg h2.section-title {
    line-height: 38px !important;
            font-size: 20px !important;
}





.urgency span {
    margin: 0 5px;
}
/*
@keyframes marquee{
    from{
        transform:translateX(100vw);
    }
    to{
        transform:translateX(-100%);
    }
}*/
.hero-desc {
    margin: 0 0 0px 0 !important;
    max-width: 100%;
}
.hero h1 {
    font-size: 24px !important;
}
.hero-desc {
    font-size: 16px !important;
    line-height: 25px !important;
}
.guru-portrait {
    margin-bottom: 30px;
}
.hero h2{
  line-height: 25px !important;
  font-size: 14px !important;
}
.item1{ order:2; }
.item2{ order:1; }
.hero.slide2 {
    margin-top: -10px;
}
.section {
    padding: 50px 0px !important;
}
footer strong {
    font-size: 18px !important;
    margin-bottom: 20px !important;
    line-height: 20px !important;
}


span.ft-copy {
    opacity: 1 !important;
    line-height: 2px !important;
}
.gift-row {
    flex-direction: column;
}
.gift-row-arrow {
    display: none;
}
.gift-row-num {
    flex-direction: row;
}
.gift-row-num span.num-free {
    color: #fff !important;
    background: red !important;
    font-family: 'Cinzel', serif !important;
}


}