/* ===== TVEWU — style.css ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Noto Sans Tamil', 'Poppins', sans-serif;
  background: #0d0600;
  color: #f0d9b5;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ===== Reusable ===== */
.section-title {
  font-family: 'Noto Serif Tamil', 'Playfair Display', serif;
  font-size: 40px; font-weight: 900;
  color: #D4A017; text-align: center; margin: 0 0 12px;
}
.section-title.left { text-align: left; }
.section-sub {
  font-family: 'Noto Sans Tamil', 'Poppins', sans-serif;
  font-size: 16px; color: #f0d9b5;
  text-align: center; margin: 0 auto 40px; max-width: 720px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #1a0a00;
  border-bottom: 2px solid #D4A017;
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,0.55); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 12px 32px; max-width: 1400px; margin: 0 auto;
}
.logo-wrap { display: flex; align-items: center; }
.logo-img {
  width: 60px; height: 60px; border-radius: 50%;
  border: 2px solid #D4A017;
  box-shadow: 0 0 12px rgba(212,160,23,0.4);
  object-fit: cover; background: #0d0600;
}
.tvk-banner {
  display: flex; flex-direction: column; align-items: center;
  padding: 4px 12px;
  border-left: 2px solid #D4A017; border-right: 2px solid #D4A017;
  filter: drop-shadow(0 0 6px rgba(212,160,23,0.4));
}
.tvk-banner img { height: 68px; width: auto; object-fit: contain; }
.tvk-caption {
  font-family: 'Noto Sans Tamil', sans-serif;
  font-size: 10px; color: #D4A017; letter-spacing: 0.5px; margin-top: 4px;
  text-align: center;
}
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-family: 'Noto Sans Tamil', sans-serif;
  font-size: 15px; color: #f0d9b5; font-weight: 600;
  transition: color 0.2s ease;
}
.main-nav a:hover { color: #D4A017; }
.main-nav .nav-cta {
  background: #D4A017; color: #1a0a00;
  padding: 8px 18px; border-radius: 6px; font-weight: 700;
}
.main-nav .nav-cta:hover { background: #ffcc00; color: #1a0a00; }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; padding: 6px;
}
.hamburger span {
  display: block; width: 100%; height: 3px;
  background: #D4A017; margin: 4px 0; border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0d0600 0%, #3d0000 50%, #1a0a00 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g stroke='%23D4A017' stroke-width='0.6' fill='none' opacity='0.6'><path d='M0 20h30v20h20v40'/><path d='M0 60h20v-20h40v40h20'/><circle cx='30' cy='40' r='2'/><circle cx='50' cy='60' r='2'/></g></svg>");
  opacity: 0.06; pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 58% 42%;
  align-items: center; gap: 40px;
  padding: 100px 80px 60px; max-width: 1400px; margin: 0 auto;
}
.hero-headline {
  font-family: 'Noto Serif Tamil', 'Playfair Display', serif;
  font-size: 52px; font-weight: 900; line-height: 1.2; margin: 0;
}
.hero-headline .line-gold,
.hero-headline .line-white { display: block; }
.hero-headline .line-gold { color: #D4A017; }
.hero-headline .line-white { color: #ffffff; }
.hero-sub {
  font-family: 'Noto Sans Tamil', sans-serif;
  font-size: 20px; color: #f0d9b5; margin-top: 16px;
}
.hero-body {
  font-family: 'Noto Sans Tamil', sans-serif;
  font-size: 16px; color: #d4b896; line-height: 1.8;
  max-width: 480px; margin-top: 12px;
}
.hero-ctas {
  display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 50px;
  font-family: 'Noto Sans Tamil', 'Poppins', sans-serif;
  font-size: 15px; font-weight: 700;
  transition: all 0.25s ease; cursor: pointer; border: none;
}
.btn-gold { background: #D4A017; color: #1a0a00; }
.btn-gold:hover { background: #ffcc00; transform: scale(1.04); box-shadow: 0 6px 28px rgba(212,160,23,0.5); }
.btn-wa { background: #25D366; color: #ffffff; }
.btn-wa:hover { background: #1ebe5d; transform: scale(1.04); }

.hero-image-wrap { text-align: center; }
.hero-image-inner {
  position: relative; display: inline-block;
}
.hero-image {
  max-height: 480px; width: auto; margin: 0 auto;
  border-radius: 12px; border: 3px solid #D4A017;
  box-shadow: 0 0 40px rgba(212,160,23,0.5), 0 0 80px rgba(212,160,23,0.2);
  animation: heroImageFloat 4s ease-in-out infinite alternate;
}
@keyframes heroImageFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-12px); }
}
.hero-image-fallback {
  display: none;
  width: 320px; height: 420px;
  background: linear-gradient(180deg, #3d0000, #1a0a00);
  border: 3px solid #D4A017; border-radius: 12px;
  align-items: center; justify-content: center;
  color: #D4A017; font-family: 'Noto Serif Tamil', serif;
  font-size: 28px; font-weight: 900;
}
.hero-badge {
  position: absolute; top: 16px; left: -12px; z-index: 2;
  background: #D4A017; color: #1a0a00;
  font-family: 'Noto Sans Tamil', sans-serif;
  font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 0 20px 20px 0;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}
.hero-name {
  font-family: 'Noto Serif Tamil', serif;
  font-size: 22px; color: #D4A017; font-weight: 700;
  margin-top: 12px; letter-spacing: 1px;
}

/* ===== STATS ===== */
.stats { background: #D4A017; padding: 32px 40px; }
.stats-row {
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px;
  max-width: 1200px; margin: 0 auto;
}
.stat { text-align: center; min-width: 140px; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 700; color: #1a0a00; line-height: 1;
}
.stat-label {
  font-family: 'Noto Sans Tamil', sans-serif;
  font-size: 14px; color: #3d0000; font-weight: 600; margin-top: 6px;
}

/* ===== REGISTER ===== */
.register-section { background: #0d0600; padding: 80px 40px; }
.register-card {
  max-width: 680px; margin: 0 auto;
  background: #ffffff; border: 1px solid #D4A017;
  border-radius: 16px; padding: 48px 40px;
  box-shadow: 0 8px 40px rgba(212,160,23,0.25);
}
.field-group { margin-bottom: 18px; }
.field-group label {
  display: block; font-family: 'Poppins', sans-serif;
  font-size: 13px; color: #1a0a00; font-weight: 600; margin-bottom: 6px;
}
.field-group input[type="text"],
.field-group input[type="tel"],
.field-group input[type="date"] {
  width: 100%;
  background: #ffffff; color: #1a0a00;
  border: 1.5px solid #d4b896; border-radius: 8px;
  padding: 12px 16px; font-family: 'Poppins', sans-serif; font-size: 15px;
  transition: all 0.2s ease;
}
.field-group input::placeholder { color: #8a7460; }
.field-group input:focus {
  outline: none; border-color: #D4A017;
  box-shadow: 0 0 0 3px rgba(212,160,23,0.2);
}
.pill-group { display: flex; gap: 12px; flex-wrap: wrap; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 50px;
  border: 1.5px solid #d4b896; background: #ffffff;
  color: #1a0a00; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 500;
  transition: all 0.2s ease;
}
.pill input { display: none; }
.pill.selected,
.yn-pill:has(input:checked) {
  background: #D4A017; color: #1a0a00; border-color: #D4A017; font-weight: 700;
}
.pill-female { cursor: default; }
.conditional {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, margin-bottom 0.3s ease, opacity 0.3s ease;
  opacity: 0; margin-bottom: 0;
}
.conditional.open { max-height: 120px; opacity: 1; margin-bottom: 18px; }
.hp-field {
  position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0;
}
.submit-btn {
  width: 100%; background: #D4A017; color: #1a0a00;
  font-family: 'Noto Sans Tamil', 'Poppins', sans-serif;
  font-size: 18px; font-weight: 700;
  padding: 16px; border-radius: 10px; border: none; cursor: pointer;
  transition: all 0.25s ease; margin-top: 8px;
}
.submit-btn:hover {
  background: #ffcc00; transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,160,23,0.4);
}
.submit-btn:disabled { opacity: 0.7; cursor: progress; }
.msg { padding: 20px; border-radius: 10px; margin-top: 20px; text-align: center;
  font-family: 'Noto Sans Tamil', sans-serif; }
.success-msg { background: rgba(37,211,102,0.1); border: 1px solid #25D366; color: #25D366; font-size: 18px; }
.error-msg { background: rgba(220,38,38,0.1); border: 1px solid #dc2626; color: #dc2626; font-size: 16px; }
.err-msg {
  display: block; min-height: 16px;
  color: #ff6b6b; font-size: 12px; margin-top: 4px;
  font-family: 'Noto Sans Tamil', sans-serif;
}

/* ===== TEAM ===== */
.team-section {
  background: linear-gradient(180deg, #0d0600, #1a0a00);
  padding: 80px 40px;
}
.team-cards {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.team-card {
  width: 280px; background: #1a0a00;
  border: 1.5px solid #D4A017; border-radius: 16px;
  padding: 36px 24px; text-align: center;
  box-shadow: 0 4px 24px rgba(212,160,23,0.12);
  transition: all 0.3s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(212,160,23,0.25);
}
.team-photo {
  width: 120px; height: 120px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 16px;
  border: 3px solid #D4A017;
  box-shadow: 0 0 20px rgba(212,160,23,0.3);
}
.team-photo.fallback {
  background: #D4A017; color: #1a0a00;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700;
}
.team-name { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700; color: #fff; margin: 0 0 6px; }
.team-role { font-family: 'Noto Sans Tamil', sans-serif; font-size: 14px; color: #D4A017; }
.team-phone { font-family: 'Poppins', sans-serif; font-size: 13px; color: #f0d9b5; margin: 8px 0; }
.call-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: #D4A017; color: #1a0a00;
  border-radius: 50px; padding: 10px 24px;
  font-weight: 700; font-size: 14px;
  transition: background 0.2s ease;
}
.call-btn:hover { background: #ffcc00; }

/* ===== ABOUT ===== */
.about-section { background: #0d0600; padding: 80px 40px; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; max-width: 1200px; margin: 0 auto;
}
.about-text p {
  font-family: 'Noto Sans Tamil', sans-serif;
  font-size: 16px; color: #f0d9b5; line-height: 1.9; margin: 0 0 16px;
}
.about-list { list-style: none; padding: 0; margin: 24px 0 0; }
.about-list li {
  font-family: 'Noto Sans Tamil', sans-serif;
  font-size: 15px; color: #f0d9b5; padding: 8px 0;
  display: flex; gap: 10px; align-items: flex-start;
}
.about-list .check { color: #D4A017; }
.about-mandala { display: flex; justify-content: center; align-items: center; }
.mandala {
  position: relative; width: 300px; height: 300px;
}
.m-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #D4A017; opacity: 0.5;
}
.m-ring.r1 { transform: scale(1); }
.m-ring.r2 { transform: scale(0.72); border-style: dashed; opacity: 0.4; }
.m-ring.r3 { transform: scale(0.44); opacity: 0.7; }
.m-star {
  position: absolute; inset: 0; margin: auto;
  width: 60px; height: 60px;
  background: #D4A017; transform: rotate(45deg);
  box-shadow: 0 0 40px rgba(212,160,23,0.6);
}

/* ===== OFFER ===== */
.offer-section { background: #1a0a00; padding: 80px 40px; }
.offer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.offer-card {
  background: #0d0600; border: 1px solid #4a2800;
  border-radius: 12px; padding: 28px 24px; text-align: center;
  transition: all 0.3s ease;
}
.offer-card:hover { border-color: #D4A017; transform: translateY(-4px); }
.offer-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(212,160,23,0.15); color: #D4A017;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 16px;
}
.offer-card h3 {
  font-family: 'Noto Sans Tamil', sans-serif;
  font-size: 18px; color: #D4A017; font-weight: 700; margin: 0 0 8px;
}
.offer-card p {
  font-family: 'Noto Sans Tamil', sans-serif;
  font-size: 14px; color: #f0d9b5; line-height: 1.7; margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: #0d0600; padding: 80px 40px; }
.testi-row { display: flex; gap: 24px; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; }
.testi-card {
  flex: 1; min-width: 260px;
  background: #1a0a00; border-left: 4px solid #D4A017;
  border-radius: 12px; padding: 28px 24px;
  position: relative;
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 48px; color: #D4A017; opacity: 0.3; line-height: 1;
}
.testi-quote {
  font-family: 'Noto Sans Tamil', sans-serif;
  font-size: 15px; color: #f0d9b5; line-height: 1.8;
  font-style: italic; margin: 0 0 16px;
}
.testi-name { font-family: 'Noto Sans Tamil', sans-serif; font-size: 16px; color: #D4A017; font-weight: 700; }
.testi-role { font-family: 'Noto Sans Tamil', sans-serif; font-size: 13px; color: #d4b896; }
.stars { color: #D4A017; font-size: 16px; margin-bottom: 8px; letter-spacing: 2px; }

/* ===== FOOTER ===== */
.site-footer { background: #080300; border-top: 2px solid #D4A017; padding: 60px 40px 24px; }
.footer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  max-width: 1300px; margin: 0 auto;
}
.footer-col h4 {
  font-family: 'Noto Sans Tamil', sans-serif;
  font-size: 16px; color: #D4A017; margin: 0 0 16px; font-weight: 700;
}
.footer-logo { width: 50px; height: 50px; border-radius: 50%; border: 2px solid #D4A017; margin-bottom: 12px; }
.footer-brand { font-family: 'Noto Serif Tamil', serif; font-size: 18px; color: #D4A017; margin: 8px 0; }
.footer-tag { font-family: 'Noto Sans Tamil', sans-serif; font-size: 14px; color: #f0d9b5; margin-bottom: 16px; }
.footer-anjali {
  display: flex; align-items: center; gap: 12px;
  background: rgba(212,160,23,0.08); padding: 10px;
  border-radius: 10px; border: 1px solid rgba(212,160,23,0.3);
  margin-bottom: 16px;
}
.footer-anjali img {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; border: 2px solid #D4A017;
}
.footer-anjali span {
  font-family: 'Noto Sans Tamil', sans-serif;
  font-size: 13px; color: #D4A017; font-weight: 600;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(212,160,23,0.1); border: 1px solid #D4A017;
  display: flex; align-items: center; justify-content: center;
  color: #D4A017; transition: all 0.2s ease;
}
.footer-socials a:hover { background: #D4A017; color: #1a0a00; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li {
  font-family: 'Noto Sans Tamil', sans-serif;
  font-size: 14px; color: #f0d9b5; padding: 6px 0;
}
.footer-links a:hover { color: #D4A017; }
.footer-tvk { text-align: center; }
.footer-tvk img {
  width: 100%; max-width: 200px; border-radius: 6px;
  border: 1px solid #D4A017;
}
.footer-tvk span {
  display: block; margin-top: 8px;
  font-family: 'Noto Sans Tamil', sans-serif;
  font-size: 11px; color: #D4A017;
}
.footer-bottom {
  border-top: 1px solid #2a1000; margin-top: 40px; padding-top: 20px;
  text-align: center;
  font-family: 'Noto Sans Tamil', sans-serif;
  font-size: 12px; color: #6b4c2a;
}

/* ===== FAB ===== */
.fab-stack {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.fab {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.fab-wa { background: #25D366; box-shadow: 0 4px 16px rgba(37,211,102,0.5); animation: pulse-green 2s infinite; }
.fab-call { background: #D4A017; box-shadow: 0 4px 16px rgba(212,160,23,0.5); animation: pulse-gold 2s infinite 0.5s; }
.fab-tip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: #1a0a00; color: #D4A017;
  font-family: 'Noto Sans Tamil', sans-serif; font-size: 12px;
  padding: 6px 12px; border-radius: 6px; white-space: nowrap;
  border: 1px solid #D4A017;
  opacity: 0; pointer-events: none; transition: opacity 0.2s ease;
}
.fab:hover .fab-tip { opacity: 1; }
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.9), 0 0 0 8px rgba(37,211,102,0.15); }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 4px 16px rgba(212,160,23,0.5); }
  50% { box-shadow: 0 4px 32px rgba(212,160,23,0.9), 0 0 0 8px rgba(212,160,23,0.15); }
}

/* ===== Scroll Reveal ===== */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; padding: 80px 24px 40px; }
  .hero-headline { font-size: 36px; }
  .hero-image-wrap { order: -1; }
  .hero-image { max-height: 300px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; padding: 10px 16px; gap: 12px; }
  .tvk-banner { order: 3; width: 100%; }
  .tvk-banner img { height: 54px; }
  .tvk-caption { font-size: 9px; }
  .main-nav {
    display: none; width: 100%; flex-direction: column;
    align-items: stretch; gap: 0;
    background: #1a0a00; padding: 12px 0;
    border-top: 1px solid #4a2800;
    order: 4;
  }
  .main-nav.open { display: flex; animation: slideDown 0.3s ease; }
  .main-nav a { padding: 12px 16px; }
  .main-nav .nav-cta { margin: 8px 16px; text-align: center; }
  .hamburger { display: block; margin-left: auto; }
  @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

  .hero-headline { font-size: 32px; }
  .hero-sub { font-size: 17px; }
  .hero-ctas .btn { flex: 1 1 100%; justify-content: center; }
  .section-title { font-size: 30px; }
  .stat-num { font-size: 32px; }
  .register-section { padding: 60px 16px; }
  .register-card { padding: 24px 20px; }
  .offer-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-card { width: 100%; max-width: 320px; }
  .stats { padding: 24px 16px; }
  .about-section, .offer-section, .team-section, .testimonials { padding: 60px 16px; }
}

@media (max-width: 420px) {
  .hero-headline { font-size: 28px; }
  .section-title { font-size: 26px; }
}
/* ===== PREMIUM ABOUT SECTION ===== */

.premium-about{
  position:relative;
  overflow:hidden;
  padding:120px 7%;
  background:
  radial-gradient(circle at top right, rgba(255,183,0,0.12), transparent 30%),
  linear-gradient(to bottom, #120500, #050100);
}

.about-bg-glow{
  position:absolute;
  width:500px;
  height:500px;
  background:rgba(255,183,0,0.08);
  filter:blur(120px);
  right:-100px;
  top:0;
}

.about-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:80px;
  align-items:center;
}

.mini-badge{
  display:inline-block;
  background:rgba(255,183,0,0.12);
  border:1px solid rgba(255,183,0,0.3);
  color:#ffcc4d;
  padding:10px 18px;
  border-radius:999px;
  margin-bottom:24px;
  font-size:14px;
  backdrop-filter:blur(10px);
}

.premium-title{
  font-size:62px;
  line-height:1.1;
  color:#fff;
  margin-bottom:24px;
  font-weight:800;
}

.premium-title span{
  color:#ffbf00;
  text-shadow:0 0 20px rgba(255,191,0,0.4);
}

.gold-line{
  width:120px;
  height:4px;
  border-radius:999px;
  background:linear-gradient(to right,#ffbf00,transparent);
  margin-bottom:28px;
}

.about-desc{
  font-size:22px;
  line-height:1.9;
  color:#f2e6d9;
  margin-bottom:30px;
}

.quote-box{
  background:rgba(255,255,255,0.05);
  border-left:4px solid #ffbf00;
  padding:22px;
  color:#ffdd88;
  font-size:20px;
  border-radius:18px;
  margin-bottom:40px;
  backdrop-filter:blur(10px);
}

.about-feature-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.about-feature-card{
  display:flex;
  gap:16px;
  align-items:flex-start;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,191,0,0.15);
  padding:22px;
  border-radius:24px;
  transition:0.4s ease;
  backdrop-filter:blur(10px);
}

.about-feature-card:hover{
  transform:translateY(-8px);
  border-color:#ffbf00;
  box-shadow:0 10px 40px rgba(255,191,0,0.2);
}

.feature-icon{
  min-width:60px;
  height:60px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,191,0,0.12);
  font-size:28px;
}

.about-feature-card h4{
  color:#fff;
  margin-bottom:8px;
  font-size:20px;
}

.about-feature-card p{
  color:#d8c8b8;
  line-height:1.6;
}

.about-visual{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}

.visual-wrapper{
  position:relative;
  width:520px;
  height:520px;
}

.rotating-ring{
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(255,191,0,0.25);
  animation:spin 20s linear infinite;
}

.ring1{
  inset:0;
}

.ring2{
  inset:60px;
  animation-direction:reverse;
}

.ring3{
  inset:120px;
}

.center-emblem{
  position:absolute;
  inset:50%;
  transform:translate(-50%,-50%);
  width:140px;
  height:140px;
  background:linear-gradient(135deg,#ffbf00,#ffdf80);
  border-radius:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:54px;
  color:#1a0a00;
  box-shadow:0 0 60px rgba(255,191,0,0.5);
  animation:pulse 3s infinite;
}

.floating-card{
  position:absolute;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,191,0,0.2);
  color:#fff;
  padding:16px 22px;
  border-radius:18px;
  backdrop-filter:blur(12px);
  animation:float 5s ease-in-out infinite;
}

.card1{
  top:10%;
  left:-30px;
}

.card2{
  right:-20px;
  top:40%;
}

.card3{
  bottom:10%;
  left:20%;
}

@keyframes spin{
  from{transform:rotate(0deg);}
  to{transform:rotate(360deg);}
}

@keyframes pulse{
  0%,100%{
    transform:translate(-50%,-50%) scale(1);
  }
  50%{
    transform:translate(-50%,-50%) scale(1.08);
  }
}

@keyframes float{
  0%,100%{
    transform:translateY(0px);
  }
  50%{
    transform:translateY(-14px);
  }
}

@media(max-width:992px){

  .about-grid{
    grid-template-columns:1fr;
  }

  .premium-title{
    font-size:42px;
  }

  .visual-wrapper{
    width:380px;
    height:380px;
  }

  .about-feature-grid{
    grid-template-columns:1fr;
  }

}
.hero-heading{
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-heading h1{
  font-size: clamp(2.5rem, 5vw, 5.8rem);
  line-height: 1.08;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1.5px;
  margin: 0;
  text-shadow:
    0 4px 20px rgba(0,0,0,0.45);
}

.hero-heading h1 span{
  display: block;
  margin: 18px 0;
  color: #ffbf00;
  position: relative;

  text-shadow:
    0 0 10px rgba(255,191,0,0.35),
    0 0 25px rgba(255,191,0,0.18);
}

.hero-line{
  width: 140px;
  height: 5px;
  margin-top: 32px;
  border-radius: 999px;

  background: linear-gradient(
    90deg,
    #ffbf00,
    rgba(255,191,0,0.1)
  );

  box-shadow:
    0 0 18px rgba(255,191,0,0.35);
}

/* Mobile Responsive */
@media (max-width: 768px){

  .hero-heading h1{
    font-size: 2.8rem;
    line-height: 1.15;
  }

  .hero-heading h1 span{
    margin: 14px 0;
  }

  .hero-line{
    width: 90px;
    margin-top: 24px;
  }

}
