* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
}

:root {
  --primary: #ff6b35;      /* brighter orange */
  --primary-dark: #f05a28;
  --secondary: #2c3e66;
  --accent: #ffd966;
  --light: #fffaf5;
  --dark: #0a1a2a;
  --gradient: linear-gradient(135deg, #ff6b35, #ff9a5e);
  --gradient-gold: linear-gradient(135deg, #f9b43a, #fb8c00);
  --gradient-rainbow: linear-gradient(90deg, #ff6b35, #ffb347, #ffd966, #6bc46d, #4a90e2);
  --shadow-sm: 0 5px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.18);
  --glow-orange: 0 0 15px rgba(255,107,53,0.5);
}

body {
  background: var(--light);
  color: var(--dark);
  overflow-x: hidden;
  position: relative;
}

/* Animated Background Blobs */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255,107,53,0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255,180,71,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -2;
  animation: floatBlobs 20s infinite alternate;
}

@keyframes floatBlobs {
  0% { transform: scale(1) rotate(0deg); opacity: 0.6; }
  100% { transform: scale(1.1) rotate(5deg); opacity: 1; }
}

/* Custom Cursor */
.custom-cursor {
  width: 24px;
  height: 24px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  background: rgba(255,107,53,0.2);
  backdrop-filter: blur(4px);
}
@media (max-width: 768px) {
  .custom-cursor { display: none; }
  body { cursor: auto; }
}

/* Container */
.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.header:hover {
  background: rgba(255,255,255,0.98);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo a {
  text-decoration: none;
}
.logo h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.5px;
}
.logo h2 span {
  color: var(--primary);
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.tagline {
  font-size: 0.7rem;
  letter-spacing: 2px;
  margin-top: -5px;
  color: #888;
}
.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-menu a {
  text-decoration: none;
  font-weight: 600;
  color: var(--secondary);
  transition: 0.3s;
  position: relative;
  font-size: 1.05rem;
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--primary);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient);
  border-radius: 5px;
  transition: width 0.3s;
}
.nav-menu a:hover::after, .nav-menu a.active::after {
  width: 100%;
}
.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--secondary);
}

/* Hero Section with Particle Effect */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fff5e8, #ffefe0);
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 40%, rgba(255,107,53,0.1), transparent 70%);
  z-index: 0;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 2;
}
.hero-text {
  flex: 1;
}
.hero-text h1 {
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.hero-text h1 span {
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.glow-text {
  text-shadow: 0 0 20px rgba(255,107,53,0.3);
}
.hero-badge {
  display: inline-block;
  background: var(--gradient);
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  color: white;
  font-weight: 700;
  margin: 1rem 0;
  font-size: 1rem;
  box-shadow: var(--glow-orange);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,107,53,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255,107,53,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,53,0); }
}
.hero-text p {
  font-size: 1.2rem;
  margin: 1rem 0;
  color: #555;
}
.hero-image {
  flex: 1;
  text-align: center;
  position: relative;
}
.hero-image img {
  max-width: 100%;
  border-radius: 40px;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.hero-image img:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 30px 50px rgba(0,0,0,0.2);
}
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 1;
}

/* Buttons with 3D effect */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  margin: 0.5rem;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gradient);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,107,53,0.5);
}
.btn-primary:active {
  transform: translateY(2px);
}
.btn-outline-light {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}
.btn-outline-light:hover {
  background: var(--secondary);
  color: white;
  transform: translateY(-2px);
}
.btn-primary-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-primary-outline:hover {
  background: var(--primary);
  color: white;
}
.btn-outline-light-dark {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}
.btn-outline-light-dark:hover {
  background: var(--secondary);
  color: white;
}
.btn-glow {
  background: var(--gradient);
  color: white;
  box-shadow: 0 0 15px rgba(255,107,53,0.6);
}
.btn-glow:hover {
  box-shadow: 0 0 25px rgba(255,107,53,0.9);
  transform: translateY(-2px);
}

