/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary-blue: #0284c7;
    --secondary-blue: #0369a1;
    --accent-color: #F8B400;
    --light-bg: #F8F9FA;
    --dark-text: #212529;
    --gray-text: #6C757D;
    --white: #ffffff;
    --gradient-blue: linear-gradient(90deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    --gradient-btn: linear-gradient(90deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 20px 40px rgba(3, 123, 128, 0.26);
    --transition: all 0.3s ease-in-out;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--dark-text);
  overflow-x: hidden;
  background-color: var(--light-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

section {
  background-color: rgb(255, 255, 255);
}

section:nth-child(even) {
  background-color: rgb(255, 246, 238);
}

.hero-title-style {
  color: var(--primary-blue);
}

/* Header & Navbar */
.top-header {
  background-color: var(--secondary-blue);
  color: var(--white);
  font-size: 0.85rem;
  padding: 8px 0;
}

.top-header a {
  color: var(--white);
  text-decoration: none;
  margin-right: 15px;
  transition: var(--transition);
}

.top-header a:hover {
  color: var(--accent-color);
}

.navbar {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  padding: 15px 0;
}

.navbar.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
  animation: slideDown 0.4s ease-in-out;
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--primary-blue) !important;
}

.navbar-brand span {
  color: var(--accent-color);
}

.nav-link {
  font-weight: 500;
  color: var(--dark-text) !important;
  margin: 0 10px;
  position: relative;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: var(--primary-blue);
  bottom: 0;
  left: 0;
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* .btn-primary {
  background: var(--gradient-blue);
  border: none;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 5px;
  transition: var(--transition);
} */
.theme-primary {
  background: var(--primary-blue);
  border: none;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  color: var(--white);
}

.theme-primary:hover {
  background: var(--secondary-blue);
  color: var(--white);

}

.btn-outline-primary {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 5px;
  transition: var(--transition);
}

.btn-outline-primary:hover {
  background-color: var(--primary-blue) !important;
  border: 2px solid var(--primary-blue);
  color: var(--white);
}

/* Hero Section */
.hero {
  /* position: relative; */
  padding-bottom: 60px;
  background: var(--white);
  overflow: hidden;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  /* background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-text) 60%, #0a1628 100%); */
  /* background: linear-gradient(90deg, #ffffff, #c8fffe, #115d7c); */
  z-index: 0;



}


/* .hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 80%;
  height: 180%;
  background: #ffecdc46;

  z-index: 0;
  border-radius: 60px;
  opacity: .5;
  animation: spin 60s linear infinite;
  transition: all 22s ease;
  z-index: 1;
} */

nav.navbar {
  box-shadow: none;
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(66, 41, 12, 0.418);
  /* z-index: 1; */
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.rotate-element {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-enquery-form {
  border: 2px solid #f3fcff;
  padding: 30px;
  border-radius: 20px;
  background-color: #633e1442;
  z-index: 2;
}

.enquery-form-body form input::placeholder,
.enquery-form-body form textarea::placeholder {
  color: #b5b5b5;
  font-size: 13px;
}

.enquery-form-body form label {
  color: #fdfdfd;
  font-size: 15px;
}

.hero-form-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  /* color: var(--secondary-blue); */
  color: #ffffff;
}

.hero p {
  font-size: 1.2rem;
  /* color: var(--gray-text); */
  color: #ffffff;
  margin-bottom: 30px;
}

.hero-img-container {
  position: relative;
  z-index: 1;
}

.hero-img-container img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}



@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Cards */
.voucher-card,
.feature-card,
.testimonial-card,
.step-card {
  background: var(--white);
  border-radius: 12px;
  border: none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  overflow: hidden;
  position: relative;
  padding: 25px;
  border-bottom: 4px solid transparent;
}

.voucher-card:hover,
.feature-card:hover,
.step-card:hover {
  /* transform: translateY(-10px); */
  box-shadow: var(--shadow-card);
  border-bottom: 4px solid var(--primary-blue);
}

.voucher-card {
  box-shadow: none;
  border: 2px solid #0000001a;
}

.voucher-card:hover {
  border: 2px solid var(--dark-text);
  box-shadow: none;
}

.voucher-card .icon-box,
.feature-card .icon-box,
.step-card .icon-box {
  width: 60px;
  height: 60px;
  background: rgba(10, 88, 202, 0.1);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.voucher-card:hover .icon-box {
  background: var(--primary-blue);
  color: var(--white);
}

.voucher-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.voucher-card .badge {
  background-color: var(--primary-blue);
}

.voucher-card .original-price {
  text-decoration: line-through;
  color: var(--gray-text);
  font-size: 1rem;
  margin-left: 10px;
}

.voucher-card-title {
  color: rgb(64, 66, 66)
}

.voucher-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand-icon-wrapper {
  display: grid;
  place-items: center;
}

.brand-icon-wrapper img {
  max-width: 90px !important;
  max-height: 50px !important;
  height: auto;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;


}

.badge-discount {
  font-size: 12px;
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-color);
  color: var(--dark-text);
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 5px;
  color: var(--white);
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.price-wrapper {
  background-color: var(--primary-blue)25;
  border: 2px solid var(--primary-blue)70;
  display: inline-block;
  padding: 10px;
  border-radius: 5px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-title h2 {
  color: var(--secondary-blue);
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--primary-blue);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  color: var(--gray-text);
  margin-top: 15px;
}

/* How It Works Steps */
.step-number {
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(10, 88, 202, 0.05);
  font-family: 'Montserrat', sans-serif;
}

/* Footer */
footer {
  background: var(--secondary-blue);
  color: var(--white);
  padding: 70px 0 30px;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

footer a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-socials a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
}

.footer-socials a:hover {
  background: var(--primary-blue);
  color: var(--white);
}

/* WhatsApp Floating & Back To Top */
.whatsapp-float,
.back-to-top {
  position: fixed;
  bottom: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: var(--transition);
}

.whatsapp-float {
  right: 30px;
  background-color: #25D366;

}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
}

.call-float {
  position: fixed;
  right: 30px;
  bottom: 120px;
  background-color: var(--primary-blue);
  background-color: rgb(202, 48, 61);
  padding: 10px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: var(--transition);
}

.call-float:hover {
  transform: scale(1.1);
  color: var(--white);
}


.back-to-top {
  left: 30px;
  background-color: var(--primary-blue);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  border: none;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

/* Accordion Customization for FAQ */
.accordion-button:not(.collapsed) {
  color: var(--primary-blue);
  background-color: rgba(10, 88, 202, 0.05);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(10, 88, 202, 0.2);
}

/* Contact Info Box */
.contact-info-box {
  background: var(--secondary-blue);
  color: var(--white);
  padding: 40px;
  border-radius: 12px;
  height: 100%;
}

.contact-info-box h3 {
  color: var(--white);
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .navbar-collapse {
    background: var(--white);
    padding: 20px 0px;

    /* box-shadow: var(--shadow-lg); */
    margin-top: 15px;
  }

  div#navbarNav ul.navbar-nav li {
    padding: 6px;
    text-align: start;

  }

  div#navbarNav ul.navbar-nav li a {
    border-bottom: 1px solid #e9e9e9;
    margin-right: 0;
  }

  div#navbarNav ul.navbar-nav li:last-child a {
    margin-bottom: 15px;
  }

}


