:root {
  --primary: #0f4c5c;
  --accent: #06b6d4;
  --dark: #0b3c5d;
  --bg: #f9fafb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #ffffff;
  color: #222;
}

img {
  max-width: 100%;
  display: block;
}

/* ================= HEADER ================= */
.header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nav {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 44px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
}

.brand-red {
  color: #e11d48;
}

.brand-black {
  color: #000;
  margin-left: 4px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-phone {
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ================= HERO ================= */
.hero-modern {
  background: linear-gradient(135deg, var(--dark), #0f766e);
  padding: 100px 20px;
  color: #ffffff;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 18px;
}

.highlight {
  color: #38bdf8;
}

.hero-content p {
  color: #e0f2fe;
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #ffffff;
  color: var(--dark);
  padding: 14px 34px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 500;
}

.btn-whatsapp {
  background: #22c55e;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* HERO STATS */
.hero-stats {
  display: flex;
  gap: 45px;
  margin-top: 45px;
}

.stat-box {
  text-align: center;
  min-width: 120px;
}

.stat-number {
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.counter {
  font-size: 2.4rem;
  font-weight: 700;
}

.symbol {
  font-size: 1.4rem;
  margin-left: 4px;
}

.stat-box p {
  font-size: 0.9rem;
  color: #e0f2fe;
}

/* HERO FORM */
.hero-form {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px;
  color: #222;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hero-form h3 {
  margin-bottom: 8px;
}

.hero-form p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 20px;
}

.hero-form input,
.hero-form select {
  width: 100%;
  padding: 13px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.hero-form button {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border-radius: 30px;
  border: none;
  cursor: pointer;
}

/* ================= COMMON ================= */
section {
  padding: 90px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  max-width: 760px;
  margin: 12px auto 60px;
  color: #555;
}

/* ================= PROGRAM CARDS ================= */
.programs {
  background: #f8fafc;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}

.program-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.program-logos {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.program-logos img {
  height: 34px;
}

.program-card h3 {
  margin-top: 15px;
  color: var(--primary);
}

.program-card p {
  font-size: 0.95rem;
  color: #555;
}

.program-card ul {
  list-style: none;
}

.program-card ul li {
  font-size: 0.9rem;
  margin: 5px 0;
}

.btn-light {
  background: var(--primary);
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
}

/* ================= FOOTER ================= */
.footer {
  background: #0b2e36;
  color: #fff;
  padding: 40px 20px 20px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #9ca3af;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 15px;
}

/* ================= MODAL ================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  width: 90%;
  max-width: 420px;
}

.modal-box input,
.modal-box select,
.modal-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* ================= WHATSAPP ================= */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  padding: 15px;
  border-radius: 50%;
  font-size: 26px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .program-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 600px) {
  .program-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }
}
/* ================================
   INTERNSHIP PROGRAMS – PERFECT UI
================================ */

.programs {
  background: #f8fafc;
  padding: 90px 20px;
}

.programs .container {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 55px;
}

/* CARD */
.program-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  min-height: 540px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* SOFT TOP GRADIENT */
.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #0f4c5c, #06b6d4);
}

/* LOGOS */
.program-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.program-logos img {
  height: 36px;
  max-width: 42px;
  object-fit: contain;
  filter: grayscale(10%);
  transition: transform 0.3s ease;
}

.program-card:hover .program-logos img {
  transform: scale(1.08);
}

/* TITLE */
.program-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #0f4c5c;
  margin-bottom: 12px;
}

/* DESCRIPTION */
.program-card p {
  font-size: 0.96rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* LIST */
.program-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 26px;
}

.program-card ul li {
  font-size: 0.92rem;
  color: #444;
  padding: 6px 0;
  position: relative;
  padding-left: 20px;
}

.program-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-size: 0.85rem;
}

/* BUTTON */
.program-card .btn-light {
  background: #0f4c5c;
  color: #ffffff;
  padding: 13px 30px;
  border-radius: 30px;
  border: none;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.program-card .btn-light:hover {
  background: #083c47;
  transform: translateY(-2px);
}

/* HOVER EFFECT */
.program-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.16);
}

/* =====================
   RESPONSIVE
===================== */

/* TABLET */
@media (max-width: 1200px) {
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: auto;
    padding: 28px 22px;
  }
}
/* ================================
   INTERNSHIP PROJECTS – MODERN UI
================================ */

.projects-section {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  padding: 90px 20px;
}

.projects-section .container {
  max-width: 1200px;
  margin: auto;
}

/* CATEGORY BLOCK */
.project-category {
  margin-top: 70px;
}

/* CATEGORY TITLE */
.project-category h3 {
  font-size: 1.65rem;
  font-weight: 600;
  color: #0f4c5c;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.project-category h3 i {
  color: #06b6d4;
  font-size: 1.5rem;
}

