/* =============================
   GLOBAL FIXES
============================= */
/* =============================
   GLOBAL COLORS (FIX)
============================= */
body {
  font-family: 'Oktah Neue', sans-serif;
  color: var(--text);
  background: #fff;
}

/* ALL HEADINGS BLUE */
h1, h2, h3, h4, h5, h6 {
  color: var(--navy);
  font-weight: 600;
}

/* PARAGRAPHS */
p {
  color: var(--muted);
  line-height: 1.6;
}

section {
  padding: 60px 0;
}
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

:root {
  --navy: #1B2B7B;
  --gold: #F9B100;
  --text: #555;
  --bg: #f7f7fb;
}

.partner-hero {
  background: var(--bg);
  padding: 80px 6%;
}

/* GRID */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.hero-badge {
  background: var(--gold);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.hero-left h1 {
  font-size: 42px;
  color: var(--navy);
  line-height: 1.25;
  font-weight: bold;
  margin-bottom: 15px;
}

.hero-desc {
  color: var(--text);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* BUTTON */
.hero-btn {
  background: var(--gold);
  border: none;
  padding: 14px 22px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  box-shadow: 4px 4px 0px var(--navy);
}

.hero-btn span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
}

/* STATS */
.hero-stats {
  margin-top: 25px;
  display: flex;
  gap: 25px;
  font-size: 14px;
  color: var(--navy);
}

.hero-stats div {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* RIGHT */
/* WRAPPER */
.partner-media {
  width: 100%;
}

/* VIDEO BOX */
.partner-video {
  width: 100%;
  height: 340px;
  border-radius: 10px;
  overflow: hidden; /* 🔥 REQUIRED */
  position: relative; /* for play button */
}

/* IMAGE FIX */
.partner-video img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 FULL COVER */
  display: block;
}


/* PLAY BUTTON (same) */
.play-btn {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  position: relative;
}

.play-btn::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 15px;
  border-left: 12px solid #F9B100;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

/* ===================== */
/* 🔥 RESPONSIVE */
/* ===================== */

@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto 20px;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .partner-hero {
    padding: 60px 20px;
  }

  .hero-left h1 {
    font-size: 28px;
  }

  .hero-video {
    height: 220px;
  }

  .hero-btn {
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
  }
}

/* PLAY BUTTON (FIX MISSING) */
.play-btn {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  position: relative;
}

.play-btn::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 14px;
  border-left: 14px solid #F9B100;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}


/* =============================
   HOW IT WORKS (FIXED)
============================= */

.partner-how-cards {
  padding: 40px 0;
}

.partner-cards-scroll {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding: 10px 0;
}

.partner-cards-scroll::-webkit-scrollbar {
  height: 6px;
}

.partner-cards-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.partner-video-card {
  min-width: 200px;
  height: 300px;
  background: #6c7a8c;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-how-cards h2 {
  margin-bottom: 20px;
}

.partner-cards-scroll {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.partner-video-card {
  min-width: 220px;
  height: 320px;
  background: #6c7a8c;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* HOW SECTION */
/* HOW SECTION */
.how-section {
  background: #0b1f5c;
  color: white;
  padding: 80px 5%;
}

.how-grid {
  display: flex;
  align-items: center;
  gap: 110px;
}

/* IMAGE WRAPPER */
.how-img {
  width: 100%;
  max-width: 420px;
  height: 290px;
  border-radius: 12px;
  overflow: hidden; /* 🔥 important */
  flex-shrink: 0;
}

/* IMAGE */
.how-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 makes it fill perfectly */
  display: block;
}

@media (max-width: 900px) {
  .how-grid {
    flex-direction: column;
    gap: 30px;
  }

  .how-img {
    width: 100%;
    height: 220px;
  }
}
/* TEXT */
.how-text {
  flex: 1;
}

.how-text h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #fff;
  font-weight: bolder;
}

.how-text p {
  line-height: 1.9;
  color: #fff;
  font-size: 15px;

}


.partner-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 15px;
}

.partner-icon svg {
  width: 100%;
  height: 100%;
  fill: #F9B100; /* 🔥 YELLOW COLOR */
}

.partner-icon {
  width: 40px;
  height: 40px;
  background: #FFF5E3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

/* 🔥 RESPONSIVE FIX */
@media (max-width: 900px) {
  .how-grid {
    flex-direction: column;
    text-align: center;
  }

  .how-img {
    max-width: 100%;
    height: 220px;
  }

  .how-text h2 {
    font-size: 28px;
  }
}

@media (max-width: 500px) {
  .how-section {
    padding: 60px 20px;
  }

  .how-text p {
    font-size: 14px;
  }
}
.partner-why {
  padding: 60px 0;
}

.partner-why .why-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.partner-why .why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 30px;
}

.partner-why .why-item {
  display: flex;
  flex-direction: column;
}

.partner-why .icon {
  color: #F9B100;
  margin-bottom: 10px;
}

.partner-why h4 {
  font-size: 13px;
  margin-bottom: 6px;
}

.partner-why p {
  font-size: 13px;
  color: #666;
}


