body {
  font-family: 'Poppins', sans-serif;
  background: #f8fbfd;
}

/* Navbar */
.navbar {
  background: transparent;
}

.nav-link {
  font-weight: 500;
  color: #333 !important;
}

.nav-link.active {
  color: #0d6efd !important;
}

.btn-contact {
  background: #5fa4c6;
  color: #fff;
  border-radius: 30px;
  padding: 8px 22px;
  font-weight: 500;
}

.btn-contact:hover {
  background: #4b93b5;
  color: #fff;
}

/* Hero Section */
.hero-section {
  padding: 10px 0;
  background: linear-gradient(135deg, #f9fcff 0%, #eef5fb 100%);
  position: relative;
}

.hero-top-text {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 15px;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #0b2c4a;
  line-height: 1.3;
}

.hero-desc {
  font-size: 16px;
  color: #6c757d;
  margin-top: 15px;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px; /* pill shape */
  text-decoration: none;
  color: #fff;
  min-width: 220px;
  transition: all 0.3s ease;
}
.rounded-pill {
  background-color:  #475a70;
  
}
.hero-btn-dark {
  background-color: #475a70; /* dark bluish gray */
}

/* Right Button */
.hero-btn-blue {
  background-color: #5fa4bc; /* sky blue */
}

/* Hover Effect */
.hero-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}
/* Buttons */


/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-buttons {
    flex-direction: column;
  }
}
/* PASS RATE SECTION */
.pass-rate-section {
  padding: 80px 0;
  background: #ffffff;
}

/* Image Styling */
.image-wrapper {
  position: relative;
  max-width: 520px;
}

.main-image {
  border-radius: 20px;
  border: 2px solid #a8cde5;
}

/* Decorative Circles */
.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(88, 160, 200, 0.25);
}

.circle-1 {
  width: 80px;
  height: 80px;
  top: -25px;
  left: -25px;
}

.circle-2 {
  width: 60px;
  height: 60px;
  bottom: -20px;
  right: -20px;
}

/* Content Styling */
.section-label {
  color: #5fa4c6;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #0b2c4a;
  line-height: 1.3;
}

.section-desc {
  font-size: 15px;
  color: #6c757d;
  margin-top: 15px;
  max-width: 520px;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  .image-wrapper {
    margin: 0 auto;
  }

  .circle-1,
  .circle-2 {
    display: none;
  }
}

/* CERTIFICATION SECTION */
.certification-section {
  padding: 90px 0;
  background: #faf8f8;
}

.certification-title {
  font-size: 32px;
  font-weight: 700;
  color: #0b2c4a;
}

/* Card */
.cert-card {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 26px;
  padding: 26px 24px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease;
}

