
.online-hero {
  background: radial-gradient(circle at top, #0b1c3d, #050b1a);
  color: #fff;
  padding: 80px 6%;
  position: relative;
  overflow: hidden;
}

/* GRID EFFECT */
.online-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* LEFT */
.top-badge {
  background: #0b3cff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-left h1 {
  font-size: 48px;
  line-height: 1.2;
}

.hero-left h1 span {
  color: #2f7bff;
}

.hero-left p {
  margin: 20px 0 30px;
  color: #cfd7ff;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.primary-btn {
  background: #0b5cff;
  padding: 14px 24px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.secondary-btn {
  border: 1px solid #fff;
  padding: 14px 24px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
}

/* RIGHT CARD */
.hero-right {
  position: relative;
}

.live-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 20px;
}

.live-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.live-dot {
  margin-left: auto;
  color: #1aff6c;
  font-size: 12px;
  height: 10px;
  width: 10px;
  background-color: #0b5cff;
  border-radius: 50%;
  display: inline-block;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%   { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 1; }
}

.live-video-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
}




.video-placeholder {
  margin: 20px 0;
  height: 220px;
  background: rgba(255,255,255,0.1);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 40px;
}

.participants {
  display: flex;
  gap: 6px;
  
}

.avatar {
  width: 30px;
  height: 30px;
  background: #555;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.avatar.more {
  background: #0b5cff;
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 12px;
}

/* FLOATING BADGES */
.float-badge {
  position: absolute;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 14px;
  display: flex;
  gap: 8px;
  align-items: center;
  animation: float 6s ease-in-out infinite;
}

/* .safe {
  top: -20px;
  right: 40px;
} */

.float-badge.safe {
  top: -10px;
  left: -20px;
  z-index: 999;
}

.float-badge.countries {
  bottom: -20px;
  right: -20px;
  animation-delay: 1s;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
  100% { transform: translateY(0px); }
}

/* STATS */
.stats-box {
  margin-top: 80px;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  text-align: center;
  color: #000;
}

.stat h2 {
  color: #0b5cff;
  font-size: 32px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .hero-container {
    grid-template-columns: 1fr;
  }
  .hero-right {
    margin-top: 40px;
  }
  .stats-box {
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
  }
}


/* TABLET */
@media (max-width: 768px) {
  .hero-left h1 {
    font-size: 36px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    text-align: center;
  }

  .float-badge.safe {
    top: -12px;
    left: 0;
  }

  .float-badge.countries {
    bottom: -12px;
    right: 0;
  }
}






/* SMALL MOBILE */
@media (max-width: 480px) {
  .online-hero {
    padding: 40px 5%;
  }

  .hero-left h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-left p {
    font-size: 14px;
  }

  .live-card {
    padding: 16px;
  }

  .video-placeholder {
    height: auto;
  }

  .participants {
    flex-wrap: wrap;
  }

  /* Hide floating badges on very small screens */
  .float-badge {
    display: none;
  }

  .stats-box {
    padding: 24px;
    grid-template-columns: 1fr;
  }
}
.who-heading {
  font-size: 42px;
  line-height: 1.2;
  max-width: 620px;
}

@media (max-width:900px){

  .hero-right{
    order: -1;   /* ⭐ moves live card to top */
  }

}











