:root {
  --gold: #d9a441;
  --gold-dark: #ad7920;
  --ink: #16110b;
  --charcoal: #24201b;
  --cream: #fff8ea;
  --paper: #ffffff;
  --muted: #6f665a;
  --line: #ead8b4;
  --shadow: 0 18px 45px rgba(29, 21, 10, .14);
  --radius: 8px;
  --font-body: "Poppins", Arial, sans-serif;
  --font-heading: "Playfair Display", Georgia, serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: #fff;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold-dark); }
img { max-width: 100%; height: auto; display: block; }

.section-padding { padding: 86px 0; }
.section-light { background: #fffaf0; }
.section-dark { background: var(--ink); color: #fff; }
.eyebrow {
  color: var(--gold-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--ink);
}
.section-dark .section-title { color: #fff; }
.lead-muted { color: var(--muted); }
.section-dark .lead-muted { color: rgba(255,255,255,.72); }

.premium-divider {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(217,164,65,1), rgba(217,164,65,1));
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(217,164,65,.2);
}

.btn-brand {
  background: linear-gradient(135deg, var(--gold), #f3cf79);
  color: #1d1308;
  border: 0;
  border-radius: 6px;
  font-weight: 700;
  padding: .8rem 1.25rem;
  box-shadow: 0 10px 20px rgba(217,164,65,.28);
}
.btn-brand:hover { transform: translateY(-2px); color: #140d05; }
.btn-outline-brand {
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 6px;
  font-weight: 700;
  padding: .75rem 1.2rem;
}
.btn-outline-brand:hover { background: var(--gold); color: var(--ink); }

.top-strip {
  background: var(--ink);
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  padding: .45rem 0;
}
.top-strip a { color: rgba(255,255,255,.86); }
.navbar {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transition: padding .25s ease;
}
.navbar.scrolled { padding-top: .25rem; padding-bottom: .25rem; }
.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: radial-gradient(circle at 35% 25%, #f8d987, var(--gold-dark) 58%, #5b2f08);
  font-family: var(--font-heading);
  font-weight: 800;
}
.brand-text {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  line-height: .95;
  color: var(--ink);
}
.brand-sub { color: var(--muted); font-size: .75rem; }
.nav-link {
  color: var(--ink);
  font-weight: 600;
  padding: 1.5rem .9rem !important;
}
.nav-link:hover, .nav-link.active { color: var(--gold-dark); }
.mega-wrap { position: static; }
.mega-menu {
  width: min(1020px, calc(100vw - 32px));
  left: 50%;
  transform: translateX(-50%);
  border: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem;
  background: #fffdf8;
}
.mega-title { font-weight: 800; color: var(--ink); margin-bottom: .6rem; }
.mega-menu a {
  display: block;
  padding: .35rem 0;
  color: var(--muted);
  font-size: .94rem;
}

.hero {
  position: relative;
  min-height: 690px;
  background: #100b06;
  overflow: hidden;
}
.hero-slide {
  min-height: 690px;
  display: flex;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,8,4,.9), rgba(20,12,5,.62), rgba(20,12,5,.2));
}
.hero-content { position: relative; z-index: 2; max-width: 650px; padding-top: 40px; }
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: .98;
}
.hero p { color: rgba(255,255,255,.78); font-size: 1.1rem; }
.hero-stat {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}
.carousel-control-prev, .carousel-control-next { width: 6%; }
.query-panel {
  position: relative;
  z-index: 3;
  margin-top: -70px;
}
.query-box {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--gold);
  padding: 1.5rem;
}

.feature-card, .course-card, .faculty-card, .news-card, .testimonial-card, .gallery-card {
  background: #fff;
  border: 1px solid rgba(173,121,32,.18);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(48,33,13,.08);
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.feature-card:hover, .course-card:hover, .faculty-card:hover, .news-card:hover, .gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(217,164,65,.45);
}
.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff1cc;
  color: var(--gold-dark);
  font-weight: 900;
}
.course-img { height: 210px; object-fit: cover; background: #24170a; }
.course-meta {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .88rem;
}
.price-tag {
  background: var(--ink);
  color: var(--gold);
  padding: .25rem .55rem;
  border-radius: 4px;
  font-weight: 700;
}

.counter-band {
  background: linear-gradient(135deg, #20160d, #3b2510);
  color: #fff;
}
.counter-number {
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-family: var(--font-heading);
}
.faculty-card img { height: 260px; width: 100%; object-fit: cover; }
.testimonial-card { padding: 1.35rem; }
.stars { color: var(--gold-dark); letter-spacing: .1em; }
.gallery-card img { width: 100%; height: 240px; object-fit: cover; transition: transform .35s ease; }
.gallery-card:hover img { transform: scale(1.06); }
.news-card img { height: 210px; object-fit: cover; width: 100%; }
.date-pill {
  display: inline-block;
  background: #fff1cc;
  color: var(--gold-dark);
  border-radius: 99px;
  padding: .22rem .65rem;
  font-size: .82rem;
  font-weight: 700;
}
.accordion-button:not(.collapsed) {
  background: #fff1cc;
  color: var(--ink);
  box-shadow: none;
}
.form-control, .form-select {
  border-radius: 6px;
  border-color: #e4d1aa;
  padding: .8rem .9rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 .2rem rgba(217,164,65,.18);
}
.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  filter: saturate(.86);
}

/* Footer styles */
.aifas-footer {
  background-color: #FAEDD4;
  color: #2c1720;
  position: relative;
  overflow: hidden;
}

.footer-newsletter {
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 1.5rem;
}

.footer-newsletter h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.8vw, 2.4rem);
  color: #fff;
  margin-bottom: .75rem;
}

