/* .hero-section {
  position: relative;
  height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 20px;
}
.hero-background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;

}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(9 29 62 / 80%);
  z-index: -2;
}
.hero-image-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  top: -80px;
  width: 90%;
  height: 700px;
  z-index: -1;
  opacity: 1;
  object-fit: cover;
}
.hero-content {
  z-index: 1;
  
  max-width: 850px;
  padding: 20px;
  margin-top: 80px;
  
}

.breadcrumb-btn {
  background: rgba(255, 255, 255, 0.35);
  border: none;
  color: #fff;
  padding: 12px 28px;
  font-size: 18px;
  letter-spacing: 0.5px;
  border-radius: 30px;
  backdrop-filter: blur(5px);
 transition: transform 0.3s ease ;
  font-weight: 500; 
  text-decoration: none;

}
.breadcrumb-btn:hover {
 background: rgba(255, 255, 255, 0.25);
  transform: scale(1.01);
}
.hero-content h1 {
  margin-top: 50px;
  font-size: 3.5rem;
  font-weight:600;
   line-height: 1.2;
}
 
.hero-content p {
  font-size: 1.15rem;
      margin: 30px ;
      font-weight: 300;
      letter-spacing: 0.5px;
}
.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 10px 40px;
    font-size: 1.1rem;
    border: 2px solid white;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
}

.btn-outline {
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-filled {
    background: white;
    color: #1e3a5f;
}

.btn-filled:hover {
    background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .features {
        gap: 20px;
    }

    .feature {
        font-size: 1rem;
    }

    .description {
        font-size: 1.1rem;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
} */

/* Section layout */
.promo-section {
  
  padding: 100px 20px 50px 20px;
  background-color: #0a1b3c;
  /* background-image: url("img/home assets/Layer 4.png"); */
  background-repeat: no-repeat;
  background-position: top right;
  /* <-- changed */
  background-size: 800px;
  
}
.promo-section-inner-container{
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;

  position: relative;
  overflow: hidden;
}

/* Buttons */
.breadcrumb-btn {
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  color: #fff;
  padding: 10px 28px;
  font-size: 18px;
  letter-spacing: 0.5px;
  border-radius: 30px;
  /* backdrop-filter: blur(5px); */
  transition: transform 0.3s ease;
  font-weight: 500;
  text-decoration: none;
  margin-left: 20px;
}

.breadcrumb-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.01);
}

.overview-description-wrapper p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #000;
  line-height: 1.65;
}

/* This targets any image added via the rich text editor in this specific section */
.overview-description-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 25px 0;
}

.prerequisites-content p {
  font-size: 20px;
  color: #000;
  margin-bottom: 0.75rem;
  /* This matches the original design's spacing */
}

.prerequisites-content ul {
  list-style: none;
  /* margin: 30px 0; */
  padding-left: 0;
}

.prerequisites-content ul li {
  display: flex;
  align-items: start;
  font-size: 20px;
  color: #000;
  margin-bottom: 0.75rem;
  gap: 10px;
}

/* This is a simple way to add the checkmark icon from the design */
/* .prerequisites-content ul li::before {
  content: '✔';
  color: #4CAF50; 
  font-weight: bold;
  margin-top: 3px;
} */

.exam-details-content ul {
  list-style: none;
  padding-left: 0;
}

.exam-details-content ul li {
  display: flex;
  align-items: start;
  font-size: 20px;
  color: #000;
  margin-bottom: 0.9rem;
  gap: 10px;
}

/* This adds the green checkmark icon before each list item 
.exam-details-content ul li::before {
  content: '✔';
  color: #4CAF50;
  font-weight: bold;
  font-family: 'Font Awesome 5 Free'; /* Using an icon font is more reliable 
  margin-top: 5px;
}*/
/* Left text */
.promo-content {
  flex: 1 1 600px;
  z-index: 1;
  margin-top: 70px;
}

.promo-content h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
  padding-left: 20px;
  margin-top: 30px;
}

.overview-description-wrapper p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #000;
  line-height: 1.65;
}

/* This targets any image added via the rich text editor in this specific section */
.overview-description-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 25px 0;
}

.promo-content .subheading {
  font-size: 1.3rem;
  color: #cbd5e1;
  margin-bottom: 10px;
  padding-left: 20px;
}

/* Bullet points */
.promo-content ul {
  list-style: none;
  padding: 20px;
  margin: 0 0 30px 0;
  background-color: #11265156;
}

.promo-content ul li {
  margin-bottom: 14px;
  font-size: 1.1rem;
  color: #dce3f2;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.promo-content ul li i {
  color: #2196f3;
  font-size: 1.2rem;
  margin-top: 3px;
}

/* Ratings */
.promo-ratings {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 30px 0;
  padding: 20px;
  /* background-color: #11265156; */
  max-width: 450px;
  justify-content: space-between;

  color: #fff;
}

.promo-ratings img {
  height: 50px;
  vertical-align: middle;
}

.promo-ratings span {
  font-size: 1rem;
  color: #fff;
  margin-left: 10px;
}

.promo-ratings-div {
  border-left: 1px solid #fff;
  padding-left: 50px;
}

/* Buttons */
.promo-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-left: 10px;
}

.promo-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #ffffff;
  color: #0a1b3c;

  /* border: 2px solid #fff; */
}

/* .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
} */

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #ffffff;
  padding: 10px 58px !important;
}

/* .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
} */

/* Right image */
.promo-image {
  flex: 1 1 400px;
  text-align: center;
  position: relative;
}