.cert-card:hover {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* Logo */
.cert-logo {
  max-width: 90px;
  margin-bottom: 16px;
}

/* Text */
.cert-desc {
  font-size: 13px;
  color: #6c757d;
  margin-bottom: 22px;
  line-height: 1.6;
}

/* Button */
.cert-btn {
  background: #3e5871;
  color: #ffffff;
  border-radius: 30px;
  padding: 10px 0;
  font-size: 13px;
  width: 100%;
}

.cert-btn:hover {
  background: #354a60;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .certification-title {
    font-size: 26px;
  }
}
.cert-card {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 22px;
  padding: 30px 25px;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.cert-card:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.cert-logo {
  max-width: 110px;
  margin-bottom: 15px;
}

.cert-desc {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cert-btn {
  background: #445b73;
  color: #fff;
  border-radius: 25px;
  padding: 10px 26px;
  font-size: 14px;
}
/* SECTION */
.training-section {
  padding: 90px 0;
  background: #fff;
}

/* FEATURE PILLS */

.feature-pill {
  background: #5f9bb3;
  border-radius: 40px;
  padding: 28px 26px;
  height: 100%;
  display: flex;
  gap: 16px;
  align-items: center;
  color: #fff;
}

.pill-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pill-icon img {
  width: 22px;
  height: 22px;
}

/* TEXT */
.feature-pill p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

/* TEXT */
.section-label {
  color: #5fa4c6;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  color: #0b2c4a;
  line-height: 1.3;
}

.section-desc {
  font-size: 15px;
  color: #6c757d;
  margin: 15px 0 25px;
  max-width: 520px;
}

/* IMAGE */
.image-wrapper {
  position: relative;
  display: inline-block;
}

.main-image {
  border-radius: 22px;
  border: 2px solid #9dc7df;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(95, 164, 198, 0.35);
}

.circle-top {
  width: 70px;
  height: 70px;
  top: -20px;
  left: -20px;
}

.circle-bottom {
  width: 60px;
  height: 60px;
  bottom: -20px;
  right: -20px;
}

/* LOGOS */
.logo-img {
  max-height: 35px;
  opacity: 0.7;
  transition: 0.3s;
}

.logo-img:hover {
  opacity: 1;
}

/* CAROUSEL ARROWS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* RESPONSIVE */
@media (max-width: 4000px) {
  .section-title {
    font-size: 500px;
  }

  .circle {
    display: none;
  }
}



/* WHY US SECTION */
.why-us-section {
  background: #455a70;
  padding: 90px 0;
}

/* Header */
.why-label {
  color: #9fd0ea;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.why-title {
  color:#fff;
  font-size:36px;
  font-weight:700;
  margin-bottom:15px;
}

.why-desc {
  color:#e4eef4;
  font-size:14px;
  line-height:1.7;
  max-width:650px;
}

/* Card */
/* CARD */
.why-card{
  background:#fff;
  border-radius:24px;
  padding: 30px 70px 30px 28px;  position:relative;
  height:100%;
}

/* ICON CIRCLE (TOP RIGHT) */
.icon-circle{
  position:absolute;
  top:24px;
  right:24px;
  width:44px;
  height:44px;
  border-radius:50%;
  background:#5fa3bf;
  display:flex;
  align-items:center;
  justify-content:center;
}
.icon-circle img{
  width:22px;
  height:22px;
}

/* CARD TEXT */
.why-card h5{
  font-size:16px;
  font-weight:600;
  margin-bottom:12px;
  max-width:80%;
}
.why-card p{
  font-size:13px;
  color:#6c757d;
  line-height:1.6;
}
.carousel-item {
  padding: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .why-title {
    font-size: 28px;
  }
}
/* SECTION */
.cbt-comparison-section {
  padding: 90px 0;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

/* HEADER */
.section-small {
  font-size: 13px;
  font-weight: 600;
  color: #6c8aa5;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  color: #0b2c4a;
}

.btn-start {
  background: #4c6178;
  color: #fff;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 14px;
}

.btn-start:hover {
  background: #394c60;
  color: #fff;
}

/* WRAPPER */
.comparison-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  border-radius: 25px;
  overflow: hidden;
  background: #f7f9fc;
}
.com-table {
  border-radius: 32px;            /* round like image */
  overflow: hidden;               /* IMPORTANT: clips inner rows */
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  background: transparent;
}
/* LABELS */
.comparison-labels {
  background: #ffffff;
  padding-top: 70px;
}

.label-item {
  padding: 22px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #0b2c4a;
  border-bottom: 1px solid #eef1f5;
}

/* COLUMNS */
.comparison-column {
  padding-bottom: 20px;
}

.column-title {
  padding: 22px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

/* CERTIFICATION TEACHER */
.teacher {
  background: #4c6178;
  color: #ffffff;
}

.teacher .column-title {
  background: #4c6178;
}

.teacher .cell {
  padding: 20px 22px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

/* OTHERS */
.others {
  background: #6aa6bf;
  color: #ffffff;
}

.others .column-title {
  background: #6aa6bf;
}

.others .cell {
  padding: 20px 22px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .comparison-wrapper {
    grid-template-columns: 1fr;
  }

  .comparison-labels {
    display: none;
  }
}
/* CONTACT SECTION */
.contact-section {
  background: #5fa4c6;
  padding: 90px 0;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
}

/* Wrapper */
.contact-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Headings */
.contact-label {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 8px;
}

.contact-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-desc {
  font-size: 14px;
  opacity: 0.95;
  margin-bottom: 35px;
}

/* Form */
.contact-form {
  text-align: left;

}

/* Input Groups */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

/* Inputs */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 30px;
  border: none;
  outline: none;
  font-size: 14px;
}

/* Textarea */
.form-group textarea {
  border-radius: 16px;
  resize: none;
}

/* Button */
.submit-btn {
  width: 100%;
  background: #455a70;
  color: #ffffff;
  padding: 14px;
  border-radius: 30px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #364a60;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-title {
    font-size: 24px;
  }

  .contact-wrapper {
    padding: 0 15px;
  }
}
.footer-section {
  background: #465a71;
  padding: 55px 0;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
}

/* Main layout like screenshot */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* big left area + 2 small columns */
  gap: 60px;
  align-items: start;
}

/* Logo + text must be side-by-side */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* White logo box */
.footer-logo-box {
  padding: 14px 18px;
  border-radius: 10px;
  flex: 0 0 auto;
}
.footer-rights {
  text-align: center;
  margin-top: 20px;
  color: #060607;
  font-size: 12px;
}

.footer-rights p {
  margin: 0;
}
.footer-logo-box img {
  height: 70px;
  width: auto;
  display: block;
}

/* Text on the right of logo */
.footer-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #e6edf4;
  max-width: 420px;
}