.footer-newsletter-text {
  color: rgba(255, 255, 255, .8);
  max-width: 560px;
  margin-bottom: 0;
}

.footer-newsletter-form {
  padding: 1rem;
}

.footer-input {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.footer-input::placeholder {
  color: rgba(255, 255, 255, .65);
}

.footer-subscribe-btn {
  min-width: 170px;
  border-radius: 999px;
  padding: .85rem 1.4rem;
}

.footer-main {
  padding-top: 2rem;
}

.footer-card {
  background: transparent;
  border: none;
  border-radius: 1rem;
  box-shadow: none;
  min-height: 100%;
}

.footer-card h3 {
  color: #f8e3b8;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  position: relative;
}

.footer-card h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #d4af37;
  margin-top: .8rem;
}

.footer-card p,
.footer-card li,
.footer-card a {
  color: rgba(255, 255, 255, .78);
}

.footer-card p {
  line-height: 1.9;
}

.footer-social .social-link {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, .04);
  color: #2c1720;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.footer-social .social-link:hover {
  transform: translateY(-3px);
  background: rgba(212, 175, 55, .2);
  box-shadow: 0 0 18px rgba(212, 175, 55, .35);
  color: #ffd966;
}

.footer-nav {
  display: grid;
  gap: .75rem;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: rgba(255, 255, 255, .82);
  font-size: .96rem;
  transition: transform .2s ease, color .2s ease;
}

.footer-nav a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-nav a i {
  color: #d4af37;
  font-size: .88rem;
}

.footer-contact {
  display: grid;
  gap: .9rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: rgba(255, 255, 255, .8);
}

.footer-contact li i {
  margin-top: .15rem;
  color: #d4af37;
  min-width: 24px;
}

.footer-contact a {
  color: rgba(255, 255, 255, .9);
  text-decoration: none;
}

.footer-contact a:hover {
  color: #fff;
}


.footer-bottom-bar {
  background: rgba(0, 0, 0, .14);
}

.footer-bottom-bar p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .75);
  font-size: .95rem;
}

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #d4af37;
  color: #6f2000;
  font-size: 1.15rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, .22);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 20;
}

.back-to-top:hover {
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .footer-newsletter-form {
    flex-direction: column;
  }

  .footer-subscribe-btn {
    width: 100%;
  }

  .footer-card {
    padding: 1.5rem;
  }

  .footer-trust {
    text-align: center;
  }

  .trust-badge {
    min-height: auto;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .footer-newsletter {
    padding: 1.25rem;
  }

  .footer-newsletter h2 {
    font-size: 1.65rem;
  }
}

}

