/* ==========================================================================
   RESET & BASE
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --pink: #FF0088;
  --orange: #FF5C00;
  --yellow: #FFD600;
  --navy: #0C0853;
  --green: #1EE29B;
  --blue: #2563EB;
  --text-gray: #6B7280;
  --light-gray: #F5F6FA;
  --border-gray: #E7E7EF;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  overflow: visible;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-weight: 700; }

.c-pink { color: var(--pink); }
.c-navy { color: var(--navy); }
.c-white { color: #fff; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-pink-solid {
  background: linear-gradient(90deg, #FF0088, #FF4D8D);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255,0,136,0.30);
}
.btn-outline-navy {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid #E2E2ED;
}
.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(255,214,0,0.35);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
}

.section { padding: 35px 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}
.section-head h2, .why-heading {
  font-size: 30px;
  font-weight: 700;
}
.view-all {
  color: var(--pink);
  font-weight: 600;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    z-index: 99;
    background: #fff;
    border-bottom: 1px solid #F0F0F5;
    width: 100%;
    margin-bottom: 50px;
}



.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* =======================
   Logo
======================= */

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

img.site-logo {
  padding:10px 0;
  display: block;
  height: 100px;      /* Desktop logo height */
  width: auto;
  max-width: 220px;  /* Prevent oversized logos */
  object-fit: contain;
}

/* =======================
   Navigation
======================= */

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: #333;
  padding-bottom: 6px;
  position: relative;
  text-decoration: none;
}

.main-nav a.active {
  color: var(--pink);
  font-weight: 600;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--pink);
}

.nav-caret {
  font-size: 10px;
  margin-left: 3px;
}

/* =======================
   Header Actions
======================= */

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.header-phone i {
  color: var(--pink);
}



/* =======================
   Footer Logo 
======================= */

.footer-logo{
    display:flex;
    align-items:center;
    margin-bottom:18px;
}

.footer-logo a{
    display:flex;
    align-items:center;
}

.footer-logo img{
    height:182px;
    width:auto;
    max-width:220px;
    object-fit:contain;
    display:block;
}

/* =======================
   Hamburger
======================= */

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1.5px solid #E2E2ED;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 60;
}

.hamburger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =======================
   Mobile Drawer
======================= */

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 8, 83, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 70;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 78%;
  max-width: 320px;
  background: #fff;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 22px 24px;
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-nav-drawer .mnd-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.mobile-nav-drawer .mnd-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #E2E2ED;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
}

.mobile-nav-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-drawer nav a {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  padding: 13px 4px;
  border-bottom: 1px solid #F0F0F5;
  text-decoration: none;
}

.mobile-nav-drawer nav a.active {
  color: var(--pink);
  font-weight: 600;
}

