@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #F5A623;
  --secondary: #5B5B63;
  --accent: #FFD56A;
  --bg: #FFFDF8;
  --bg-alt: #F6F7FB;
  --text: #3B3B3B;
  --text-light: #7C7C84;
  --success: #7CC576;
  --danger: #F25F5C;
  --pastel-blue: #A8D8EA;
  --pastel-green: #C3E8C5;
  --pastel-yellow: #FFF2B5;
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
}

::-moz-selection {
  background: var(--primary);
  color: #fff;
}

::selection {
  background: var(--primary);
  color: #fff;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #d48c1a;
}

.section-title {
  margin-bottom: 3rem;
}

.section-title .subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 580px;
}

.wave-divider {
  position: relative;
  width: 100%;
  height: 80px;
}

.wave-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.organic-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}

.organic-shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.organic-shape-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(168, 216, 234, 0.15) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
}

.organic-shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 213, 106, 0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
}

/* Navbar */
.navbar-glass {
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
  padding: 0.75rem 0;
  transition: var(--transition);
}

.navbar-glass.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
}

.navbar .nav-link {
  font-weight: 500;
  color: var(--text) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 0.5rem;
  transition: var(--transition);
  position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--primary) !important;
  background: rgba(245, 166, 35, 0.08);
}

.navbar .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--primary);
  border-radius: 10px;
}

.dropdown-menu {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  padding: 0.75rem;
}

.dropdown-item {
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: rgba(245, 166, 35, 0.08);
  color: var(--primary);
}

.dropdown-item.active {
  background: rgba(245, 166, 35, 0.12);
  color: var(--primary);
  font-weight: 600;
}

.dropdown-item.active::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.navbar-brand img {
  height: 42px;
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.hero-section .hero-bg {
  display: none;
}

.hero-section .hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content .badge-hero {
  display: inline-block;
  background: rgba(245, 166, 35, 0.15);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
}

.hero-image-wrapper .hero-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-image-wrapper .hero-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.hero-image-wrapper .hero-card .carousel-inner {
  border-radius: var(--radius-xl);
}

.hero-image-wrapper .hero-card .carousel-item img {
  height: 450px;
  object-fit: cover;
}

.hero-image-wrapper .hero-card .carousel-indicators {
  bottom: 16px;
  gap: 6px;
  margin-bottom: 0;
}

.hero-image-wrapper .hero-card .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  opacity: 0.7;
  transition: var(--transition);
}

.hero-image-wrapper .hero-card .carousel-indicators button.active {
  background: var(--primary);
  border-color: var(--primary);
  opacity: 1;
  width: 28px;
  border-radius: 10px;
}

.hero-image-wrapper .hero-card .carousel-control-prev,
.hero-image-wrapper .hero-card .carousel-control-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: var(--transition);
  color: var(--text);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper .hero-card:hover .carousel-control-prev,
.hero-image-wrapper .hero-card:hover .carousel-control-next {
  opacity: 1;
}

.hero-image-wrapper .hero-card .carousel-control-prev {
  left: 12px;
}

.hero-image-wrapper .hero-card .carousel-control-next {
  right: 12px;
}

.hero-image-wrapper .hero-card .carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 2rem 1rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.hero-image-wrapper .hero-card .carousel-caption p {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-image-wrapper .hero-card .carousel-inner {
  border-radius: var(--radius-xl);
}

.hero-image-wrapper .hero-card .carousel-item img {
  height: 450px;
  object-fit: cover;
}

.hero-image-wrapper .hero-card .carousel-indicators {
  bottom: 16px;
  gap: 6px;
  margin-bottom: 0;
}

.hero-image-wrapper .hero-card .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  opacity: 0.7;
  transition: var(--transition);
}

.hero-image-wrapper .hero-card .carousel-indicators button.active {
  background: var(--primary);
  border-color: var(--primary);
  opacity: 1;
  width: 28px;
  border-radius: 10px;
}

.hero-image-wrapper .hero-card .carousel-control-prev,
.hero-image-wrapper .hero-card .carousel-control-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: var(--transition);
  color: var(--text);
  font-size: 1.1rem;
}

