* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('../fonts/SF-Pro-Display-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('../fonts/SF-Pro-Display-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('../fonts/SF-Pro-Display-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}


/* ================================= startNavbar & Hero section ======================= */
/* ================= NAVBAR ================= */
.navbar {

  position: fixed;

  top: 10px;
  left: 50%;
  transform: translateX(-50%);

  width: 90%;
  z-index: 999;

  background: #fff;
  padding: 15px 35px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  clip-path: polygon(0 0, 98% 0, 100% 50%, 98% 100%, 0 100%);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);


  transition: all 0.3s ease;


}


.navbar.scrolled {
  box-shadow: 0 30px 25px rgba(0, 0, 0, 0.3);

  transform: translateX(-50%) scale(0.97);

}

.nav-left img {
  width: 200px;
  height: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* APPLY BUTTON */
.apply-btn {
  background: linear-gradient(90deg, #ff7a18, #ff6a00);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'TASA Orbiter', sans-serif;
}

/* PHONE PILL */
.contact-pill {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 8px 15px;
  border-radius: 25px;

  background: #fff;
  border: 1px solid #ddd;

  font-size: 14px;
  font-weight: 500;
}

/* ICON */
.contact-pill .icon {
  color: #25d366;
  font-size: 16px;
}

/* WHATSAPP CIRCLE */
.whatsapp-pill {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #25d366;
  color: #fff;

  border-radius: 50%;
  font-size: 18px;
}


/* ================= HERO ================= */
/* HERO */
.hero {
  position: relative;
  min-height: 650px;

  background: url('../images/hero_bg.png') no-repeat right -50px center;
  background-size: cover;
  border-bottom: 1px solid #000;
}

/* WHITE LEFT OVERLAY */
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 55%;
  height: 100%;
}

/* CONTENT */
.container {
  position: relative;
  width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.badge-box {
  position: absolute;
  top: 180px;
  left:50%;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  gap: 10px;

  z-index: 3;
}

/* 🔥 VERTICAL LINE (PERFECT POSITION) */
.badge-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 90%;
  transform: translateY(-50%);

  width: 1px;
  height: 100px;
  background: #ccc;
  margin-left: -15px;
}

.badge-box img {
  width: 150px;
}

.badge-box p {
  font-size: 12px;
  margin: 0;
}

.badge-box strong {
  font-size: 13px;
}

/* LEFT */
.left {
  width: 45%;
  margin-top:20px !important;
}

.left h1 {
  font-family: 'SF Pro Display' !important;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  max-width: 520px;
}

.left span {
  color: #ff6a00;
}

.left p {
  margin: 20px 0;
  font-size: 24px;
}

.para_left{
  margin:30px 0px;
}

.extra {
    padding-top:60px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.extra p{
  font-size:18px;
}

.extra img {
  height: 40px;
}

/* IMAGE CONTAINER */
.img-box {
  position: relative;
  display: inline-block;
}

/* IMAGE */
.img-box img {
  height: 40px;
  display: block;
}

/* TEXT OVER IMAGE */
.img-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

/* BUTTON */
.cta {
  background: #ff6a00;
  color: #fff;
  border: none;
  padding: 12px 35px;
  border-radius: 30px;
    margin-top: 20px;
  font-weight: 600;
  cursor: pointer;
  font-size:20px ;
  font-family: 'TASA Orbiter', sans-serif;
}


/* RIGHT */
.right {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  margin-top: 130px;
}

/* FORM */
.form-box {
  border-radius: 12px;
}

.form-box h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.contact-pill i {
  color: #25d366;
  font-size: 14px;
}

.whatsapp-pill i {
  color: #fff;
}

.mobile-contact {
  display: none;
}

.mobile_form {
  display: none;
}
/* hide by default (desktop) */
.mobile-whatsapp {
  display: none;
}

/* ================= MOBILE VIEW ================= */
@media (max-width: 768px) {

  /* NAVBAR */
  .navbar {
  top: 10px;
  width: 90%;
  margin: 10px 0;
  padding: 15px 12px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: #fff;
  box-shadow: 0 10px 25px 10px rgba(0, 0, 0, 0.35);

  clip-path: polygon(
    0 0,
    92% 0,
    100% 50%,
    92% 100%,
    0 100%
  );
}

  .nav-right {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  /* HERO */
  .hero {
    background: #fff;
    padding: 30px 0;
    box-shadow: inset 0 100px 25px rgba(0, 0, 0, 0.1);
  }

  .container {
    width: 100%;
    flex-direction: column;
    padding: 0 20px 0 0;
    margin-top: 80px;
  }

  /* LEFT CONTENT */
  .left {
    width: 100%;
    padding-left: 30px;
    text-align: left;
    margin-top: 10px !important;
  }

  .left h1 {
    font-size: 27px;
    line-height: 1.2;
  }

  .left p {
    font-size: 18px;
    font-weight: 500;
  }

  .cta {
    margin-top: 15px;
  }

  .cta {
  background: #ff6a00;
  color: #fff;
  border: none;
  padding: 12px 45px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'TASA Orbiter', sans-serif;
}

  /* EXTRA (deadline + masterclass) */
  .extra {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* HIDE DESKTOP BADGE */
  .badge-box {
    display: none;
  }

  /* RIGHT SECTION (FORM REMOVE) */
  .right {
    display: none;
  }

  /* 🔥 NEW MOBILE IMAGE SECTION */
  .mobile-hero-img {
    margin-top: 25px;
    background: url('../images/city/online-pgdm-course-for-working-professionals.png') no-repeat center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 220px;
    width: 100%;
    display: flex;
    align-items: flex-start;
  }

  /* BADGE INSIDE IMAGE */
  .mobile-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
  }

  .mobile-badge img {
    width: 40px;
  }

  .mobile-badge p {
    font-size: 12px;
    margin: 0;
  }

  .mobile-contact {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 10px;
    z-index: 9999;
  }

  .nav-right {
    display: none;
  }

  .extra {
    display: none;
  }

  .mobile_form {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .mb_form_box {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .mobile-whatsapp {
    display: flex;
  }

  .mobile-whatsapp img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }

  .nav-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
  }

  .nav-left img {
    width: 150px;
    display: block;
  }
}



/* ================= feature section start ================== */
.features-section {
  background: #ffffff;
  padding: 30px 20px;
  font-family: 'SF Pro Display', sans-serif;
}

.second_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
}

/* LEFT TEXT */
.feature-left-text {
  max-width: 250px;
}

.feature-left-text h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
}

.feature-left-text p {
  font-size: 18px;
  margin-top: 5px;
  color: #555;
}

/* FEATURES ROW */
.features {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* SINGLE ITEM */
.feature-item {
  text-align: center;
  max-width: 140px;
}

.feature-item img {
  width: 40px;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 15px;
  line-height: 1.3;
}

/* DIVIDER */
.feature-divider {
  width: 1px;
  height: 60px;
  background: #ccc;
}

/* ---------------- MOBILE ---------------- */
@media (max-width: 768px) {

  .features-section {
    background: #ffffff;
    padding: 10px 20px;
    font-family: 'SF Pro Display', sans-serif;
    margin-top:10px ;
  }

  .second_row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .feature-left-text {
    max-width: 400px;
    text-align: center;
  }

  .feature-left-text h2 {
    font-size: 30px;
    color: #ff6b21;
  }

  .feature-left-text p {
    font-size: 22px;
    align-items: center;
    width:350px;
    padding:0 10px;
  }

  .features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
    padding-left:20px;
  }

  .feature-item {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    text-align: left;
    padding: 14px 0;
    border-bottom: 1px solid #ddd;
    font-family: 'SF Pro Display', sans-serif;
  }

  .feature-item:last-child {
    border-bottom: none;
  }

  .feature-item img {
    width: 35px;
    flex-shrink: 0;
  }

  .feature-item p {
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
    margin-left: 5px;
    font-weight: 600;
  }

  .feature-divider {
    display: none;
  }
}

/* ================= Career section pgdm ================= */

.divider_line {
  width: 1px;
  height: 200px;
  background: #ccc;
}

.pgdm-section {
  padding: 60px 20px;
  background: #fff3eb;
  font-family: 'Inter', sans-serif;
}

.box_career {
  padding: 20px 20px;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.content-center{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 10px;
}

.content-center p{
  margin: 10px !important;
}

/* HEADINGS */
/* FIX 1: Uniform title size desktop + mobile */
.main-heading {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 700;
}

.main-heading span {
  color: #FD6500;
}

.sub-heading {
  font-size: 25px;
  margin-bottom: 20px;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 700;
}

/* MAIN BOX */
.pgdm-box {
  display: flex;
  background: #ffffff;
  overflow: hidden;
  margin-bottom:20px ;
}

.pgdm-image img {
  width: 100%;
  max-width: 650px;
  height:100%;
}

/* RIGHT CONTENT */
.pgdm-content {
  width:50%;
  display: flex;
  justify-content: space-between;
  padding:30px;
  padding-bottom: 0px;
  gap: 20px;
  font-size:18px;
  margin-top: 20px;
}

.info {
  width: 50%;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 400;
}

.info hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 10px 0;
}

.info .text {
  font-size: 18px;
  text-wrap: nowrap;
  /* padding: 5px; */
  margin:0px;
}

.badge {
  background: #d4edda;
  color: green;
  font-size: 10px;
  padding: 3px 5px;
  border-radius: 10px;
  margin-left: 10px;
  text-wrap: nowrap;
  border:1px solid #5ABA51;
}

/* RIGHT TEXT */
.desc {
  width: 50%;
  font-size:14px;
  text-align: left;
  color: #555;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
}

.small_text{
    font-size: 15px !important;
    line-height:1.1px;
}

.desc p{
    font-size:14px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
}

.btn_apply {
  display: inline-block;
  margin-top: 50px;
  padding: 8px 18px;
  border: 1px solid #ff6a00;
  color: #ff6a00;
  border-radius: 20px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  font-family: 'TASA Orbiter', sans-serif;
}

.career-dot {
  width: 5px;
  height: 5px;
  min-width: 5px;
  background: #FD6500;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.careers-title {
  font-size: 11px;
  font-weight: 700;
  color: #FD6500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-align: center;
}

.careers-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.career-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 14px;
  color: #333;
  line-height: 1.25;
  padding: 2px 0;
  border-bottom: 1px dashed #f0e8e0;
}

.career-item:last-child {
  border-bottom: none;
}

/* Default (desktop) */
.mobile_img_pgdm {
  display: none;
}

@media (max-width: 768px) {

  /* MAIN HEADINGS */
  .main-heading {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
  }

  .main-heading::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #000;
    margin: 10px auto 0;
  }

  .main-heading span {
    color: #ff6a00;
  }

  .sub-heading {
    text-align: center;
    font-size: 22px;
    margin-bottom: 15px;
    padding:0px 10px;
  }

  .pgdm-box {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
      margin-bottom:0px !important;
  }

  .pgdm-image {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 1;
  }

  .info {
    width: 50%;
    padding: 10px 5px;
    order: 2;
  }

  .pgdm-content {
    display: contents;
    padding:5px 0px;
  }

  .desc {
    width: 100%;
    padding: 30px;
    order: 4;
    background: #fff1e8;
  }

  .divider_line {
    display: none;
  }

  .info p {
    font-size: 14px;
    margin: 3px 0;
  }

  .info .text {
    font-size: 18px;
    font-weight: 600;
  }
  .small_text{
    font-size: 11px !important;
    line-height:1.1px;
  }

  .desc p {
    font-size: 14px;
    line-height: 1.4;
    color: #555;
  }

  .info hr {
    margin: 6px 0;
    border: none;
    border-top: 1px solid #ddd;
  }

  .btn_apply {
    text-align: center;
    font-size:14px;
    border-radius: 999px;
    border: 2px solid #ff6a00;
    color: #ff6a00;
    font-weight: 700;
    margin-top: 20px;
    margin-right:20px;
  }

  .sec_pgdm {
   
     padding: 5px 30px !important;
    background: #fff1e8 !important;
    text-align: left;
  }

  .sec_pgdm h2 {
    font-size: 15px;
    text-align: left;
    font-weight: 700;
    width: 500px;
  }

  .sec_pgdm h2 span {
    color: #ff6a00;
  }

  .sec_pgdm .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .sec_pgdm .tag {
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid #ff6a00;
    background: #fff1e8;
    font-weight: 500;
    max-width: 120px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .img_logo {
    display: flex;
    justify-content:flex-start;
    gap: 12px;
    margin-top: 15px;
  }

  .img_logo img {
    width:50% !important;
    height:100% !important;
  }

  .info .text {
    display: flex;
    flex-direction: column;
    font-size: 15px;
    font-weight: 600;
    margin-bottom:5px;
  }

  .info .badge {
    display: inline-block;
    font-size: 11px;
    background: #dff5e1;
    color: #1a7f37;
    padding: 5px 9px;
    border-radius: 16px;
    margin-top: 8px;
    width: fit-content;
    margin-left: 0;
  }

  .desktop_img_pgdm {
    display: none;
  }

  .mobile_img_pgdm {
    display: block;
    width: 100%;
    max-width: 110px;
    height:100%;
  }

  .pgdm-section {
    padding: 20px 0px;
    background: #fff3eb;
    font-family: 'Inter', sans-serif;
  }

  .box_career {
    padding: 20px 0px;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
  }

  .color_white{
    background-color:#fff !important;
  }

  .color_skin{
    background:  #fff3eb;;
  }
}


/*==================== Specializations section===============*/
.sec_pgdm {
  margin-top:0px;
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 6px;
}

.sec_pgdm h2 {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
}

.sec_pgdm h2 span {
  color: #ff6a00;
}

.sec_pgdm .tag {
  padding: 6px 12px;
  border: 1px solid #c25017;
  border-radius: 20px;
  font-size: 15px;
  color: #8f431a;
  background: #fff3e6;
  font-family: 'Inter', sans-serif;
  white-space: normal;
  word-break: break-word;
  max-width: 100%;
}

.sec_pgdm .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.img_logo {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.img_logo img {
  width:30%;
  height:100%;
}

.digi_img {
  width: 60px;
  height: 44px;
  padding-top: 20px;
}

.ey_img {
  width: 30px;
  height: 44px;
}

.kpmg_img {
  width: 50px;
  height: 40px;
  padding-top: 20px;
}


/*========================== certification section===================== */
.cert-section {
  position: relative;
  padding: 80px 20px;
}

/* BACKGROUND */
.cert_bg {
  position: absolute;
  inset: 0;
  background: url('../images/cert_bg.png') no-repeat center/cover;
  z-index: 0;
}

/* CARD */
.cert-card {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* CONTENT */
.cert-content {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

/* LEFT */
.cert_left-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
}

.heading {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 500;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 700;
}

/* IMAGE */
.left-img img {
  width: 100%;
  max-width: 290px;
  margin: 5px 0;
  padding-bottom: 10px;
}

/* BADGE */
.badge-img img {
  width: 90px;
  margin-top: 20px;
}

/* TEXT */
.small_para {
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.6;
  margin-bottom: 10px;
}

/* DIVIDER */
.cert_divider {
  width: 1px;
  background: #aaa;
  opacity: 0.7;
}

/* RIGHT */
.cert_right_text {
  width: 50%;
  font-family: 'DM Sans', sans-serif;
}

/* HEADINGS */
.cert-bottom h3 {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 15px;
}

.cert_right_text h4 {
  font-size: clamp(16px, 1.8vw, 18px);
  margin: 15px;
}

/* LOGOS */
.cert-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 15px 0;
}

.cert-logos img {
  height: 45px;
}

/* LIST */
.cert_right_text ul {
  padding-left: 18px;
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
  margin-top: 5px;
}

.cert_right_text li {
  margin-bottom: 8px;
}

/* LINE */
.cert_right_text hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #aaa;
}

@media (max-width: 768px) {
  .cert-section {
    position: relative;
    padding: 20px;
  }

  .cert-logos {
    justify-content:left;
  }

  .cert-logos {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
  }

  .cert-card {
    padding: 25px 20px;
  }

  .cert-content {
    flex-direction: column;
    gap: 10px;
  }

  .cert_left-text,
  .cert_right_text {
    width: 100%;
  }

  .divider {
    display: none;
  }

  .left-img img {
    max-width: 200px;
  }

  .badge-img img {
    width: 70px;
  }

  .cert_right_text {
    width: 100%;
    text-align:left;
  }

  .cert_right_text ul li {
    word-break: keep-all;
  }

  .cert-bottom h3,
  .cert_right_text h4 {
    text-align:left;
  }

  .cert_left-text {
    border-bottom: 1px solid #aaa;
    padding-bottom: 10px;
  }

  .cert_right_text h4 {
    font-size: clamp(16px, 1.8vw, 18px);
    margin:0px;
    margin-bottom:18px;
  }

  .cert-logos img {
    height: 55px;
  }
}

/*==========================Ai Masterclass section===================== */
.ai-section {
  position: relative;
  padding: 80px 20px 0px;
  background: #FD6500;
  background: linear-gradient(1deg, rgba(253, 101, 0, 1) 0%, rgba(254, 185, 139, 1) 0%, rgba(255, 255, 255, 1) 40%);
  overflow: hidden;
}

/* TITLE */
.ai-title {
  text-align: center;
  font-size: clamp(40px, 7vw, 90px);
  font-weight: 800;
  margin-bottom: 10px;
}

.ai-script {
  font-family: 'Aguafina Script', cursive;
  color: #fc6500;
  margin-right: 10px;
  font-family: 'Aguafina Script', cursive;
  font-weight: 400;
}

.ai-bold {
  background: linear-gradient(to right, #FD6500, #FFB584);
  background-clip: text;
  color: transparent;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 900;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* LAYOUT */
.ai-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

/* LEFT */
.ai-left {
  width: 30%;
  font-size: 14px;
  line-height: 1.6;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 400;
}

/* CENTER */
.ai-center {
  width: 40%;
  text-align: center;
  margin-top: 50px;
  padding-bottom: 0%;
}

.ai-center img {
  width: 100%;
  max-width: 380px;
  margin-bottom:-5px;
}

/* RIGHT */
.ai-right {
  width: 30%;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 400;
}

.ai-right h4 {
  margin-bottom: 10px;
}

.ai-right ul {
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
}


.ai_desktop_img{
  display:block;
}
.ai_mobile_img{
   display: none;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .ai-section {
    padding: 50px 15px 30px;
  }

  .ai-script{
    font-size: 55px;
  }

  .ai-bold{
     font-size:32px;
  }

  .ai-title {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .ai-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .ai-left,
  .ai-right,
  .ai-center {
    width: 100%;
    margin-top: 0;
  }

  .ai-left {
    font-size: 14px;
    text-align: left;
    padding:10px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 20px;
  }

  .ai-center {
    order: 2;
  }

  .ai-left {
    order: 1;
  }

  .ai-right {
    order: 3;
  }

  .ai-center img {
    max-width: 280px;
    width: 100%;
    margin-top:30px;
    margin-bottom: -40px;
  }

  .ai-right ul {
    padding-left:15px;
    list-style-position: inside;
    text-align: left;
  }

  .ai-right h4 {
    margin-bottom: 8px;
    text-align: left;
    padding:10px;
  }

  .ai_desktop_img{
    display:none;
  }
  .ai_mobile_img{
    display:block;
  }
}

@media (min-width: 769px) {
  .ai-left {
    margin-top: -300px;
  }

  .ai-right {
    margin-top: -300px;
  }
}

/* ==============================  bigger card section ======================= */

/* SECTION */
.bigger_sec {
  padding: 40px 20px !important;
  text-align: center;
}

/* TITLE */
.bigger_sec h2 {
  font-size: 40px;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 700;
  margin-bottom:10px;
}

.bigger_sec h2 span {
  color: #ff7a00;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 700;
}

.bigger_sec p {
  max-width: 700px;
  margin: 10px auto 10px;
  font-size: 14px;
  color: #555;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 400;
  margin-bottom:50px;
}

/* GRID */
.bigger_card_wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.bigger_sec_card {
  background: #fff;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 15px;
  text-align: left;
  transition: 0.3s;
}

.bigger_sec_card:hover {
  transform: translateY(-5px);
}

.bigger_sec_card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.bigger_sec_card h3 {
  font-size: 15px;
  margin-bottom: 10px;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 600;
}

.bigger_sec_card p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 400;
}

.orange_text {
  color: #ff7a00;
  font-weight: 500;
}

.bigger_sec_card ul {
  font-size: 13px;
  color: #555;
  list-style: none;
  padding-left: 0;
  margin: 5px 0;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 400;
}

/* ================= MOBILE ================= */
@media(max-width:1024px) {
  .bigger_card_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:768px) {

  .bigger_sec_card {
    background: #fff;
    border: 1px solid #000;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    transition: 0.3s;
  }

  .bigger_sec h2 {
    font-size: 24px;
    padding:0px 20px ;
    width:320px;
  }

  .bigger_slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding-bottom: 20px;
  }

  .bigger_slider::-webkit-scrollbar {
    display: none;
  }

  .bigger_slider .bigger_sec_card {
    min-width: 80%;
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  .bigger_slider_indicator {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
  }

  .bigger_slider_indicator span {
    height: 4px;
    width: 30px;
    background: #ccc;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
  }

  .bigger_slider_indicator span.active::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #ff7a00;
  }

  .bigger_slider {
    scroll-behavior: smooth;
  }
}



/* =================  Stat counter start  ================= */
.stat_hero {
  text-align: center;
  padding: 40px 20px;
}

.stat_hero h1 {
  font-size: 40px;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 700;
}

.stat_hero h1 span {
  color: #ff5a00;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 700;
}

.stat_hero p {
  color: #555;
  max-width: 700px;
  margin: 10px auto 40px;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 400;
}

.stats-bar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 40px;
  clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%);
  overflow: hidden;
}