.corporate-section {
  background: radial-gradient(circle at top right, #0b1b3a, #040916);
  padding: 50px 40px;
  color: #fff;
  
  text-align-last: left;
  text-align: justify;
  hyphens: auto;
  overflow-wrap: break-word;
  line-height: 1.7;
}

.corporate-wrapper {
  max-width: 1024px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 70px;
}

/* LEFT */
.corporate-left {
  flex: 1;
}

.tag {
  display: inline-block;
  background: #0d47ff;
  padding: 7px 16px;
  border-radius: 22px;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.corporate-left h2 {
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 22px;
}

.corporate-left p {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 18px;
}

.trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.avatars {
  display: flex;
  gap: 8px;
}

.avatars span {
  width: 36px;
  height: 36px;
  background: #0d47ff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}
.avatars span i {
  color: #ffffff;
  font-size: 16px;
  line-height: 1;  
}

.trust strong {
  display: block;
  font-size: 18px;
}

.trust small {
  color: #94a3b8;
}

/* RIGHT */
.corporate-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.demo-card-about {
  width: 100%;
  max-width: 460px;
  padding: 34px 34px 38px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  backdrop-filter: blur(14px);
}

/* Header */
.demo-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.demo-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(145deg, #0d47ff, #0632b8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.demo-header h3 {
  font-size: 24px;
  margin: 0;
}

/* Text */
.demo-text {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 12px;
}

.demo-muted {
  color: #94a3b8;
  line-height: 1.6;
  font-size: 14.5px;
  margin-bottom: 34px;
}

/* Button */
.demo-btn {
  width: 100%;
  height: 56px;
  border-radius: 14px;
  background: #0d47ff;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s ease;
}

.demo-btn:hover {
  background: #0038e8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .corporate-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .trust {
    justify-content: center;
  }

  .demo-header {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .corporate-wrapper {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .corporate-left h2 {
    font-size: 36px;
  }

  .corporate-left p {
    font-size: 15px;
  }

  .trust {
    justify-content: center;
  }

  .corporate-right {
    width: 100%;
  }

  .demo-card-about {
    max-width: 100%;
    padding: 30px;
  }

  .demo-header {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .corporate-section {
    padding: 60px 16px;
  }

  .corporate-left h2 {
    font-size: 30px;
    line-height: 1.25;
  }

  .tag {
    font-size: 11px;
    padding: 6px 14px;
  }

  /* .corporate-left p {
    font-size: 14px;
  } */

  .avatars span {
    width: 32px;
    height: 32px;
  }

  .demo-card-about {
    padding: 24px 20px 28px;
    border-radius: 18px;
  }

  .demo-header h3 {
    font-size: 20px;
  }

  .demo-text {
    font-size: 14px;
  }

  .demo-muted {
    font-size: 13.5px;
  }

  .demo-btn {
    height: 52px;
    font-size: 15px;
  }
}

/*wide range css*/

.programs-section {
      padding: 90px 20px;
      background: #ffffff;
    }

    .programs-wrapper {
      max-width: 1020px;
      margin: auto;
      display: flex;
      align-items: center;
      gap: 70px;
    }

    /* LEFT */
    .programs-content {
      flex: 1;
    }

    .programs-badge {
      display: inline-block;
      background: #eef3ff;
      color: #0d47ff;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 12px;
      margin-bottom: 16px;
    }

    .programs-title {
      font-size: 40px;
      line-height: 1.2;
      margin-bottom: 20px;
      color: #0f172a;
    }

    .programs-desc {
      color: #475569;
      line-height: 1.7;
      margin-bottom: 26px;
      max-width: 520px;
    }

    /* LIST */
    .programs-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .programs-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 500;
      padding: 14px 18px;
      margin-bottom: 10px;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
      color: #0f172a;
    }

    .programs-icon {
      width: 22px;
      height: 22px;
      min-width: 22px;
      border-radius: 50%;
      background: #e6eeff;
      color: #0d47ff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      transition: all 0.3s ease;
      letter-spacing: normal; 
  word-spacing: normal;
    }

    .programs-list li:hover {
      background: #f3f7ff;
      color: #0d47ff;
    }

    .programs-list li:hover .programs-icon {
      background: #0d47ff;
      color: #ffffff;
    }
.programs-list li a{
  text-decoration: none;
}


.programs-list-online li {
  display: flex;
  align-items: flex-start;  
  gap: 12px;
  font-weight: 500;
  padding: 12px 18px;
  margin-bottom: 10px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
  font-size: 15px;
}

.programs-icon {
  min-width: 22px;          
  height: 22px;
  background: #0b5cff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;           
  margin-top: 4px;         
}

.programs-text {
  line-height: 1.6;
}
@media (max-width: 480px) {
  .feature-text {
    font-size: 14px;
  }
}

    /* RIGHT */
    .programs-media {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    .programs-image-box {
      position: relative;
      max-width: 460px;
      width: 100%;
    }

    .programs-image-box img {
      width: 100%;
      height: auto;
      border-radius: 16px;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }

    /* FLOATING BADGE */
    .programs-badge-box {
      position: absolute;
      bottom: -20px;
      left: -20px;
      background: #ffffff;
      padding: 14px 18px;
      border-radius: 14px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .programs-badge-box strong {
      color: #0d47ff;
      font-size: 20px;
    }

    .programs-badge-box span {
      font-size: 12px;
      color: #475569;
    }

    /* ==============================
       RESPONSIVE
    ============================== */

    /* Small Desktop */
    @media (max-width: 1200px) {
      .programs-wrapper {
        gap: 50px;
      }

      .programs-title {
        font-size: 36px;
      }
    }

    /* Tablet */
    @media (max-width: 768px) {
      .programs-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
      }

      .programs-content,
      .programs-media {
        width: 100%;
      }

      .programs-desc {
        max-width: 100%;
      }

      .programs-media {
        justify-content: center;
      }

      .programs-image-box {
        max-width: 420px;
      }

      .programs-badge-box {
        left: 50%;
        transform: translateX(-50%);
      }
    }

    /* Mobile */
    @media (max-width: 576px) {
      .programs-section {
        padding: 60px 16px;
      }

      .programs-title {
        font-size: 30px;
        line-height: 1.25;
      }

      .programs-desc {
        font-size: 14px;
        line-height: 1.6;
      }

      .programs-list li {
        font-size: 14px;
        padding: 12px 14px;
      }

      .programs-icon {
        width: 20px;
        height: 20px;
        min-width: 20px;
        font-size: 11px;
      }

      .programs-image-box {
        max-width: 100%;
      }

      .programs-badge-box {
        padding: 12px 16px;
        border-radius: 12px;
      }

      .programs-badge-box strong {
        font-size: 18px;
      }
    }



    /*============> What we Offer >============*/

    .offer-section {
  padding: 90px 20px;
  background: #ffffff;
}

.offer-container {
  max-width: 1024px;
  margin: auto;
}

/* Header */
.offer-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.offer-badge {
  display: inline-block;
  background: #eef3ff;
  color: #0d47ff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 16px;
}

.offer-title {
  font-size: 42px;
  margin-bottom: 14px;
  color: #0f172a;
}

.offer-subtitle {
  color: #475569;
  line-height: 1.6;
}

/* Grid */
.offer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* Card */
.offer-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  flex: 1 1 calc(25% - 24px);
  transition: all 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.offer-icon {
  width: 48px;
  height: 48px;
  background: #eef3ff;
  color: #0d47ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.offer-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0f172a;
}

.offer-card p {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
  text-align-last: left;
  text-align: justify;
  hyphens: auto;
  overflow-wrap: break-word;
  
}

/* Tablet */
@media (max-width: 992px) {
  .offer-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .offer-section {
    padding: 60px 16px;
  }

  .offer-title {
    font-size: 30px;
  }

  .offer-card {
    flex: 1 1 100%;
  }
}

/*===>Leading IT */

.who-section {
  padding: 90px 20px;
  background: #ffffff;
}

.who-wrapper {
  max-width: 1024px;
  margin: auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin-top: 60px;
}

/* LEFT */
.who-left-col {
  flex: 1;
}

.who-label {
  display: inline-block;
  background: #eef3ff;
  color: #0d47ff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 18px;
}

.who-heading {
  font-size: 40px;
  line-height: 1.25;
  margin-bottom: 32px;
  color: #0f172a;
}

/* Since box */
.who-since-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  max-width: 260px;
}

.who-since-icon {
  width: 46px;
  height: 46px;
  background: #0d47ff;
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.who-since-text strong {
  display: block;
  font-size: 18px;
  color: #0f172a;
}

.who-since-text span {
  font-size: 13px;
  color: #475569;
}

/* RIGHT */
.who-right-col {
  flex: 1.2;
}

.who-right-col p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 15px;
   text-align-last: left;
  text-align: justify;
  hyphens: auto;
  overflow-wrap: break-word;
  line-height: 1.7;
}

/* TAGS */
.who-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.who-feature-tags span {
  background: #f1f5f9;
  padding: 10px 16px;
  border-radius: 24px;
  font-size: 13px;
  color: #0f172a;
  font-weight: 500;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 992px) {
  .who-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .who-heading {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .who-section {
    padding: 60px 16px;
  }

  .who-heading {
    font-size: 28px;
    line-height: 1.3;
  }

  .who-right-col p {
    font-size: 14px;
  }

  .who-feature-tags span {
    font-size: 12px;
    padding: 8px 14px;
  }
}




/*contactus css*/

.contact-map-section {
  width: 100%;
  padding: 60px 16px; /* mobile safe spacing */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Headings */
.contact-map-heading {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

.contact-map-heading h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ff7a00; /* change as per theme */
  margin-bottom: 6px;
  color: #0d47ff;
}

.contact-map-heading h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
}

/* Map Container */
.contact-map-container {
  width: 100%;
  max-width: 1200px;
  height: 380px;
  border-radius: 16px;
  overflow: hidden; /* IMPORTANT for border-radius */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Tablet */
@media (max-width: 768px) {
  .contact-map-heading h2 {
    font-size: 26px;
  }

  .contact-map-container {
    height: 300px;
    border-radius: 14px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .contact-map-heading h2 {
    font-size: 22px;
  }

  .contact-map-container {
    height: 260px;
    border-radius: 12px;
  }
}



.contact-banner-section {
  width: 100%;
  min-height: 420px;
  background-image: url("../images/contact-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.contact-banner-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
}

.contact-banner-content {
  max-width: 1200px;
  padding: 0 16px;
  color: #ffffff;
}

.contact-banner-subtitle {
  font-size: 13px;
  letter-spacing: 2px;
  color: #cfcfcf;
  display: block;
  margin-bottom: 12px;
}

.contact-banner-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-banner-text {
  max-width: 680px;
  font-size: 16px;
  line-height: 1.7;
  color: #d1d5db;
  margin-bottom: 16px;
}

/* Tablet */
@media (max-width: 768px) {
  .contact-banner-content h1 {
    font-size: 36px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .contact-banner-section {
    min-height: 360px;
  }

  .contact-banner-content h1 {
    font-size: 28px;
  }

  .contact-banner-text {
    font-size: 15px;
  }
}

/* 
.contact-banner-section {
  position: relative;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.6) 50%, transparent 50%), url('images/contactus.webp');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 60px 20px;
}

.contact-banner-overlay {
  background-color: rgba(0, 0, 0, 0.5); /* Optional overlay */
  /* padding: 40px;
} */

/* .contact-banner-content {
  max-width: 600px;
} */

.contact-banner-section {
  position: relative;
  background: url('images/contactus.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 60px 20px;
}

.contact-banner-overlay {
  background-color: rgba(0, 0, 0, 0.5); /* Optional overlay for readability */
  padding: 40px;
}

.contact-banner-content {
  max-width: 600px;
}

/*online training css*/
.ot-process-section {
  padding: 90px 20px;
  background: #ffffff;
}

.ot-process-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.ot-process-header {
  text-align: center;
  margin-bottom: 70px;
}

.ot-process-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef3ff;
  color: #0d47ff;
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 13px;
  margin-bottom: 20px;
}

.ot-process-title {
  font-size: 44px;
  margin-bottom: 14px;
  color: #0f172a;
}

.ot-process-title span {
  color: #0d47ff;
}

.ot-process-subtitle {
  font-size: 17px;
  color: #475569;
}

/* Steps */
.ot-process-steps {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

/* Step Card */
.ot-step {
  flex: 1;
  text-align: center;
}

.ot-step-icon {
  width: 90px;
  height: 90px;
  border-radius: 22px;
  background: #eef3ff;          /* default light */
  color: #0d47ff;

  margin: 0 auto 26px;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  transition: all 0.35s ease;   /* smooth hover */
}

.ot-step:hover .ot-step-icon {
  background: #0d47ff;
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(13,71,255,0.35);
}


/* Step Number */
.ot-step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #0d47ff;
  color: #ffffff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 14px;
}

.ot-step h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0f172a;
}

.ot-step p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  max-width: 260px;
  margin: auto;
}

/* ======================
   RESPONSIVE
====================== */

/* Tablet */
@media (max-width: 992px) {
  .ot-process-title {
    font-size: 36px;
  }

  .ot-process-steps {
    flex-wrap: wrap;
    justify-content: center;
  }

  .ot-step {
    flex: 1 1 45%;
    margin-bottom: 40px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .ot-process-section {
    padding: 60px 16px;
  }

  .ot-process-title {
    font-size: 28px;
  }

  .ot-process-subtitle {
    font-size: 15px;
  }

  .ot-process-steps {
    flex-direction: column;
    gap: 40px;
  }

  .ot-step-icon {
    width: 76px;
    height: 76px;
    font-size: 22px;
  }
}

.programs-info-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;

  display: flex;
  align-items: center;
  gap: 14px;

  background: #ffffff;
  padding: 16px 22px;
  border-radius: 18px;

  box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}

/* Icon box */
.programs-info-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #0d47ff;
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
}

/* Text */
.programs-info-text strong {
  display: block;
  font-size: 26px;
  color: #0f172a;
  line-height: 1.1;
}

.programs-info-text span {
  font-size: 14px;
  color: #64748b;
}
@media (max-width: 576px) {
  .programs-info-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -18px;
  }
}

.about-hero-section {
  background: linear-gradient(180deg, #050b1a, #020617);
  padding: 120px 20px 160px;
  position: relative;
  text-align: center;
  color: #ffffff;
}

.about-hero-wrapper {
  max-width: 900px;
  margin: auto;
}

/* Badge */
.about-hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(13, 71, 255, 0.15);
  color: #0d47ff;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 28px;
}

/* Heading */
.about-hero-title {
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 700;
}

.about-hero-title span {
  color: #0d47ff;
}

/* Subtitle */
.about-hero-subtitle {
  font-size: 18px;
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 720px;
  margin: auto;
}

/* =====================
   STATS CARD
===================== */
.about-stats-container {
  position: absolute;
  left: 50%;
  bottom: -90px;
  transform: translateX(-50%);
  width: 100%;
  padding: 0 20px;
}

.about-stats-card {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  overflow: hidden;
}

/* Stat item */
.about-stat-item {
  flex: 1;
  padding: 34px 20px;
  text-align: center;
}

.about-stat-item:not(:last-child) {
  border-right: 1px solid #e5e7eb;
}

.about-stat-icon {
  width: 46px;
  height: 46px;
  background: #eef3ff;
  color: #0d47ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin: 0 auto 14px;
}

.about-stat-item h3 {
  font-size: 32px;
  color: #0f172a;
  margin-bottom: 6px;
}

.about-stat-item p {
  font-size: 14px;
  color: #475569;
}

/* =====================
   RESPONSIVE
===================== */

/* Tablet */
@media (max-width: 992px) {
  .about-hero-title {
    font-size: 44px;
  }

  .about-stats-card {
    flex-wrap: wrap;
  }

  .about-stat-item {
    flex: 1 1 50%;
  }

  .about-stat-item:nth-child(2) {
    border-right: none;
  }

  .about-stat-item:nth-child(3),
  .about-stat-item:nth-child(4) {
    border-top: 1px solid #e5e7eb;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .about-hero-section {
    padding: 90px 16px 220px;
  }

  .about-hero-title {
    font-size: 32px;
  }

  .about-hero-subtitle {
    font-size: 15px;
  }

  .about-stats-card {
    flex-direction: column;
  }

  .about-stat-item {
    border-right: none !important;
    border-top: 1px solid #e5e7eb;
  }

  .about-stat-item:first-child {
    border-top: none;
  }
}
@media (max-width: 576px) {
  .about-stats-container {
    position: relative;      /* KEY FIX */
    bottom: 0;
    left: 0;
    transform: none;
    margin-top: 40px;
  }
  
}
@media (max-width: 576px) {
  .about-hero-section {
    padding-bottom: 60px; /* instead of 220px */
  }
}

.about-hero-wrapper {
  position: relative;
  z-index: 2;
}

/*online training page css*/

.why-online-training {
  padding: 90px 6%;
  background: #fff;
}

.why-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.why-badge {
  display: inline-block;
  background: #eef4ff;
  color: #0b5cff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 18px;
}

.why-left h2 {
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.why-left h2 span {
  color: #0b5cff;
  display: block;
}

.why-left p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
}

.why-tags {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.why-tags span {
  padding: 10px 18px;
  border-radius: 30px;
  background: #f6f7f9;
  font-size: 14px;
}

/* RIGHT */
.why-right {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 220px);
  gap: 26px;
}

/* STAGGERED ALIGNMENT */
.card-live {
  transform: translateY(0);
}
.card-support {
  transform: translateY(30px);
}
.card-hd {
  transform: translateY(-10px);
}
.card-global {
  transform: translateY(40px);
}

/* FEATURE CARD */
.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}

.feature-card.card-live{
  background: #0b5cff;
}

.feature-card:hover {
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
 
}

.feature-card i {
  font-size: 26px;

  margin-bottom: 14px;
}

.feature-card.card-live i,.feature-card.card-live h4,.feature-card.card-live p{
  color: whitesmoke;
}

.feature-card h4 {
  font-size: 26px;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 14px;
  color: #666;
}

/* DARK CARD */
.card-global {
  background: linear-gradient(145deg, #0b1324, #1a233a);
  color: #fff;
}

.card-global p {
  color: #cfd7ff;
}

.card-global i {
  color: #4da3ff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-container {
    grid-template-columns: 1fr;
  }

  .why-right {
    justify-content: center;
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card {
    transform: none !important;
  }
}


/*Mobile */
@media (max-width: 576px) { 

  .online-hero{
    text-align: center;
  }

.hero-left h1{
  text-align: center;
}

.why-left{
  text-align: center;
}

.why-left h2{
  font-size: clamp(24px, 5vw, 48px);
}
.why-left h2 span{
     display:block;
  }
}

.why-left p{
text-align-last: left;
    text-align: justify;
    hyphens: auto;
    overflow-wrap: break-word;
    line-height: 1.7;
}

.programs-list-online{
  list-style:none;
  padding:0;
  margin:0;
}

.programs-list-online li{
  display:flex;              /* ⭐ MAIN FIX */
  align-items:flex-start;    /* keep icon aligned to top */
  gap:14px;
  margin-bottom:18px;
}

.programs-icon{
  flex-shrink:0;             /* icon size fixed */
  width:28px;                /* same icon spacing */
  height:28px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.programs-text{
  display:block;
  line-height:1.6;
}
.programs-list-online{
  text-align:left;     /* ⭐ MAIN FIX */
}

.programs-list-online li{
  display:flex;
  align-items:flex-start;
  gap:14px;
}

.programs-text{
  text-align:left;     /* very important */
  line-height:1.6;
  flex:1;
}



/* Tablet */
@media (max-width: 768px) {
  .who-heading {
    font-size: 32px;
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .who-heading {
    font-size: 26px;
    line-height: 1.3;
    text-align: center;
  }
 @media (max-width:576px){

  .who-left-col{
    text-align:center;       
    display:flex;
    flex-direction:column;
    align-items:center;      
  }

}

}