* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: #111;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
}

/* HEADER */
.header {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #222;
}

.logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.logo-box h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #222;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 34px;
}

.navbar a {
  color: #333;
  font-size: 1.08rem;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
  padding: 0;
}

.navbar a::after {
  display: none;
}

.navbar a:hover {
  color: #c63c48;
}

.active-link {
  background: #c63c48;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  font-size: 1.7rem;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  min-height: 600px;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2b0f12;
}

.slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 60px 20px;
}

.hero-content h1 {
  font-family: "Baloo 2", cursive;
  font-size: 4.3rem;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  margin-top: 18px;
  font-size: 1.55rem;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 16px 34px;
  border-radius: 40px;
  font-size: 1.15rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #db525b;
  color: #fff;
  box-shadow: 0 8px 20px rgba(219, 82, 91, 0.3);
}

.btn-primary:hover {
  background: #c9444d;
  transform: translateY(-3px) scale(1.02);
}

.btn-outline {
  border: 3px solid #d5515b;
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: #d5515b;
  transform: translateY(-3px) scale(1.02);
}

.btn-light {
  background: #fff;
  color: #ef6a55;
  box-shadow: 0 8px 18px rgba(255, 255, 255, 0.25);
}

.btn-light:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-outline-light {
  border: 3px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px) scale(1.02);
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 55px;
  color: #000;
}

/* PROGRAM */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.program-card {
  background: #fff;
  border: 4px solid #c73b47;
  border-radius: 32px;
  padding: 45px 28px;
  text-align: center;
  min-height: 290px;
  transition: all 0.35s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.program-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.1);
}

.program-icon {
  font-size: 3rem;
  color: #c73b47;
  margin-bottom: 24px;
}

.program-card h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.program-card p {
  font-size: 1.25rem;
  color: #2a2a2a;
}

/* WHY SECTION */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: #fff;
  border: 4px solid #c73b47;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  min-height: 235px;
  transition: all 0.35s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.why-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
}

.why-icon {
  font-size: 2.7rem;
  color: #b4373f;
  margin-bottom: 18px;
}

.why-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.why-card p {
  font-size: 1.05rem;
  color: #2c2c2c;
}

/* CONTACT */
.contact-section h3 {
  font-size: 2rem;
  margin-bottom: 32px;
  font-weight: 700;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 50px;
  align-items: center;
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 30px;
}

.contact-item p {
  font-size: 1.2rem;
  font-weight: 600;
  max-width: 620px;
}

.contact-icon {
  min-width: 68px;
  min-height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
}

.pink {
  background: #f5b2b6;
  color: #9c3b45;
}

.contact-right img {
  width: 100%;
  max-width: 470px;
  margin-left: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* CTA */
.cta-box {
  margin-top: 55px;
  background: linear-gradient(90deg, #ef5b4f, #f09257, #de2b2b);
  border-radius: 22px;
  padding: 44px 30px;
  text-align: center;
  color: #fff;
}

.cta-box h2 {
  font-size: 3.7rem;
  font-weight: 800;
  margin-bottom: 28px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* FOOTER */
.footer {
  background: #98000a;
  color: #fff;
  margin-top: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr 1fr;
  gap: 30px;
  padding: 40px 0;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.footer-brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.footer-brand h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 1.05rem;
  max-width: 270px;
}

.footer-col h4 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a,
.footer-col p,
.footer-col a {
  color: #fff;
  font-size: 1.05rem;
}

.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.social-icons a {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: #fff;
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: translateY(-4px) scale(1.05);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  padding: 18px 10px;
}

.footer-bottom p {
  font-size: 1rem;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-right img {
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content h1 {
    font-size: 3.4rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 86px;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 25px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  }

  .navbar.active {
    display: flex;
    animation: slideDown 0.3s ease;
  }

  .logo-box h2 {
    font-size: 1.4rem;
  }

  .hero {
    min-height: 520px;
    height: auto;
  }

  .hero-content {
    padding: 110px 18px 70px;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 7vw, 3rem);
    line-height: 1.15;
    letter-spacing: 0.5px;
    max-width: 12ch;
    margin: 0 auto;
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 320px;
    margin: 16px auto 0;
  }

  .hero-buttons {
    margin-top: 24px;
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn,
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
    max-width: 240px;
    margin-right: 0;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .program-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .program-card h3,
  .why-card h3 {
    font-size: 1.5rem;
  }

  .program-card p,
  .why-card p,
  .contact-item p {
    font-size: 1rem;
  }

  .cta-box h2 {
    font-size: 2.3rem;
  }

  .btn {
    min-width: 190px;
    font-size: 1rem;
    padding: 14px 24px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 92%;
  }

  .hero {
    min-height: 470px;
  }

  .hero-content {
    padding: 95px 14px 55px;
  }

  .hero-content h1 {
    font-size: clamp(1.7rem, 8.5vw, 2.2rem);
    line-height: 1.18;
    max-width: 11ch;
  }

  .hero-content p {
    font-size: 0.95rem;
    max-width: 280px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 35px;
  }

  .program-card,
  .why-card {
    padding: 28px 18px;
  }

  .contact-icon {
    min-width: 58px;
    min-height: 58px;
    font-size: 1.4rem;
  }

  .footer-brand {
    flex-direction: column;
  }

  .cta-box h2 {
    font-size: 1.8rem;
  }
}

/* ANIMATIONS */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}