*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}


:root{
  --brand: #facc15;
  --bg: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --card: #ffffff;
  --border: #e5e7eb;
}

/* Reset & Box sizing */
*,:before,:after{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  font-size:16px;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}

/* Utility container */
.container{max-width:1200px;margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px}

/* Layout alignment fixes */
/* keep content centered inside sections and provide consistent vertical spacing */
.section{padding:80px 0}
.container{max-width:1200px;margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px}

/* Make sure common sections align content consistently */
section{display:block}

/* Smooth transitions */
.btn, .admin-card, .vision-card, .stats-card, .principal-card, .admin-card, .nav-links a{transition:all 0.35s ease}

/* Animations */
@keyframes fadeUp {
  from{opacity:0;transform:translateY(14px)}
  to{opacity:1;transform:translateY(0)}
}

.fade-up{animation:fadeUp .7s ease both}
.fade-up-slow{animation:fadeUp 1.1s ease both}

@keyframes subtle-zoom { from{transform:scale(.98);opacity:.95} to{transform:scale(1);opacity:1} }
.zoom-in{animation:subtle-zoom .6s ease both}

/* Apply default animations to common elements */
.hero-content{animation:fadeUp .9s ease both}
.principal-card{animation:fadeUp .85s ease both}
.journey-grid, .vision-grid, .admin-grid, .stats-grid{animation:fadeUp .8s ease both}

/* Image micro-interactions */
.principal-image img, .journey-image img{transition:transform .6s ease,filter .4s ease}
.principal-image img:hover, .journey-image img:hover{transform:scale(1.03);filter:brightness(1.02)}

/* ensure text blocks don't run too wide on large screens */
.container p{max-width:900px}

/* Images & media */
img,video,svg{max-width:100%;height:auto;display:block}

/* Links */
a{color:var(--brand);text-decoration:none}
a:hover{text-decoration:underline}

/* Headings */
h1,h2,h3,h4,h5,h6{margin:0 0 .5rem;color:var(--text);line-height:1.2}
h1{font-size:2rem}
h2{font-size:1.5rem}

/* Paragraphs & lists */
p{margin:0 0 1rem}
ul{margin:0 0 1rem;padding-left:1.25rem}