.promo-image img {
  width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
  .promo-section {
    padding: 80px 5%;
    background-position: center bottom;
    text-align: center;
  }

  .promo-content {
    flex: 1 1 100%;
    order: 2;
  }

  .promo-image {
    order: 1;
  }

  .promo-content ul {
    align-items: center;
  }

  .promo-actions {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .promo-content h1 {
    font-size: 2.2rem;
  }

  .promo-content .subheading {
    font-size: 1.1rem;
  }

  .promo-content ul li {
    font-size: 1rem;
  }
}

/* logo section css  */

.logo-section {
  padding: 60px 40px;
  padding-bottom: 0;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

.logo-section-heading {
  width: 30%;
  font-size: 20px;
  text-align: center;
  line-height: normal;
}

.logos-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  gap: 50px;
}

.logo-slider-container {
  overflow: hidden;
}

.logo-row {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  width: max-content;
  animation: slideLeft 30s linear infinite;
}

.logo-row:nth-child(2) {
  animation: slideRight 30s linear infinite;
}

.logo-item {
  min-width: 180px;
  height: 80px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.logo-item img {
  max-width: 120px;
  max-height: 40px;
  object-fit: contain;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

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

  100% {
    transform: translateX(0);
  }
}

/* detail section  */
.detail-section {
  padding: 60px 40px;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

.detail-container {
  display: flex;
  margin: 0 auto;
  min-height: 100vh;
}

.left-content {
  flex: 1;
  padding: 0px 40px;
  overflow-y: auto;
  padding-left: 0;
}

/* Sidebar container */
.right-sidebar {
  width: 420px;
  position: sticky;
  top: 80px;
  /*  Adds a little margin from the top */
  height: fit-content;
  /* So it doesn’t stretch full screen */
  margin-top: 80px;
  /* Optional - extra space from top */
  padding: 0;
}

/* Inner container */
.right-sidebar-inner-container {
  background: #f8f9fa;
  padding: 20px 20px;


}

/* details-section */
.details-section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1c0d45;
  font-family: "Figtree", sans-serif !important;
}

.intro-text {
  font-size: 20px;
  margin-bottom: 15px !important;
  color: #000;
  line-height: 1.65;
}

/* .key-features-header */

.key-features-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  margin-top: 30px;
}

.key-features-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #091d3e;
  font-family: "Figtree", sans-serif !important;
  margin-bottom: 0px;
}

.refund-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #53c659;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid #53c659;
}

.refund-icon {
  width: 20px;
  height: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.deatils-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4a4a;
}

.deatils-feature-item i {
  font-size: 20px;
  color: #2196f3;
  margin-top: 4px;
  flex-shrink: 0;
}

.deatils-feature-item span {
  font-size: 1.15rem;
  color: #000;
  font-weight: 500;
}

/* .learning-goals */

.learning-goals {
  margin-top: 30px;
}

.learning-goals h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #091d3e;
  font-family: "Figtree", sans-serif !important;
  margin-bottom: 15px;
}

.learning-goals p {
  font-size: 1.15rem;
  color: #091d3e;
  font-weight: 500;
}

.goals-section {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 15px 0;
}

.goals-image {
  width: 460px;
  height: 300px;
  object-fit: cover;
  flex-shrink: 0;
}

.goals-list {
  flex: 1;
}

.goal-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #4a4a4a;
}

.goal-item img {
  width: 20px;
  height: 20px;
}

.goal-item span {
  font-size: 18px;
  color: #091d3e;
  font-weight: 500;
}

.goal-check {
  width: 20px;
  height: 20px;
  color: #4caf50;
  flex-shrink: 0;
  margin-top: 2px;
}

/* program-section */
.program-section {
  /* margin-top: 30px; */
}

.program-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #091d3e;
  font-family: "Figtree", sans-serif !important;
  margin-bottom: 15px;
  margin-top: 30px;
}

.program-section p {
  font-size: 1.15rem;
  color: #091d3e;
  font-weight: 500;
}

.program-heading {
  font-size: 34px;
  font-weight: 700;
  color: #091d3e;
  font-family: "Figtree", sans-serif !important;
}

.program-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 0px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-radius: 8px;
  font-size: 18px;
  line-height: 1.6;
  color: #091d3e;
  /* margin-top: 15px; */
}

.info-item i {
  font-size: 20px;
  color: #2196f3;
  margin-top: 4px;
  flex-shrink: 0;
}

.info-item span {
  font-size: 1.15rem;
  font-weight: 500;
  color: #000;
  flex: 1;
}


/* ================= SSM Certification Topics Section ================= */
.ssm-certification-section {
  background-color: #f5f5f5;
  margin-top: 30px;
  padding: 40px;
  border-radius: 20px;
}

.ssm-certification-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #091d3e;
  font-family: "Figtree", sans-serif !important;
  margin: 20px 0;
}

#ssm-accordion-container {
  margin-top: 30px;
}

/* Accordion item */
.ssm-accordion-item {
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  margin-bottom: 0.75rem;
  background-color: #fff;
}

/* Accordion button */
.ssm-accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s, border-bottom 0.3s ease;
  border-radius: 16px;
}

.ssm-accordion-button:hover {
  background-color: #f9fafb;
}

.ssm-accordion-button.active {
  border-bottom: 2px solid #e5e7eb;
}

/* Accordion title */
.ssm-accordion-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #091d3e;
  flex: 1;
}