.footer {
  background: #130e08;
  color: rgba(255,255,255,.72);
  padding-top: 72px;
}
.footer h3, .footer h4 { color: #fff; font-family: var(--font-heading); }
.footer a { display: block; color: rgba(255,255,255,.72); margin-bottom: .45rem; }
.footer a:hover { color: var(--gold); }
.social a {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  margin-right: .4rem;
}
.copyright {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.2rem 0;
  margin-top: 48px;
}

.floating-whatsapp, .back-to-top {
  position: fixed;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  z-index: 1000;
  box-shadow: 0 12px 24px rgba(0,0,0,.2);
}
.floating-whatsapp { bottom: 86px; background: #25d366; }
.back-to-top {
  bottom: 28px;
  background: var(--gold-dark);
  border: 0;
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; }

.page-hero {
  min-height: 360px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(90deg, rgba(18,12,6,.88), rgba(18,12,6,.52)), url("../images/hero-astrology.svg") center/cover;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Screenshot-matched AIFAS homepage */
.aifas-home {
  background: #e9e9e9;
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

.aifas-home .site-header {
  background: #f8c017;
}

.aifas-navbar {
  min-height: 70px;
  padding: .65rem 1.5rem;
  background-color: #F5E0BB;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

.nav-shell {
  max-width: 1510px;
  width: 100%;
}

.rjvs-logo {
  padding: 0 16px 0 18px;
  margin: 0;
}

.logo-seal {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #b00000;
  border: 2px solid #ffd66d;
  font: 800 18px Georgia, serif;
}

.aifas-navbar .navbar-nav {
  gap: .15rem;
}

.aifas-navbar .nav-link {
  color: #2a1f14;
  font-size: 14px;
  font-weight: 700;
  padding: 18px 14px !important;
  white-space: nowrap;
  letter-spacing: .02em;
}

.aifas-navbar .nav-link:hover,
.aifas-navbar .nav-link.active,
.aifas-navbar .dropdown.show > .nav-link {
  color: #7a4f25;
  background: rgba(255, 255, 255, .45);
}

.aifas-navbar .dropdown-menu {
  border-radius: .65rem;
  border: 0;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .18);
  font-size: 13px;
  background: #F5E0BB(16, 10, 7, .98);
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  display: none;
  margin-top: -0.5rem;
  border-radius: 0.35rem;
  min-width: 230px;
}

.dropdown-submenu:hover > .dropdown-menu,
.dropdown-submenu .dropdown-menu.show {
  display: block;
}

.dropdown-submenu > .dropdown-toggle::after {
  float: right;
  transform: translateY(0.1rem);
  font-size: 0.72rem;
}

.dropdown-menu .dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
}

@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

.btn-header-call {
  background: linear-gradient(135deg, #f2c76a, #d99b27);
  color: #1f1207;
  border: 0;
  border-radius: 999px;
  padding: .72rem 1.2rem;
  font-weight: 700;
  letter-spacing: .03em;
  box-shadow: 0 12px 26px rgba(217, 148, 33, .22);
}

.btn-header-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(217, 148, 33, .3);
}

@media (max-width: 991px) {
  .aifas-navbar {
    padding: .5rem 1rem;
  }
  .aifas-navbar .navbar-nav {
    gap: 0;
    flex-direction: column;
  }
  .aifas-navbar .nav-link {
    padding: 12px 14px !important;
  }
  .header-actions.d-none.d-lg-flex {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .dropdown-submenu > .dropdown-menu {
    position: static;
    margin-left: 0;
    margin-top: 0.25rem;
  }
}

.screenshot-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #2a0a0a;
}

.hero-track {
  display: flex;
  transition: transform .6s ease;
}

.hero-banner {
  flex: 0 0 100%;
}

.screenshot-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .45);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-prev {
  left: 16px;
}

.hero-next {
  right: 16px;
}

.hero-control:hover,
.hero-control:focus-visible {
  background: rgba(176, 0, 0, .86);
}

.home-content {
  padding: 70px 0 0;
}

.content-container {
  max-width: 1120px;
}

.info-stack {
  display: grid;
  gap: 14px;
}

.home-info-card {
  min-height: 145px;
  display: grid;
  grid-template-columns: 340px 1fr;
  align-items: start;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 1px 7px rgba(0, 0, 0, .16);
  overflow: hidden;
}

.broken-thumb,
.inline-broken,
.broken-ad-title {
  color: #b00000;
  font-size: 12px;
  line-height: 1;
}

.broken-thumb {
  min-height: 145px;
  padding: 7px;
}
.broken-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px 0 0 3px;
}

.info-copy {
  padding: 18px 24px 14px;
}

.info-copy h1,
.info-copy h2 {
  display: inline-block;
  margin: 0 0 14px;
  padding-bottom: 9px;
  border-bottom: 1px solid #b00000;
  color: #4d4d4d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.info-copy p {
  max-width: 470px;
  margin: 0 0 10px;
  color: #4f4f4f;
  font-size: 13px;
}

.read-btn,
.show-all-btn {
  display: inline-block;
  min-width: 150px;
  padding: 7px 24px;
  border: 1px solid #d51616;
  border-radius: 22px;
  color: #b00000;
  background: #fff;
  text-align: center;
  font-size: 13px;
}

.read-btn:hover,
.show-all-btn:hover {
  color: #fff;
  background: #b00000;
}

.sidebar-ad {
  text-align: left;
}

.consultation{
  margin: 20px 0 0 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .18);
  border-radius: 5px;
}

