@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

:root {
  --primary: #0f4c3a;
  --primary-dark: #082c22;
  --gold: #d4af37;
  --gold-light: #f2d675;
  --white: #ffffff;
  --text: #4b5563;
  --heading: #111827;
  --border: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius: 20px;
  --transition: 0.35s ease;
  --container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: min(90%, var(--container));
  margin: auto;
}

.section {
  padding: 120px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 70px;
}

.section-heading.left {
  text-align: left;
}

.section-heading span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 600;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--heading);
  margin-top: 10px;
  line-height: 1.2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #111;
}

.btn-primary:hover {
  transform: translateY(-4px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  backdrop-filter: blur(15px);
}

.btn-outline:hover {
  background: #fff;
  color: #111;
}

/* ==========================
   HEADER
========================== */

.header {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 999;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 20px;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.navbar {
  display: flex;
  gap: 35px;
}

.navbar a {
  color: #fff;
  font-weight: 500;
  position: relative;
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.navbar a:hover::after {
  width: 100%;
}

.nav-btn {
  background: var(--gold);
  color: #111;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
}

.hamburger {
  width: 30px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ==========================
   MOBILE MENU
========================== */

.mobile-menu {
  position: fixed;
  top: 95px;
  left: -100%;
  width: 300px;
  height: calc(100vh - 95px);
  background: #fff;
  z-index: 998;
  transition: 0.4s;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu a {
  display: block;
  margin-bottom: 22px;
  color: #111;
  font-weight: 600;
}

/* ==========================
   HERO
========================== */

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-background {
  position: absolute;
  inset: 0;
}

.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;
  min-width: 177.77vh;
  min-height: 100vh;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 28, 21, 0.88),
    rgba(15, 76, 58, 0.75)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding-top: 130px;
}

.hero-tag {
  display: inline-block;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Floating Glow */

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(212, 175, 55, 0.18);
  border-radius: 50%;
  filter: blur(120px);
  top: -100px;
  right: -100px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  filter: blur(120px);
  bottom: -100px;
  left: -100px;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 992px) {
  .navbar,
  .nav-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 90px 0;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 16px 20px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }
}

.long-image-section {
  padding: 80px 20px;
}

.image-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.image-wrapper img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

/* ===============================
   IMAGE SHOWCASE
================================== */

.image-showcase {
  padding: 20px 8%;
}

.image-showcase .container {
  max-width: 1200px;
  margin: auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

/* .section-heading h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 15px;
}

.section-heading p {
  color: #666;
  font-size: 1.05rem;
} */

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

/* .image-card {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: 0.4s ease;
} */

.image-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* .image-card:hover {
  transform: translateY(-8px);
}

.image-card:hover img {
  transform: scale(1.05);
} */

/* ===============================
   TABLET
================================== */

@media (max-width: 992px) {
  .image-showcase {
    padding: 10px 2%;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .showcase-grid {
    gap: 20px;
  }
}

/* ===============================
   MOBILE
================================== */

@media (max-width: 768px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2 {
    font-size: 1.8rem;
  }

  .section-heading p {
    font-size: 0.95rem;
  }
}

/* ===================================
   MISSION SECTION
=================================== */

.mission {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mission-card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 40px 35px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(15, 76, 58, 0.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--primary));
}

.mission-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  right: -80px;
  top: -80px;
}

.mission-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.mission-card h3 {
  font-size: 1.4rem;
  color: var(--heading);
  margin-bottom: 18px;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.mission-card p {
  position: relative;
  z-index: 2;
  line-height: 1.9;
}

/* ===================================
   COURSES SECTION
=================================== */

.courses {
  background: #fff;
  position: relative;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.course-card {
  position: relative;
  padding: 40px;
  border-radius: 30px;
  background: white;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(15, 76, 58, 0.08);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

.course-card:nth-child(2) {
  transform: translateY(50px);
}

.course-card:nth-child(4) {
  transform: translateY(50px);
}

.course-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 30px;
  background: linear-gradient(
    135deg,
    transparent,
    rgba(212, 175, 55, 0.4),
    transparent
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
}

.course-card::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(15, 76, 58, 0.05);
}

.course-card:hover {
  transform: translateY(-12px);
}

.course-card h3 {
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: var(--primary);
  position: relative;
  z-index: 2;
}

.course-card p {
  line-height: 1.9;
  position: relative;
  z-index: 2;
}

/* ===================================
   TEACHER SECTION
=================================== */

.teacher {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.teacher-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 80px;
  align-items: center;
}

.teacher-image {
  position: relative;
}

.teacher-image::before {
  content: "";
  position: absolute;
  inset: -15px;
  border-radius: 35px;
  border: 2px solid rgba(212, 175, 55, 0.35);
}

.teacher-image::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  top: -60px;
  left: -60px;
  filter: blur(40px);
  z-index: 0;
}

.teacher-image img {
  position: relative;
  z-index: 2;
  border-radius: 30px;
  width: 100%;
  height: 650px;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.teacher-content {
  position: relative;
}

.teacher-content::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 10px;
  width: 5px;
  height: 120px;
  background: linear-gradient(to bottom, var(--gold), var(--primary));
  border-radius: 50px;
}

/* ===================================
   GALLERY SECTION
=================================== */

.gallery {
  background: #fff;
}

.gallery-grid {
  columns: 3 320px;
  column-gap: 22px;
}

.gallery-grid img {
  width: 100%;
  margin-bottom: 22px;
  border-radius: 24px;
  display: block;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  break-inside: avoid;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* ===================================
   LIGHTBOX
=================================== */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  padding: 30px;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 20px;
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 1200px) {
  .teacher-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .teacher-image {
    max-width: 550px;
    margin: auto;
  }

  .teacher-content::before {
    display: none;
  }
}

@media (max-width: 992px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }

  .course-card:nth-child(2),
  .course-card:nth-child(4) {
    transform: none;
  }

  .gallery-grid {
    columns: 2 250px;
  }
}

@media (max-width: 768px) {
  .mission-card,
  .course-card {
    padding: 30px;
  }

  .teacher-image img {
    height: 500px;
  }

  .gallery-grid {
    columns: 1;
  }
}

@media (max-width: 480px) {
  .mission-card h3,
  .course-card h3 {
    font-size: 1.3rem;
  }

  .teacher-image img {
    height: 420px;
  }
}

/* ===================================
   PRICING / SCHEDULE SECTION
=================================== */

.pricing {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.price-card {
  position: relative;
  padding: 50px 40px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(15, 76, 58, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: 0.4s ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(212, 175, 55, 0.12),
    transparent 60%
  );
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

/* ===================================
   VIDEO SECTION
=================================== */

.videos {
  background: #fff;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.video-grid video {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  cursor: pointer;
  background: #000;
}

.video-grid video:hover {
  transform: translateY(-8px);
}

/* Tablet */
@media (max-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-grid video {
    height: 420px;
  }
}

/* ===================================
   FAQ SECTION
=================================== */

.faq {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.faq-wrapper {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  margin-bottom: 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 76, 58, 0.08);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 22px 25px;
  background: #fff;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 25px;
  font-size: 1.4rem;
  color: var(--gold);
  transition: 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  padding: 0 25px 22px;
}

/* ===================================
   CTA SECTION
=================================== */

.cta {
  background:
    linear-gradient(135deg, rgba(15, 76, 58, 0.95), rgba(8, 44, 34, 0.95)),
    url("https://images.unsplash.com/photo-1609599006353-e629aaabfeae")
      center/cover;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta p {
  max-width: 700px;
  margin: auto;
  margin-bottom: 35px;
  opacity: 0.9;
}

.footer {
  background: var(--primary-dark);
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.footer p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 25px 0;
  padding: 14px 28px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
}

.footer-whatsapp i {
  font-size: 1.2rem;
}

.footer-whatsapp:hover {
  transform: translateY(-3px);
  background: #1ebe5d;
}

.copyright {
  margin-top: 20px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ===================================
   FINAL RESPONSIVE
=================================== */

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .price-card {
    padding: 35px;
  }

  .video-grid iframe {
    height: 220px;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 18px;
  }

  .cta {
    padding: 90px 20px;
  }
}

@media (max-width: 480px) {
  .price-card {
    padding: 28px;
  }

  .video-grid iframe {
    height: 200px;
  }

  .cta h2 {
    font-size: 1.8rem;
  }
}


/*==================================
    CONTACT SECTION
===================================*/

.contact {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 50px;
  align-items: stretch;
}

/* LEFT */

.contact-info {
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--primary-dark)
  );
  color: #fff;
  border-radius: 30px;
  padding: 45px;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(212, 175, 55, 0.12);
  border-radius: 50%;
  right: -80px;
  top: -80px;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 18px;
}

.contact-info p {
  color: rgba(255,255,255,.85);
  line-height: 1.8;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 35px;
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}

.info-item h4 {
  margin-bottom: 6px;
  color: var(--gold-light);
}

/* FORM */

.contact-form {
  background: #fff;
  border-radius: 30px;
  padding: 45px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15,76,58,.08);
}

.input-row {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

.input-group {
  margin-bottom: 24px;
}

.input-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--heading);
  font-weight: 600;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #d9e2e8;
  font-family: inherit;
  font-size: .95rem;
  transition: .3s;
  resize: none;
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,.15);
}

.contact-form button {
  border: none;
  cursor: pointer;
}

/* Responsive */

@media (max-width:992px){

.contact-wrapper{
grid-template-columns:1fr;
}

}

@media (max-width:768px){

.contact-form,
.contact-info{
padding:30px;
}

.input-row{
grid-template-columns:1fr;
}

.contact-info h3{
font-size:1.7rem;
}

}