.stats-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/counter_bg.png') no-repeat center center / cover;
  z-index: -1;
}

.stat {
  flex: 1;
  text-align: center;
  border-right: 2px solid rgba(255, 255, 255, 0.3);
}

.stat:last-child {
  border-right: none;
}

.stat h2 {
  font-size: 42px;
  margin: 0;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 700;
}

.stat p {
  margin-top: 5px;
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 400;
}

/* LOGO SLIDER */
.logo-slider {
  overflow: hidden;
  padding: 40px 0Px;
}

.slide-track {
  display: flex;
  width: calc(200px * 16);
}

.slide-track img {
  width: 150px;
  margin: 0 25px;
  object-fit: contain;
}


/* ANIMATIONS */
.slider-left .slide-track {
  animation: scrollLeft 20s linear infinite;
}

.slider-right .slide-track {
  animation: scrollRight 20s linear infinite;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}


@media (max-width: 768px) {

  .stats-bar::before {
    background: url('../images/mb_counter_bg.png') no-repeat center center / cover;
  }

  .stat_hero {
    padding: 40px 15px;
  }

  .stat_hero h1 {
    font-size: 24px;
    line-height: 1.3;
    padding: 0 25px;
    text-align: center;
  }

  .stat_hero p {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .stats-bar {
    flex-direction: column;
    gap: 20px;
    padding: 25px 15px;
    clip-path: none;
    border-radius: 10px;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 5px;
  }

  .stat:last-child {
    border-bottom: none;
  }

  .stat h2 {
    font-size: 48px;
  }

  .stat p {
    font-size: 18px;
  }

  .logo-slider {
    padding: 20px 0;
  }

  .slide-track {
    display: flex;
    width: calc(100px * 16);
  }

  .slide-track img {
    width: 120px;
    margin: 0 10px;
  }
}


/* ===========================Why card section ========================*/

.why-section {
  background: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
}

.number_container {
  max-width: 1200px;
  margin: auto;
}

.why-section h2 {
  font-size: 36px;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 700;
}

.why-section h2 span {
  color: #ff5a00;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 700;
}

.subtitle {
  max-width: 800px;
  margin: 15px auto 50px;
  color: #555;
  line-height: 1.6;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 400;
}

/* GRID */
.number_card_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.number_card {
  background: #fff;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  transition: 0.3s;
}

.number_card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.number_card h3 {
  margin: 0;
  font-size: 20px;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 700;
}

.number_card p {
  font-size: 13px;
  color: #555;
  margin-top: 5px;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 400;
}

.number_card.highlight {
  border: 2px solid #2f80ed;
  box-shadow: 0 0 0 2px rgba(47, 128, 237, 0.1);
}

.number_card:hover {
  transform: translateY(-5px);
}

.arrow_top,
.arrow_bottom {
  display:none ;
}

@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {

  .number_slider {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    gap: 15px;
    height: calc((100% - 45px) / 1);
  }

  .number_card {
    flex: 0 0 calc((100% - 45px) / 4);
    min-height: 150px;
  }

  .arrow_top,
  .arrow_bottom {
    display:block;
  }

  .arrow_top,
  .arrow_bottom {
    text-align: center;
    font-size: 22px;
    color: #333;
    cursor: pointer;
    margin: 10px 0;
  }

  .arrow_top:hover,
  .arrow_bottom:hover {
    color: #ff7a00;
  }

  .why-section h2 {
    font-size: 24px;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 700;
  }

  .number_card h3 {
    margin: 0;
    font-size: 25px;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 700;
    margin-bottom:20px;
  }

  .number_card p {
    font-size: 16px;
    color: #555;
    margin-top: 5px;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 500;
  }

  .number_card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
  }

  .number_card {
    padding: 15px;
  }
}