/* Accordion icon */
.ssm-accordion-icon {
  width: 1.3rem;
  height: 1.3rem;
  color: #091d3e;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.ssm-accordion-button.active .ssm-accordion-icon {
  transform: rotate(180deg);
  color: #091d3e;
}

/* Accordion content */
.ssm-accordion-content {
  font-size: 16px;
  line-height: 1.6;
  color: #0c2142e8;
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.ssm-accordion-content.active {
  max-height: 1000px;
  padding: 0.5rem 1rem 1rem 1rem;
}

.ssm-accordion-content ul {
  list-style: none;
  padding-left: 15px;
}

.ssm-accordion-content li {
  font-size: 18px;
  color: #0c2142e8;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.ssm-accordion-content li span:first-child {
  margin-right: 4px;
  font-size: 25px;
  line-height: normal;
  color: #0c2142e8;
}

/* View More button */
.ssm-view-more {
  text-align: center;
  margin-top: 1.5rem;
}

.ssm-view-more-button {
  background: none;
  border: none;
  color: #091d3e;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.ssm-view-more-button:hover {
  color: #111827;
}

.ssm-view-more-button i {
  font-size: 1rem;
  color: #091d3e;
}

.ssm-hidden {
  display: none;
}




/* .prerequisites-section  */
.prerequisites-section {
  margin: 30px 0;
}

.prerequisites-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1c0d45;
  font-family: "Figtree", sans-serif !important;
  margin-bottom: 15px;
}

.prerequisites-section-subheading {
  font-size: 1.15rem;
  color: #091d3e;
  margin-bottom: 15px !important;
  font-weight: 500;
}

.prerequisites-section-description {
  font-size: 20px;
  color: #000;
  margin-bottom: 15px !important;
}

.checklist {
  list-style: none;
  margin: 15px 0 !important;
  padding-left: 0px;
}

.checklist img {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.checklist li {
  display: flex;
  align-items: start;
  font-size: 20px;
  color: #000;
  margin-bottom: 0.75rem;
  gap: 10px;
}

/* .exam-details-section */
.exam-details-section {
  background-color: #f5f5f5;
  margin-top: 40px;
  padding: 40px;
  border-radius: 20px;
}

.exam-details-section-heading {
  font-size: 34px;
  font-weight: 700;
  color: #091d3e;
  font-family: "Figtree", sans-serif !important;
  margin-bottom: 20px;
}

.exam-list {
  list-style: none;
  padding-left: 0px;
}

.exam-list li {
  display: flex;
  align-items: start;
  font-size: 20px;
  color: #000;
  margin-bottom: 0.9rem;
  gap: 10px;
}

.exam-list li img {
  width: 18px;
  height: 18px;
  margin-top: 5px;
}

.exam-list .checkmark {
  margin-right: 0.75rem;
}

.exam-list strong {
  font-weight: 700;
}

/* .schedule-section */
/* .schedule-section */
.schedule-section {
  margin-top: 50px;
}

.schedule-section-heading {
  font-size: 34px;
  font-weight: 700;
  color: #091d3e;
  font-family: "Figtree", sans-serif !important;
  margin-bottom: 20px;
}

/* Schedule Card */
.schedule-card {
  background: white;
  border: 2px solid #a3aab4;
  border-radius: 12px;
  padding: 0 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.7);
  display: flex;
  padding-left: 0;
  margin-top: 30px;

  align-items: stretch;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  width: 35%;
  gap: 30px;
  border-right: 2px dashed #e5e7eb;
  padding: 24px 0;
}

.card-header:last-child {
  border-top: 2px dashed #e5e7eb !important;
}

.left-section {
  flex: 1;
  padding-left: 24px;
}

/* ====== UPDATED BADGE ====== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #d4f4dd;
  color: #0a7029;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  border: 1px solid #0a7029;
}

.badge i {
  color: #facc15;
  /* sun yellow */
  font-size: 16px;
  display: inline-block;
  vertical-align: middle;
}

/* Text sections */
.date {
  font-size: 18px;
  font-weight: 900;
  color: #1c0d45;
  margin-bottom: 8px;
}

.time {
  font-size: 14px;
  color: #666;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.location {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  font-weight: 600;
}

/* Curriculum Section */
.curriculum-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* vertically center */
  align-items: center;
  /* horizontally center */
  width: 35%;
  padding: 24px;
  margin: 0;
  /* remove auto margin */
}

.curriculum-link {
  color: #2657a7;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
}

.watch-icon {
  color: #0a7029;
}

.bi-download {
  font-weight: 800;
}

/* Quantity Selector */
.quantity-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
  background-color: transparent;
  width: 150px;
  border-radius: 50px;
  border: 2px solid #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.518);
  padding: 8px 20px;
}

.quantity-btn {
  border: none;
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity {
  font-size: 18px;
  min-width: 20px;
  text-align: center;
}

/* Price Info */
.price-info {
  text-align: center;
  margin-bottom: 12px;
}

.original-price {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
  margin-right: 8px;
  font-weight: 700;
}

.discount {
  font-size: 16px;
  color: #0a7029;
  font-weight: 700;
}

.current-price {
  font-size: 20px;
  font-weight: 800;
  color: #1c0d45;
  margin-top: 4px;
}

/* Seats Left */
.seats-left {
  text-align: center;
  font-size: 15px;
  color: #ff4444;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seats-left i {
  font-size: 15px;
  color: #ff4444;
  margin-right: 3px;
}

/* Footer */
.card-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
  width: 30%;
  border-left: 2px dashed #e5e7eb;
}

