/* =========================================
   GOOGLE FONT
========================================= */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Cormorant+Garamond:wght@500;600;700&display=swap");

/* =========================================
   ROOT
========================================= */

:root {
  --primary: #0b1f3a;
  --secondary: #c9a24a;
  --dark: #0b1f3a;
  --white: #ffffff;
  --light: #f8f9fa;
  --gray: #6b7280;

  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* =========================================
   RESET
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================================
   BUTTON
========================================= */

.btn-primary {
  display: inline-block;
  background: var(--secondary);
  color: #000;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  margin-left: 15px;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
}

/* =========================================
   HEADER
========================================= */

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 0.4s;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

header.sticky {
  background: transparent;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.logo img {
  width: 180px;
  height: auto;
  position: block;
}

nav ul {
  display: flex;
  gap: 40px;
}

nav ul li a {
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

header.sticky nav ul li a {
  color: #fff;
}

nav ul li a:hover {
  color: var(--secondary);
}

.hamburger {
  display: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

header.sticky .hamburger {
  color: var(--dark);
}

/* =========================================
   HERO
========================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 650px;
  color: #fff;
}

.sub-title {
  display: inline-block;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero h1 {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 25px;
  font-family: "Cormorant Garamond", serif;
}

.hero p {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 40px;
  color: #f5f5f5;
}

.hero-button {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .hero-button {
    display: flex;

    flex-direction: column;
  }

  .hero-button a {
    width: 100%;
  }
}
/* =========================================
   SECTION TITLE
========================================= */

section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title span {
  color: var(--secondary);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
}

.section-title h2 {
  font-size: 42px;
  margin: 15px 0;
  font-family: "Cormorant Garamond", serif;
  color: var(--dark);
}

.section-title p {
  max-width: 700px;
  margin: 20px auto 0;
  color: var(--gray);
  line-height: 1.8;
}

.line {
  width: 80px;
  height: 4px;
  background: var(--secondary);
  margin: 20px auto;
  border-radius: 20px;
}

/* =========================================
   OUR PROGRAMS
========================================= */

.programs {
  padding: 80px 10%;
  background: #0b1f3a;
}

.programs h2 {
  text-align: center;
  margin-bottom: 40px;
}

.program-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.program-card h3 {
  margin-bottom: 15px;
}

.program-card a {
  color: #0b1f3a;
  text-decoration: none;
  font-weight: 600;
}
.program-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.program-card {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.program-card:hover {
  transform: translateY(-8px);
  background: #d4af37; /* Gold */
}

.program-card h3 {
  margin-bottom: 15px;
  color: #0b1f3a;
}

.program-card p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.program-card a {
  color: #0b1f3a;
  text-decoration: none;
  font-weight: bold;
}
/* =========================================
   WHY CHOOSE WBH
========================================= */

.why-us {
  background: #fff;
}

.feature-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  background: #fff;
  padding: 40px 30px;
  text-align: center;

  border-radius: 18px;

  box-shadow: var(--shadow);

  transition: 0.4s;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 85px;
  height: 85px;

  margin: auto;

  background: var(--primary);

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  font-size: 34px;

  margin-bottom: 25px;

  transition: 0.4s;
}

.feature-card:hover .feature-icon {
  background: var(--secondary);
  color: #000;
}

.feature-card h3 {
  margin-bottom: 18px;
  font-size: 24px;
}

.feature-card p {
  color: var(--gray);
  line-height: 1.8;
}
/* =========================================
   SUCCESS STORIES
========================================= */

.success-stories {
  background: #0b1f3a;
}

.stories-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.story-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.4s;
}

.story-card:hover {
  transform: translateY(-10px);
}

.student-photo {
  height: 320px;
  overflow: hidden;
}

.student-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.story-card:hover img {
  transform: scale(1.08);
}

.story-content {
  padding: 30px;
}

.story-content h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.position {
  display: block;
  color: var(--primary);
  font-weight: 600;
}

.company {
  display: block;
  color: var(--gray);
  margin: 8px 0 18px;
}

.rating {
  color: #ffd700;
  margin-bottom: 20px;
}

.story-content p {
  color: var(--gray);
  line-height: 1.8;
}

/* =========================================
   OUR PARTNERS
========================================= */

.partners {
  background: #fff;
}

.partner-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.partner-logo {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);

  display: flex;
  justify-content: center;
  align-items: center;

  transition: 0.3s;
}

.partner-logo:hover {
  transform: translateY(-8px);
}

.partner-logo img {
  max-width: 180px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.4s;
}

.partner-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.partner-info {
  text-align: center;
  margin-top: 60px;
}

.partner-info h3 {
  font-size: 32px;
  margin-bottom: 20px;
  font-family: "Cormorant Garamond", serif;
}

.partner-info p {
  max-width: 700px;
  margin: auto;
  color: var(--gray);
  line-height: 1.8;
}

/* =========================================
   CTA
========================================= */

.cta {
  position: relative;

  padding: 0 0;

  background: black;

  overflow: hidden;
}

.cta-overlay {
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.65);

  padding: 120px 0;
}
.cta .container {
  position: relative;
}

.cta-content {
  text-align: center;
  color: #fff;
  max-width: 850px;
  margin: auto;
}

.cta-subtitle {
  color: var(--secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.cta h2 {
  font-size: 56px;
  margin: 25px 0;
  font-family: "Cormorant Garamond", serif;
}

.cta p {
  line-height: 1.9;
  margin-bottom: 40px;
  color: #eee;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;

  padding: 15px 35px;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.3s;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
}

.cta-contact {
  margin-top: 50px;

  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;

  color: #fff;
}

.contact-item i {
  color: var(--secondary);
  font-size: 20px;
}
/* =========================================
   FOOTER
========================================= */

.footer {
  background: #0b1f3a;
  color: #fff;
  padding: 50px 0 30px;
  position: relative;
  z-index: 1;
  clear: both;

  margin-top: 0;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
}

.footer-column p {
  color: #cbd5e1;
  line-height: 1.8;
}

.footer-column h3 {
  margin-bottom: 25px;
  font-size: 22px;
}

.footer-column ul li {
  margin-bottom: 15px;
}

.footer-column ul li a {
  color: #cbd5e1;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: var(--secondary);
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.7;
}

.contact-list i {
  color: var(--secondary);
  margin-top: 5px;
}

.social-media {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-media a {
  width: 45px;
  height: 45px;

  border-radius: 50%;

  background: #1e293b;

  display: flex;
  justify-content: center;
  align-items: center;

  color: #fff;

  transition: 0.3s;
}

.social-media a:hover {
  background: var(--secondary);
  color: #000;
}

.footer hr {
  border: none;
  height: 1px;
  background: #334155;
  margin: 40px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: #94a3b8;
}

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: #94a3b8;
}

.footer-links a:hover {
  color: var(--secondary);
}
@media (max-width: 576px) {
  .footer-links {
    flex-direction: column;

    gap: 10px;
  }
}

/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu {
  position: fixed;

  top: 0;
  right: -100%;

  width: 300px;
  height: 100vh;

  background: #0b1220;

  z-index: 9999;

  transition: 0.4s;

  padding: 30px;

  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mobile-header img {
  width: 140px;
}

.close-menu {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.mobile-nav li {
  margin: 22px 0;
}

.mobile-nav a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.mobile-nav a:hover {
  color: var(--secondary);
}

.mobile-social {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.mobile-social a {
  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: #1e293b;

  display: flex;
  justify-content: center;
  align-items: center;

  color: #fff;
}

.mobile-social a:hover {
  background: var(--secondary);
  color: #000;
}

.overlay {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.55);

  visibility: hidden;
  opacity: 0;

  transition: 0.4s;

  z-index: 9998;
}

.overlay.active {
  visibility: visible;
  opacity: 1;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {
  nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero h1 {
    font-size: 56px;
  }

  .program-wrapper,
  .stories-wrapper,
  .partner-wrapper,
  .feature-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-button {
    justify-content: center;
  }

  .btn-secondary {
    margin-left: 0;
  }

  .section-title h2 {
    font-size: 34px;
  }

  .program-wrapper,
  .stories-wrapper,
  .partner-wrapper,
  .feature-wrapper,
  .footer-wrapper {
    grid-template-columns: 1fr;
  }

  .cta h2 {
    font-size: 40px;
  }

  .cta-contact {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .container {
    width: 92%;
  }

  .logo img {
    width: 140px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-whatsapp {
    width: 100%;
    text-align: center;
  }

  .mobile-menu {
    width: 100%;
  }
}
.scroll-top {
  position: fixed;

  right: 25px;

  bottom: 25px;

  width: 55px;

  height: 55px;

  border: none;

  border-radius: 50%;

  background: #d4af37;

  color: #000;

  cursor: pointer;

  opacity: 0;

  visibility: hidden;

  transition: 0.3s;

  z-index: 9999;
}

.scroll-top.show {
  opacity: 1;

  visibility: visible;
}
body.menu-open {
  overflow: hidden;
}