/*=========================== start beyond slider====================  */
.beyondSlider {
  text-align: center;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
}

.beyondSlider-title {
  font-size: 36px;
  font-weight: bold;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 700;
}

.beyondSlider-title span {
  color: #fc6500;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 700;
}

.beyondSlider-subtitle {
  margin: 10px auto 30px;
  max-width: 600px;
  color: #555;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 400;
}

.beyondSlider-wrapper {
  overflow: hidden;
}

.beyondSlider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.beyondSlider-card {
  min-width: 350px;
  margin: 10px;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: #000 1px solid;
  display: flex;
  align-items: center;
  gap: 15px;
}

.beyondSlider-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.beyondSlider-content h3 {
  margin: 0 0 8px;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 700;
}

.beyondSlider-content p {
  margin: 0;
  font-size: 14px;
  color: #555;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 400;
}

.beyondSlider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.beyondSlider-dot {
  width: 30px;
  height: 4px;
  background: #ccc;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.beyondSlider-dot.active {
  background: #FD6500;
  width: 40px;
}

.beyondSlider-card picture {
  display: block;
  width: 120px;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .beyondSlider-card {
    min-width: 300px;
  }

  .beyondSlider-title {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .beyondSlider-card {
    flex-direction: column;
    align-items: flex-start;
    min-width: 85%;
  }

  .beyondSlider-card img {
    width: 100%;
    height: 160px;
  }

  .beyondSlider-title {
    font-size: 24px;
    padding: 0px 15px;
  }

  .beyondSlider-subtitle {
    font-size: 14px;
  }

  .beyondSlider-card picture {
    width: 100%;
  }
}


/* ============================ FAQ section start ================*/
.stepFaqSection {
  padding: 60px 20px;
  background: #f8f8f8;
  font-family: 'DM Sans', sans-serif;
}

.stepFaqSection-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 700;
}