/* ====testimonial-css==== */

/* Card */


/* Quote Icon */
.fa-quote-left {
  font-size: 30px;
  color: var(--primary-blue);

}

/* Text */
.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: #dbe6ef;
  margin-bottom: 20px;
}

/* User */
.user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user img {
  width: 48px !important;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary-blue);
}

.user-info {
  line-height: 1.2;
}

.user-name {
  font-weight: 600;
  font-size: 15px;
}

.user-role {
  font-size: 13px;
  color: #a8c3d8;
}

/* Stars */
.stars {
  margin-top: 12px;
  color: var(--primary-blue);
  font-size: 14px;
}




.testimonial-section {
  max-width: 1100px;
  margin: auto;
}

/* Card */
.testimonial-card {
  background: #ffffff;
  color: #3c4652;
  border-radius: 18px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
  border-bottom: 5px solid var(--primary-blue);
}

.testimonial-card:hover {
  border-bottom: 5px solid var(--primary-blue);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Quote */
.quote {
  font-size: 35px;
  color: var(--primary-blue);
}

/* Text */
.testimonial-text {
  font-size: 14px;
  color: #4e7798;
  margin: 15px 0 20px;
  line-height: 1.6;
}

/* User */
.user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid var(--primary-blue);
}

.user-name {
  font-weight: 600;
  text-align: left;
}

.user-role {
  font-size: 13px;
  color: #a8c3d8;
}

