/* ================================================================
   RUDRA THE PRACTICAL SCHOOL - ABOUT & WHY RUDRA PREMIUM STYLES
   v3.1 - 120fps Smooth, Modern Glassmorphism & High-DPI Aesthetics
   ================================================================ */

/* ===== Page Banner Enhancements ===== */
.page-banner {
  background: linear-gradient(135deg, #07251c 0%, #0d382d 60%, #155745 100%);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.banner-top-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.banner-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.banner-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  font-size: var(--text-xs);
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
}

.banner-pill svg {
  color: var(--gold-light);
  flex-shrink: 0;
}

.banner-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--green-primary) 0%, #0d382d 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* ===== Section 1: About Hero / Story ===== */
.about-hero-section {
  padding: 90px 0 80px;
  background: #ffffff;
  position: relative;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.about-lead {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--green-primary);
  line-height: 1.6;
  margin-bottom: 16px;
  border-left: 4px solid var(--gold);
  padding-left: 18px;
}

.about-content p {
  color: var(--gray-700);
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-key-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 34px;
}

.key-point-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--green-pale);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 86, 50, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.key-point-item:hover {
  transform: translateX(6px);
  background: #ebf7ef;
  border-color: var(--green-primary);
  box-shadow: 0 4px 15px rgba(26, 86, 50, 0.08);
}

.key-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--green-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(26, 86, 50, 0.25);
}

.key-point-item strong {
  display: block;
  font-size: var(--text-base);
  color: var(--green-darker);
  margin-bottom: 4px;
}

.key-point-item span {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.5;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.about-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.about-visual {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: visible;
}

.about-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 45px rgba(13, 56, 45, 0.18);
  border: 4px solid #fff;
  display: block;
}

.about-floating-badge {
  position: absolute;
  background: #ffffff;
  padding: 16px 22px;
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(26, 86, 50, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  animation: floatBadge 4s ease-in-out infinite alternate;
}

.about-floating-badge.top-right {
  top: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  color: #fff;
  border-color: var(--gold);
}

.about-floating-badge.top-right .badge-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.about-floating-badge.top-right .badge-text {
  font-size: var(--text-xs);
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-floating-badge.bottom-left {
  bottom: -24px;
  left: -20px;
}

.about-floating-badge.bottom-left .badge-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--green-lighter);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-floating-badge.bottom-left strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-dark);
  display: block;
  line-height: 1.2;
}

.about-floating-badge.bottom-left p {
  font-size: var(--text-xs);
  color: var(--gray-500);
  margin: 0;
}

@keyframes floatBadge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* ===== Section 2: Vision & Mission ===== */
.vision-mission-section {
  padding: 85px 0;
  background: var(--green-pale);
  position: relative;
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-top: 20px;
}

.vm-card {
  background: #ffffff;
  border-radius: var(--radius-2xl);
  padding: 42px 38px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(13, 56, 45, 0.06);
  border: 1px solid rgba(26, 86, 50, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13, 56, 45, 0.12);
  border-color: var(--green-primary);
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green-primary), var(--gold));
}

.vm-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.vm-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vm-icon-box.vision-icon {
  background: #ecfdf5;
  color: var(--green-primary);
  box-shadow: 0 6px 15px rgba(26, 86, 50, 0.12);
}

.vm-icon-box.mission-icon {
  background: #fefce8;
  color: #b45309;
  box-shadow: 0 6px 15px rgba(180, 83, 9, 0.12);
}

.vm-sub {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
}

.vm-title {
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--green-darker);
  margin: 0;
}

.vm-desc {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}

.vm-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.vm-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--green-primary);
  background: var(--green-lighter);
  padding: 6px 12px;
  border-radius: var(--radius-full);
}

/* ===== Section 3: Bagless Spotlight ===== */
.bagless-spotlight-section {
  padding: 90px 0;
  background: #ffffff;
}

.bagless-card-wrapper {
  background: linear-gradient(135deg, #07251c 0%, #0d382d 70%, #155745 100%);
  border-radius: var(--radius-2xl);
  padding: 60px;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(7, 37, 28, 0.25);
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.bagless-card-wrapper::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.bagless-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.bagless-title {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #ffffff;
}

.bagless-desc {
  font-size: var(--text-base);
  line-height: 1.8;
  color: #f1f5f9;
  margin-bottom: 14px;
}

.bagless-desc strong {
  color: var(--gold-light);
}

.bagless-subdesc {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 28px;
}

.bagless-perks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.25s ease;
}

.perk-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.perk-bullet {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  background: var(--gold);
  color: #0d382d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.perk-item strong {
  display: block;
  font-size: var(--text-sm);
  color: #ffffff;
  margin-bottom: 2px;
}

.perk-item p {
  font-size: var(--text-xs);
  color: #cbd5e1;
  line-height: 1.5;
  margin: 0;
}

.bagless-visual {
  display: flex;
  justify-content: center;
}

.bagless-image-container {
  position: relative;
  text-align: center;
}

.bagless-hero-img {
  max-width: 100%;
  height: auto;
  max-height: 380px;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.35));
  transition: transform 0.4s ease;
}