/* Buttons */
.btn{display:inline-block;padding:8px 16px;border-radius:6px;border:1px solid transparent;font-weight:600;cursor:pointer}
.btn-primary{background:var(--brand);color:#000;border-color:var(--brand)}
.btn-outline{background:transparent;color:var(--brand);border-color:var(--brand)}

/* Form elements */
input,textarea,select,button{font:inherit}
input,textarea,select{padding:10px 12px;border:1px solid var(--border);border-radius:6px;background:#fff;color:var(--text)}
input:focus,textarea:focus,select:focus{outline:none;box-shadow:0 0 0 4px rgba(250,204,21,0.12);border-color:var(--brand)}

/* Layout helpers */
.flex{display:flex}
.flex-center{display:flex;align-items:center;justify-content:center}
.gap-16{gap:16px}
.text-center{text-align:center}
.muted{color:var(--muted)}

/* Small screen utilities */
.hide-mobile{display:block}
@media (max-width:600px){.hide-mobile{display:none}}

/* Preserve existing component styles below (topbar, navbar, mobile navbar, responsive)
   — kept intact but moved after the reset so utilities are available. */

/* ================= TOP BAR ================= */
.topbar {
  background: #000;
  color: #fff;
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 12px 0;
}

.admission-btn {
  border: 1px solid var(--brand);
  padding: 8px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.admission-btn:hover {
  background: #fff;
  color: #000;
}

.marquee {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.contact-info {
  display: flex;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.contact-item:hover {
  color: var(--brand);
}

/* Topbar & footer contact icon styling */
.topbar .topbar-icon, .footer-contact .footer-icon, .footer-contact i{
  color: var(--brand);
  font-size: 18px;
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
}

.footer-contact p{display:flex;align-items:center;gap:8px;margin:0 0 12px}

/* ================= DESKTOP NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  z-index: 1000;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  height: 50px;
}

.logo h1 {
  font-size: 18px;
  font-weight: 700;
}

.logo p {
  font-size: 13px;
  color: #666;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--brand);
}

.contact-btn {
  padding: 8px 22px;
  border-radius: 30px;
  border: 1px solid var(--brand);
  color: var(--brand);
  font-weight: 600;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #fff;
  color: #000;
}

/* ================= MOBILE NAVBAR ================= */
.mobile-navbar {
  display: none;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.menu-toggle {
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu {
  display: none; /* toggled via script */
  flex-direction: column;
  padding: 12px 16px 20px 16px;
  border-top: 1px solid #eee;
  gap: 6px;
  max-height: calc(100vh - 76px);
  overflow: auto;
}

.mobile-menu a {
  text-decoration: none;
  color: #0b1220;
  padding: 14px 16px;
  font-weight: 600;
  display: block;
  border-radius: 8px;
}

.mobile-menu a:hover {
  color: var(--brand);
  background: rgba(250,204,21,0.06);
}

/* Make the Contact button full width and nicely padded on mobile */
.mobile-menu .contact-btn{
  display:block;
  width:100%;
  padding:12px 18px;
  border-radius:30px;
  box-sizing:border-box;
  text-align:left;
  background:transparent;
  border:1px solid var(--brand);
  color:var(--brand);
  font-weight:700;
}

.mobile-menu .contact-btn:hover{background:var(--brand);color:#000}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .navbar {
    display: none;
  }

  .topbar {
    display: none;
  }

  .mobile-navbar {
    display: block;
  }
}


/* ================= HERO SECTION ================= */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  height: 90vh;
}

.hero-slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 30%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 700px;
  z-index: 2;
}

.hero-tagline {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-content span {
  color: #facc15;
}

.hero-btn {
  margin-top: 35px;
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  background: #fff;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #facc15;
}

.hero-btn .arrow {
  background: #facc15;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    left: 5%;
    max-width: 90%;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

  .hero-btn {
    padding: 12px 22px;
  }
}
/* ================= JOURNEY SECTION ================= */

.journey {
  padding: 100px 0;
  background: #f5f5f5;
}

.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Title */
.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
}

.highlight {
  color: #facc15;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
  border-left: 4px solid #facc15;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-left: 10px;
}

.timeline-item p {
  color: #555;
  margin-left: 12px;
}

/* Yellow Circle */
.timeline-dot {
  position: absolute;
  left: -14px;
  top: 5px;
  width: 18px;
  height: 18px;
  background: #facc15;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px #facc15;
}

/* Image */
.journey-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .journey-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .journey-image img {
    height: 300px;
  }
}

/* ================= PRINCIPAL SECTION ================= */

.principal-section {
  padding: 100px 0;
  background: #ffffff;
}

.principal-card {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  min-height: 450px;
}

/* Image */
.principal-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.principal-image {
  width: 100%;
  height: 70%;
  margin: 0;
  padding: 0;
}

.principal-content {
  padding: 48px;
}

/* Content */
.principal-content {
  padding: 60px;
}

.principal-title {
  font-size: 34px;
  font-weight: 700;
  color: #facc15;
  margin-bottom: 20px;
}

.principal-quote {
  font-style: italic;
  color: #777;
  margin-bottom: 25px;
}

.principal-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.principal-name {
  margin-top: 30px;
  font-weight: 600;
  color: #facc15;
  font-size: 18px;
}

.principal-name span {
  color: #000;
  font-weight: 500;
  font-size: 14px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .principal-card {
    grid-template-columns: 1fr;
  }

  .principal-image img {
    height: 350px;
  }

  .principal-content {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .principal-content {
    padding: 30px;
  }

  .principal-title {
    font-size: 26px;
  }
}

/* ================= ADMINISTRATIVE SECTION ================= */

.admin-section {
  padding: 100px 0;
  background: #ffffff;
  text-align: center;
}

.admin-title {
  font-size: 34px;
  font-weight: 700;
  color: #facc15;
  margin-bottom: 60px;
}

/* Grid Layout */
.admin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.admin-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  font-weight: 600;
  color: #333;
  border-top: 4px solid #facc15;
  border-bottom: 4px solid #1e3a8a; /* Dark Blue */
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  cursor: default;
}

.admin-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .admin-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-title {
    font-size: 26px;
  }
}
/* ================= VISION & MISSION ================= */

.vision-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(to right, #eef2ff, #ffffff, #fff6dc);
  overflow: hidden;
}

/* Background Image (faded) */
.vision-bg {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  z-index: 0;
}

.vision-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-section .container {
  position: relative;
  z-index: 1;
}

/* Title */
.vision-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 80px;
}

.vision-title .yellow {
  color: #facc15;
}

.vision-title .blue {
  color: #1e3a8a;
}

/* Grid */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Card */
.vision-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.15);
}

.vision-card-yellow {
  border-top: 4px solid #facc15;
}

.vision-card-blue {
  border-top: 4px solid #1e3a8a;
}

/* Header */
.vision-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.vision-header h3 {
  font-size: 24px;
  font-weight: 700;
}

.vision-card-yellow h3 {
  color: #facc15;
}

.vision-card-blue h3 {
  color: #1e3a8a;
}

/* Icon */
.vision-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.yellow-bg {
  background: #facc15;
  color: #000;
}

.blue-bg {
  background: #1e3a8a;
  color: #fff;
}