/* Stars */
.stars {
  margin-top: 12px;
  color: #edae00;
  font-size: 18px;
}

/* Brands Carousel */
.brands-carousel .icon-card,
.brands-carousel-two .icon-card {
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  margin: 15px 5px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.rtl-carousel-container .brands-carousel-two .icon-card {
  /* padding: 20px 30px; */

}

.brands-carousel .icon-card:hover,
.brands-carousel-two .icon-card {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-bottom: 4px solid var(--primary-blue);
}

.brands-carousel .icon-card img,
.brands-carousel-two .icon-card {
  max-width: 120px;
  /* max-height: 60px; */
  width: auto !important;
  object-fit: contain;
  /* filter: grayscale(100%); */
  /* opacity: 0.6; */
  transition: var(--transition);
  /* padding: 12px; */
}

.brands-carousel .icon-card:hover img,
.brands-carousel-two .icon-card {
  filter: grayscale(0%);
  opacity: 1;
}

/* Linear easing for smooth continuous slide */
.owl-carousel.linear-easing .owl-stage {
  transition-timing-function: linear !important;
}

/* Owl Custom */
.owl-theme .owl-dots .owl-dot span {
  background: #ccc;
}

.owl-theme .owl-dots .owl-dot.active span {
  background: var(--primary-blue);
}

/* Custom utilities for Intro Section */
.bg-primary-subtle {
  background-color: rgba(5, 167, 207, 0.1) !important;
}

.text-primary {
  color: var(--primary-blue) !important;
}

.border-primary {
  border-color: var(--primary-blue) !important;
}

.floating-badge {
  animation: float-badge 4s ease-in-out infinite;
}

@keyframes float-badge {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

.tracking-wider {
  letter-spacing: 1px;
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background-color: var(--white) !important;
  border-color: rgba(5, 167, 207, 0.2) !important;
}



/* ======circle-animation-css===== */

.circle-wrapper {
  position: relative;
  width: 450px;
  height: 450px;
}

/* CENTER LOGO */
.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 30px;
  border: 3px solid #ddd;
  z-index: 10;
}

/* COMMON CIRCLE */
.circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--primary-blue);

}

/* OUTER CIRCLE */
.outer-circle {
  width: 100%;
  height: 100%;
  animation: rotateAnti 20s linear infinite;
}

/* INNER CIRCLE */
.inner-circle {
  width: 260px;
  height: 260px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateClock 12s linear infinite;
}

/* ICON STYLE */
.icon {
  position: absolute;
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 2px solid #def3f3; */
}

.icon img {
  width: 100%;
}

/* POSITION ICONS (OUTER) */
.outer-circle .icon:nth-child(1) {
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.outer-circle .icon:nth-child(2) {
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
}

.outer-circle .icon:nth-child(3) {
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.outer-circle .icon:nth-child(4) {
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
}

/* POSITION ICONS (INNER) */
.inner-circle .icon:nth-child(1) {
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.inner-circle .icon:nth-child(2) {
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
}

.inner-circle .icon:nth-child(3) {
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.inner-circle .icon:nth-child(4) {
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
}

/* ROTATIONS */
@keyframes rotateClock {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotateAnti {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

/* KEEP ICONS UPRIGHT */
.outer-circle .icon,
.inner-circle .icon {
  animation: counterRotate 20s linear infinite;
}

.inner-circle .icon {
  animation-duration: 12s;
  animation-direction: reverse;
}

@keyframes counterRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}


.owl-nav {
  display: flex;
  justify-content: space-between;
  top: 50%;
  position: absolute;
  width: 100%;
  transform: translateY(-50%);
}

#itTraningCourses .owl-nav {

  display: none;

}

#itTraningCourses:hover .owl-nav {
  display: flex;
}

#itTraningCourses .owl-nav button.owl-prev,
#itTraningCourses .owl-nav button.owl-next {
  transition: all .5s ease;
  background-color: var(--secondary-blue);
  opacity: .6;
  border-radius: 50px;
  padding: 5px;
  width: 40px;
  height: 40px;
  color: white;
  transition: all .3s ease;
}

#itTraningCourses .owl-nav button.owl-prev:hover,
#itTraningCourses .owl-nav button.owl-next:hover {
  background-color: var(--primary-blue);
  opacity: .9;
}


/* ====Journey at Pass4Job — Redesigned==== */

.journery-at-pass4job {
  /* background: linear-gradient(135deg, #f0f9ff 0%, #e8f4f8 50%, #f8f9fa 100%); */
  position: relative;
  overflow: hidden;
}

.journery-at-pass4job::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(5, 176, 182, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.journery-at-pass4job::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(40, 57, 80, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ---- Steps Grid ---- */
.journey-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}

/* Horizontal connector line behind cards */
.journey-steps-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 8%;
  width: 81%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue)0%, #283950 100%);
  z-index: 0;
  border-radius: 3px;
}