/* =============================
   JOIN SECTION (FULL FIX)
============================= */
.partner-join {
  display: flex;
  gap: 110px;
  padding: 60px 0;
  align-items: flex-start;
}
.partner-join-left h2 {
  font-size: 42px;
  color: #1B2B7B;
  font-weight: 700;
  line-height: 1.2;
}

.sub {
  color: #6b6f7b;
  margin-top: 15px;
}

/* CONTACT */
.contact-info {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #1B2B7B;
  font-weight: 500;
}

/* ICON BOX */
.icon-box {
  width: 38px;
  height: 38px;
  background: #F9B100;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
}

.icon-box svg {
  width: 18px;
  height: 18px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .partner-join-left h2 {
    font-size: 28px;
  }

  .contact-item {
    font-size: 14px;
  }

  .icon-box {
    width: 34px;
    height: 34px;
  }
}

/* FORM RIGHT */
.partner-form {
  flex: 1;
  background: #1B2B7B;
  padding: 30px;
  border-radius: 6px;
}

.partner-form form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* FORM GROUP */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  font-size: 11px;
  color: #ccc;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  border: none;
  background: #e6e6e6;
  font-size: 13px;
}

textarea {
  height: 80px;
  resize: none;
}

/* BUTTON */
.submit-btn {
  grid-column: span 2;
  background: linear-gradient(to right, #F9B100, #ffd54d);
  border: none;
  padding: 12px;
  font-weight: 600;
  cursor: pointer;
}


/* =============================
   RESPONSIVE FIX (VERY IMPORTANT)
============================= */
@media (max-width: 900px) {

  .partner-hero {
    flex-direction: column;
  }

  .partner-join {
    flex-direction: column;
  }

  .partner-form form {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-top {
    flex-direction: column;
    gap: 10px;
  }

  .partner-how-cards h2 {
    text-align: left;
  }
}

@media (max-width: 500px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
:root {
  --navy: #1B2B7B;
  --gold: #F9B100;
  --bg: #f4f6fb;
  --text: #222;
  --muted: #6b6f7b;
  --line: #d9deea;
}


/* SECTION */
.edu-section {
  padding: 90px 6%;
}

/* CONTAINER */
.edu-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 70px;
}

/* LEFT */
.edu-title {
  font-size: 44px;
  font-weight: 600; /* SemiBold */
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.edu-accent-bar {
  width: 75px;
  height: 6px;
  background: var(--gold);
  margin-top: 22px;
  border-radius: 3px;
}

/* RIGHT */
.edu-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 18px;
}

.edu-description {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
}

/* BOTTOM SECTION */
.edu-bottom {
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.edu-divider {
  flex: 1;
  height: 2px;
  background: var(--navy); /* BLUE LINE */
  opacity: 0.25;
}

.edu-label {
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--navy);
  font-weight: 600;
  white-space: nowrap;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .edu-container {
    flex-direction: column;
    gap: 45px;
  }

  .edu-title {
    font-size: 34px;
  }
}

@media (max-width: 500px) {
  .edu-section {
    padding: 60px 20px;
  }

  .edu-title {
    font-size: 26px;
  }

  .edu-bottom {
    gap: 12px;
  }
}

:root {
  --navy: #1B2B7B;
  --gold: #F9B100;
  --bg: #f4f6fb;
  --text: #222;
  --muted: #6b6f7b;
  --line: #e1e5f0;
}

.partner-section {
  background: var(--bg);
  padding: 80px 6%;
}

/* HEADER */
.partner-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  gap: 20px;
}

.partner-tag {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
}

.partner-title {
  font-size: 42px;
  color: var(--navy);
  margin-top: 10px;
  font-weight: 600;
}

.partner-header-right p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 30px;
}

/* GRID */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-top: 4px solid var(--gold);
}

/* CARD */
.partner-card {
  padding: 35px 25px;
  border-right: 1px solid var(--line);
}

.partner-card:last-child {
  border-right: none;
}

/* ICON */
.partner-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 15px;
}

/* TEXT */
.partner-card h3 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 700;
}

.partner-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-card:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 600px) {
  .partner-header {
    flex-direction: column;
  }

  .partner-title {
    font-size: 28px;
  }

  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-card {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .partner-card:last-child {
    border-bottom: none;
  }
}

/* SECTION */
.faq-section {
  padding: 80px 6%;
  background: #f7f7fb;
}

/* TITLE (left aligned now) */
.faq-title {
  font-size: 36px;
  color: #1B2B7B;
  margin-bottom: 40px;
}

/* LIST (no center alignment) */
.faq-list {
  max-width: 1100px; /* keeps it readable */
}

/* ITEM (CARD STYLE) */
.faq-item {
  background: #FFF5E3;
  border-radius: 8px;
  padding: 0 20px;
  margin-bottom: 15px;
  border: 1px solid #f3e2b8;
  transition: 0.25s ease;
}

/* HOVER (optional but nice) */
.faq-item:hover {
  transform: translateY(-2px);
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #1B2B7B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* ICON */
.faq-question span {
  font-size: 18px;
  transition: 0.3s;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  transition: all 0.3s ease;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 15px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.faq-item.active {
  border-color: #F9B100;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .faq-title {
    font-size: 26px;
  }

  .faq-list {
    max-width: 100%;
  }
}