/* Instructor Section */
.instructor {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 2px dashed #4444;
  width: 100%;
  padding-left: 24px;
}

.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #E0E0E0;
}

.instructor-info {
  display: flex;
  flex-direction: column;
}

.instructor-name {
  font-size: 18px;
  font-weight: 700;
  color: #091d3e;
}

.instructor-title {
  font-size: 12px !important;
  color: #1c0d45;
  font-weight: 700;
}

/* Enquire + Button */
.enquire-link {
  font-size: 16px;
  color: #1c0d45;
  text-decoration: none;
  font-weight: 500;
}

.enquire-link:hover {
  text-decoration: underline;
}

.enroll-btn {
  background-color: #f96e46;
  color: white;
  border: none;
  padding: 8px 40px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
}

.enroll-btn:hover {
  background-color: #f96e46;
}

/* .who-section */

.who-section {
  background-color: #f5f5f5;
  margin-top: 60px;
  padding: 40px 10px 0 40px;
  border-radius: 20px;
}

.who-header {
  font-size: 14px;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.who-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #091d3e;
  margin-bottom: 10px;
  font-family: "Figtree", sans-serif !important;
}

.who-content {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.who-text {
  flex: 1;
  min-width: 350px;
}

.who-text p {
  font-size: 18px;
  line-height: 1.5;
  color: #000;
  margin-bottom: 20px;
  font-weight: 500;
}

.who-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.who-lists ul {
  list-style: none;
  padding-left: 0;
}

.who-lists li {
  font-size: 19px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  font-weight: 500;
}

.who-lists li::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: #091d3e;
  font-weight: bold;
}

.who-image {
  flex: 0 0 400px;
  max-width: 100%;
  height: 450px;
  text-align: end;
  object-fit: cover;
}

.who-image img {
  width: 100%;
  max-width: 400px;
  height: 450px;
  text-align: end;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .who-content {
    flex-direction: column;
    gap: 30px;
  }

  .who-title {
    font-size: 28px;
  }

  .who-text p {
    font-size: 15px;
  }

  .who-lists {
    grid-template-columns: 1fr;
  }

  .who-image img {
    max-width: 100%;
  }
}

/* .placeholder-person {
            width: 100%;
            height: 85%;
            background: linear-gradient(to bottom, transparent 0%, #c8ddd4 100%);
            border-radius: 50% 50% 0 0 / 20% 20% 0 0;
        }

        .decorative-circle {
            position: absolute;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: rgba(255, 200, 100, 0.3);
        }

        .circle-1 {
            top: 20px;
            left: 20px;
        }

        .circle-2 {
            bottom: 40px;
            right: 30px;
            background-color: rgba(150, 180, 255, 0.3);
        } */

.course-review-section {
  margin-top: 50px;
}

.course-review-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgb(9, 29, 62);
  font-family: Figtree, sans-serif !important;
}

.subtitle {
  color: #1c0d45;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.7px;
  margin-bottom: 15px;
}

.content-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
}

.certificate-container {
  /* flex: 0 0 auto; */
  /* position: relative; */
  width: 50%;
}

.certificate-image {
  width: 100%;
  height: auto;
}

.text-content {
  flex: 1;
}

.text-content p {
  color: #000;
  font-size: 19.4px;
  margin-bottom: 30px;
}

.benefits-list {
  list-style: none;
  margin-bottom: 30px;
  padding-left: 0px;
}

.benefits-list li {
  color: #091d3e;
  font-size: 19.4px;
  margin-bottom: 12px;
}

.retry-text {
  color: #333;
  font-size: 18px;
}

@media (max-width: 1024px) {
  .detail-section {
    padding: 40px 30px;
  }

  .right-sidebar {
    /* width: 100%; */

    position: relative;
  }

  .left-content {
    padding: 40px 10px;
  }

  .goals-section {
    flex-direction: column;
  }

  .program-section {
    margin-top: 15px;
  }

  .ssm-certification-section {
    margin-top: 30px;
    padding: 25px;
  }

  .exam-details-section {
    margin-top: 30px;
  }

  .schedule-card-main {
    flex-direction: column;
  }

  .schedule-card .card-header,
  .schedule-card .curriculum-section,
  .schedule-card .card-footer {
    width: 100% !important;
  }

  .schedule-card .card-footer {
    padding: 35px;
    justify-content: flex-start !important;
  }

  .schedule-card .curriculum-section {
    align-items: flex-start !important;
    padding: 35px;
  }

  .who-section {
    padding: 20px;
  }

  .content-wrapper {
    gap: 20px;
    flex-direction: column;
  }

  .review-card {
    flex: 0 0 100% !important;
  }

  .promo-image img {
    width: 40%;
  }
}

.review-section {

  padding: 30px 0;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.review-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1c0d45;
  font-family: "Figtree", sans-serif !important;
  margin-bottom: 15px;
}

.review-subtitle {
  color: #1c0d45;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.7px;
}

.review-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-btn {

  color: #000;
  background-color: #f5f5f5;
  border: 1px solid #666;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;

}


.nav-btn:hover {
  background-color: #091d3e;
  color: white;
}

.dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #ccc;
  border-radius: 50%;
}

.dot.active {
  background-color: #091d3e;
  width: 10px;
  height: 10px;
}

.slider-wrapper {
  overflow: hidden;
  position: relative;
  padding: 0;
}

