:root {
  --primary: #0b3c78;
  --secondary: #1e66b3;
  --cta: #1e66b3;
  --bg: #f5f7fa;
  --dark: #1a1a1a;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--dark);
}

/* ===== COMMON ===== */
.container {
  max-width: 1200px;
  width: 92%;
  margin: auto;
}

.btn-primary {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 28px;
  cursor: pointer;
  font-weight: 600;
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 24px;
  font-weight: 600;
}

/* ===== HEADER ===== */
.top-header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #d9d9d9;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  height: 42px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 60px;
}

.nav-links a {
  color: black;
  text-decoration: none;
  font-weight: 500;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 15px;
  color: black;
}

.hamburger {
  display: none;
  font-size: 26px;
  color: black;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  /* background-image: url("./images/banner.jpg"); */
  padding: 60px 0;
  color: white;
}
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(140deg, #0b3c78 0%, #1e66b3 45%, #0b3c78 100%),
    radial-gradient(
      900px 400px at 90% 10%,
      rgba(255, 255, 255, 0.12),
      transparent 60%
    ),
    radial-gradient(
      700px 300px at 10% 90%,
      rgba(0, 0, 0, 0.35),
      transparent 65%
    );
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.04) 2px,
    transparent 2px,
    transparent 10px
  );
  opacity: 0.6;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.badge {
  background: var(--secondary);
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  margin-bottom: 15px;
}

.hero-left h1 {
  color: var(--white);
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-left p {
  color: rgb(255, 255, 255);
  font-size: 17px;
  margin-bottom: 20px;
}

.hero-features {
  color: rgb(252, 252, 252);
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
.hero-features span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* ===== FORM CARD ===== */
.form-card {
  background: #ebf4ff;
  border: 2px solid var(--primary);
  color: var(--dark);
  padding: 30px;
  border-radius: 6px;
}

.form-card h3 {
  margin-bottom: 20px;
}

.form-card input {
  width: 100%;
  padding: 15px;
  margin-bottom: 30px;
  border: 1px solid #ccc;
}

.full {
  width: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero {
    padding: 35px 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    order: 1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--primary);
    position: absolute;
    top: 70px;
    right: 0;
    width: 220px;
  }

  .nav-links li {
    padding: 15px;
  }

  .hamburger {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .hero-left h1 {
    font-size: 30px;
  }
}

.review-section {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background-color: #ffffff;
  margin-top: 15px;
  padding: 12px;
  border-radius: 28px;
  font-family: sans-serif;
  margin-bottom: 32px;
}
.google-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 14px;
  border-radius: 3px;
}
.stars {
  display: inline-flex;
  align-items: center;
}
.star {
  color: #fbbc04;
  font-size: 20px;
  margin-right: 2px;
}
.star-half {
  position: relative;
  display: inline-block;
  color: #ccc;
  margin-right: 2px;
  font-size: 20px;
}
.star-half::before {
  content: "★";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  overflow: hidden;
  color: #fbbc04;
}
.review-score {
  margin-left: 0px;
  font-size: 14px;
  color: #333;
  font-weight: 400;
  line-height: 15px;
}

.accredited-section {
  display: flex;
  font-weight: 400;
  color: rgb(255, 255, 255);
  align-items: center;
}

/* ===== MOBILE DRAWER ===== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 60px;
}

/* Mobile only */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -280px;
    height: 100vh;
    width: 280px;
    background: #ffffff;
    flex-direction: column;
    padding: 12px;
    gap: 0;
    transition: right 0.35s ease;
    z-index: 999;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.15);
  }

  .nav-links a {
    color: #000;
    font-size: 16px;
    font-weight: 500;
  }

  .nav-links.active {
    right: 0;
  }

  .drawer-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}
/* ===== DRAWER HEADER ===== */
.drawer-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  /* margin-bottom: 30px; */
}

.drawer-logo {
  height: 25px;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #000;
}

/* Show drawer header only on mobile */
@media (max-width: 768px) {
  .drawer-header {
    display: flex;
  }
}

/* ===== PROGRAM HIGHLIGHTS ===== */
.program-highlights {
  padding: 60px 0;
  background: #ffffff;
}

.ph-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #000;
}

.ph-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 60px;
  row-gap: 22px;
}

.ph-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #000;
  line-height: 1.4;
}

.ph-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.ph-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #e53935;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .ph-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ph-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ph-item {
    font-size: 18px;
  }

  .ph-title {
    font-size: 24px;
  }
}