/* GRID */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* PROJECT CARD */
.project-card {
  background: #ffffff;
  padding: 34px 28px;
  border-radius: 22px;
  text-align: center;
  min-height: 260px;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* TOP ACCENT LINE */
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 4px;
  background: linear-gradient(90deg, #0f4c5c, #06b6d4);
}

/* ICON */
.project-card i {
  font-size: 40px;
  color: #06b6d4;
  margin-bottom: 18px;
  transition: transform 0.35s ease, color 0.35s ease;
}

/* TITLE */
.project-card h4 {
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0f4c5c;
}

/* TEXT */
.project-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* HOVER EFFECT */
.project-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
}

.project-card:hover i {
  transform: scale(1.15);
  color: #0f4c5c;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 992px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-category h3 {
    font-size: 1.45rem;
  }
}
/* ================================
   WHY CHOOSE US – MODERN PREMIUM UI
================================ */

.why-advanced {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 100px 20px;
}

.why-advanced .container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.why-advanced .section-title {
  text-align: center;
  font-size: 2.7rem;
  font-weight: 700;
  color: #0f4c5c;
}

.why-advanced .section-subtitle {
  text-align: center;
  max-width: 760px;
  margin: 15px auto 65px;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

/* GRID */
.why-grid-3x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.why-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 42px 28px;
  text-align: center;
  min-height: 260px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* TOP ACCENT LINE */
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #0f4c5c, #06b6d4);
}

/* ICON */
.why-card i {
  font-size: 44px;
  color: #ea0505;
  margin-bottom: 20px;
  transition: transform 0.35s ease, color 0.35s ease;
}

/* TEXT */
.why-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0f4c5c;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* HOVER EFFECT */
.why-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.why-card:hover i {
  transform: scale(1.15);
  color: #0f4c5c;
}

/* =====================
   RESPONSIVE
===================== */

/* TABLET */
@media (max-width: 992px) {
  .why-grid-3x3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .why-grid-3x3 {
    grid-template-columns: 1fr;
  }

  .why-advanced .section-title {
    font-size: 2.1rem;
  }
}
/* ===== WHO CAN APPLY – MODERN TIMELINE STYLE ===== */
.apply-section {
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
  padding: 100px 20px;
}

.apply-grid {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: center;
}

/* MAIN CARD */
.apply-content {
  background: #ffffff;
  padding: 55px 60px;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Decorative gradient bar */
.apply-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #0f4c5c, #06b6d4);
}

/* HEADING */
.apply-content h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0f4c5c;
  margin-bottom: 12px;
  text-align: center;
}

.apply-intro {
  text-align: center;
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 45px;
}

/* LIST */
.apply-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 30px;
}

/* ITEM CARD */
.apply-list li {
  background: #f9fafb;
  padding: 22px 22px 22px 70px;
  border-radius: 18px;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
}

/* ICON CIRCLE */
.apply-list li::before {
  content: "🎓";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #0f4c5c, #06b6d4);
  color: #ffffff;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* HOVER EFFECT */
.apply-list li:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.12);
  background: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .apply-content {
    padding: 40px 30px;
  }

  .apply-list {
    grid-template-columns: 1fr;
  }

  .apply-content h2 {
    font-size: 2.1rem;
  }
}
/* ===== INTERNSHIP DURATION (MODERN UI) ===== */
.duration-section {
  background: linear-gradient(135deg, #0f4c5c, #083344);
  padding: 110px 20px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* subtle background glow */
.duration-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,0.25), transparent 70%);
  top: -120px;
  right: -120px;
}

.duration-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  max-width: 1100px;
  margin: auto;
  align-items: center;
}

/* LEFT CONTENT */
.duration-info h2 {
  font-size: 2.6rem;
  margin-bottom: 18px;
  line-height: 1.2;
}

.duration-info p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 10px;
}

/* APPLY BUTTON */
.btn-apply {
  margin-top: 28px;
  background: linear-gradient(135deg, #06b6d4, #22d3ee);
  color: #083344;
  padding: 14px 40px;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-apply:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(6,182,212,0.45);
}

/* RIGHT SIDE CARDS */
.duration-cards {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* GLASS CARD */
.duration-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  color: #0f4c5c;
  padding: 26px 24px;
  border-radius: 60px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* accent stripe */
.duration-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #06b6d4, #22d3ee);
  opacity: 0;
  transition: 0.35s;
}

.duration-card * {
  position: relative;
  z-index: 1;
}

/* hover effect */
.duration-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.duration-card:hover::before {
  opacity: 0.08;
}

/* TEXT */
.duration-card h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.duration-card p {
  font-size: 0.95rem;
  color: #334155;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .duration-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .duration-info h2 {
    font-size: 2.2rem;
  }

  .duration-cards {
    align-items: center;
  }

  .duration-card {
    width: 100%;
    max-width: 360px;
  }
}
/* ===== HOW IT WORKS – MODERN TIMELINE STYLE ===== */
.how-it-works {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

/* Decorative background circles */
.how-it-works::before,
.how-it-works::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.15);
  z-index: 0;
}

.how-it-works::before {
  top: -80px;
  left: -80px;
}

.how-it-works::after {
  bottom: -80px;
  right: -80px;
}

/* GRID */
.steps-grid {
  max-width: 1100px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* STEP CARD */
.step-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 55px 25px 35px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* TOP ACCENT LINE */
.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #0f4c5c, #06b6d4);
  transform: translateX(-50%);
  border-radius: 0 0 10px 10px;
}