.review-slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
  flex-wrap: nowrap;
}

.review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  /* adjust the total gap if needed */
  margin-right: 20px;
  /* reduced gap between cards */
  background-color: #f5f5f5;
  border-radius: 16px;
  padding: 20px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.review-card:last-child {
  margin-right: 0;
  /* no extra margin for last card */
}

.review-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #ddd;
}

.review-name {
  font-size: 18px;
  font-weight: 700;
  color: #091d3e;
}

.review-role {
  font-size: 14px;
  color: #666;
}

.review-text {
  font-size: 15px;
  color: #091d3e;
  line-height: 1.6;
  font-weight: 500;
  margin-top: 10px;
}

.review-divider {
  border: none;
  border-top: 1px solid #828282ea;
  margin: 1px 0;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-left {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.review-logo img {
  width: 20px;
  height: 20px;
}

.review-rating i {
  color: #facc15;
  font-size: 16px;
}

/* Tablet (2 cards visible) */
@media (max-width: 992px) {
  .review-card {
    flex: 0 0 calc((100% - 20px) / 2);
    /* reduce gap proportionally */
    margin-right: 20px;
  }
}

/* Mobile (1 card visible) */
@media (max-width: 768px) {
  .review-card {
    flex: 0 0 100%;
    margin-right: 0;
  }

  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}


/* faq-section */

.faq-section {


  background-color: #fff;
  border-radius: 16px;
  padding-top: 20px;

}

.faq-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #091d3e;
  margin-bottom: 20px;
  font-family: "Figtree", sans-serif !important;
}

.faq-toggle {
  border: 2px solid #091d3e;
  border-radius: 8px 8px 0 0;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-toggle.active {
  border-color: #091d3e;

}

.faq-question {
  font-size: 19px;
  font-weight: 600;
  color: #091d3e;
  padding: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s ease;
  border-bottom: 0.1px solid #4d4d4d;

}

.faq-question.active {
  border-bottom: 2px solid #091d3e;
  /* visible bottom border */
}



/* Arrow icon */
.faq-question i {
  font-size: 19px;
  transition: transform 0.3s ease, color 0.3s ease;
  color: #666;
}

.faq-toggle.active .faq-question i {
  transform: rotate(90deg);
  color: #091d3e;

}

/* Answer container for smooth slide */
.faq-answer {
  font-size: 18px;
  color: #091d3e;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height 0.5s ease, padding 0.3s ease;

  will-change: max-height, padding;
}





.faq-toggle.active .faq-answer {
  max-height: 1000px;
  padding: 20px 16px 28px 16px;
  /* top, right, bottom, left */
}


.view-more-btn {
  margin-top: 30px;
  background-color: transparent;
  color: #000;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;

  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  margin-right: auto;
  transition: color 0.3s ease;
}

/* 
  .view-more-btn i {
    transition: transform 0.3s ease;
  }

  .view-more-btn.view-less i {
    transform: rotate(180deg);
  } */


.faq-question img {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  filter: brightness(0) saturate(100%) invert(66%) sepia(97%) saturate(1500%) hue-rotate(1deg) brightness(95%) contrast(101%);
  /* converts to yellow #facc15 */
}

.faq-toggle.active .faq-question img {
  transform: rotate(180deg);
  /* rotate arrow when open */
}



.extra-faqs {
  display: none;
}

.extra-faqs.visible {
  display: block;
}





/*  .right-sidebar*/
.right-sidebar {
  margin: 0;
  padding: 0;
}


/* Timer */
.timer-box {
  padding: 5px;
  border-radius: 8px;
}

.timer-label {
  font-size: 20px;
  color: #091d3e;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 600;
}

.timer-display {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.timer-unit {
  text-align: center;
}

.timer-value {
  padding: 0 22px;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  display: block;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
  border-radius: 6px;
}

.timer-text {
  font-size: 14px;
  color: #666;
  text-transform: capitalize;
  font-weight: 700;
}

/* Form */
.form-group {
  display: flex;
  border-bottom: 2px solid #ddd;
  gap: 10px;
}

.form-input {
  width: 100%;
  padding: 10px 0;
  border: none;
  background-color: transparent;
  font-size: 18px;
  outline: none;
  color: #333;
}

.form-label {
  font-size: 18px;
  color: #666;
  font-weight: 500;
}

.phone-group {
  display: flex;
  gap: 10px;
}

.country-code {
  width: 100px;
  border: none;
  font-size: 18px;
  color: #333;
  background-color: transparent;
  padding-left: 0px;
}

/* Radio buttons */
.radio-group {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  align-items: center;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  color: #333;
}


.radio-label input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #007bff;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

.radio-label input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #007bff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Checkbox */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #333;
}

/* .checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 2px solid #091d3e;
    background-color: #091d3e;
  border-radius: 4px;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"]:checked {
  background-color: #091d3e;
  border-color: #091d3e;
} */

.checkbox-group input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #091d3e;
  border-radius: 4px;
  cursor: pointer;
  background-color: transparent;
  position: relative;
  transition: background-color 0.2s ease;
}

.checkbox-group input[type="checkbox"]:checked {
  background-color: #091d3e;
  border-color: #091d3e;
}

/* Centered checkmark */
.checkbox-group input[type="checkbox"]:checked::after {
  content: "✔";
  color: #fff;
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}





/* Buttons */
.right-side-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 12px;
}

.btn-primary {
  background: #f96e46;
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: #091d3e;
  border: 2px solid #091d3e;
}

