/* =========================
   GLOBAL
========================= */

* {
  max-width: 100%;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  padding-top: 60px;
  margin: 0;
  overflow-x: hidden;
}

/* =========================
   BUTTONS
========================= */

.btn {
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.03);
}

.btn-demo {
  background: #1e3a8a;
  color: white;
  border-radius: 8px;
  padding: 8px 15px;
  font-weight: 600;
  border: none;
}

.btn-call {
  border: 1px solid #1e3a8a;
  color: #1e3a8a;
  border-radius: 8px;
  padding: 8px 15px;
  font-weight: 600;
  background: transparent;
}

.btn-call:hover {
  background: #2563eb;
  color: #fff;
}

/* =========================
   HERO SECTION
========================= */

.hero {
  position: relative;
  background: url("/assets/images/academic_1.jpg") no-repeat center center/cover;
  min-height: 90vh;
  height: auto;
  color: white;
  width: 100%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 48px;
  font-weight: bold;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 30px;
  }
}

/* =========================
   ABOUT SECTION
========================= */

.about-section {
  background: #1e3a8a;
  padding: 50px 20px;
}

.about-section h2 {
  font-size: 28px;
}

.highlight {
  color: #facc15;
}

/* =========================
   ACADEMIC SECTION
========================= */

.big-img,
.small-img {
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  display: block;
}

/* .big-img {
  height: 100%;
}

.small-img {
  height: 48%;
} */

.academic-section img {
  width: 100%;
  transition: 0.3s;
}

.academic-section img:hover {
  transform: scale(1.05);
}
.academic-section .col-6 {
  min-width: 0;
}
/* =========================
   ACADEMIC BUTTONS
========================= */

.class-btn,
.board-btn {
  background: #2d4ba0;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.class-btn {
  padding: 12px 20px;
  min-width: 90px;
}

.board-btn {
  padding: 12px 25px;
}

.class-btn:hover,
.board-btn:hover {
  background: #1e3a8a;
  color: #fff;
  transform: translateY(-2px);
}

/* =========================
   LOCATIONS SECTION
========================= */

.locations-section {
  background: #eef2f7;
}

.location-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.location-card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-content {
  padding: 20px;
}

.card-content h5 {
  font-weight: 600;
}

.card-content p {
  color: #666;
  font-size: 14px;
}

/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-section {
  background: #eef2f7;
}

.review-img {
  max-width: 250px;
}

.review-card {
  background: #e9eef6;
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
}

.stars {
  color: #facc15;
  font-size: 20px;
}

.review-user {
  gap: 10px;
}

.review-logo {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  padding: 3px;
  background: #facc15;
}

.testimonial-img {
  width: 100%;
  height: 40vh;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-item {
  transition: transform 0.8s ease-in-out;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* =========================
   MILESTONES SECTION
========================= */

.milestones-section {
  background: #f5f7fb;
}

.milestone-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: 0.3s;
}

.milestone-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.milestone-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.milestone-card h3 {
  color: #1e3a8a;
  font-weight: bold;
}

.milestone-card h5 {
  margin-top: 10px;
  font-weight: 600;
}

.milestone-card p {
  font-size: 14px;
  color: #555;
}

/* =========================
   PERKS SECTION
========================= */

.perks-section {
  background: #eef2f7;
}

.perk-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.perk-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.perk-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;

  animation: float 3s ease-in-out infinite;
}

.perk-icon i {
  font-size: 28px;
  color: #fff;
}

/* =========================
   CUSTOM COLORS
========================= */

.bg-purple {
  background: #7c3aed;
}

/* =========================
   FLOATING BUTTONS
========================= */

.whatsapp-btn,
.call-btn {
  position: fixed;
  left: 20px;
  color: #fff;
  border-radius: 50%;
  z-index: 999;
  transition: 0.3s ease;
}

.whatsapp-btn {
  bottom: 20px;
  background: #25d366;
  font-size: 24px;
  padding: 12px 15px;
  text-decoration: none;
}

.call-btn {
  bottom: 100px;
  background: #1e3a8a;
  font-size: 22px;
  padding: 12px 14px;
}

.whatsapp-btn:hover,
.call-btn:hover {
  transform: scale(1.1);
}

/* =========================
   ANIMATIONS
========================= */

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* =========================
   UTILITY CLASSES
========================= */

.float {
  animation: float 3s ease-in-out infinite;
}

.pulse {
  animation: pulse 2s infinite;
}
@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 20px;
  }

  .call-btn {
    bottom: 90px;
  }
}