/* ---- Individual Step Card ---- */
.journey-step-card {
  position: relative;
  /* background: #ffffff;
  border-radius: 16px;
  padding: 20px 16px 18px; */
  padding-top: 20px;
  text-align: center;
  /* box-shadow: 0 4px 18px rgba(5, 176, 182, 0.1);
  border: 1.5px solid rgba(5, 176, 182, 0.12);*/
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* .journey-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(5, 176, 182, 0.22);
  border-color: var(--primary-blue);
} */

/* Step Number Badge */
.journey-step-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-blue);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  line-height: 1.4;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(5, 176, 182, 0.4);
}

/* Icon Circle */
.journey-step-icon {
  /* width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue)0%, #037f84 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(5, 176, 182, 0.35);

  margin-top: 8px;
*/
  width: 70px;
  height: 70px;
  background: var(--primary-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 26px;
  border: 5px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-step-card:hover .journey-step-icon {
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 10px 28px var(--primary-blue);
}

/* Content */
.journey-step-content h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-blue);
  margin-bottom: 5px;
  line-height: 1.3;
}

.journey-step-content p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.55;
  margin: 0;
}

/* Arrow connector (shown between cards) */
.journey-step-arrow {
  position: absolute;
  right: -14px;
  top: 46px;
  width: 28px;
  height: 28px;
  background: var(--primary-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  z-index: 3;
  box-shadow: 0 3px 10px rgba(5, 176, 182, 0.4);
  display: none;
}

/* Hide arrow on last card of each row (5th and 10th) */
.journey-step-card:nth-child(5) .journey-step-arrow,
.journey-step-card:nth-child(10) .journey-step-arrow {
  display: none;
}

/* ---- Final (Placement) Card ---- */
.journey-step-card--final {
  background: linear-gradient(90deg, #05b0b6, #05b69e);
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(5, 176, 182, 0.35);
}

.journey-step-card--final .journey-step-number {
  background: var(--accent-color);
  color: var(--dark-text);
  box-shadow: 0 3px 10px rgba(248, 180, 0, 0.5);
}

.journey-step-card--final .journey-step-icon {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.journey-step-card--final .journey-step-content h5 {
  color: #ffffff;
}

.journey-step-card--final .journey-step-content p {
  color: rgba(255, 255, 255, 0.82);
}

.journey-step-card--final:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 50px rgba(5, 176, 182, 0.5);
}

/* Trophy badge inside final card */
.journey-step-badge {
  background: var(--accent-color);
  color: var(--dark-text);
  font-size: 11px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

/* ---- CTA Strip ---- */
.journey-cta {
  border-top: 1px dashed rgba(5, 176, 182, 0.25);
  padding-top: 30px;
}

/* ======================================================
   RESPONSIVE — second row of 5 steps (6–10)
   We keep the connector line only on the top row;
   the second row arrow direction flips visually via CSS.
====================================================== */

/* On ≥992px: two rows of 5 */
@media (min-width: 992px) {
  .journey-steps-grid {
    grid-template-columns: repeat(5, 1fr);
    row-gap: 50px;
  }

  /* Second connector line for row 2 */
  .journey-steps-grid::after {
    content: '';
    position: absolute;
    top: calc(52px + 50px + 160px);
    left: 9%;
    width: 82%;
    height: 3px;
    background: linear-gradient(90deg, #283950 0%, var(--primary-blue)100%);
    z-index: 0;
    border-radius: 3px;
  }
}

/* ---- Tablet: 2 columns ---- */
@media (max-width: 991.98px) and (min-width: 576px) {
  .journey-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .journey-steps-grid::before,
  .journey-steps-grid::after {
    display: none;
  }

  .journey-step-arrow {
    display: none;
  }
}

/* ---- Mobile: vertical single column ---- */
@media (max-width: 575.98px) {
  .journey-steps-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 32px;
  }

  /* Vertical timeline line */
  .journey-steps-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 44px;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue)0%, #283950 100%);
    border-radius: 3px;
  }

  .journey-steps-grid::after {
    display: none;
  }

  .journey-step-card {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 18px 18px 14px;
    border-radius: 14px;
    margin-bottom: 16px;
  }

  .journey-step-number {
    top: -12px;
    left: 18px;
    transform: none;
  }

  .journey-step-icon {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 4px;
  }

  .journey-step-content {
    flex: 1;
  }

  .journey-step-content h5 {
    font-size: 14px;
  }

  .journey-step-content p {
    font-size: 12.5px;
  }

  .journey-step-arrow {
    display: none;
  }

  .journey-step-card--final {
    margin-bottom: 0;
  }
}

/* ====Our Placement Section==== */
.our-placement {
  /* background-color: var(--white); */
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.placement-card {
  background: var(--white);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(5, 176, 182, 0.1);
  transition: var(--transition);
  height: 100%;
  margin: 15px 5px;
  position: relative;
}

.placement-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.student-img-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.student-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.student-img-wrapper::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: var(--gradient-blue);
  border-radius: 50%;
  z-index: -1;
}

.student-info h5 {
  color: var(--secondary-blue);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.student-info .role {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 15px;
}

.placed-at {
  background: rgba(40, 57, 80, 0.05);
  padding: 10px 15px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.placement-card:hover .placed-at {
  background: rgba(5, 176, 182, 0.1);
}

.placed-at img {
  height: 20px !important;
  width: auto !important;
  object-fit: contain;
}

.placed-at span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--secondary-blue);
}

.placement-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 55px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.placement-carousel .owl-dots {
  margin-top: 30px !important;
}


/* ==roadmap-css2=== */

.roadmap-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 26px;
  border: 5px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.roadmap-step p {
  font-size: 14px;
  color: #555;
}

/* ===how-it-works== */

.how-it-works {
  background: #f8f9fa;
}

.how-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  position: relative;
  transition: 0.3s;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.how-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-box {
  width: 70px;
  height: 70px;
  background: var(--primary-blue);
  color: #fff;
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.how-card h5 {
  color: #283950;
  font-weight: 600;
  margin-bottom: 10px;
}

.how-card p {
  font-size: 14px;
  color: #666;
}

.step-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 40px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.05);
}