/* .btn-primary:hover{
background-color: #fff;
color: #091d3e;
}
.btn-secondary:hover{
   background: #091d3e;
  color: #fff;
  border: 2px solid #fff;
} */



/* 1. Modify the original .form-group to remove its bottom margin */
.form-group.formgroup-custom {
  margin-bottom: 0;
}

/* 2. Style the error message */
.text-danger {
  color: #dc3545;
  /* Red color for error text */
  font-size: 14px;
  font-weight: 500;
  text-align: left;

  /* This ensures the space for the error message is always reserved,
       preventing the form from "jumping" when an error appears. */
  min-height: 22px;


  /* Adds a little space between the underline and the error text */
  padding-top: 10px;
  padding-bottom: 10px;
}


.formgroup-custom {
  position: relative;
}

.formgroup-custom-popup {
  position: relative;
  border-bottom: none;
  margin-bottom: 20px;
}

.form-control:focus+.form-label-custom,
.form-control:not(:placeholder-shown)+.form-label-custom {
  top: 0;
  left: 10px;
  padding: 0 5px;
}

.form-control:focus+.form-label-custom-popup,
.form-control:not(:placeholder-shown)+.form-label-custom-popup {
  top: 0;
  left: 10px;
  padding: 0 10px;
  background-color: #fff;
}

.form-control:focus+.form-label-custom-phone,
.form-control:not(:placeholder-shown)+.form-label-custom-phone {
  top: 0;
  left: 120px;
  padding: 0 5px;
}

.form-control:focus {
  border-color: #333;
  background-color: transparent;
  box-shadow: unset;
}

.form-label-custom {
  position: absolute;
  top: 20px;
  left: 10px;
  pointer-events: none;
  transform: translateY(-50%);
  transition: all .3s ease;
}

.form-label-custom-popup {
  position: absolute;
  top: 26px;
  left: 10px;
  pointer-events: none;
  transform: translateY(-50%);
  transition: all .3s ease;
}

.form-label-custom-phone {
  position: absolute;
  top: 20px;
  left: 120px;
  pointer-events: none;
  transform: translateY(-50%);
  transition: all .3s ease;
}

.form-group-radio-popup {
  border-bottom: unset;
  /* padding: 15px; */
  /* border: 2px solid #99999940; */
  /* border-radius: 8px; */
}