.articles-section {
  padding: 20px 0 18px;
}

.articles-section h2,
.service-panel h2,
.service-panel h3 {
  margin: 0 0 10px;
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
}

.articles-section h2 {
  font-size: 24px;
}

.article-card {
  height: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .14);
}

.article-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.article-body {
  padding: 11px 10px 13px;
}

.article-body h3 {
  min-height: 54px;
  margin: 0 0 10px;
  color: #111;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.18;
}

.article-body p {
  margin: 0;
  color: #555;
  font-size: 13px;
}

.show-all-btn {
  min-width: 146px;
  margin-top: 28px;
}

.service-panel {
  margin: 8px auto 0;
  padding: 10px 10px 18px;
  background: #fff;
}

.service-panel h2 {
  font-size: 26px;
}

.service-panel h3 {
  font-size: 20px;
}

.service-panel p {
  margin: 0 0 12px;
  color: #333;
  font-size: 13px;
  line-height: 1.42;
}

.inline-broken {
  margin-top: 8px;
}

.wide-banner {
  width: 100%;
  margin: 16px 0 8px;
  border: 1px solid #ddd;
}

.quick-query {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 1050;
  width: 360px;
  padding: 0 10px 12px;
  background: #b00000;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, .22);
}

.quick-query.collapsed {
  padding-bottom: 0;
}

.query-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.query-toggle {
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  transition: transform .2s ease;
}

.quick-query.collapsed .query-toggle {
  transform: rotate(180deg);
}

.quick-query.collapsed .query-fields {
  display: none;
}

.quick-query .form-control {
  height: 36px;
  margin-bottom: 8px;
  border: 0;
  border-radius: 3px;
  font-size: 13px;
  padding: 7px 10px;
}

.quick-query textarea.form-control {
  height: auto;
}

.submit-query {
  display: block;
  min-width: 118px;
  margin: 8px auto 0;
  padding: 8px 22px;
  border: 0;
  border-radius: 2px;
  background: #fff;
  color: #666;
  font-size: 16px;
}

.aifas-footer {
  margin-top: 0;
  background: #b00000;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding: 22px 14px 18px;
  max-width: 1120px;
}

.footer-grid h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
}

.footer-grid a {
  display: block;
  color: #fff;
  font-size: 13px;
  line-height: 1.35;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #790000;
  color: #fff;
  font-size: 12px;
  padding: 8px 110px;
}

/* ==================== ABOUT RJVS SECTION ==================== */

.about-rjvs-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    #f5f0e8 0%,
    #fdf9f0 25%,
    #fffef9 50%,
    #f9f3e6 75%,
    #f5f0e8 100%
  );
  overflow: hidden;
  isolation: isolate;
}

.about-rjvs-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(217, 164, 65, 0.08) 0%,
    transparent 50%
  ),
  radial-gradient(
    circle at 80% 80%,
    rgba(217, 164, 65, 0.06) 0%,
    transparent 45%
  );
  pointer-events: none;
  z-index: 1;
}

/* Particles Container */
.particles-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: float 20s infinite ease-in-out;
}

.particle:nth-child(1) {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.15), transparent);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(176, 0, 0, 0.12), transparent);
  top: 60%;
  right: 10%;
  animation-delay: 5s;
}

.particle:nth-child(3) {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.1), transparent);
  bottom: 15%;
  left: 15%;
  animation-delay: 10s;
}

.particle:nth-child(4) {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(176, 0, 0, 0.08), transparent);
  top: 30%;
  right: 5%;
  animation-delay: 7s;
}

.particle:nth-child(5) {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.12), transparent);
  bottom: 20%;
  right: 20%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  50% {
    opacity: 0.4;
    transform: translate(30px, -30px) scale(1.1);
  }
}