.bagless-hero-img:hover {
  transform: scale(1.04);
}

.bagless-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== Section 4: Practical Curriculum ===== */
.practical-philosophy-section {
  padding: 85px 0;
  background: var(--gray-50);
}

.practical-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.practical-img-frame {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border: 4px solid #fff;
}

.practical-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.practical-caption-card {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 37, 28, 0.95) 40%, #07251c 100%);
  padding: 30px 24px 20px;
  color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.caption-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.practical-caption-card p {
  font-size: var(--text-sm);
  font-style: italic;
  line-height: 1.5;
  color: #f1f5f9;
  margin: 0;
}

.philosophy-lead {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--green-primary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.practical-text-content p {
  font-size: var(--text-base);
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 16px;
}

.curriculum-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.pillar-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #ffffff;
  padding: 18px 22px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.pillar-row:hover {
  transform: translateX(6px);
  border-color: var(--green-primary);
  box-shadow: 0 8px 20px rgba(26, 86, 50, 0.08);
}

.pillar-num {
  font-size: 1.3rem;
  font-weight: 800;
  font-family: var(--font-primary);
  color: var(--green-primary);
  background: var(--green-lighter);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-row h4 {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--green-darker);
  margin-bottom: 4px;
}

.pillar-row p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

/* ===== Section 5: Campus Facilities Showcase ===== */
.facilities-showcase-section {
  padding: 90px 0;
  background: #ffffff;
}

.facilities-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 36px;
}

.facility-modern-card {
  background: #ffffff;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--gray-200);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}

.facility-modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(26, 86, 50, 0.12);
  border-color: var(--green-primary);
}

.facility-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #0d382d;
}

.facility-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.facility-modern-card:hover .facility-thumb img {
  transform: scale(1.08);
}

.facility-category-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(7, 37, 28, 0.85);
  backdrop-filter: blur(6px);
  color: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, 0.3);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.facility-body {
  padding: 26px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.facility-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: var(--green-lighter);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.facility-title {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--green-darker);
  margin-bottom: 8px;
}

.facility-text {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.facilities-bottom-cta {
  text-align: center;
  margin-top: 48px;
}

.facilities-bottom-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ===== Section 6: Core Values ===== */
.values-section {
  padding: 90px 0;
  background: var(--green-pale);
}

.values-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--green-primary);
  max-width: 650px;
  margin: 10px auto 0;
  line-height: 1.5;
}

.values-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.value-card-v2 {
  background: #ffffff;
  border-radius: var(--radius-2xl);
  padding: 32px 26px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(26, 86, 50, 0.08);
  transition: all 0.3s ease;
}

.value-card-v2:hover {
  transform: translateY(-6px);
  border-color: var(--green-primary);
  box-shadow: 0 15px 35px rgba(26, 86, 50, 0.1);
}

.value-icon-v2 {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.value-icon-v2.green {
  background: #ecfdf5;
  color: var(--green-primary);
}

.value-icon-v2.gold {
  background: #fefce8;
  color: #b45309;
}

.value-icon-v2.red {
  background: #fef2f2;
  color: #dc2626;
}

.value-card-v2 h4 {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--green-darker);
  margin-bottom: 8px;
}

.value-card-v2 p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* ===== Section 7: Statistics Counter ===== */
.stats-counter-section {
  background: linear-gradient(135deg, #07251c 0%, #0d382d 60%, #155745 100%);
  padding: 65px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-box {
  text-align: center;
  padding: 10px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box:last-child {
  border-right: none;
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 6px;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.stat-plus {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-left: 2px;
}

.stat-label {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.stat-sub {
  font-size: var(--text-xs);
  color: #cbd5e1;
}

/* ===== Section 8: Leadership Message ===== */
.principal-section {
  padding: 90px 0;
  background: #ffffff;
}

.principal-card {
  background: #ffffff;
  border-radius: var(--radius-2xl);
  padding: 50px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--gray-200);
}

.principal-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: center;
}

.principal-photo-col {
  text-align: center;
}

.principal-photo-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.principal-avatar {
  width: 160px;
  height: 160px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--green-lighter), var(--green-pale));
  border: 4px solid var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(26, 86, 50, 0.15);
}

.principal-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0d382d;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.principal-info h4 {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--green-darker);
  margin-bottom: 2px;
}