.popup-content .form-control {
  padding: 15px;
  border: 2px solid #99999940;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 40px 25px;
  border-radius: 10px;
  width: 90%;
  max-width: 700px;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.popup-content h2 {
  margin-bottom: 15px;
  text-align: center;
  font-family: Figtree, sans-serif !important;
}

.popup-content p {
  margin-bottom: 20px;
  text-align: center;
  font-size: 14px;
  line-height: normal;

}

.popup-content p a {
  padding: 0;
  color: #f96e46;
  font-size: 14px;

}
.privacy-link{
  color: #f96e46;
}

.btn-submit {
  width: 35%;
  background: #007bff;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  cursor: pointer;
  color: #555;
}

.popup-privacy-p {
  text-align: left !important;
}


.details-section-heading,
.key-features-heading,
.learning-goals h2,
.program-section h2,
.ssm-certification-section h2,
.prerequisites-section h2,
.exam-details-section-heading,
.schedule-section-heading,
.who-title,
.course-review-heading,
.review-heading,
.faq-heading {
  font-size: 38px !important;
  color: #1c0d45 !important;
}

.intro-text,
.deatils-feature-item span,
.learning-goals p,
.goal-item span,
.program-section p,
.info-item span,
.ssm-accordion-title,
.ssm-accordion-content li,
.prerequisites-section-subheading,
.prerequisites-section-description,
.checklist li,
.exam-list li,
.instructor-name,
.instructor-title,
.curriculum-link,
.who-text p,
.who-lists li,
.text-content p,
.benefits-list li,
.faq-question,
.faq-answer {
  font-size: 18px !important;
  color: #000 !important;
}
.instructor-title{
  font-size: 12px !important;
}




@media (max-width: 992px) {
  .promo-section {
    flex-direction: column;
    padding: 80px 30px;
    background-position: center bottom;
    text-align: center;
  }

  .promo-content {
    order: 2;
    flex: 1 1 100%;
  }

  .promo-image {
    order: 1;
    flex: 1 1 100%;
  }

  .promo-content ul {
    align-items: center;
  }

  .promo-actions {
    justify-content: start;
  }

  .detail-container {
    flex-direction: column;
  }

  .right-sidebar {
    width: 100%;
    position: static;
    margin-top: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .goals-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .goals-image {
    width: 100%;
    height: auto;
  }

}

@media (max-width: 767px) {

  .details-section-heading,
  .key-features-heading,
  .learning-goals h2,
  .program-section h2,
  .ssm-certification-section h2,
  .prerequisites-section h2,
  .exam-details-section-heading,
  .schedule-section-heading,
  .who-title,
  .course-review-heading,
  .review-heading,
  .faq-heading {
    font-size: 28px !important;
  }

  .intro-text,
  .deatils-feature-item span,
  .learning-goals p,
  .goal-item span,
  .program-section p,
  .info-item span,
  .ssm-accordion-title,
  .ssm-accordion-content li,
  .prerequisites-section-subheading,
  .prerequisites-section-description,
  .checklist li,
  .exam-list li,
  .instructor-name,
  .instructor-title,
  .curriculum-link,
  .who-text p,
  .who-lists li,
  .text-content p,
  .benefits-list li,
  .faq-question,
  .faq-answer {
    font-size: 15px !important;
  }

  .promo-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
    background-size: 500px;
    background-position: bottom center;
  }

  .promo-content h1 {
    font-size: 1.8rem;
    padding-left: 0;
    text-align: left;
  }

  .promo-content .subheading {
    font-size: 1rem;
    padding-left: 0;
    text-align: left;
    margin: 20px 0px;
  }

  .promo-ratings img {
    height: 45px;
  }

  .promo-ratings {
    margin: 0;
  }

  .promo-content ul {
    background-color: transparent;
    padding: 0;
  }

  .promo-content ul li {
    font-size: 0.95rem;
    color: #dce3f2;
    text-align: left;
  }

  .promo-actions {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
   
  }

  .promo-image img {
    width: 60%;
    margin: 20px 0px;
    margin-top: 60px;
  }

  .logo-section-heading {
    font-size: 18px;
  }

  .logo-section {
    padding: 30px 10px;
    margin-bottom: -20px;
  }

  .detail-section {
    padding: 0;
  }

  .detail-container {
    flex-direction: column;
    padding: 0px !important;
  }

  .right-sidebar {
    width: 100%;
    position: static;
    margin-top: 40px;
  }

  .left-content {
    padding: 0px;
  }

  /* details-section */
  .details-section-heading {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #091d3e;
    font-family: "Figtree", sans-serif !important;
  }

  .intro-text {
    font-size: 15px !important;
    margin-bottom: 20px !important;
    color: #000;
    line-height: 1.15;
  }

  /* key-features  section*/

  .key-features-header {
    display: block;
  }

  .refund-badge {
    margin-top: 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    margin: 0;
  }

  .goals-section {
    flex-direction: column;
  }

  .goals-image {
    width: 100%;
    height: auto;
  }

  .who-lists {
    grid-template-columns: 1fr;
  }

  .program-section {
    margin-top: 0;
  }

  .ssm-certification-section {
    background-color: #f5f5f5;
    margin-top: 30px;
    padding: 10px;
    border-radius: 20px;
  }

  .ssm-certification-section h2 {
    padding-left: 10px;
  }

  .prerequisites-section {
    margin: 40px 0;
  }

  .prerequisites-section-subheading {
    margin-bottom: 2px !important;
  }

  .checklist {
    margin: 10px 0 !important;
  }

  .exam-details-section {
    background-color: #f5f5f5;
    margin-top: 20px;
    padding: 15px;
    border-radius: 20px;
  }

  .who-section {
    background-color: #f5f5f5;
    margin-top: 30px;
    padding: 30px 15px 0 15px !important;
    border-radius: 20px;
  }

  .who-text {
    min-width: auto;
  }

  .who-image {
    flex: 0;
  }

  .who-image img {
    height: 250px;
  }

  .who-content {
    gap: 0px;
  }

  .subtitle {
    color: #091d3e;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.7px;
    margin-bottom: 20px;
  }

  .phone-main-container {
    flex-direction: column;
  }

  .review-section {
    padding: 10px 0;
  }

  .faq-section {
    padding-top: 30px;
  }

  .faq-heading {
    margin-bottom: 30px;
  }

  .right-sidebar {
    margin-bottom: 20px;
  }
}

/* ======================================================
   ✅ RESPONSIVE FIX — TRAINING SCHEDULE (Left Aligned)
   Applies below 992px width
====================================================== */
@media (max-width: 992px) {
  .schedule-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding: 0 !important;
  }

  .schedule-card-main {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .schedule-card .card-header,
  .schedule-card .curriculum-section,
  .schedule-card .card-footer {
    width: 100% !important;
  }

  .schedule-card .card-footer {
    padding: 35px;
    justify-content: flex-start !important;
  }

  .schedule-card .curriculum-section {
    align-items: flex-start !important;
    padding: 35px;
  }

  .who-section {
    padding: 40px 40px 0px 40px;
  }

  .schedule-card .card-header,
  .schedule-card .curriculum-section,
  .schedule-card .card-footer {
    width: 100% !important;
    text-align: left !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    border: none !important;
    border-bottom: 1px dashed #e5e7eb !important;
    padding: 20px !important;
  }

  .schedule-card .card-footer {
    border-bottom: none !important;
    padding-top: 0 !important;
  }

  .schedule-card .badge,
  .schedule-card .date,
  .schedule-card .time,
  .schedule-card .location,
  .schedule-card .trainer,
  .schedule-card .curriculum-link,
  .schedule-card .price-info,
  .schedule-card .enquire-link,
  .schedule-card .timings-toggle-btn {
    text-align: left !important;
    align-self: flex-start !important;
  }

  .schedule-card .price-info {
    margin-top: 8px !important;
  }

  .schedule-card .curriculum-section {
    gap: 8px !important;
  }

  .schedule-card .enquire-link,
  .schedule-card .curriculum-link,
  .schedule-card .timings-toggle-btn {
    font-size: 15px !important;
  }

  .schedule-card .badge {
    font-size: 13px !important;
    padding: 5px 12px !important;
  }
}

/* ======================================================
   ✅ EXTRA SMALL DEVICES (Below 576px)
====================================================== */
@media (max-width: 576px) {
  .schedule-section {
    padding: 0 !important;
    margin-top: 25px;
  }

  .schedule-card {
    margin-bottom: 16px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
  }

  .schedule-card .card-header,
  .schedule-card .curriculum-section {
    padding: 16px !important;
  }

  .schedule-card .badge {
    font-size: 12px !important;
    padding: 4px 10px !important;
  }

  .schedule-card .date {
    font-size: 15px !important;
  }

  .schedule-card .time,
  .schedule-card .location,
  .schedule-card .curriculum-link,
  .schedule-card .enquire-link,
  .schedule-card .timings-toggle-btn {
    font-size: 13px !important;
    text-align: left !important;
  }

  .schedule-card .current-price {
    font-size: 17px !important;
    text-align: left !important;
  }

  .left-section,
  .instructor {
    padding-left: 0;
  }

  .schedule-card .timings-toggle-btn {
    margin-top: 0;
  }

  .seats-left {
    margin-bottom: 0;
  }

  .enroll-btn {
    margin-left: -15px !important;
  }

  /* .enroll-form{
margin-left: -18px !important;  
} */
}

/* =========================
   📱 RESPONSIVE STYLES
   COURSE REVIEW SECTION
   ========================= */

/* ===== TABLET (≤992px) ===== */
@media (max-width: 992px) {
  .detail-section {
    padding: 60px 20px;
  }

  .promo-image img {
    width: 45%;
  }

  .promo-content h1 {
    text-align: left;
  }

  .promo-content .subheading {
    text-align: left;
  }

  .course-review-section {
    margin-top: 40px;
  }

  .course-review-heading {
    font-size: 2rem;
    text-align: left;
    /* ✅ stays left-aligned */
  }

  .subtitle {
    font-size: 15px;
    margin-bottom: 40px;
    text-align: left;
    /* ✅ stays left-aligned */
  }

  .content-wrapper {
    flex-direction: row;
    gap: 40px;
    text-align: left;
    /* ✅ keep text alignment consistent */
  }

  .certificate-container {
    width: 45%;
    margin: 0 auto;
  }

  .text-content p {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .benefits-list li {
    font-size: 18px;
  }

  .retry-text {
    font-size: 17px;
  }
}

/* ===== MOBILE (≤576px) ===== */
@media (max-width: 576px) {
  .course-review-section {
    margin-top: 30px;
  }

  .course-review-heading {
    font-size: 1.7rem;
    text-align: left;
    /* ✅ stays left-aligned */
  }

  .subtitle {
    font-size: 14px;
    margin-bottom: 25px;
    text-align: left;
    /* ✅ stays left-aligned */
  }

  .content-wrapper {
    flex-direction: column;
    gap: 30px;
    padding: 0 10px;
    text-align: left;
    /* ✅ all content left-aligned */
  }

  .certificate-container {
    width: 100%;
  }

  .certificate-image {
    width: 100%;
    height: auto;
  }

  .text-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .benefits-list li {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .retry-text {
    font-size: 15px;
  }

  .breadcrumb-btn {
    margin-left: 0px;
    font-size: 12px;
  }

  .promo-image img {}

}

@media (min-width:1024px) and (max-width:1264px) {
  .promo-content {
    margin-top: 60px;
  }

  .goals-section {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .content-wrapper {
    gap: 20px;
  }

  .who-text p {
    font-size: 16px;
  }


  .faq-answer {
    font-size: 16px !important;
  }


}

@media (max-width:768px) {

  .promo-image img {
    width: 75%;
    margin-top: 100px;
  }

  .breadcrumb-btn {
    display: none;
  }

  .promo-content {

    padding: 0px !important;
  }

  .details-section-heading,
  .key-features-heading,
  .learning-goals h2,
  .program-section h2,
  .ssm-certification-section h2,
  .prerequisites-section h2,
  .exam-details-section-heading,
  .schedule-section-heading,
  .who-title,
  .course-review-heading,
  .review-heading,
  .faq-heading {
    font-size: 32px !important;
  }

  .schedule-card-main {
    width: 100%;
  }

  .exam-list li img {
    display: none;
  }

  .checklist img {
    display: none;
  }
  .detail-section{
    padding: 30px 20px;
padding-top:0px;
  }

  .intro-text, .deatils-feature-item span, .learning-goals p, .goal-item span, .program-section p, .info-item span, .ssm-accordion-title, .ssm-accordion-content li, .prerequisites-section-subheading, .prerequisites-section-description, .checklist li, .exam-list li, .instructor-name, .instructor-title, .curriculum-link, .who-text p, .who-lists li, .text-content p, .benefits-list li, .faq-question, .faq-answer {
    font-size: 16px !important;
  }
  .instructor-title{
    font-size: 14px !important;
  }
  .enroll-btn{
    margin-left: 0px !important;
  }
  .promo-content{
    margin-top: 0px;
  }
#workshopEnquiryPopup .popup-content{
margin-top:180px;
padding: 20px 25px;

}
.btn-submit{
width:100%;
}
#workshopEnquiryPopup{
overflow:scroll;
}
.right-sidebar .radio-group{
    margin-left:20px;
    gap: 10px;
    align-items: flex-start;
    flex-direction: column;
}
.brochure-radio-btns-container{
display:flex;
flex-direction:column;
margin-left:15px;
align-items: flex-start;
margin-bottom: 15px;
}

#brochurepopupForm{
overflow:scroll;
}

#brochurepopupForm .popup-content{
margin-top:100px;

}





}

#schedule {
  scroll-margin-top: 120px;
}




@media (min-width:1700px){

.logo-section .container-fluid{
padding:0px;
}
.detail-container{
padding:0px;
}


}