.mobile-nav-drawer .mnd-phone {
  margin-top: 20px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.mobile-nav-drawer .mnd-phone i {
  color: var(--pink);
}

.mobile-nav-drawer .btn {
  margin-top: 18px;
  justify-content: center;
}

body.nav-open {
  overflow: hidden;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  background: linear-gradient(120deg, #FFF6EC 0%, #FDEFF5 45%, #F3EEFC 100%);
  padding: 60px 0 0;
  overflow: hidden;
  margin-top:50px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
}
.hero-text h1 {
  font-size: 44px;
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero-desc {
  font-size: 16px;
  color: var(--text-gray);
  max-width: 480px;
  margin-bottom: 26px;
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 30px;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: #444;
}
.hero-features i { color: var(--pink); font-size: 15px; }
.hero-buttons { display: flex; gap: 16px;    padding-bottom: 19px;}

.hero-image { position: relative; display: flex; justify-content: center; align-items: flex-end; height: 100%; }
.hero-blob {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 380px;
  height: 380px;
  background: linear-gradient(135deg, #C9B6F5, #E8B8DE);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.85;
}
.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  object-fit: cover;
  height: 360px;
}

/* ==========================================================================
   POPULAR COURSES
   ========================================================================== */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.course-card {
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(20,20,50,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.course-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(20,20,50,0.08); }
.course-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
}
.icon-pink { background: #FFE3F1; color: var(--pink); }
.icon-blue { background: #E1EBFF; color: #2E5CE6; }
.icon-green { background: #E1F9EE; color: #12B76A; }
.icon-orange { background: #FFE9DC; color: var(--orange); }
.icon-blue2 { background: #E1F2FE; color: #1B9CE0; }

.course-card h3 { font-size: 16.5px; margin-bottom: 12px; min-height: 44px; }
.course-meta {
  font-size: 12.5px;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}
.btn-explore {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 26px;
  border-radius: 20px;
  font-size: 13.5px;
  font-weight: 600;
  border: 1.5px solid;
}
.explore-pink { color: var(--pink); border-color: var(--pink); }
.explore-blue { color: #2E5CE6; border-color: #2E5CE6; }
.explore-green { color: #12B76A; border-color: #12B76A; }
.explore-orange { color: var(--orange); border-color: var(--orange); }
.explore-blue2 { color: #1B9CE0; border-color: #1B9CE0; }
.btn-explore:hover { color: #fff; }
.explore-pink:hover { background: var(--pink); }
.explore-blue:hover { background: #2E5CE6; }
.explore-green:hover { background: #12B76A; }
.explore-orange:hover { background: var(--orange); }
.explore-blue2:hover { background: #1B9CE0; }

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-bar {
  background: linear-gradient(90deg, #FF0088 0%, #FF4D6D 40%, #FF7A3C 100%);
  padding: 34px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
}
.stat-item i {
  font-size: 26px;
  background: rgba(255,255,255,0.18);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-item div { display: flex; flex-direction: column; line-height: 1.3; }
.stat-num { font-size: 24px; font-weight: 800; color: var(--yellow); }
.stat-label { font-size: 13px; font-weight: 500; }

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-section { background: #fff; }
.why-heading { text-align: left; margin-bottom: 32px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.why-item {
  background: #FAFAFC;
  border: 1px solid var(--border-gray);
  border-radius: 14px;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: #2b2b3d;
}
.why-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.icon-pink-soft { background: #FFE3F1; color: var(--pink); }
.icon-blue-soft { background: #E1EBFF; color: #2E5CE6; }
.icon-green-soft { background: #E1F9EE; color: #12B76A; }
.icon-purple-soft { background: #ECE5FC; color: #7C4DFF; }
.icon-orange-soft { background: #FFE9DC; color: var(--orange); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-section { background: #FCFCFE; }
.testimonial-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-track-outer {
  flex: 1;
  overflow: hidden;
}
.testimonial-grid {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 14px rgba(20,20,50,0.04);
  flex-shrink: 0;
}
.t-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.t-head img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.t-head h4 { font-size: 14.5px; }
.t-head span { font-size: 12px; color: var(--text-gray); }
.testimonial-card p { font-size: 13.5px; color: #444; margin-bottom: 14px; line-height: 1.6; }
.stars { color: var(--yellow); font-size: 13px; letter-spacing: 2px; }
.stars i { color: #FFC531; }

.tarrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-gray);
  background: #fff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
.tarrow:hover { background: var(--pink); color: #fff; border-color: var(--pink); }
.tarrow:disabled { opacity: 0.35; cursor: not-allowed; }
.tarrow:disabled:hover { background: #fff; color: var(--navy); border-color: var(--border-gray); }
.dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #E2E2ED; border: none; cursor: pointer; padding: 0; transition: width 0.2s ease, background 0.2s ease; }
.dot.active { background: var(--pink); width: 22px; border-radius: 6px; }

/* ==========================================================================
   INDUSTRY EXPERTS
   ========================================================================== */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.expert-card {
  background: #fff;
  border: 1px solid var(--border-gray);
  border-radius: 16px;
  padding: 26px 18px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 14px rgba(20,20,50,0.04);
}
.expert-card img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
}
.expert-card h4 { font-size: 15.5px; margin-bottom: 4px; }
.expert-card span { display: block; font-size: 12.5px; color: var(--text-gray); }
.expert-card .exp-years { margin-top: 2px; color: #999; font-size: 12px; }
.expert-card .linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #0A66C2;
  color: #fff;
  font-size: 13px;
  margin-top: 14px;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(100deg, #3B1E9E 0%, #6B2FBF 55%, #D6249F 100%);
  border-radius: 24px;
  max-width: 1200px;
  margin: 20px auto 60px;
  padding: 40px 48px;
}
.cta-inner {
  max-width: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-left { display: flex; align-items: center; gap: 22px; }
.cta-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--yellow);
  flex-shrink: 0;
}
.cta-left h3 { color: #fff; font-size: 21px; margin-bottom: 6px; }
.cta-left p { color: rgba(255,255,255,0.85); font-size: 13px; }
.cta-buttons { display: flex; gap: 14px; flex-shrink: 0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: #212529; color: #C9C9DD; padding-top: 20px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 40px;
}
.footer-about p { font-size: 13px; margin: 16px 0 18px; color: #A8A8C4; line-height: 1.6; }
.footer-social { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-social a {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: rgb(255 255 255 / 0%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13.5px;
  line-height: 1;
  transition: background 0.2s ease;
}
.footer-social a i { display: block; }
.footer-social a:hover { background: var(--pink); }
.footer-col h5 { color: #fff; font-size: 15px; margin-bottom: 18px; font-weight: 600; }
.footer-col a {
  display: block;
  font-size: 13px;
  color: #A8A8C4;
  margin-bottom: 12px;
}
.footer-col a i { margin-right: 8px; color: var(--pink); width: 14px;font-size: 19px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: #8888A8;
}
.footer-legal a { color: #8888A8; }

.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 50;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1080px) {

  /* Header */
  .main-nav {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .site-logo {
    height: 48px;
    max-width: 200px;
  }

  /* Sections */
  .courses-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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



@media (max-width: 900px) {

  /* Logo */
  .site-logo {
    height: 60px;
    max-width: 190px;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
    margin-bottom: 24px;
  }

  .hero-blob {
    width: 220px;
    height: 220px;
  }

  .hero-photo {
    height: 280px;
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .cta-banner {
    margin: 20px 16px 50px;
    padding: 32px;
  }
}

@media (max-width: 768px) {

  /* Logo */
  .site-logo {
    height: 60px;
    max-width: 180px !important;
  }

  /* Sections */
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .whatsapp-float { display:none; }
  
}
.footer-logo img {    height: 68px;
}


@media (max-width: 640px) {

  .container {
    padding: 0 18px;
  }

  .section {
    padding: 46px 0;
  }

  /* ===========================
     Header
  =========================== */

  .header-inner {
    gap: 12px;
  }

  .header-phone {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .header-actions .btn,
  .btn-pink-solid.header-cta {
    display: none;
  }

  /* Logo */

  .site-logo {
    height: 40px;
    max-width: 160px !important;
    width: auto;
  }

  /* Hero */

  .hero {
    padding: 36px 0 0;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .hero-features {
    gap: 20px 27px;
    margin-bottom: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-blob {
    width: 180px;
    height: 180px;
  }

  .hero-photo {
    height: 220px;
    border-radius: 16px;
  }


  /* Section headers */
  .section-head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .section-head h2, .why-heading { font-size: 28px; }

  /* Courses */
  .courses-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .course-card { padding: 20px 14px; }
  .course-card h3 { font-size: 14.5px; min-height: 38px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; }
  .stat-item { gap: 10px; }
  .stat-item i { width: 44px; height: 44px; font-size: 20px; }
  .stat-num { font-size: 19px; }
  .stat-label { font-size: 11.5px; }

  /* Why choose */
  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-item { padding: 16px 14px; }

  /* Testimonials */
  .testimonial-wrap { gap: 8px; }
  .tarrow { width: 32px; height: 32px; font-size: 13px; }
  .testimonial-card { padding: 18px; }

  /* Experts */
  .experts-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .expert-card { padding: 18px 12px; }
  .expert-card img { width: 64px; height: 64px; }

  /* CTA */
  .cta-banner { margin: 16px 14px 44px; padding: 26px 20px; border-radius: 18px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-left { flex-direction: column; text-align: center; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .cta-buttons .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 30px; }
  .footer-col h5 { margin-bottom: 14px; }
  .footer-social { justify-content: space-evenly; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }

  .whatsapp-float { display:none; }
}

@media (max-width: 400px) {
  .courses-grid { grid-template-columns:  1fr; }
  .experts-grid { grid-template-columns:  1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