/* Hiring partners section styles */
.hiring-partners-section {
  background: #ffffff;
  padding: 30px 0;
}
.hiring-container {
  /* max-width:1100px;
         margin:0 auto; */
  padding: 16px 0;
  text-align: center;
}
.hiring-heading {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #000;
}
.hiring-subtitle {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 18px;
}
.hiring-marquee {
  position: relative;
  overflow: hidden;
  padding: 14px 0 8px;
}
.hiring-track {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: scroll-logos 32s linear infinite;
  will-change: transform;
}
.hiring-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 16px;
  /* background: linear-gradient(145deg, #ffffff, #f3f4ff); */
  /* box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14); */
  box-shadow:
    var(--primary) 0 3px 5px 0,
    var(--secondary) 0 0 0 2px;
  min-width: 180px;
}
.hiring-logo img {
  display: block;
  max-height: 75px;
  width: auto;
  /* show logo colors exactly as provided */
  filter: none;
  opacity: 1;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.hiring-logo:hover img {
  transform: translateY(-3px) scale(1.05);
}
@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 992px) {
  .hiring-heading {
    font-size: 22px;
  }
  .hiring-track {
    gap: 24px;
    animation-duration: 28s;
  }
  .hiring-logo {
    min-width: 160px;
    padding: 16px 24px;
    border-radius: 14px;
  }
  .hiring-logo img {
    max-height: 65px;
  }
}
@media (max-width: 576px) {
  .hiring-partners-section {
    padding: 20px 0;
  }
  .hiring-heading {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .hiring-subtitle {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .hiring-track {
    gap: 18px;
    animation-duration: 8s;
  }
  .hiring-logo {
    min-width: 160px;
    padding: 12px 30px;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.16);
  }
  .hiring-logo img {
    max-height: 100px;
  }
}

/* ---------- course details ---------- */
.course-tabs {
  position: sticky;
  top: 70px;
  background: #ffffff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  z-index: 50;
}

.tabs-wrapper {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 0 6px;
}

.tab {
  background: transparent;
  border: none;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: #444;
  border-radius: 8px 8px 0 0;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.tab:hover {
  background: #f2f6fb;
  color: var(--primary);
}

.tab.active {
  background: rgba(11, 60, 120, 0.1);
  color: var(--primary);
  font-weight: 600;
  box-shadow: inset 0 -3px 0 var(--primary);
}

/* ---------- BODY LAYOUT ---------- */
.course-body {
  display: flex;
  gap: 50px;
  height: 660px;
  padding: 45px 0;
}

/* ---------- LEFT CONTENT (SCROLLABLE) ---------- */
.course-content {
  flex: 2;
  overflow-y: auto;
  padding-right: 25px;
  scrollbar-width: thin;
}

.course-content::-webkit-scrollbar {
  width: 6px;
}

.course-content::-webkit-scrollbar-thumb {
  background: #dcdcdc;
  border-radius: 10px;
}

/* ---------- TAB CONTENT ---------- */
.tab-content {
  display: none;
  animation: fadeSlide 0.35s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-content h3 {
  font-size: 24px;
  margin-bottom: 18px;
  color: var(--primary);
}

.tab-content h4 {
  font-size: 17px;
  margin-top: 28px;
  margin-bottom: 10px;
  color: #111;
}

.tab-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
}

/* ---------- LIST STYLE  ---------- */
.tab-content ul {
  list-style: none;
  padding-left: 0;
  margin-top: 12px;
}

.tab-content li {
  display: flex;
  align-items: flex-start;
  gap: 12px; /* space between svg & text */
  margin-bottom: 12px;
  font-size: 15.5px;
  line-height: 1.7;
  color: #222;
}
/* SVG icon inside list items */
.tab-content li,
.accordion-content li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.li-icon {
  flex-shrink: 0;
  margin-top: 3px;
}

/* ---------- RIGHT FORM (FIXED CARD) ---------- */
.course-form {
  flex: 1;
  position: sticky;
  top: 150px;
  height: fit-content;
  background: #ebf4ff;
  padding: 32px;
  border-radius: 14px;
  border: 1px solid var(--primary);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.course-form h3 {
  font-size: 22px;
  margin-bottom: 6px;
  color: var(--primary);
}

.course-form p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #555;
}

.course-form input,
.course-form textarea {
  width: 100%;
  padding: 14px 14px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: border 0.2s ease;
}

.course-form input:focus,
.course-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.course-form textarea {
  resize: none;
  height: 90px;
}

.course-form .btn-primary {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  border-radius: 8px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .course-body {
    flex-direction: column;
    height: auto;
  }

  .course-content {
    overflow: visible;
    padding-right: 0;
  }

  .course-form {
    position: relative;
    top: auto;
  }
}
/* ===== MOBILE ACCORDION ===== */
.course-details-mobile {
  display: none;
  padding: 30px 15px;
}

.accordion-item {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}

.accordion-header {
  width: 100%;
  background: #fff;
  border: none;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header .icon {
  transition: transform 0.3s ease;
}

.accordion-item.active .icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height 0.35s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  overflow: auto;
  padding: 12px 16px 16px;
}

.accordion-content p,
.accordion-content li {
  font-size: 14.5px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 5px;
}

.accordion-content h4 {
  margin-bottom: 10px;
}

/* Hide desktop version on mobile */
@media (max-width: 900px) {
  .course-details {
    display: none;
  }

  .course-details-mobile {
    display: block;
  }
}

/* ===== CLASSROOM TRAINING ===== */
.classroom-training {
  padding: 55px 0;
  background: #f7f9fc;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  /* color: var(--primary); */
  margin-bottom: 40px;
}

/* Carousel */
.carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 80s linear infinite;
}

.carousel-track img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  margin-right: 24px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Pause on hover (desktop) */
.carousel-wrapper:hover .carousel-track {
  animation-play-state: paused;
}

/* Infinite scroll animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .carousel-track img {
    width: 260px;
    height: 180px;
  }
}

@media (max-width: 480px) {
  .carousel-track img {
    width: 220px;
    height: 160px;
  }
}

/* ===== HOW WE HELP YOU SUCCEED ===== */
.success-section {
  padding: 70px 0;
  background: #ffffff;
}

.success-container {
  max-width: 1200px;
  margin: auto;
  padding: 25px;
  background: #fff7eb;
  border-radius: 22px;
  border: 1px solid #e6e0d8;
}

.success-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #000;
  margin-bottom: 50px;
}

