:root {
  --orange: #EA3C12;
  --cinnabar: #E6632F;
  --romantic: #FFD5BF;
  --black: #000000;
  --white: #FFFFFF;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--white);
  color: var(--black);
}

/* Header Styles */
.site-header {
  background: var(--orange);
  color: var(--white);
  padding: 15px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--white);
  padding: 5px;
}

.site-title h1 {
  font-size: 2em;
  margin: 0;
  line-height: 1.3;
  color: var(--white);
}

.residential-text {
  font-family: 'Brush Script MT', cursive, 'Segoe Script', 'Comic Sans MS';
  font-style: italic;
  font-size: 1.1em;
}

/* Navigation */
.main-nav {
  background: var(--white);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 12px 10px;
  border-bottom: 2px solid var(--romantic);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.main-nav a {
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.main-nav a.active,
.main-nav a:hover {
  background: var(--cinnabar);
  color: var(--white);
}

.container {
  max-width: 900px;
  margin: 30px auto;
  padding: 0 16px;
}

h1, h2, h3 {
  margin-bottom: 11px;
  margin-top: 20px;
  font-family: inherit;
}

h1 {
  font-size: 2.5em;
}

h2 {
  color: var(--orange);
  font-size: 1.8em;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 14px 32px;
  border: none;
  border-radius: 7px;
  font-size: 1.05em;
  font-weight: 700;
  cursor: pointer;
  margin-right: 10px;
  transition: background 0.16s;
}

.btn-primary:hover {
  background: var(--cinnabar);
}

.btn-secondary {
  background: var(--cinnabar);
  color: var(--white);
  padding: 14px 26px;
  border: none;
  border-radius: 7px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  margin-right: 10px;
  transition: background 0.16s;
}

.btn-secondary:hover {
  background: var(--orange);
}

.card-group {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.card {
  background: var(--romantic);
  border-radius: 12px;
  box-shadow: 0 1px 7px rgba(234, 60, 18, 0.12);
  padding: 26px 20px 18px 20px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 22px;
}

.info-section {
  background: var(--romantic);
  padding: 26px 16px;
  border-radius: 10px;
  margin: 36px 0 30px 0;
}

/* Footer Styles */
.site-footer {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 30px 20px;
  margin-top: 50px;
  margin-bottom: 80px;
}

.footer-content p {
  margin: 0 0 15px 0;
  font-size: 1.04em;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
  padding: 5px 10px;
}

.footer-links a:hover {
  color: var(--romantic);
}

.footer-links .separator {
  color: var(--romantic);
}

/* Sticky Admission Button */
.sticky-admission-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--cinnabar) 100%);
  color: var(--white);
  text-align: center;
  padding: 18px 20px;
  font-size: 1.2em;
  font-weight: 700;
  text-decoration: none;
  z-index: 998;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  animation: pulse 2s infinite;
  transition: all 0.3s ease;
}

