/* =============================================
   Bhoomika Public School - Main Stylesheet
   ============================================= */

/* Root Variables */
:root {
  --yellow: #ffd93d;
  --sky-blue: #6ec6f5;
  --pink: #ff8fa3;
  --mint: #a8e6cf;
  --purple: #c7b8ea;
  --orange: #ffb347;
  --dark: #2d3748;
  --text-dark: #333;
  --text-muted: #718096;
  --white: #fff;
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --transition: all 0.35s ease;
  --font-main: "Poppins", sans-serif;
  --font-fun: "Comic Neue", cursive;
}

/* Global Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--dark);
}
a {
  text-decoration: none;
  transition: var(--transition);
}
img {
  max-width: 100%;
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--dark);
  color: #fff;
  padding: 8px 0;
  font-size: 0.82rem;
}
.top-bar span {
  color: rgba(255, 255, 255, 0.85);
}
.top-bar i {
  color: var(--yellow);
}

/* =============================================
   NAVBAR
   ============================================= */
.main-navbar {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
  z-index: 1000;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  font-size: 2.5rem;
  animation: float 3s ease-in-out infinite;
}

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

.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff6b9d, #6ec6f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.brand-tagline {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
}

.main-navbar .nav-link {
  color: var(--dark) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: #ff6b9d !important;
  background: rgba(255, 107, 157, 0.08);
}

.btn-enroll {
  background: linear-gradient(135deg, #ff6b9d, #ffb347);
  color: #fff !important;
  border: none;
  padding: 10px 22px !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.35);
  transition: var(--transition);
}
.btn-enroll:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
  color: #fff !important;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  background: linear-gradient(135deg, #fff9e6 0%, #e8f8ff 40%, #ffe8f3 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(110, 198, 245, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 157, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 157, 0.1);
  border: 2px solid rgba(255, 107, 157, 0.3);
  color: #ff6b9d;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 157, 0.3);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 107, 157, 0);
  }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #ff6b9d, #6ec6f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  max-width: 500px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: linear-gradient(135deg, #ff6b9d, #ffb347);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 157, 0.5);
  color: #fff;
}