/* Titles */
.footer-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #e6edf4;
  text-decoration: none;
  font-size: 13px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Payment icons */
.payment-icons {
  display: grid;
  grid-template-columns: repeat(3, max-content); /* 3 per row */
  gap: 8px;
  align-items: center;
}

.payment-icons img {
  background: #ffffff;
  padding: 6px 10px;
  border-radius: 6px;
  height: 26px;
  width: auto;
}


/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-desc {
    max-width: 100%;
  }
}





/* SECTION */
.cbt-comparison-section{
  padding: 80px 0;
  background: #fff;
}

/* HEADER */
.section-small{
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 6px;
}
.section-title{
  font-size: 34px;
  font-weight: 700;
}

/* BUTTON (top right) */
.btn-start{
  background: #3e5871;
  color: #fff;
  border-radius: 30px;
  padding: 10px 22px;
  font-size: 14px;
  border: 0;
}
.btn-start:hover{ color:#fff; }

/* MAIN TABLE */
.cmp-table{
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(0,0,0,.10);
  background: transparent;
  display: grid;
  grid-template-columns: 1.1fr 1.6fr 1.6fr;
  border-radius: 28px;
  margin-top: 30px;
}

/* EACH ROW: 3 columns */
.cmp-row{
  display: grid;
  grid-template-columns: 240px 1fr 1fr; /* left labels fixed width like image */
}

/* HEADER ROW */
.cmp-head .cmp-label{
  background: #fff;
}
.cmp-title{
  text-align: center;
  font-weight: 600;
  padding: 18px 22px;
  font-size: 13px;
}

/* LEFT LABEL COLUMN (white) */
.cmp-label{
  background: #fff;
  padding: 22px 26px;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

/* CENTER COLUMN (dark blue) */
.cmp-teacher{
  background: #3e5871;
  color: #fff;
  padding: 22px 26px;
  font-size: 13px;
  line-height: 1.65;
  border-bottom: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
}

/* RIGHT COLUMN (light blue) */
.cmp-others{
  background: #6ea6bd;
  color: #fff;
  padding: 22px 26px;
  font-size: 13px;
  line-height: 1.65;
  border-bottom: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
}

/* remove last row borders */
.cmp-row:last-child .cmp-label{ border-bottom: none; }
.cmp-row:last-child .cmp-teacher{ border-bottom: none; }
.cmp-row:last-child .cmp-others{ border-bottom: none; }

/* RESPONSIVE like design */
@media (max-width: 992px){
  .cmp-row{
    grid-template-columns: 1fr;
  }
  .cmp-title{
    text-align: left;
  }
}

.logo-strip {
  background:  #ffffff;
  padding: 30px 0;
}

/* viewport */
.logo-train {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* moving train */
.logo-track {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

/* each logo */
.logo-item {
  flex: 0 0 auto;
  padding: 0 40px;
}

.logo-item img {
  height: 60px;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.logo-item img:hover {
  filter: grayscale(0);
  opacity: 1.5;
  transform: scale(1.5);
}
.logo-train:hover .logo-track {
  animation-play-state: paused;
}
@media (max-width: 768px) {
  .logo-item {
    padding: 0 24px;   /* more space between logos */
  }

  .logo-item img {
    height: 80px;      /* ✅ BIGGER logos on mobile */
    max-width: 140px;
  }
}



/* 🚆 TRAIN ANIMATION (RIGHT → LEFT) */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}



/* WHITE STRIP */






.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;      /* ✅ RIGHT SIDE */
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
}