.hero-image-wrapper .hero-card:hover .carousel-control-prev,
.hero-image-wrapper .hero-card:hover .carousel-control-next {
  opacity: 1;
}

.hero-image-wrapper .hero-card .carousel-control-prev {
  left: 12px;
}

.hero-image-wrapper .hero-card .carousel-control-next {
  right: 12px;
}

.hero-image-wrapper .hero-card .carousel-caption {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.hero-image-wrapper .hero-card .carousel-caption p {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
}

.hero-floating-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--glass-shadow);
  animation: float 3s ease-in-out infinite;
}

.hero-floating-card.card-1 {
  top: 20px;
  left: -30px;
}

.hero-floating-card.card-2 {
  bottom: 40px;
  right: -20px;
  animation-delay: 1.5s;
}

/* Buttons */
.btn-primary-custom {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary-custom:hover {
  background: #d48c1a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
}

.btn-secondary-custom {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(91, 91, 99, 0.2);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary-custom:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Card Glass */
.card-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  padding: 2rem;
  transition: var(--transition);
}

.card-glass:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

/* Program Card */
.program-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.program-card.playground::before { background: var(--pastel-blue); }
.program-card.montessori::before { background: var(--pastel-green); }
.program-card.sd::before { background: var(--pastel-yellow); }

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.program-card .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
}

.program-card.playground .icon { background: rgba(168, 216, 234, 0.25); color: #6BB5D0; }
.program-card.montessori .icon { background: rgba(195, 232, 197, 0.4); color: #5FAF63; }
.program-card.sd .icon { background: rgba(255, 242, 181, 0.5); color: #D4B84A; }

.program-card h4 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.program-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

/* Counter */
.counter-section {
  position: relative;
  overflow: hidden;
}

.counter-item {
  text-align: center;
  padding: 2rem;
}

.counter-item .counter-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.counter-item .counter-label {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Gallery Card */
.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-card .gallery-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Teacher Card */
.teacher-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  text-align: center;
  height: 100%;
}

.teacher-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.teacher-card .photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border: 4px solid var(--pastel-yellow);
}

.teacher-card h5 {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.teacher-card .role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.teacher-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* News Card */
.news-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  height: 100%;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.news-card .news-body {
  padding: 1.5rem;
}

.news-card .news-date {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.news-card h5 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.news-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Testimonial */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
}

.testimonial-card .quote {
  font-size: 1.95rem;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-card .user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card .user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card .user h6 {
  font-weight: 700;
  margin-bottom: 0;
}

.testimonial-card .user span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* CTA */
.cta-section {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.cta-section .cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-section .cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section .cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.92) 0%, rgba(255, 213, 106, 0.88) 100%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
  text-align: center;
}

.cta-content h2 {
  font-weight: 800;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-content .btn {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
}

.cta-content .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 0 0;
}

.footer h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.footer p, .footer li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

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

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-right: 0.5rem;
  transition: var(--transition);
}

.footer .social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.footer .footer-bottom p {
  margin-bottom: 0;
  font-size: 0.85rem;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #d48c1a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
}

/* Animations */
[data-aos] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-left"] { transform: translateX(-40px); }
[data-aos="fade-right"] { transform: translateX(40px); }
[data-aos="fade-left"].aos-animate,
[data-aos="fade-right"].aos-animate { transform: translateX(0); }

[data-aos="zoom"] { transform: scale(0.9); }
[data-aos="zoom"].aos-animate { transform: scale(1); }

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

.floating { animation: float 3s ease-in-out infinite; }

/* Ripple */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  top: 50%;
  left: 50%;
  transform: scale(0);
  opacity: 0;
}

.ripple:active::after {
  animation: rippleAnim 0.6s ease-out;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Page Header */
.page-header {
  position: relative;
  padding: 10rem 0 5rem;
  overflow: hidden;
}

.page-header .header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header .header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header .header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.06) 0%, rgba(255, 253, 248, 0.6) 40%, rgba(255, 253, 248, 0.2) 100%);
  z-index: 1;
}