.sticky-admission-btn:hover {
  background: linear-gradient(135deg, var(--cinnabar) 0%, var(--orange) 100%);
  box-shadow: 0 -4px 15px rgba(234, 60, 18, 0.4);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

/* Floating Action Buttons */
.floating-buttons {
  position: fixed;
  bottom: 80px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.whatsapp-btn {
  background: #25D366;
  color: var(--white);
}

.whatsapp-btn:hover {
  background: #20BA5A;
}

.call-btn {
  background: var(--orange);
  color: var(--white);
}

.call-btn:hover {
  background: var(--cinnabar);
}

/* Call Dropdown */
.call-btn-container {
  position: relative;
}

.call-dropdown {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  padding: 10px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.call-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.call-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.call-option:hover {
  background: var(--romantic);
  color: var(--orange);
}

.call-option svg {
  fill: var(--orange);
}

/* Hero Section */
.hero {
  background: #EA3C12; /* Fallback */
  background: linear-gradient(135deg, #EA3C12 0%, #E6632F 100%);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 20px,
    transparent 20px,
    transparent 40px
  );
  animation: float 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  -webkit-animation: slideInUp 1s ease-out;
  animation: slideInUp 1s ease-out;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.3em;
  margin-bottom: 30px;
  -webkit-animation: slideInUp 1s ease-out 0.2s both;
  animation: slideInUp 1s ease-out 0.2s both;
  opacity: 0.95;
}

.hero-buttons {
  -webkit-animation: slideInUp 1s ease-out 0.4s both;
  animation: slideInUp 1s ease-out 0.4s both;
}

.hero-image {
  margin-top: 40px;
  -webkit-animation: slideInUp 1s ease-out 0.6s both;
  animation: slideInUp 1s ease-out 0.6s both;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.02);
}

/* Feature Cards Animation */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.feature-card {
  background: var(--white);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(234, 60, 18, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  animation: fadeInUp 0.8s ease-out;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(234, 60, 18, 0.2);
  border-color: var(--romantic);
}

.feature-icon {
  font-size: 3.5em;
  margin-bottom: 20px;
  display: block;
  animation: bounce 2s infinite;
}

.feature-title {
  color: var(--orange);
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-desc {
  color: #666;
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  background: var(--romantic);
  padding: 60px 0;
  margin: 50px 0;
  border-radius: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  animation: countUp 2s ease-out;
}

.stat-number {
  font-size: 3em;
  font-weight: 900;
  color: var(--orange);
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  color: var(--black);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Animations */
@-webkit-keyframes slideInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@-webkit-keyframes countUp {
  from {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* Scroll Animations */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Buttons */
.btn-primary, .btn-secondary {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: all 0.3s ease;
}

.btn-primary:hover, .btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(234, 60, 18, 0.4);
}

.btn-primary::before, .btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
  left: 100%;
}

/* Image Slideshow */
.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: 40px auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.slide {
  display: none;
  position: relative;
  animation: slideIn 0.5s ease-in-out;
}

.slide.active {
  display: block;
}

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

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  padding: 30px 20px 20px;
  text-align: left;
}

.slide-title {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 10px;
}

.slide-description {
  font-size: 1em;
  opacity: 0.9;
}

/* Navigation arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 0 3px 3px 0;
  user-select: none;
  transition: all 0.3s ease;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background: rgba(234, 60, 18, 0.8);
}

/* Dots indicator */
.dots-container {
  text-align: center;
  padding: 20px 0;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
  background-color: var(--orange);
}

@keyframes slideIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
  .container {
    max-width: 95%;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .hero h1 {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .hero p {
    font-size: 1.1em;
    margin-bottom: 25px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .btn-primary, .btn-secondary {
    width: 200px;
    text-align: center;
  }

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

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

  .stat-number {
    font-size: 2.5em;
  }

  .card-group {
    flex-direction: column;
  }

  .card {
    margin-bottom: 20px;
  }

  .slide img {
    height: 250px;
  }

  .slide-content {
    padding: 20px 15px 15px;
  }

  .slide-title {
    font-size: 1.2em;
  }

  .slide-description {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8em;
  }

  .hero p {
    font-size: 1em;
  }

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

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

  .slide img {
    height: 200px;
  }

  nav {
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px 10px;
  }

  nav a {
    padding: 8px 12px;
    font-size: 0.9em;
  }

  /* Header responsive */
  .header-content {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }

  .site-logo {
    width: 120px;
    height: 120px;
  }

  .site-title h1 {
    font-size: 1.4em;
  }

  .residential-text {
    display: block;
    font-size: 1em;
  }

  /* Floating buttons on mobile */
  .floating-buttons {
    bottom: 70px;
    right: 10px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }

  .float-btn svg {
    width: 20px;
    height: 20px;
  }

  .sticky-admission-btn {
    padding: 15px 10px;
    font-size: 1em;
  }

  .call-dropdown {
    right: -10px;
    min-width: 180px;
  }
}

@media (max-width: 768px) {
  .header-content {
    gap: 15px;
  }

  .site-title h1 {
    font-size: 1.6em;
  }

  .main-nav {
    gap: 10px;
    padding: 10px;
  }

  .main-nav a {
    padding: 6px 12px;
    font-size: 0.9em;
  }

  .footer-links {
    flex-direction: column;
    gap: 5px;
  }

  .footer-links .separator {
    display: none;
  }
}

/* About Page Styles */
/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--cinnabar) 100%);
  color: var(--white);
  padding: 3rem 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  text-align: center;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.hero-description, .hero-description-hindi {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Milestones Grid */
.milestones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.milestone-card {
  background: var(--white);
  border: 2px solid var(--romantic);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.milestone-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
}

.milestone-year {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.milestone-text {
  font-size: 1rem;
  line-height: 1.5;
}

/* Mission Vision Container */
.mission-vision-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.mission-card, .vision-card {
  background: linear-gradient(135deg, var(--romantic) 0%, var(--white) 100%);
  border-left: 5px solid var(--orange);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.mission-card h3, .vision-card h3 {
  color: var(--orange);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.hindi-text {
  color: var(--cinnabar);
  font-style: italic;
  margin-top: 0.5rem;
}

/* Awards Grid */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.award-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  border-top: 4px solid var(--orange);
  transition: all 0.3s ease;
}

.award-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.award-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.award-card h4 {
  color: var(--orange);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-card {
  background: linear-gradient(135deg, var(--orange) 0%, var(--cinnabar) 100%);
  color: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: scale(1.05);
}

.stat-card .stat-number {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.stat-sublabel {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  border-left: 4px solid var(--orange);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  border-left-width: 6px;
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.feature-card h4 {
  color: var(--orange);
  margin-bottom: 0.5rem;
}

/* Philosophy Grid */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.philosophy-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--romantic) 100%);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.philosophy-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
}

.philosophy-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.philosophy-card h4 {
  color: var(--orange);
  margin-bottom: 0.5rem;
}

/* Locations */
.locations-container {
  margin: 2rem 0;
}

.location-section {
  margin-bottom: 2rem;
}

.location-section h4 {
  color: var(--orange);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--romantic);
  padding-bottom: 0.5rem;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.branch-card {
  background: var(--white);
  border: 2px solid var(--romantic);
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.branch-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.branch-card h5 {
  color: var(--orange);
  margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--romantic) 0%, var(--white) 50%, var(--romantic) 100%);
  padding: 3rem 2rem;
  border-radius: 20px;
  margin: 3rem 0;
  text-align: center;
}

.cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--black);
}

.cta-question {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  border: 2px solid var(--orange);
}

.question-hindi, .question-english {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.question-hindi {
  color: var(--cinnabar);
}

.question-english {
  color: var(--orange);
}

.cta-tagline {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--black);
  margin-top: 1rem;
}

.contact-info {
  background: var(--orange);
  color: var(--white);
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
}

.contact-info h4 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.contact-details p {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.pride-tagline {
  margin-top: 2rem;
}

.hindi-tagline, .english-tagline {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.hindi-tagline {
  color: var(--cinnabar);
}

.english-tagline {
  color: var(--orange);
}

/* About Page Responsive Design */
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-section {
    padding: 2rem 1rem;
  }

  .stat-card .stat-number {
    font-size: 2.5rem;
  }

  .milestones-grid,
  .awards-grid,
  .stats-grid,
  .features-grid,
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
}