.stepFaqSection-container {
  max-width: 800px;
  margin: auto;
}

.stepFaqItem {
  margin-bottom: 10px;
}

.stepFaqQuestion {
  width: 100%;
  background: #eaeaea;
  border: none;
  padding: 15px 20px;
  text-align: left;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  clip-path: polygon(0 0, 96% 0, 100% 50%, 96% 100%, 0 100%);
  font-family: 'DM Sans', sans-serif;
  transition: background 0.3s ease;
}

.stepFaqIcon {
  font-size: 18px;
}

.stepFaqAnswer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  padding: 0 20px;
  font-family: 'DM Sans', sans-serif;
}

.stepFaqAnswer p {
  margin: 10px 0;
  font-family: 'DM Sans', sans-serif;
}

.stepFaqItem.active .stepFaqAnswer {
  max-height: 200px;
  padding: 10px 20px;
}

.stepFaqItem.active .stepFaqQuestion {
  background: #ffe5b5;
  font-weight: 600;
}

.stepFaqItem.active .stepFaqIcon {
  transform: rotate(45deg);
  transition: 0.3s;
}

.faq-btn-wrapper {
  text-align: center;
  margin-top: 30px;
}

.faq-btn {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid #ff7930;
  background: #ff7930;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
  font-family: 'TASA Orbiter', sans-serif;
}