/* Text */
.vision-card p {
  color: #555;
  line-height: 1.8;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .vision-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .vision-grid {
    grid-template-columns: 1fr;
  }

  .vision-card {
    padding: 35px;
  }

  .vision-title {
    font-size: 28px;
  }
}
/* ================= STATS SECTION ================= */

.stats-section {
  padding: 120px 0;
  background: #f5f5f5;
  text-align: center;
}

.stats-title {
  font-size: 38px;
  font-weight: 700;
  color: #facc15;
  margin-bottom: 70px;
}

/* Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Card */
.stats-card {
  background: #ffffff;
  padding: 50px 20px;
  border-radius: 24px;
  border: 1px solid #eee;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  cursor: pointer;
}

.stats-card:hover {
  background: #facc15;
  color: #000;
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.15);
}

/* Icon */
.stats-icon {
  font-size: 40px;
  color: #facc15;
  margin-bottom: 20px;
  transition: 0.3s;
}

.stats-card:hover .stats-icon {
  color: #000;
}

/* Number */
.stats-card h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Label */
.stats-card p {
  font-weight: 600;
  color: #555;
  transition: 0.3s;
}

.stats-card:hover p {
  color: #000;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-title {
    font-size: 28px;
  }

  .stats-card {
    padding: 35px 20px;
  }
}
/* ================= FACILITIES SECTION ================= */

.facilities-section {
  padding: 120px 0;
  background: #fff6dc;
}

.facilities-intro {
  text-align: center;
  margin-bottom: 80px;
}

.facilities-intro h2 {
  font-size: 36px;
  font-weight: 700;
  color: #9f7a28;
  margin-bottom: 15px;
}

.facilities-intro p {
  max-width: 750px;
  margin: auto;
  color: #555;
}

/* Swiper container spacing */
.facilitySwiper {
  padding-bottom: 50px;
}