/* STEP NUMBER */
.step-number {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0f4c5c, #06b6d4);
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

/* ICON */
.step-card i {
  font-size: 44px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #0f4c5c, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #0f4c5c;
}

.step-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* HOVER EFFECT */
.step-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    padding: 50px 22px 32px;
  }
}
/* ===== INTERNSHIP CERTIFICATION (MODERN GLASS STYLE) ===== */
.certification-section {
  background: linear-gradient(135deg, #0f172a, #0f4c5c);
  padding: 100px 20px;
  color: #ffffff;
}

.cert-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* ===== LEFT CONTENT ===== */
.cert-content {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  animation: fadeUp 1s ease;
}

.cert-content .section-title {
  font-size: 2.6rem;
  color: #38bdf8;
  margin-bottom: 10px;
}

.cert-content .section-subtitle {
  font-size: 1.05rem;
  color: #e5e7eb;
  margin-bottom: 30px;
}

.cert-content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.cert-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 20px;
}

/* ===== BENEFITS LIST ===== */
.cert-benefits {
  list-style: none;
  padding: 0;
  margin: 25px 0 35px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.cert-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 0.95rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.cert-benefits li i {
  color: #22c55e;
  font-size: 1.2rem;
}

.cert-benefits li:hover {
  transform: translateX(6px);
  background: rgba(255,255,255,0.18);
}

/* ===== APPLY BUTTON ===== */
.cert-content .btn-light {
  background: linear-gradient(135deg, #06b6d4, #38bdf8);
  color: #0f172a;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-content .btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(56,189,248,0.45);
}

/* ===== RIGHT IMAGE ===== */
.cert-image {
  position: relative;
  animation: fadeUp 1.2s ease;
}

.cert-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  border: 6px solid rgba(255,255,255,0.15);
}

/* ===== FLOATING BADGE EFFECT ===== */
.cert-image::after {
  content: "✔ Verified Certificate";
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: #0f172a;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* ===== ANIMATION ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .cert-content {
    padding: 40px 30px;
    text-align: center;
  }

  .cert-benefits li {
    justify-content: center;
  }

  .cert-image::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
/* ===== FAQ SECTION (CLEAN & MODERN) ===== */
.faq-section {
  background: #f8fafc;
  padding: 90px 20px;
}

.faq-section .section-title {
  text-align: center;
  font-size: 2.4rem;
  color: #0f4c5c;
  margin-bottom: 10px;
}

.faq-section .section-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 1.05rem;
}

/* WRAPPER */
.faq-wrapper {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* FAQ ITEM */
.faq-item {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: #06b6d4;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 22px;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #111827;
}

/* ICON */
.faq-question i {
  font-size: 1rem;
  color: #06b6d4;
  transition: transform 0.35s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #f9fafb;
}

.faq-answer p {
  padding: 0 22px 22px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* ACTIVE STATE */
.faq-item.active {
  border-color: #06b6d4;
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* MOBILE */
@media (max-width: 600px) {
  .faq-question {
    font-size: 1rem;
    padding: 18px;
  }

  .faq-answer p {
    padding: 0 18px 18px;
  }
}
/* ===== LEARNMORE FOOTER ===== */
.lm-footer {
  background: #0b2e36;
  color: #d1d5db;
  padding: 70px 20px 0;
  font-family: 'Poppins', sans-serif;
}

.lm-footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

/* HEADINGS */
.lm-footer h3,
.lm-footer h4 {
  color: #06b6d4;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* TEXT */
.lm-footer p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* LIST */
.lm-footer ul {
  list-style: none;
  padding: 0;
}

.lm-footer ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

/* LINKS */
.lm-footer a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.lm-footer a:hover {
  color: #06b6d4;
}

/* BOTTOM BAR */
.lm-footer-bottom {
  margin-top: 50px;
  padding: 18px 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  font-size: 0.9rem;
  color: #9ca3af;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .lm-footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .lm-footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* ===== AUTO POPUP MODAL ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.popup-overlay.active {
  visibility: visible;
  opacity: 1;
}

.popup-box {
  background: #ffffff;
  width: 90%;
  max-width: 420px;
  padding: 35px 30px;
  border-radius: 18px;
  position: relative;
  animation: popupScale 0.35s ease;
}

@keyframes popupScale {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* CLOSE BUTTON */
.popup-close {
  position: absolute;
  top: 12px;
  right: 15px;
  border: none;
  background: transparent;
  font-size: 26px;
  cursor: pointer;
  color: #444;
}

/* TEXT */
.popup-box h3 {
  font-size: 1.6rem;
  margin-bottom: 5px;
  color: #0f4c5c;
}

.popup-box p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

/* FORM */
.popup-box form input,
.popup-box form select,
.popup-box form textarea {
  width: 100%;
  padding: 13px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.popup-box form textarea {
  resize: none;
  height: 90px;
}

.popup-box form button {
  width: 100%;
  padding: 14px;
  background: #0f4c5c;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
}

.popup-box form button:hover {
  background: #083c47;
}