.page-header .header-content {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.page-header .breadcrumb {
  background: transparent;
  justify-content: center;
}

.page-header .breadcrumb-item { color: var(--text-light); }
.page-header .breadcrumb-item a { color: var(--primary); }
.page-header .breadcrumb-item.active { color: var(--text); }

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 10px;
}

.timeline-item {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 2.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.65rem;
  top: 0.25rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 3px var(--primary);
}

.timeline-item .year {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.timeline-item h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* FAQ */
.faq-item {
  border: 1px solid rgba(91, 91, 99, 0.1);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(245, 166, 35, 0.3);
}

.faq-item .faq-header {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: var(--transition);
}

.faq-item .faq-header:hover {
  color: var(--primary);
}

.faq-item .faq-header .faq-icon {
  transition: var(--transition);
  font-size: 1.25rem;
  color: var(--text-light);
}

.faq-item.active .faq-header .faq-icon {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-item .faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-body {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

.faq-item .faq-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Admission Steps */
.step-card {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.step-card .step-number {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step-card h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Contact */
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item h6 {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.contact-form .form-control {
  border-radius: var(--radius);
  border: 2px solid rgba(91, 91, 99, 0.1);
  padding: 0.85rem 1.25rem;
  font-family: var(--font);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--bg);
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.1);
}

.contact-form textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--text-light);
}

.map-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

/* Responsive */
@media (max-width: 1199.98px) {
  .hero-content h1 { font-size: 2.8rem; }
}

@media (max-width: 991.98px) {
  .hero-content h1 { font-size: 2.4rem; }
  .hero-content p { font-size: 1rem; }
  .hero-image-wrapper .hero-card img,
  .hero-image-wrapper .hero-card .carousel-item img { height: 350px; }
  .hero-floating-card.card-1 { left: 10px; }
  .hero-floating-card.card-2 { right: 10px; }
  .page-header h1 { font-size: 2.2rem; }
  .section-title h2 { font-size: 1.8rem; }
  .counter-item .counter-number { font-size: 2.5rem; }
  .navbar-glass { padding: 0.5rem 0; }
}

@media (max-width: 767.98px) {
  .hero-section { min-height: auto; padding: 5rem 0 3rem; }
  .hero-content h1 { font-size: 2rem; }
  .hero-image-wrapper { margin-top: 2rem; }
  .hero-image-wrapper .hero-card img,
  .hero-image-wrapper .hero-card .carousel-item img { height: 280px; }
  .hero-image-wrapper .hero-card .carousel-caption p { font-size: 0.8rem; }
  .hero-image-wrapper .hero-card .carousel-indicators { bottom: 10px; }
  .hero-image-wrapper .hero-card .carousel-indicators button { width: 8px; height: 8px; }
  .hero-image-wrapper .hero-card .carousel-indicators button.active { width: 20px; }
  .hero-floating-card { display: none; }
  .page-header { padding: 8rem 0 3rem; }
  .page-header h1 { font-size: 1.8rem; }
  .section-title h2 { font-size: 1.6rem; }
  .cta-content h2 { font-size: 1.6rem; }
  .counter-item .counter-number { font-size: 2rem; }
}

@media (max-width: 575.98px) {
  .hero-content h1 { font-size: 1.7rem; }
  .section-title h2 { font-size: 1.4rem; }
  .program-card { padding: 1.75rem; }
  .cta-content { padding: 3rem 1.5rem; }
  .navbar-brand img { height: 35px; }
}

/* Masonry */
.masonry-grid {
  column-count: 3;
  column-gap: 1.25rem;
}

.masonry-grid .masonry-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
}

@media (max-width: 991.98px) {
  .masonry-grid { column-count: 2; }
}

@media (max-width: 575.98px) {
  .masonry-grid { column-count: 1; }
}

/* Filter Buttons */
.filter-btn {
  background: transparent;
  border: 2px solid rgba(91, 91, 99, 0.1);
  color: var(--text-light);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Value Card */
.value-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-card .icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.value-card h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}