.btn-outline-custom {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-custom:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat .stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: #ff6b9d;
  display: block;
}
.hero-stat .stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-illustration {
  font-size: 10rem;
  text-align: center;
  animation: bounce-hero 3s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

@keyframes bounce-hero {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.floating-badges {
  position: absolute;
  width: 100%;
  height: 100%;
}
.float-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  animation: float-badge 4s ease-in-out infinite;
}
.float-badge:nth-child(1) {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}
.float-badge:nth-child(2) {
  top: 60%;
  right: -5%;
  animation-delay: 1s;
}
.float-badge:nth-child(3) {
  bottom: 10%;
  left: 5%;
  animation-delay: 2s;
}

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

/* =============================================
   SECTION STYLES
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b9d22, #6ec6f522);
  color: #ff6b9d;
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 107, 157, 0.2);
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-title .color-accent {
  background: linear-gradient(135deg, #ff6b9d, #6ec6f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b9d, #6ec6f5);
  border-radius: 10px;
  margin: 15px auto 0;
}

/* =============================================
   ABOUT SECTION (HOME)
   ============================================= */
.about-section {
  padding: 80px 0;
  background: #fff;
}

.about-features {
  margin-top: 25px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
  padding: 16px 20px;
  background: #f9f9ff;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.about-feature:hover {
  transform: translateX(5px);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.feature-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.about-feature:nth-child(1) .feature-icon-wrap {
  background: rgba(255, 217, 61, 0.2);
}
.about-feature:nth-child(2) .feature-icon-wrap {
  background: rgba(110, 198, 245, 0.2);
}
.about-feature:nth-child(3) .feature-icon-wrap {
  background: rgba(168, 230, 207, 0.2);
}

.feature-text h6 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.feature-text p {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.about-image-box {
  /*background: linear-gradient(135deg, #fff9e6, #e8f8ff);*/
  background: url("../images/school.jpeg") center center / cover no-repeat;
  border-radius: var(--radius-lg);
  padding: 50px 30px;
  text-align: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
  min-height: 475px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-image-box .decorative-circles span {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
}
.about-image-box .decorative-circles span:nth-child(1) {
  width: 100px;
  height: 100px;
  background: var(--yellow);
  top: -20px;
  right: -20px;
}
.about-image-box .decorative-circles span:nth-child(2) {
  width: 60px;
  height: 60px;
  background: var(--pink);
  bottom: 20px;
  left: -10px;
}

/* =============================================
   COURSES SECTION
   ============================================= */
.courses-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fdff 0%, #fff 100%);
}

.course-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 25px;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.course-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.course-card.yellow::before {
  background: linear-gradient(90deg, #ffd93d, #ffb347);
}
.course-card.blue::before {
  background: linear-gradient(90deg, #6ec6f5, #5599d8);
}
.course-card.pink::before {
  background: linear-gradient(90deg, #ff8fa3, #ff6b9d);
}
.course-card.mint::before {
  background: linear-gradient(90deg, #a8e6cf, #4caf50);
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 107, 157, 0.2);
}

.course-card.yellow:hover {
  border-color: #ffd93d;
}
.course-card.blue:hover {
  border-color: #6ec6f5;
}
.course-card.pink:hover {
  border-color: #ff8fa3;
}
.course-card.mint:hover {
  border-color: #a8e6cf;
}

.course-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}
.course-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.yellow .course-badge {
  background: rgba(255, 217, 61, 0.2);
  color: #c89a00;
}
.blue .course-badge {
  background: rgba(110, 198, 245, 0.2);
  color: #1a7ab5;
}
.pink .course-badge {
  background: rgba(255, 143, 163, 0.2);
  color: #d03060;
}
.mint .course-badge {
  background: rgba(168, 230, 207, 0.2);
  color: #2d8a5e;
}

.course-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.course-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.course-desc {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.course-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.course-features li {
  font-size: 0.83rem;
  color: var(--text-muted);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.course-features li i {
  font-size: 0.65rem;
  color: #4caf50;
}

.btn-course {
  display: block;
  text-align: center;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  border: 2px solid;
  transition: var(--transition);
}
.yellow .btn-course {
  border-color: #ffd93d;
  color: #c89a00;
}
.yellow .btn-course:hover {
  background: #ffd93d;
  color: #333;
}
.blue .btn-course {
  border-color: #6ec6f5;
  color: #1a7ab5;
}
.blue .btn-course:hover {
  background: #6ec6f5;
  color: #fff;
}
.pink .btn-course {
  border-color: #ff8fa3;
  color: #d03060;
}
.pink .btn-course:hover {
  background: #ff8fa3;
  color: #fff;
}
.mint .btn-course {
  border-color: #a8e6cf;
  color: #2d8a5e;
}
.mint .btn-course:hover {
  background: #a8e6cf;
  color: #fff;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2d3748, #1a202c);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.why-section .section-title {
  color: #fff;
}
.why-section .section-badge {
  color: var(--yellow);
  background: rgba(255, 217, 61, 0.1);
  border-color: rgba(255, 217, 61, 0.3);
}
.why-section .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 30px 25px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  backdrop-filter: blur(10px);
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
}
.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
}
.why-card:nth-child(1) .why-icon {
  background: rgba(255, 217, 61, 0.2);
}
.why-card:nth-child(2) .why-icon {
  background: rgba(110, 198, 245, 0.2);
}
.why-card:nth-child(3) .why-icon {
  background: rgba(255, 143, 163, 0.2);
}
.why-card:nth-child(4) .why-icon {
  background: rgba(168, 230, 207, 0.2);
}

.why-card h5 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.why-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.87rem;
  line-height: 1.6;
  margin: 0;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
  padding: 80px 0;
  background: #fff;
}

.testimonial-card {
  background: linear-gradient(135deg, #fff9e6, #fff);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 217, 61, 0.2);
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 5rem;
  color: rgba(255, 107, 157, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars {
  color: var(--yellow);
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.author-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ff6b9d, #ffb347);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.cta-section .section-title {
  color: #fff;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.85);
}

.btn-cta-white {
  background: #fff;
  color: #ff6b9d;
  font-weight: 700;
  padding: 14px 35px;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}
.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: #ff6b9d;
}

/* =============================================
   INQUIRY / CONTACT FORMS
   ============================================= */
.inquiry-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f8ff, #fff8ff);
}

.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-control,
.form-select {
  border: 2px solid #eee;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: var(--transition);
  background: #fafafa;
}
.form-control:focus,
.form-select:focus {
  border-color: #ff8fa3;
  box-shadow: 0 0 0 3px rgba(255, 143, 163, 0.15);
  background: #fff;
}

.btn-submit {
  background: linear-gradient(135deg, #ff6b9d, #ffb347);
  color: #fff;
  border: none;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.35);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 107, 157, 0.5);
  color: #fff;
}

/* =============================================
   INFO BOXES
   ============================================= */
.info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 25px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: var(--transition);
}
.info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}
.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.info-icon.yellow {
  background: rgba(255, 217, 61, 0.2);
  color: #c89a00;
}
.info-icon.blue {
  background: rgba(110, 198, 245, 0.2);
  color: #1a7ab5;
}
.info-icon.pink {
  background: rgba(255, 143, 163, 0.2);
  color: #d03060;
}

/* =============================================
   PAGE HERO (Inner Pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, #ff6b9d, #6ec6f5);
  padding: 60px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='40' cy='40' r='3' fill='rgba(255,255,255,0.1)'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
}
.page-hero p {
  font-size: 1rem;
  opacity: 0.9;
}
.breadcrumb {
  justify-content: center;
}
.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
}
.breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

/* =============================================
   ABOUT PAGE STYLES
   ============================================= */
.about-content-section {
  padding: 80px 0;
}
.mission-vision-card {
  border-radius: var(--radius-md);
  padding: 35px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.mission-card {
  background: linear-gradient(135deg, #fff9e6, #fffbef);
  border: 2px solid rgba(255, 217, 61, 0.3);
}
.vision-card {
  background: linear-gradient(135deg, #e8f8ff, #eef9ff);
  border: 2px solid rgba(110, 198, 245, 0.3);
}
.mv-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}
.mv-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.mv-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.facility-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.facility-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}
.facility-item i {
  font-size: 1.3rem;
  width: 35px;
}
.facility-item span {
  font-weight: 600;
  font-size: 0.9rem;
}

.team-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.team-name {
  font-weight: 700;
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* =============================================
   ADMISSION PAGE
   ============================================= */
.step-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 25px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  position: relative;
  text-align: center;
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b9d, #ffb347);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0 auto 15px;
  box-shadow: 0 5px 15px rgba(255, 107, 157, 0.35);
}
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.step-title {
  font-weight: 700;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  border-left: 4px solid #ffd93d;
  box-shadow: var(--shadow-sm);
}
.doc-item i {
  color: #ff6b9d;
  font-size: 1.1rem;
}
.doc-item span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: linear-gradient(135deg, #1a202c, #2d3748);
  color: rgba(255, 255, 255, 0.8);
  padding: 0 0 0;
  position: relative;
}
.footer-wave {
  margin-bottom: -2px;
}

/*.footer-brand {
}*/
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo .logo-emoji {
  font-size: 2rem;
}
.footer-logo h5 {
  color: #fff;
  font-weight: 800;
  margin: 0;
  font-size: 1rem;
}
.footer-logo small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 10px;
}
.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-icon:hover {
  background: rgba(255, 107, 157, 0.4);
  color: #fff;
  transform: translateY(-3px);
}
.social-icon.whatsapp:hover {
  background: rgba(37, 211, 102, 0.4);
}

.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a i {
  font-size: 0.6rem;
  color: #ff8fa3;
}
.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-contact {
  list-style: none;
  padding: 0;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-contact li i {
  color: var(--yellow);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-hr {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 20px 0;
}
.footer-bottom {
  padding: 20px 0 25px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* =============================================
   FLOATING ELEMENTS
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
  z-index: 9999;
  transition: var(--transition);
  animation: whatsapp-pulse 2.5s infinite;
}
.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.1);
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
  }
}

.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #ff6b9d, #ffb347);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
  z-index: 9999;
  transition: var(--transition);
}
.back-to-top:hover {
  transform: translateY(-3px);
}
.back-to-top.visible {
  display: flex;
}

/* =============================================
   THANK YOU PAGE
   ============================================= */
.thankyou-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff9e6, #e8f8ff, #ffe8f3);
}
.thankyou-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 550px;
  width: 100%;
}
.thankyou-icon {
  font-size: 5rem;
  animation: bounce-hero 2s infinite;
  margin-bottom: 25px;
}
.thankyou-card h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.thankyou-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
  .main-navbar .navbar-collapse {
    background: #fff;
    padding: 15px;
    border-radius: 0 0 15px 15px;
    box-shadow: var(--shadow-md);
  }
  .hero-section {
    padding: 60px 0 40px;
    min-height: auto;
  }
  .hero-illustration {
    font-size: 6rem;
  }
  .float-badge {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .form-card {
    padding: 25px 20px;
  }
  .thankyou-card {
    padding: 40px 25px;
  }
}