/* ===salary-insight-css===  */

.salary-section {
  background: linear-gradient(135deg, #283950, var(--primary-blue));
  position: relative;
  overflow: hidden;
}

.salary-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 30px 20px;
  border-radius: 15px;
  transition: 0.3s;
  color: #fff;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.salary-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.icon-box {
  width: 70px;
  height: 70px;
  background: #fff;
  color: var(--primary-blue);
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.salary-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.salary {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.growth {
  font-size: 14px;
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 10px;
  border-radius: 20px;
}

/* ===trainer-css=== */

.trainers-section {
  background: #f8fbfd;
}

.trainer-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
  border: 2px solid rgba(5, 167, 207, 0.2);
}

.trainer-card:hover {
  /* transform: translateY(-10px); */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--primary-blue);
}

.trainer-img {
  width: 110px;
  height: 110px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-blue);
}

.trainer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.role {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.badges span {
  display: inline-block;
  background: rgba(5, 167, 207, 0.1);
  color: var(--primary-blue);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin: 3px;
}

.desc {
  font-size: 14px;
  color: #6c757d;
}

.social-icons a {
  display: inline-block;
  margin: 8px 5px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: #f1f5f9;
  border-radius: 50%;
  color: #283950;
  transition: 0.3s;
}

.social-icons a:hover {
  background: var(--primary-blue);
  color: #fff;
}

/* ===meet-our-experts */
.comparison-section {
  background: #f4f8fb;
}

.comparison-table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.comparison-table th {
  background: #28395027;
  color: #283950;
  font-weight: 600;
  padding: 15px;

}

.comparison-table td {
  padding: 15px;
  font-size: 14px;
}

.comparison-table tbody tr:hover {
  background: rgba(5, 167, 207, 0.05);
}

.comparison-table td:first-child {
  font-weight: 600;
  color: #283950;
}

.btn-primary {
  background: var(--primary-blue);
  border: none;
  border-radius: 20px;
  padding: 6px 14px;
}

.btn-primary:hover {
  background: #038ba8;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  /* additional visual spacing */
  margin-bottom: 2rem;
}

.enquery-detail-form form label {
  color: var(--gray-text)
}

.course-features-list li i {
  width: 30px;
  color: var(--primary-blue);
  font-size: 1.2rem;
}

.course-hero {
  background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
}

.course-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: var(--light-bg);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.course-badges .badge {
  font-size: 0.9rem;
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.course-sidebar {
  position: sticky;
  top: 100px;
  z-index: 10;
}

.sidebar-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 30px;
  margin-bottom: 30px;
  border-bottom: 4px solid var(--primary-blue);
}

.right-content-wrappe {
  padding: 25px;
}

.course-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
}