/* CARD */
.facility-card {
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
  transition: 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Image */
.facility-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Content */
.facility-content {
  padding: 35px;
  background: #f8f8f8;
  transition: 0.4s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.facility-content h3 {
  font-size: 22px;
  color: #1f2c6c;
  margin-bottom: 15px;
  transition: 0.3s;
}

.facility-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
  transition: 0.3s;
}

/* Hover Dark Gradient Effect */
.facility-card:hover .facility-content {
  background: linear-gradient(
    135deg,
    #0f172a,
    #1e293b,
    #020617
  );
}

.facility-card:hover h3 {
  color: #ffffff;
}

.facility-card:hover p {
  color: #cccccc;
}

/* Link */
.facility-link {
  text-decoration: none;
  font-weight: 600;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  margin-top: auto;
}

.facility-link span {
  font-size: 20px;
  transition: 0.3s;
}

.facility-card:hover .facility-link {
  color: #facc15;
}

.facility-card:hover .facility-link span {
  transform: translateX(5px);
}

/* ================= SWIPER FIX ================= */

.facilitySwiper .swiper-slide {
  height: auto;
  display: flex;
}

.facilitySwiper .swiper-wrapper {
  align-items: stretch;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .facilities-intro h2 {
    font-size: 28px;
  }
}
/* ================= WHY CHOOSE SECTION ================= */

.why-section {
  position: relative;
  padding: 150px 0;
  background: linear-gradient(to bottom right, #eef2ff, #ffffff, #fff1e6);
  overflow: hidden;
}

/* Decorative blur circles */
.blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  z-index: 0;
}

.blur-left {
  width: 350px;
  height: 350px;
  background: #a78bfa;
  top: -100px;
  left: -100px;
}

.blur-right {
  width: 400px;
  height: 400px;
  background: #fb923c;
  bottom: -120px;
  right: -120px;
}

.why-section .container {
  position: relative;
  z-index: 2;
}

/* Title */
.why-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #1f2c6c;
  margin-bottom: 100px;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Columns */
.why-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Card */
.why-card {
  position: relative;
  padding: 40px;
  border-radius: 22px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: 0 18px 40px rgba(14,30,37,0.08);
  transition: transform .45s ease, box-shadow .45s ease;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 90px rgba(14,30,37,0.12);
}

.why-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.why-card p {
  color: rgba(17,24,39,0.8);
  line-height: 1.7;
}

/* glossy highlight */
.why-card::after{
  content: '';
  position: absolute;
  top: -10%;
  right: -30%;
  width: 70%;
  height: 70%;
  background: radial-gradient( circle at 20% 20%, rgba(255,255,255,0.75), rgba(255,255,255,0.18) 35%, transparent 60% );
  transform: rotate(18deg);
  filter: blur(6px);
  pointer-events: none;
  mix-blend-mode: normal;
}

/* Card color variants (soft gradients) */
.red-card{ background: linear-gradient(135deg,#ffdce1 0%,#fff3f6 100%); }
.blue-card{ background: linear-gradient(135deg,#dfeeff 0%,#f3fbff 100%); }
.orange-card{ background: linear-gradient(135deg,#fff3e0 0%,#fff9f0 100%); }
.green-card{ background: linear-gradient(135deg,#eaffef 0%,#f7fff9 100%); }

.red-card h3 { color: #d6336c; }
.blue-card h3 { color: #1e40af; }
.orange-card h3 { color: #c2410c; }
.green-card h3 { color: #0f766e; }

/* Center Image */
.why-center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-center img {
  width: 320px;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  position: relative;
  z-index: 3;
  border: 4px solid #fff;
}

/* Decorative circles behind image */
.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  z-index: 1;
}

.purple-circle {
  width: 350px;
  height: 350px;
  background: linear-gradient(to top right, #7c3aed, #6366f1);
}

.yellow-circle {
  width: 260px;
  height: 260px;
  background: linear-gradient(to top right, #facc15, #fb923c);
  bottom: -40px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .why-title {
    font-size: 28px;
    margin-bottom: 60px;
  }

  .why-center img {
    width: 280px;
  }
}

/* ================= CURRICULUM SECTION ================= */

.curriculum-section {
  padding: 120px 0;
  background: #ffffff;
}

/* Intro */
.curriculum-intro {
  text-align: center;
  max-width: 750px;
  margin: auto;
  margin-bottom: 90px;
}

.curriculum-intro h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1f2c6c;
  margin-bottom: 20px;
}

.curriculum-intro p {
  color: #666;
  line-height: 1.8;
}

/* Grid */
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* Card */
.curriculum-card {
  background: #ffffff;
  padding: 50px 35px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.curriculum-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.15);
}

.curriculum-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1f2c6c;
}

.curriculum-card p {
  color: #555;
  line-height: 1.7;
  font-size: 14px;
}

/* Icon Circle */
.curriculum-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

/* Icon Colors */
.indigo { background: #e0e7ff; color: #4f46e5; }
.teal { background: #ccfbf1; color: #0d9488; }
.rose { background: #ffe4e6; color: #e11d48; }
.yellow { background: #fef9c3; color: #ca8a04; }
.purple { background: #f3e8ff; color: #7c3aed; }
.green { background: #dcfce7; color: #15803d; }

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .curriculum-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .curriculum-intro h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .curriculum-grid {
    grid-template-columns: 1fr;
  }

  .curriculum-card {
    padding: 40px 25px;
  }
}
/* ================= GALLERY SECTION ================= */

.gallery-section {
  padding: 120px 0;
  background: #fff6dc;
}

/* Header */
.gallery-header {
  text-align: center;
  margin-bottom: 70px;
}

.gallery-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.gallery-header p {
  color: #777;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.6s ease;
}

/* Hover Zoom */
.gallery-card:hover img {
  transform: scale(1.1);
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity: 0;
  transition: 0.5s ease;
  display: flex;
  align-items: flex-end;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

/* Text */
.gallery-text {
  padding: 20px;
  color: #fff;
  transform: translateY(20px);
  transition: 0.5s ease;
}

.gallery-card:hover .gallery-text {
  transform: translateY(0);
}

.gallery-text span {
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.8;
}

.gallery-text h3 {
  font-size: 18px;
  margin-top: 5px;
}

/* ================= LIGHTBOX ================= */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 15px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox-close {
  top: 30px;
  right: 40px;
}

.lightbox-prev {
  left: 40px;
}

.lightbox-next {
  right: 40px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 0.7;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-header h2 {
    font-size: 28px;
  }
}
/* ================= FOOTER ================= */

.footer {
  background: #ffffff;
  padding: 120px 0 0 0;
}

/* Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr 1.3fr;
  gap: 60px;
  padding-bottom: 80px;
}

/* Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 60px;
}

.footer-logo h3 {
  font-size: 20px;
  font-weight: 700;
}

.sub-text {
  font-size: 12px;
  color: #777;
}

/* Description */
.footer-description {
  color: #555;
  line-height: 1.8;
  margin-top: 15px;
}

/* Titles */
.footer-col h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #facc15;
  margin-top: 8px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #555;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #facc15;
}

/* Contact */
.footer-contact p {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.6;
}

/* Map */
.footer-map {
  width: 100%;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #eee;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer link icons */
.footer-links{list-style:none;padding:0;margin:0}
.footer-links li{margin-bottom:14px}
.footer-links a{display:flex;align-items:center;gap:10px;color:rgba(17,24,39,0.85);text-decoration:none;font-weight:500}
.footer-links .link-icon{color:var(--brand);font-size:14px;width:18px;display:inline-flex;align-items:center;justify-content:center}
.footer-links a:hover .link-icon{transform:translateX(-2px);transition:transform .25s ease}

/* Bottom Bar */
.footer-bottom {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer {
    padding: 80px 0 0 0;
  }
}