.principal-info p {
  font-size: var(--text-xs);
  color: var(--gray-600);
  margin-bottom: 4px;
}

.principal-loc {
  display: inline-block;
  font-size: 11px;
  color: var(--green-primary);
  font-weight: 600;
}

.principal-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--green-primary);
  margin: 20px 0 16px;
  line-height: 1.6;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
}

.principal-text-col p {
  font-size: var(--text-base);
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 22px;
}

.principal-signature {
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
}

.sig-name {
  font-weight: 700;
  color: var(--green-darker);
  font-size: var(--text-sm);
}

.sig-role {
  font-size: var(--text-xs);
  color: var(--gray-500);
}

/* ===== Section 9: CTA Section ===== */
.about-cta-section {
  padding: 80px 0;
  background: var(--green-pale);
}

.about-cta-card {
  background: linear-gradient(135deg, #07251c 0%, #0d382d 60%, #155745 100%);
  border-radius: var(--radius-2xl);
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(7, 37, 28, 0.25);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.cta-pill {
  display: inline-block;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.cta-title {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.cta-subtitle {
  font-size: var(--text-base);
  color: #cbd5e1;
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.cta-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.btn-gold {
  background: linear-gradient(135deg, #d4af37, #c9a84c);
  color: #07251c !important;
  font-weight: 700;
  border: 1px solid #e8d48b;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #f3e5ab, #d4af37);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(201, 168, 76, 0.5);
  color: #07251c !important;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
}

/* ================================================================
   WHY RUDRA PAGE SPECIFIC STYLES
   ================================================================ */
.why-intro-section {
  padding: 60px 0 30px;
  background: #ffffff;
}

.why-intro-card {
  background: var(--green-pale);
  border-radius: var(--radius-2xl);
  padding: 40px 48px;
  border: 1px solid rgba(26, 86, 50, 0.1);
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
}

.why-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-primary);
  background: var(--green-lighter);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.why-intro-title {
  font-family: var(--font-primary);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--green-darker);
  margin-bottom: 16px;
  line-height: 1.3;
}

.why-intro-text {
  font-size: var(--text-base);
  color: var(--gray-700);
  line-height: 1.8;
  margin: 0;
}

/* 10 Reasons Grid */
.ten-reasons-section {
  padding: 70px 0 90px;
  background: #ffffff;
}

.ten-reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 36px;
}

.reason-full-card {
  background: #ffffff;
  border-radius: var(--radius-2xl);
  padding: 36px 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-200);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.reason-full-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--green-primary), var(--gold));
  border-radius: 4px 0 0 4px;
}

.reason-full-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(26, 86, 50, 0.12);
  border-color: var(--green-primary);
}

.reason-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.reason-number-badge {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-primary);
  background: var(--green-lighter);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(26, 86, 50, 0.15);
  box-shadow: 0 4px 10px rgba(26, 86, 50, 0.08);
}

.reason-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.reason-card-title {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--green-darker);
  margin-bottom: 12px;
  line-height: 1.4;
}

.reason-card-p {
  font-size: var(--text-sm);
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 12px;
}

.reason-card-p:last-of-type {
  margin-bottom: 18px;
}

.reason-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green-primary);
  background: var(--green-pale);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* School Focus On: 6 Pillars */
.school-focus-section {
  padding: 85px 0;
  background: var(--green-pale);
}

.focus-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.focus-card {
  background: #ffffff;
  border-radius: var(--radius-2xl);
  padding: 32px 26px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(26, 86, 50, 0.08);
  transition: all 0.3s ease;
}

.focus-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-primary);
  box-shadow: 0 15px 35px rgba(26, 86, 50, 0.1);
}

.focus-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-xl);
  background: var(--green-lighter);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.focus-icon-wrap.gold {
  background: #fefce8;
  color: #b45309;
}

.focus-card h4 {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--green-darker);
  margin-bottom: 8px;
}

.focus-card p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* ===== Comparison Table Styling ===== */
.comparison-section {
  padding: 90px 0;
  background: #ffffff;
}

.table-responsive-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-2xl);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-200);
  margin-top: 36px;
  -webkit-overflow-scrolling: touch;
}

.comparison-modern-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 750px;
}

.comparison-modern-table th {
  padding: 22px 26px;
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 700;
  text-align: left;
}