.original-price {
  text-decoration: line-through;
  color: var(--gray-text);
  font-size: 1.2rem;
  margin-left: 10px;
}

.course-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.course-features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--dark-text);
  font-weight: 500;
}



.curriculum-accordion .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.curriculum-accordion .accordion-button {
  font-weight: 600;
  color: var(--secondary-blue);
  padding: 20px;
  background-color: var(--white);
}

.curriculum-accordion .accordion-button:not(.collapsed) {
  background-color: rgba(10, 88, 202, 0.05);
  color: var(--primary-blue);
}

.instructor-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.instructor-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
}

@media (max-width: 991.98px) {
  .course-sidebar {
    position: static;
    margin-top: 40px;
  }

  .instructor-card {
    flex-direction: column;
    text-align: center;
  }
}

.section-heading {
  font-size: 1.8rem;
  color: var(--secondary-blue);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.section-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

section .mega-menu-dropdown {
  background-color: transparent;
  /* padding: 40px 10px */
}

button.courses-btn.show {
  background-color: var(--secondary-blue);
  color: var(--white);
}

.mega-menu-dropdown {
  max-height: 632px;
  overflow: auto;

}

/* .brand-listing-tabs {
  overflow: auto;
  max-height: 650px;
} */

/* ===What You Will Learn Section=== */
.what-you-learn-section {
  position: relative;
}

.learn-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  height: 100%;
}

.learn-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(92, 57, 18, 0.12);
  border-color: var(--primary-blue);
}

.learn-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-color));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-top: 2px;
  box-shadow: 0 3px 10px rgba(92, 57, 18, 0.25);
  transition: transform 0.3s ease;
}

.learn-item:hover .learn-icon {
  transform: scale(1.15) rotate(10deg);
}

.learn-item span {
  font-size: 0.92rem;
  color: var(--dark-text);
  font-weight: 500;
  line-height: 1.5;
}

/* Key Highlights Strip */
.key-highlights-strip {
  /* background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%); */
  /* border-radius: 14px;
  padding: 28px 24px; */
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.key-highlights-strip::before {
  /* content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(248, 180, 0, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none; */
}

.key-highlights-strip::after {
  /* content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none; */
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  z-index: 1;
}

.highlight-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.highlight-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--accent-color, var(--primary-blue)));
  color: var(--secondary-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-icon {
  transform: rotate(-8deg) scale(1.1);
}

.highlight-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.highlight-info strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
}

.highlight-info span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 575.98px) {
  .learn-item {
    padding: 12px 14px;
  }

  .learn-item span {
    font-size: 0.85rem;
  }

  .key-highlights-strip {
    padding: 22px 18px;
  }

  .highlight-card {
    padding: 12px;
  }
}

/* ===Career Opportunities Section=== */
.career-opportunities-section {
  position: relative;
}

.career-card {
  background: var(--white);
  border-radius: 12px;
  padding: 22px 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--primary-blue);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.career-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(92, 57, 18, 0.02) 0%, rgba(248, 180, 0, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.career-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(92, 57, 18, 0.14);
  border-left-color: var(--accent-color);
}

.career-card:hover::before {
  opacity: 1;
}

.career-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.career-icon-wrap {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}

.career-card:hover .career-icon-wrap {
  transform: rotate(-8deg) scale(1.1);
}

.career-demand-badge {
  font-size: 0.72rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(92, 57, 18, 0.08);
  color: var(--primary-blue);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.career-demand-badge.badge-hot {
  background: linear-gradient(135deg, var(--accent-color), #e6a200);
  color: var(--secondary-blue);
}

.career-role-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary-blue);
  margin-bottom: 8px;
}

.career-role-desc {
  font-size: 0.85rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 14px;
}

.career-salary {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
}

.career-salary i {
  font-size: 0.75rem;
}