/* Grid */
.success-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 30px;
  align-items: center;
}

/* Item */
.success-item {
  text-align: center;
}

.success-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 14px;
}

.success-item p {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .success-grid {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 40px;
  }
}

@media (max-width: 768px) {
  .success-container {
    padding: 40px 20px;
  }

  .success-title {
    font-size: 28px;
  }

  .success-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== SUCCESS + CERTIFICATE (SCOPED) ===== */
.sc-success-certificate {
  background: #dcdcdc38;
  padding: 90px 0;
  color: #000000;
}

/* Container */
.sc-container {
  max-width: 1200px;
  width: 92%;
  margin: auto;
}

/* Grid */
.sc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT */
.sc-left h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* ===== VERTICAL VIDEO ===== */
.sc-video-wrapper {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.sc-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

/* RIGHT */
.sc-right {
  display: flex;
  flex-direction: column;
}

.sc-right h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* ===== CERTIFICATE STACK ===== */
.sc-certificate-wrapper {
  position: relative;
  height: 260px;
  margin-bottom: 40px;
}

.sc-cert {
  /* position: absolute; */
  width: 400px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

/* Back certificate */
.sc-cert-back {
  left: 0;
  top: 30px;
  transform: rotate(-8deg);
  opacity: 0.9;
}

/* Front certificate */
.sc-cert-front {
  left: 80px;
  top: 0;
  transform: rotate(5deg);
}

/* CTA Button */
.sc-btn {
  align-self: flex-start;
  background-color: var(--secondary);
  border: none;
  color: #fff;
  padding: 14px 40px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .sc-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .sc-video-wrapper {
    margin: 0 auto;
  }

  /* .sc-certificate-wrapper {
    margin: 0 auto 40px;
  } */

  .sc-btn {
    margin: auto;
  }
}

@media (max-width: 600px) {
  .sc-left h2,
  .sc-right h2 {
    font-size: 28px;
  }

  .sc-cert {
     width: 320px; 
  }
  .sc-certificate-wrapper {
    margin-bottom: 2px;
  }

  /* .sc-cert-front {
    left: 60px;
  } */
}

/* ===== WORDS HAVE POWER ===== */
.whp-testimonials {
  padding: 90px 0;
  background: #fff;
}

.whp-container {
  max-width: 1200px;
  width: 92%;
  margin: auto;
}

.whp-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #000;
}

/* Carousel */
.whp-carousel {
  display: flex;
  align-items: center;
  gap: 20px;
}

.whp-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.whp-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

/* Card */
.whp-card {
  flex: 0 0 calc(50% - 15px); /* 2 cards exactly */
  max-width: calc(50% - 15px);
  background: #ffffff;
  border-radius: 22px;
  padding: 16px;
  text-align: center;
  border: 1px solid #e4e4e4;
  box-shadow:
    var(--primary) 0 3px 5px 0,
    var(--secondary) 0 0 0 2px;
  transform: scale(0.92);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

/* Avatar */
.whp-avatar {
  width: 74px;
  height: 74px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b3c78, #1e66b3);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whp-card h4 {
  font-size: 17px;
  margin-bottom: 4px;
}

.whp-card span {
  font-size: 14px;
  color: #777;
}

.whp-card p {
  font-size: 15px;
  line-height: 1.7;
  margin-top: 16px;
  color: #333;
}

/* Nav Buttons */
.whp-nav {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #fff;
  font-size: 26px;
  cursor: pointer;
  color: var(--primary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive */
/* Tablet */
@media (max-width: 1024px) {
  .whp-card {
    flex: 0 0 80%;
    max-width: 80%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .whp-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .whp-card p {
    height: 150px;
    overflow: auto;
  }
}

/* ===== FOOTER ===== */
.lp-footer {
  background: #0b3c78;
  color: #ffffff;
  padding: 40px 0 0;
}

.lp-footer-container {
  max-width: 1200px;
  width: 92%;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  padding-bottom: 12px;
}

/* Brand */
.lp-footer-brand a {
  text-decoration: none;
  color: white;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  cursor: pointer;
}

.lp-footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: #d6e3f3;
}

/* Contact */
.lp-footer-contact h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
}

.lp-footer-contact ul {
  list-style: none;
  padding: 0;
}

.lp-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.lp-icon {
  font-size: 18px;
}

.lp-footer-contact a {
  color: #ffffff;
  text-decoration: none;
}

.lp-footer-contact a:hover {
  text-decoration: underline;
}

/* Bottom Bar */
.lp-footer-bottom {
  background: #072c58;
  text-align: center;
  font-size: 14px;
  padding: 14px 10px;
  color: #c9d8ec;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .lp-footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .lp-footer-contact li {
    justify-content: center;
  }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

/* WhatsApp Icon */
.wa-icon {
  width: 34px;
  height: 34px;
  z-index: 2;
}

/* Ripple Effect */
.wa-ripple {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(37, 211, 102, 0.4);
  border-radius: 50%;
  animation: wa-pulse 2.8s infinite;
  z-index: 1;
}

.wa-ripple.delay {
  animation-delay: 1.4s;
}

/* Pulse Animation */
@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(2.2);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Hover (desktop) */
.wa-float:hover {
  transform: scale(1.08);
}

/* Mobile safe spacing */
@media (max-width: 480px) {
  .wa-float {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  .wa-icon {
    width: 30px;
    height: 30px;
  }
}

/* ===== POPUP FORM ===== */
.pf-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.pf-modal {
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  padding: 35px 30px;
  border-radius: 18px;
  position: relative;
  animation: popupFade 0.35s ease;
}

@keyframes popupFade {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Close Button */
.pf-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: none;
  font-size: 26px;
  cursor: pointer;
}

/* Text */
.pf-modal h3 {
  font-size: 22px;
  margin-bottom: 6px;
  color: #0b3c78;
}

.pf-modal p {
  font-size: 14px;
  margin-bottom: 22px;
  color: #555;
}

/* Inputs */
.pf-modal input {
  width: 100%;
  padding: 14px 14px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

/* CAPTCHA */
.pf-captcha {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}
.pf-captcha span {
  border: 2px solid rgb(5, 5, 5);
  padding: 5px;
}

#captchaQuestion {
  background: #ffffff;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}

/* Button */
.pf-btn {
  width: 100%;
  background: #0b3c78;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 480px) {
  .pf-modal {
    margin: 0 14px;
  }
}

/* ===== SUCCESS POINTS ===== */
/* .success-points {
  background: #ffffff;
  border: 1px solid #e3e7ef;
  border-radius: 10px;
  padding: 26px 30px;
  max-width: 520px;
} */

.success-points ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.success-points li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 1.6;
  color: #222;
}

@media (max-width : 600px) {
  .success-points li {
    padding-left: 16px;
    font-size: 16px;
  }
}

/* Subtle check indicator (professional, not flashy) */
.success-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0b3c78;
  font-weight: 700;
}

/* Remove last margin */
.success-points li:last-child {
  margin-bottom: 0;
}

/* form */
.group-label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

/* RADIO GROUP */
.radio-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.radio-group label {
  padding: 12px 14px;
  border: 1.5px solid #d9e2ff;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.25s ease;
}

.radio-group input {
  accent-color: var(--blue);
}

/* RADIO HOVER */
.radio-group label:hover {
  border-color: var(--blue);
  background: #f4f7ff;
}
.form-group input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31, 79, 216, 0.12);
}

.form-group {
  margin-bottom: 20px;
}
.radio-group input {
  margin-bottom: 0;
}