@media (max-width: 768px) {
  .stepFaqSection {
    padding: 60px 20px;
    background: #f8f8f8;
    font-family: 'DM Sans', sans-serif;
    margin-top:30px;
  }

  /* FIX: match mobile title size */
  .stepFaqSection-title {
    font-size: 24px;
  }

  .faq-btn {
    display: inline-block;
    padding: 12px 70px;
    border: 1px solid #ff7930;
    background: #ff7930;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    font-size: 12px;
    transition: 0.3s;
    font-family: 'TASA Orbiter', sans-serif;
  }
}



/* ====================start Footer =================== */
.stepFooterSection {
  color: #fff;
  padding: 50px 20px 20px;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.stepFooterSection::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/footer_bg.png') no-repeat;
  background-size: cover;
}

.stepFooterOverlay {
  position: relative;
  z-index: 1;
}

.stepFooterContent {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.stepFooterLogoBox {
  margin-bottom: 150px;
}

.stepFooterLogoBox img {
  width: 160px;
}

.stepFooterTag {
  font-size: 12px;
  margin-top: 8px;
  opacity: 0.9;
}

.stepFooterAddress {
  max-width: 400px;
  font-size: 14px;
  line-height: 1.6;
}

.footer_para {
  margin-bottom: 50px;
  font-family: 'DM Sans', sans-serif;
}

.stepFooterContact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stepFooterBtn {
  background: #FFEEE2;
  color: #333;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  transition: 0.3s;
  margin: 5px;
  font-family: 'DM Sans', sans-serif;
}

.stepFooterBtn:hover {
  background: #ff752b;
  color: #fff;
}

.stepFooterBottom {
  text-align: left;
  max-width: 1050px;
  margin: 30px auto 0;
  font-size: 12px;
  opacity: 0.9;
  font-family: 'TASA Orbiter', sans-serif;
}

.phone-icon {
  width:10px;
  height:10px;
  vertical-align: middle;
  margin-right: 6px;
}

.fixedApplyBtn{
    display:none;
}

@media (max-width: 768px) {

  .stepFooterContent {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }

  .stepFooterLogoBox {
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
  }

  .stepFooterLogoBox img {
    width: 100%;
    max-width: 200px;
    margin: 0;
    display: block;
  }

  .stepFooterAddress {
    max-width: 100%;
    text-align: left;
  }

  .stepFooterContact {
    align-items: flex-start;
    text-align: left;
  }

  .stepFooterBottom {
    text-align: left;
    margin-bottom:5px;
  }

  .stepFooterSection::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/mb_footer_bg.png') no-repeat;
    background-size: cover;
  }

  .stepFooterBtn {
    background: #FFEEE2;
    color: #333;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    transition: 0.3s;
    margin: 5px;
    font-family: 'DM Sans', sans-serif;
  }

  .footer_para {
    padding:5px;
    font-family: 'DM Sans', sans-serif;
  }

  .fixedApplyBtn{
    display:block;
  }

  .fixedApplyBtn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #FD6500, #FF9D5B);
    color: #fff;
    text-align: center;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'TASA Orbiter', sans-serif;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  }

  .fixedApplyBtn:hover {
    background: #e65c00;
  }
}