/* Career Stats Banner */
.career-stats-banner {
  background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 60%, #7a5228 100%);
  border-radius: 14px;
  padding: 28px 16px;
  position: relative;
  overflow: hidden;
}

.career-stats-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -15%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(248, 180, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.career-stat-item {
  padding: 10px 8px;
  position: relative;
  z-index: 1;
}

.career-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.career-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1.2;
  margin-bottom: 4px;
}

.career-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 575.98px) {
  .career-card {
    padding: 18px 16px;
  }

  .career-stats-banner {
    padding: 22px 12px;
  }

  .career-stat-number {
    font-size: 1.3rem;
  }

  .career-stat-item:nth-child(2)::after {
    display: none;
  }
}

/* =============================================
   HERO ENQUIRY FORM — Premium Redesign
   ============================================= */

.hero-enquiry-card {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  position: relative;
  z-index: 2;
}

/* ---- Header ---- */
.hero-enquiry-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  position: relative;
}

.hero-enquiry-header-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-color);
}

/* Live Pulse Dot */
.hef-live-dot {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.hef-pulse-dot {
  position: absolute;
  inset: 0;
  background: #4ade80;
  border-radius: 50%;
  display: block;
}

.hef-pulse-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.4);
  display: block;
  animation: hefPulse 1.8s ease-out infinite;
}

@keyframes hefPulse {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }

  70% {
    transform: scale(2);
    opacity: 0;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* ---- Body ---- */
.hero-enquiry-body {
  padding: 22px 22px 18px;
  background: rgba(255, 255, 255, 0.96);
}

/* ---- Floating Label Field ---- */
.hef-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: #f8f5f2;
  border: 1.5px solid #e0d6cc;
  border-radius: 10px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  overflow: hidden;
}

.hef-input-wrap:focus-within {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(92, 57, 18, 0.10);
  background: #fff;
}

.hef-input-icon {
  width: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0977d;
  font-size: 0.9rem;
  transition: color 0.25s ease;
  flex-shrink: 0;
}

.hef-input-wrap:focus-within .hef-input-icon {
  color: var(--primary-blue);
}

.hef-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 18px 12px 6px 0;
  font-size: 0.85rem;
  color: var(--dark-text);
  font-family: 'Roboto', sans-serif;
  width: 100%;
}

.hef-label {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  color: #a08070;
  pointer-events: none;
  transition: all 0.22s ease;
  font-family: 'Roboto', sans-serif;
  white-space: nowrap;
}

/* Float label when input has content or is focused */
.hef-input:not(:placeholder-shown)~.hef-label,
.hef-input:focus~.hef-label {
  top: 4px;
  transform: none;
  font-size: 0.68rem;
  color: var(--primary-blue);
  font-weight: 600;
}

/* ---- Phone Field ---- */
.hef-country-code {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary-blue);
  padding: 0 8px 0 0;
  border-right: 1.5px solid #ddd;
  margin: 8px 8px 8px 0;
  line-height: 1;
  flex-shrink: 0;
}

.hef-input-phone {
  padding-left: 4px;
}

.hef-label-phone {
  left: 86px;
}

.hef-input-phone:not(:placeholder-shown)~.hef-label-phone,
.hef-input-phone:focus~.hef-label-phone {
  left: 116px;
  top: 4px;
  transform: none;
  font-size: 0.68rem;
  color: var(--primary-blue);
  font-weight: 600;
}

/* ---- Select Field ---- */
.hef-select-wrap {
  cursor: pointer;
}

.hef-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 32px !important;
}

.hef-select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #b0977d;
  font-size: 0.75rem;
  pointer-events: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.disc-badge {

  background: var(--accent-color);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 8px;
  border-radius: 8px;
  display: inline-block;
  /* max-width: 90px; */
}

/* .price-card-right {
  display: flex;
  align-items: center;
  justify-content: center;

} */

.hef-input-wrap:focus-within .hef-select-arrow {
  color: var(--primary-blue);
  transform: translateY(-50%) rotate(180deg);
}

/* Float label for select when a non-placeholder option is chosen */
.hef-select:valid~.hef-label,
.hef-select:focus~.hef-label {
  top: 4px;
  transform: none;
  font-size: 0.68rem;
  color: var(--primary-blue);
  font-weight: 600;
}

/* ---- Textarea ---- */
.hef-textarea-wrap {
  align-items: flex-start;
}

.hef-textarea-icon {
  padding-top: 14px;
}

.hef-textarea {
  resize: none;
  padding-top: 18px;
}