/* Section Header */
.about-header {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.about-main-heading {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #333;
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}

.about-main-heading .highlight-text {
  color: #d9a441;
  display: inline-block;
}

.decorative-divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #d9a441, transparent);
  margin: 20px auto 25px;
  border-radius: 2px;
}

.about-subtitle {
  font-size: 18px;
  color: #666;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.3px;
}

/* Left Content Area */
.about-content-left {
  position: relative;
  z-index: 2;
}

.established-box {
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 2px solid #e8d9b8;
}

.established-heading {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #333;
  margin: 0 0 15px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.highlight-date {
  color: #d9a441;
  font-weight: 800;
  display: block;
  margin-top: 5px;
}

.about-text {
  font-size: 15px;
  line-height: 1.75;
  color: #4f4f4f;
  margin-bottom: 20px;
  text-align: justify;
  letter-spacing: 0.2px;
}

.about-text strong {
  color: #333;
  font-weight: 700;
}

.about-cta-btn {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, #d9a441, #f3cf79);
  color: #1d1308;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 20px rgba(217, 164, 65, 0.3);
  margin-top: 15px;
  cursor: pointer;
  border: none;
  text-align: center;
}

.about-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(217, 164, 65, 0.4);
  color: #0d0705;
}

.about-cta-btn:active {
  transform: translateY(-1px);
}

/* Right Image Card Area */
.about-image-right {
  position: relative;
  z-index: 2;
}

.image-card-wrapper {
  display: flex;
  justify-content: center;
}

.image-card-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1.1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.about-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.25) 100%
  );
  pointer-events: none;
}

/* Quote Card - Glassmorphism Effect */
.quote-card {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 85%;
  padding: 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: slideUpQuote 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.3s ease;
}

.quote-card:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(-50%) translateY(-5px);
}

.quote-icon {
  font-size: 48px;
  color: #d9a441;
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 700;
  font-family: Georgia, serif;
}

.quote-text {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 12px;
  font-family: Georgia, serif;
  letter-spacing: 0.3px;
}

.quote-attribution {
  color: #d9a441;
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Animations */
@keyframes slideUpQuote {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.about-rjvs-section.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.about-rjvs-section.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Responsive Design */
@media (max-width: 991px) {
  .about-rjvs-section {
    padding: 80px 0;
  }

  .about-header {
    margin-bottom: 50px;
  }

  .about-main-heading {
    font-size: clamp(28px, 4vw, 40px);
  }

  .established-heading {
    font-size: clamp(24px, 3.5vw, 36px);
  }

  .about-text {
    font-size: 14px;
    line-height: 1.7;
  }

  .about-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .about-rjvs-section {
    padding: 60px 0;
  }

  .about-header {
    margin-bottom: 40px;
  }

  .about-main-heading {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .about-subtitle {
    font-size: 15px;
  }

  .established-box {
    margin-bottom: 25px;
    padding-bottom: 20px;
  }

  .established-heading {
    font-size: 24px;
  }

  .highlight-date {
    display: inline;
    margin-top: 0;
  }

  .about-text {
    font-size: 13px;
    line-height: 1.65;
    text-align: left;
  }

  .about-image-right {
    margin-top: 30px;
  }

  .image-card-container {
    aspect-ratio: 1 / 1;
    max-width: 100%;
  }

  .quote-card {
    bottom: 20px;
    max-width: 90%;
    padding: 20px;
  }

  .quote-text {
    font-size: 14px;
  }

  .quote-icon {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .about-rjvs-section {
    padding: 50px 0;
  }

  .about-header {
    margin-bottom: 30px;
  }

  .about-main-heading {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .decorative-divider {
    margin: 15px auto 18px;
  }

  .about-subtitle {
    font-size: 13px;
  }

  .established-heading {
    font-size: 20px;
  }

  .about-text {
    font-size: 12px;
    line-height: 1.6;
  }

  .about-cta-btn {
    padding: 10px 24px;
    font-size: 13px;
  }

  .quote-card {
    bottom: 15px;
    padding: 16px;
  }

  .quote-text {
    font-size: 13px;
    line-height: 1.5;
  }

  .quote-icon {
    font-size: 32px;
    margin-bottom: 6px;
  }

  /* Hide particles on very small screens for performance */
  .particle {
    display: none;
  }
}