.comparison-modern-table th.col-feature {
  background: #f8fafc;
  color: var(--gray-800);
  width: 24%;
}

.comparison-modern-table th.col-rudra {
  background: linear-gradient(135deg, #07251c, #0d382d);
  color: #ffffff;
  width: 40%;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.rudra-badge-top {
  display: inline-block;
  background: var(--gold);
  color: #07251c;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
}

.comparison-modern-table th.col-other {
  background: #f1f5f9;
  color: var(--gray-600);
  width: 36%;
}

.comparison-modern-table td {
  padding: 20px 26px;
  vertical-align: top;
  border-bottom: 1px solid var(--gray-100);
}

.comparison-modern-table tr:last-child td {
  border-bottom: none;
}

.comparison-modern-table td.param-title {
  background: #f8fafc;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--green-darker);
  border-right: 1px solid var(--gray-200);
}

.comparison-modern-table td.rudra-cell {
  background: #f0fdf4;
  border-right: 1px solid rgba(26, 86, 50, 0.15);
  transition: background 0.2s ease;
}

.comparison-modern-table tr:hover td.rudra-cell {
  background: #e6f9ed;
}

.comparison-modern-table td.other-cell {
  background: #ffffff;
  transition: background 0.2s ease;
}

.comparison-modern-table tr:hover td.other-cell {
  background: #fafafa;
}

.cell-verdict {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--green-primary);
  margin-bottom: 4px;
}

.cell-verdict svg {
  flex-shrink: 0;
  color: var(--green-primary);
}

.cell-verdict.negative {
  color: #dc2626;
}

.cell-verdict.negative svg {
  color: #dc2626;
}

.comparison-modern-table td p {
  font-size: var(--text-xs);
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

/* ===== Section: Real Student Voices ===== */
.student-voices-section {
  padding: 85px 0;
  background: var(--green-pale);
}

.student-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.student-card {
  background: #ffffff;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(26, 86, 50, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.student-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(26, 86, 50, 0.12);
}

.student-img-box {
  position: relative;
  height: 200px;
  background: #0d382d;
}

.student-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.student-wing-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(7, 37, 28, 0.85);
  backdrop-filter: blur(6px);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.student-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.student-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.student-quote {
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.student-name {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--green-darker);
  margin-bottom: 2px;
}

.student-grade {
  font-size: var(--text-xs);
  color: var(--green-primary);
  font-weight: 600;
}

/* ================================================================
   RESPONSIVE BREAKPOINTS (Zero Overflow & Seamless Touch UX)
   ================================================================ */
@media (max-width: 1100px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .about-visual {
    max-width: 600px;
    margin: 0 auto;
  }
  .bagless-card-wrapper {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    gap: 30px;
  }
  .practical-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .facilities-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .focus-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .stat-box {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
  }
  .stat-box:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .principal-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .principal-photo-col {
    margin: 0 auto;
  }
  .principal-quote {
    border-left: none;
    border-top: 3px solid var(--gold);
    padding-left: 0;
    padding-top: 14px;
  }
  .student-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero-section,
  .vision-mission-section,
  .bagless-spotlight-section,
  .practical-philosophy-section,
  .facilities-showcase-section,
  .values-section,
  .principal-section,
  .ten-reasons-section,
  .school-focus-section,
  .comparison-section,
  .student-voices-section,
  .about-cta-section {
    padding: 60px 0;
  }

  .vm-grid {
    grid-template-columns: 1fr;
  }

  .bagless-perks-grid {
    grid-template-columns: 1fr;
  }

  .facilities-modern-grid {
    grid-template-columns: 1fr;
  }

  .values-grid-v2 {
    grid-template-columns: 1fr;
  }

  .focus-pillars-grid {
    grid-template-columns: 1fr;
  }

  .ten-reasons-grid {
    grid-template-columns: 1fr;
  }

  .student-cards-grid {
    grid-template-columns: 1fr;
  }

  .stats-counter-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-box {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .stat-box:last-child {
    border-bottom: none;
  }

  .about-floating-badge.top-right {
    top: 10px;
    right: 10px;
    padding: 10px 14px;
  }

  .about-floating-badge.bottom-left {
    bottom: 10px;
    left: 10px;
    padding: 10px 14px;
  }

  .principal-card {
    padding: 30px 20px;
  }

  .about-cta-card {
    padding: 40px 20px;
  }

  .cta-btn-group {
    flex-direction: column;
    width: 100%;
  }

  .cta-btn-group .btn {
    width: 100%;
    justify-content: center;
  }
}