.hef-textarea-wrap .hef-label {
  top: 16px;
  transform: none;
}

.hef-textarea:not(:placeholder-shown)~.hef-label,
.hef-textarea:focus~.hef-label {
  top: 4px;
  transform: none;
  font-size: 0.68rem;
  color: var(--primary-blue);
  font-weight: 600;
}

/* ---- Submit Button ---- */
.hef-submit-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 18px;
  background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hef-submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #9c6228 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hef-submit-btn:hover::before {
  opacity: 1;
}

.hef-submit-btn:hover {
  box-shadow: 0 8px 24px rgba(92, 57, 18, 0.38);
  transform: translateY(-2px);
}

.hef-btn-text,
.hef-btn-arrow {
  position: relative;
  z-index: 1;
}

.hef-btn-arrow {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  transition: transform 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}

.hef-submit-btn:hover .hef-btn-arrow {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.30);
}

/* ---- Trust Badges ---- */
.hef-trust-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed #e4d9cf;
}

.hef-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: #8a7060;
  font-weight: 500;
  text-align: center;
}

.hef-trust-item i {
  font-size: 0.95rem;
  color: var(--primary-blue);
}

/* =============================================
   COURSE OVERVIEW — Redesign
   ============================================= */

/* ---- Stats Strip ---- */
.co-stats-strip {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
  border-radius: 14px;
  padding: 18px 24px;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 16px;
  position: relative;
  overflow: hidden;
}

.co-stats-strip::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(248, 180, 0, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.co-stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 130px;
}

.co-stat-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1rem;
}

.co-stat-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.co-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.co-stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.co-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.18);
  margin: 0 16px;
  flex-shrink: 0;
}

/* ---- Topics Covered Block ---- */
.co-topics-block {
  background: #faf7f4;
  border: 1px solid #ecddd0;
  border-radius: 14px;
  padding: 20px 22px;
}

.co-topics-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.co-topics-title i {
  color: var(--primary-blue);
}

.co-topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.co-topic-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid #ecddd0;
  border-radius: 8px;
  font-size: 0.86rem;
  color: var(--dark-text);
  font-weight: 500;
  transition: all 0.25s ease;
  cursor: default;
}

.co-topic-item:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 4px 14px rgba(92, 57, 18, 0.10);
  transform: translateY(-2px);
  background: #fff9f5;
}

.co-topic-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-color));
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  transition: transform 0.25s ease;
}

.co-topic-item:hover .co-topic-icon {
  transform: rotate(-8deg) scale(1.1);
}

/* ---- Eligibility / Who Is This For ---- */
.co-eligibility-block {
  background: #f0faf4;
  border: 1px solid #c3e6cb;
  border-radius: 14px;
  padding: 20px 22px;
}

.co-eligible-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid #d4edda;
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--dark-text);
  font-weight: 500;
  transition: all 0.25s ease;
}

.co-eligible-item:hover {
  border-color: #28a745;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.10);
  transform: translateY(-2px);
}

.co-eligible-item i {
  font-size: 1rem;
  color: #28a745;
  flex-shrink: 0;
}

/* ---- Responsive ---- */
@media (max-width: 767.98px) {
  .co-topics-grid {
    grid-template-columns: 1fr;
  }

  .co-stats-strip {
    padding: 16px 18px;
    gap: 0;
  }

  .co-stat-item {
    min-width: 45%;
  }

  .co-stat-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .co-stat-item {
    min-width: 100%;
  }
}

.mobile-responsive-sidebar {

  overflow-y: auto;
}

@media screen and (min-width:992px) {
  .mobile-responsive-sidebar {
    height: 630px;
  }
}


@media screen and (max-width: 767.98px) {
  .mobile-responsive-sidebar {
    height: auto;
    overflow: auto;

  }

  #v-pills-tab {
    width: 1510px;
    overflow: auto;
  }

  .dropdown-menu .nav-link {
    margin: 0;
  }
}

.our-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-blue);
}

.previous-price {
  text-decoration: line-through;
  color: var(--gray-text);
  font-size: 18px;

}

.our-price-wrapper {
  font-weight: 600;
}

.discount-badge {
  background: var(--secondary-blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  display: inline-block;
  position: absolute;
  top: 20px;
  right: 20px;
}

.traning-title-style {
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary-blue);
  opacity: .7;
}

.right-content-wrapper {
  padding: 0px 25px 6px;
}