/* About Unique */
.about-unique {
  padding: 5rem 0;
}
.about-wrapper {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.about-text {
  flex: 1;
}
.about-text h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.about-text h2 span {
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #555;
}
.about-stats {
  flex: 1;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  min-width: 150px;
  cursor: default;
}
.stat-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow-lg);
}
.stat-card:hover .stat-number {
  color: white;
}
.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  transition: color 0.3s;
}

/* Why Choose Us */
.why-unique {
  background: white;
  padding: 5rem 0;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}
.section-header h2 span {
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.section-header p {
  color: #666;
  margin-top: 0.5rem;
}
.features-grid-unique {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.feature-card-unique {
  position: relative;
  background: white;
  padding: 2rem;
  border-radius: 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}
.feature-card-unique:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}
.feature-card-unique:hover .feature-icon {
  transform: scale(1.2) rotate(5deg);
}
.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(255,107,53,0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}
.feature-card-unique:hover .card-glow {
  opacity: 1;
}

/* Welcome Session with Video Modal */
.welcome-session {
  background: var(--light);
}
.welcome-wrapper {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.welcome-text {
  flex: 1;
}
.welcome-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.welcome-text h2 span {
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.welcome-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
}
.welcome-highlight {
  background: rgba(255,107,53,0.1);
  padding: 1.5rem;
  border-radius: 20px;
  margin: 2rem 0;
  position: relative;
  transition: all 0.3s;
}
.welcome-highlight:hover {
  background: rgba(255,107,53,0.15);
  transform: scale(1.02);
}
.welcome-highlight i {
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.6;
  position: absolute;
  top: -10px;
  left: 10px;
}
.welcome-highlight p {
  font-style: italic;
  font-size: 1.2rem;
  margin: 0;
  padding-left: 2rem;
}
.welcome-image {
  flex: 1;
  position: relative;
}
.welcome-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 0.4s;
}
.welcome-image img:hover {
  transform: scale(1.02);
}
.play-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gradient);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: var(--shadow-md);
}
.play-button:hover {
  transform: scale(1.1);
  background: var(--primary-dark);
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}
.video-modal.active {
  display: flex;
}
.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  animation: modalPop 0.4s ease;
}
@keyframes modalPop {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.video-modal-content iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
}
.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: 0.3s;
}
.close-modal:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

/* Vision Section */
.vision-section {
  background: white;
}
.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.vision-card {
  text-align: center;
  padding: 2rem;
  background: var(--light);
  border-radius: 30px;
  transition: all 0.4s ease;
}
.vision-card:hover {
  transform: translateY(-12px);
  background: white;
  box-shadow: var(--shadow-md);
}
.vision-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: transform 0.3s;
}
.vision-card:hover .vision-icon {
  transform: scale(1.1) rotate(5deg);
}
.vision-card h3 {
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

/* Testimonials */
.testimonials {
  background: linear-gradient(120deg, #fff5e8, #ffefe0);
}
.testimonial-slider {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 2rem;
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 1.33rem);
  background: white;
  padding: 2rem;
  border-radius: 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.testimonial-img img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--primary);
  transition: transform 0.3s;
}
.testimonial-card:hover .testimonial-img img {
  transform: scale(1.05);
}
.testimonial-card p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.testimonial-card h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.stars {
  color: #ffc107;
}
.testimonial-prev, .testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
  font-size: 1.2rem;
}
.testimonial-prev { left: 0; }
.testimonial-next { right: 0; }
.testimonial-prev:hover, .testimonial-next:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-50%) scale(1.05);
}

/* FAQ */
.faq-section {
  background: white;
}
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--light);
  margin-bottom: 1rem;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-question:hover {
  background: rgba(255,107,53,0.08);
}
.faq-question h3 {
  font-size: 1.1rem;
  margin: 0;
}
.faq-question i {
  transition: transform 0.3s;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  padding: 0 1.5rem;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.5rem;
}
.faq-answer p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* Admission Parallax */
.admission-parallax {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e3c72, #0a1a2e);
  overflow: hidden;
}
.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://picsum.photos/id/177/1920/1080') center/cover fixed;
  opacity: 0.2;
  transition: transform 0.3s;
}
.admission-parallax:hover .parallax-bg {
  transform: scale(1.02);
}
.banner-content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
}
.banner-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  animation: bounceLight 1s infinite alternate;
}
@keyframes bounceLight {
  from { transform: translateY(0); }
  to { transform: translateY(-5px); }
}
.banner-content p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

/* Gallery Masonry */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-flow: dense;
  gap: 1.5rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,107,53,0.7), rgba(255,180,71,0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .overlay {
  opacity: 1;
}
.overlay i {
  color: white;
  font-size: 2.5rem;
  transform: scale(0.8);
  transition: transform 0.3s;
}
.gallery-item:hover .overlay i {
  transform: scale(1);
}

/* Contact */
.contact-grid-unique {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 40px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.contact-card h3 {
  margin: 1rem 0 0.5rem;
  color: var(--secondary);
}
.contact-card a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-card a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}
.map-card {
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}
.map-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
  background: var(--dark);
  color: #ccc;
  padding: 3rem 0 1rem;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-col h3, .footer-col h4 {
  color: white;
  margin-bottom: 1rem;
}
.footer-col h3 span {
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.social-icons a {
  color: white;
  margin-right: 1rem;
  font-size: 1.2rem;
  transition: transform 0.3s, color 0.3s;
  display: inline-block;
}
.social-icons a:hover {
  transform: translateY(-5px);
  color: var(--primary);
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  line-height: 2;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #444;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.float-whatsapp, .float-call {
  background: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.float-call {
  background: #0077b6;
}
.float-whatsapp:hover, .float-call:hover {
  transform: translateX(-5px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* Chat Assistant (Left Side) */
.chat-assistant {
  position: fixed;
  bottom: 100px;
  left: 20px;
  z-index: 1000;
}
.chat-button {
  background: var(--gradient);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.chat-button:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}
.chat-window {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 320px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1001;
}
.chat-window.open {
  display: flex;
  animation: slideInLeft 0.3s ease;
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
.chat-header {
  background: var(--gradient);
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-header button {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}
.chat-messages {
  height: 300px;
  overflow-y: auto;
  padding: 1rem;
  background: #f9f9ff;
}
.chat-message {
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  max-width: 85%;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-message.user {
  background: var(--primary);
  color: white;
  margin-left: auto;
  text-align: right;
}
.chat-message.bot {
  background: #e9ecef;
  color: #333;
}
.chat-input {
  display: flex;
  padding: 0.5rem;
  border-top: 1px solid #ddd;
  background: white;
}
.chat-input input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 20px;
  outline: none;
}
.chat-input button {
  background: var(--primary);
  border: none;
  color: white;
  padding: 0 1rem;
  border-radius: 20px;
  margin-left: 0.5rem;
  cursor: pointer;
  transition: 0.2s;
}
.chat-input button:hover {
  background: var(--primary-dark);
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .contact-grid-unique {
    grid-template-columns: 1fr;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    transition: 0.3s;
    box-shadow: var(--shadow-md);
  }
  .nav-menu.active {
    left: 0;
  }
  .hamburger {
    display: block;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .gallery-item.large {
    grid-column: span 1;
  }
  .testimonial-card {
    flex: 0 0 calc(100% - 1rem);
  }
  .video-modal-content iframe {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .chat-assistant {
    bottom: 80px;
    left: 10px;
  }
  .chat-window {
    width: 280px;
    left: 0;
  }
  .chat-button span {
    display: none;
  }
  .chat-button {
    padding: 12px;
  }
  .stat-card {
    min-width: 120px;
    padding: 1.5rem;
  }
  .stat-number {
    font-size: 2rem;
  }
}
/* Page Hero (used on all inner pages) */
.page-hero {
  background: linear-gradient(135deg, #1e3c72, #0a1a2e);
  padding: 8rem 0 4rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://picsum.photos/id/20/1600/400') center/cover;
  opacity: 0.2;
  z-index: 0;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* About School Section */
.about-school-wrapper {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.about-school-text {
  flex: 1;
}
.about-school-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.about-school-text h2 span {
  color: var(--primary);
}
.about-school-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #555;
}
.about-highlight {
  background: rgba(255,107,53,0.1);
  padding: 1.5rem;
  border-radius: 20px;
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.about-highlight i {
  font-size: 2rem;
  color: var(--primary);
}
.about-highlight p {
  margin: 0;
  font-style: italic;
}
.about-school-image {
  flex: 1;
}
.about-school-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

/* Recognition Grid */
.recognition {
  background: white;
}
.recognition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.recognition-card {
  text-align: center;
  padding: 2rem;
  background: var(--light);
  border-radius: 30px;
  transition: all 0.3s ease;
}
.recognition-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  background: white;
}
.recognition-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.recognition-card h3 {
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

/* Mission & Vision Grid */
.mission-vision {
  background: var(--light);
}
.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.mv-card {
  text-align: center;
  padding: 2.5rem;
  background: white;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.mv-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.mv-card h3 {
  margin-bottom: 1rem;
  color: var(--secondary);
}

/* Leader (Director & Principal) Sections */
.director-desk, .principal-message {
  background: white;
}
.leader-wrapper {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.leader-wrapper.reverse {
  flex-direction: row-reverse;
}
.leader-image {
  flex: 1;
  text-align: center;
}
.leader-image img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--primary);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s;
}
.leader-image img:hover {
  transform: scale(1.02);
}
.leader-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 1rem;
  color: var(--secondary);
}
.leader-title {
  font-size: 0.9rem;
  color: var(--primary);
}
.leader-message {
  flex: 1;
  position: relative;
}
.leader-message h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.leader-message h2 span {
  color: var(--primary);
}
.quote-icon {
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}
.leader-message p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #555;
}
.signature {
  font-weight: 600;
  color: var(--secondary);
  font-style: italic;
}

/* Responsive */
@media (max-width: 992px) {
  .leader-wrapper, .leader-wrapper.reverse {
    flex-direction: column;
    text-align: center;
  }
  .about-school-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-hero h1 {
    font-size: 2.2rem;
  }
}
/* Add these at the very end of your style.css file */

/* === FIX: Prevent fixed header from overlapping content === */
body {
  padding-top: 80px;
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
}

/* === FIX: Hero wave should not block clicks === */
.hero-wave {
  pointer-events: none;
}

/* === Ensure mobile menu appears below header and closes properly === */
@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 70px; /* Adjust to match header height */
    left: -100%;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    transition: 0.3s;
    box-shadow: var(--shadow-md);
    z-index: 999;
  }
  .nav-menu.active {
    left: 0;
  }
  .hamburger {
    display: block;
    z-index: 1001; /* Ensure above menu */
  }
}
@media (max-width: 768px) {
  .hero-content {
    gap: 1.5rem;
  }

  .about-wrapper,
  .welcome-wrapper {
    gap: 2rem;
  }
}
.hero-image img {
  width: 100%;
  max-width: 500px;
}
* {
  max-width: 100%;
}
html, body {
  overflow-x: hidden;
  width: 100%;
}
.footer-text {
  text-align: center;
  animation: flashText 2s infinite;
}

/* Heart color */
.heart-icon {
  color: #e67e22;
}

/* Link styling */
.footer-text a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

/* Flash animation */
@keyframes flashText {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}

/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Active State */
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Popup Box */
.popup-content {
  position: relative;
  width: 90%;
  max-width: 350px;
  animation: popupZoom 0.4s ease;
}

/* Image */
.popup-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #ff6600;
  color: #fff;
  font-size: 18px;
  padding: 6px 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

/* Animation */
@keyframes popupZoom {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}