/* Centralized CSS Variables */
:root {
  --font-size-base: 16px;
  --font-size-subhead: 2rem;
  --font-size-subpara: 1.5rem;
  --font-size-para: 1rem;
  --font-family-base: "Roboto", sans-serif;
  --color-primary: #a2d3f2;
  --color-accent: #f26622;
  --color-subhead: #2a5caa;
  --color-subpara: #1c2629;
  --color-subwhite: #ffffff;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
li,
ul,
span,
div,
input,
textarea,
label,
th,
td {
  /*font-family: var(--font-family-base) !important;*/
}

body {
  font-size: var(--font-size-base);
}

.navbar-brand {
  font-weight: bold;
  font-size: 22px;
  color: var(--color-accent) !important;
}

h2 {
  color: var(--color-subhead);
  font-size: var(--font-size-subhead);
}

.nav-link {
  font-weight: 500;
}

.nav-link:hover {
  color: var(--color-accent) !important;
}

/* Offer Cards Hover Effect */
/* Offer Cards */
.offer-card {
  position: relative;
  cursor: pointer;
  border-bottom: 6px solid var(--color-subhead);

  /* 👇 Base soft elevation */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* 👇 Smooth premium hover lift */
.offer-card:hover {
  transform: translateY(-10px) scale(1.02);

  /* 👇 Strong elevation shadow */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.offer-card .card-img-top {
  transition: transform 0.4s ease;
  height: 180px;
  object-fit: cover;
  border-bottom-right-radius: 60px;
}

/* Normal state - blue border */
.offer-card {
  border-bottom: 6px solid var(--color-subhead) !important;
}

/* Active/selected state - orange border */
.offer-card.active-card {
  border-bottom: 6px solid var(--color-accent) !important;
  box-shadow: 0 8px 25px rgba(187, 0, 7, 0.18) !important;
  transform: translateY(-4px);
}

/* card arrow */
.offer-card {
  position: relative;
}

/* Normal state - blue arrow */
.offer-card::before {
  content: "→";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: var(--color-subhead);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-top-left-radius: 12px;
}

/* Active/selected state - orange arrow */
.offer-card.active-card::before {
  background: var(--color-accent);
}

.offer-card:hover::before {
  transform: translateX(5px);
  transition: 0.3s;
}

/* Active Card */
.offer-card.active-card {
  /* border: 1px solid var(--color-accent) !important; */
  box-shadow: 0 8px 25px rgba(187, 0, 7, 0.18) !important;
  transform: translateY(-4px);
}

.offer-card.active-card .fw-bold {
  color: var(--color-accent);
}

.card-link {
  color: var(--color-accent);
}

/* FAQ Accordion */
.faq-accordion-wrap {
  border-left: 4px solid var(--color-accent);
  animation: fadeSlide 0.4s ease;
  padding: 12px 16px !important;
}

.faq-question {
  background: none;
  border: none;
  outline: none;
  text-align: left;
  padding: 5px 0;
  color: #222;
  font-size: var(--font-size-para);
  cursor: pointer;
  transition: color 0.2s;
}

/* Each faq item */
.faq-item {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  margin-bottom: 4px !important;
}

.faq-item.border-bottom {
  padding-bottom: 6px !important;
  margin-bottom: 6px !important;
}

.faq-answer {
  padding: 4px 0 4px 0;
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-icon {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-accent);
  transition: transform 0.3s ease;
  min-width: 24px;
  text-align: center;
}

.faq-icon.open {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 4px 0 4px 0;
  color: #666;
  font-size: var(--font-size-para);
  line-height: 1.7;
  animation: fadeSlide 0.3s ease;
}

.faq-answer.show {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sub Accordion */
.sub-accordion {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 6px !important;
  margin-top: 6px !important;
}

.sub-item {
  margin-bottom: 4px !important;
}

.sub-question {
  background: #fff;
  border: none;
  outline: none;
  font-size: var(--font-size-para);
  color: #333;
  cursor: pointer;
  transition:
    color 0.2s,
    background 0.2s;
  border-radius: 8px;
}

.sub-question:hover {
  color: #f26622;
  background: #fff5f5;
}

.sub-icon {
  font-size: 18px;
  font-weight: bold;
  color: #f26622;
  transition: transform 0.3s ease;
  min-width: 20px;
  text-align: center;
}

.sub-icon.open {
  transform: rotate(45deg);
}

.sub-answer {
  display: none;
  font-size: var(--font-size-para);
  color: #666;
  background: #fff;
  animation: fadeSlide 0.3s ease;
}

.sub-answer p {
  margin-bottom: 0 !important;
  margin-top: 4px !important;
}

.sub-answer.show {
  display: block;
}

.icon-circle {
  width: 70px;
  height: 70px;
  background-color: var(--color-subhead);
  /* Bootstrap primary blue */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  /* center */
}

.icon-circle i {
  color: #fff;
  /* white icon */
  font-size: 28px;
}

.feature-card {
  background-color: #f8f9fa;
  /* light gray */
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Accordion */
.faq-panel {
  transition: all 0.3s ease;
}

/* Hover / Active effect */
.feature-card:hover {
  transform: translateY(-8px);
  /* lift up */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background-color: #f1f3f5;
  /* slightly darker on hover */
}

/* Optional: active click effect */
.feature-card:active {
  transform: scale(0.98);
}

/* Blue Panel Slide Animation */
.blue-panel {
  transition:
    transform 0.5s cubic-bezier(0.77, 0, 0.175, 1),
    opacity 0.5s ease;
}

.blue-panel.slide-out {
  transform: translateX(-100%) !important;
  opacity: 0;
}

.blue-panel.slide-in {
  transform: translateX(0%) !important;
  opacity: 1;
}

/* Course Highlights */
.highlight-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-left: 4px solid #f26622 !important;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1) !important;
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background-color: #fff4ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon i {
  color: #f26622;
  font-size: 22px;
}

.highlight-badge {
  min-width: 36px;
  height: 36px;
  background-color: #f26622;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
}

@media (max-width: 991px) {
  #panel-wrapper {
    overflow: visible !important;
  }

  #panel-1,
  #panel-2 {
    width: 100% !important;
    height: auto !important;
    padding: 2rem 1.5rem !important;
    transition:
      opacity 0.4s ease,
      transform 0.4s ease !important;
  }

  /* Panel 1 - default visible */
  #panel-1 {
    position: relative !important;
    transform: translateX(0%) !important;
    opacity: 1 !important;
  }

  /* Panel 1 - slide out to left */
  #panel-1.slide-out {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    transform: translateX(-100%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  /* Panel 2 - default hidden to right */
  #panel-2 {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    transform: translateX(100%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  /* Panel 2 - slide in */
  #panel-2.slide-in {
    position: relative !important;
    transform: translateX(0%) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Fix testimonial circle images */
.card .rounded-circle {
  width: 60px !important;
  height: 60px !important;
  object-fit: cover !important;
  flex-shrink: 0;
}

/* ===== Modern Testimonial Cards ===== */
.testimonial-section {
  background-color: #dde8f3;
}

.testi-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 30px 28px;
  position: relative;
  box-shadow: 0 4px 24px rgba(42, 92, 170, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(42, 92, 170, 0.15);
}

/* Big quote symbol */
.quote-icon {
  font-size: 80px;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.15;
  font-family: Georgia, serif;
  position: absolute;
  top: 10px;
  left: 20px;
  font-weight: bold;
}

.testi-text {
  color: #444;
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 16px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

/* Stars */
.testi-stars {
  color: #f5a623;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* Author row */
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f0f0f0;
  padding-top: 16px;
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-accent);
  flex-shrink: 0;
}

.testi-name {
  font-size: 15px;
  font-weight: 700;
  color: #1c2629;
  margin-bottom: 2px;
}

.testi-role {
  font-size: 12px;
  color: #888;
}

/* Custom prev/next buttons */
.testi-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  background: transparent;
  color: var(--color-accent);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.testi-btn:hover {
  background: var(--color-accent);
  color: #fff;
}

.image-card {
  position: relative;
  overflow: hidden;
  height: 280px;
  /* FIXED HEIGHT */
  background: #f5f5f5;
  /* fallback color */
  border-radius: 12px;
  cursor: pointer;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* 👇 initially hidden (moved down) */
.image-card .overlay {
  position: absolute;
  bottom: -17px;
  width: 100%;
  padding: 12px;
  background: rgba(7, 119, 247, 0.8);
  color: #fff;
  transition: all 0.3s ease;
}

/* hover effect */
.image-card:hover .overlay {
  background: rgba(7, 119, 247, 0.8);
  padding-bottom: 18px;
}

.image-card:hover img {
  transform: scale(1.08);
}

/* ===== Course Fees Section ===== */
.fees-card {
  background: var(--color-subwhite);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  box-shadow: 0 4px 24px rgba(42, 92, 170, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-bottom: 5px solid var(--color-subhead);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fees-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(42, 92, 170, 0.15);
}

/* Featured card */
.fees-featured {
  background: var(--color-subhead);
  border-bottom: 5px solid var(--color-accent) !important;
  transform: translateY(-10px);
  box-shadow: 0 16px 48px rgba(42, 92, 170, 0.25) !important;
}

.fees-featured:hover {
  transform: translateY(-16px);
}

/* Badge */
.fees-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-subwhite);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Header */
.fees-header {
  text-align: center;
  margin-bottom: 20px;
}

.fees-icon {
  width: 60px;
  height: 60px;
  background: #f0f6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.fees-icon i {
  font-size: 26px;
  color: var(--color-subhead);
}

.fees-featured .fees-icon {
  background: rgba(255, 255, 255, 0.15);
}

.fees-featured .fees-icon i {
  color: var(--color-subwhite);
}

.fees-plan {
  font-size: var(--font-size-para);
  font-weight: 700;
  color: var(--color-subhead);
  margin-bottom: 4px;
}

.fees-featured .fees-plan {
  color: var(--color-subwhite);
}

.fees-sub {
  font-size: var(--font-size-para);
  color: var(--color-subpara);
  margin-bottom: 0;
  opacity: 0.6;
}

.fees-featured .fees-sub {
  color: var(--color-subwhite);
  opacity: 0.7;
}

/* Price */
.fees-price-wrap {
  text-align: center;
  margin-bottom: 24px;
  padding: 16px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.fees-featured .fees-price-wrap {
  border-color: rgba(255, 255, 255, 0.2);
}

.fees-currency {
  font-size: var(--font-size-subpara);
  font-weight: 700;
  color: var(--color-accent);
  vertical-align: top;
  margin-top: 10px;
  display: inline-block;
}

.fees-amount {
  font-size: var(--font-size-subhead);
  font-weight: 800;
  color: var(--color-subhead);
  line-height: 1;
}

.fees-featured .fees-amount {
  color: var(--color-subwhite);
}

.fees-period {
  font-size: var(--font-size-para);
  color: var(--color-subpara);
  opacity: 0.5;
  display: block;
  margin-top: 4px;
}

.fees-featured .fees-period {
  color: var(--color-subwhite);
  opacity: 0.6;
}

/* Features list */
.fees-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}

.fees-features li {
  font-size: var(--font-size-para);
  color: var(--color-subpara);
  padding: 7px 0;
  border-bottom: 1px solid #f5f5f5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fees-featured .fees-features li {
  color: var(--color-subwhite);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.fees-features li i {
  font-size: var(--font-size-para);
  color: var(--color-accent);
  flex-shrink: 0;
}

.fees-features li.disabled {
  opacity: 0.4;
}

.fees-features li.disabled i {
  color: var(--color-subpara);
}

/* Button */
.fees-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: var(--font-size-para);
  text-decoration: none;
  border: 2px solid var(--color-subhead);
  color: var(--color-subhead);
  transition: all 0.3s ease;
}

.fees-btn:hover {
  background: var(--color-subhead);
  color: var(--color-subwhite);
}

.fees-btn-featured {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-subwhite) !important;
}

.fees-btn-featured:hover {
  background: var(--color-subhead);
  border-color: var(--color-subhead);
}

/* EMI note */
.fees-emi-note {
  display: inline-block;
  background: var(--color-subwhite);
  border-radius: 50px;
  padding: 12px 28px;
  font-size: var(--font-size-para);
  color: var(--color-subpara);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

/* ===== Footer ===== */

/* Section heading */
.footer-heading {
  color: var(--color-subwhite);
  font-size: var(--font-size-para);
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: var(--color-accent);
  border-radius: 2px;
}

/* Nav links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: var(--font-size-para);
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: "›";
  color: var(--color-accent);
  font-size: 18px;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--color-subwhite);
  padding-left: 4px;
}

/* Contact list */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--font-size-para);
  line-height: 1.6;
}

.footer-contact li i {
  color: var(--color-accent);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Social icons */
.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-subwhite);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-subwhite);
  transform: translateY(-3px);
}

/* Bottom policy links */
.footer-policy-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: var(--font-size-para);
  transition: color 0.3s ease;
}

.footer-policy-link:hover {
  color: var(--color-accent);
}

.footer-logo {
  height: 60px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
  /* makes logo white for dark footer */
}

/* =========================
   WHO CARD
========================= */
.who-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

/* Image */
.who-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* =========================
   BLUE OVERLAY (BOTTOM)
========================= */
.who-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 76px;
  /* ← set a consistent baseline height */
  background: rgba(42, 92, 170, 0.85);
  padding: 10px;
  display: flex;
  /* ← flexbox for vertical alignment */
  align-items: center;
  /* ← centers text vertically */
}

/* Text */
.who-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 5px;
}

.who-text {
  color: #f1f1f1;
  font-size: 16px;
}

/* Hover */
.who-card:hover img {
  transform: scale(1.08);
}

/* ===== Info Cards with Overlay ===== */
.info-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  min-height: 300px;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.info-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.info-card:hover img {
  transform: scale(1.07);
}

/* Gradient overlay always visible at bottom */
.info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /*background: linear-gradient(
    to top,
    rgba(29, 122, 5, 0.4) 60%,
    /* reduced opacity  rgba(3, 88, 39, 0.1) 80%,
    /* softer fade  transparent 100%
  );*/
  padding: 24px 18px 18px;
}
/* Gradient overlay always visible at bottom */
.info-overlay-new {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /*background: linear-gradient(
    to top,
    rgba(29, 122, 5, 0.4) 60%,
    /* reduced opacity  rgba(3, 88, 39, 0.1) 80%,
    /* softer fade  transparent 100%
  );*/
  padding: 24px 18px 18px;
}

.info-title {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15),
                 0px 4px 12px rgba(0, 0, 0, 0.15);
    padding: 4px 10px;
    border-radius: 6px;
    width: 50%;
}

.info-text {
  display: inline-block;
  /* 🔥 key */
  background: rgb(255 226 0 / 90%);
  /* your bg color */
  color: black;
  font-size: 1rem;
  line-height: 1.6;
  padding: 6px 12px;
  /* space around text */
  border-radius: 6px;
  text-shadow: 0px 2px 6px rgb(255 255 255), 0px 4px 12px rgb(0 0 0);
}

/* Arrow link */
.info-arrow {
  display: inline-flex;
  align-items: center;
  color: #fff;

  font-size: 28px;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.info-arrow:hover {
  color: var(--color-accent);
  transform: translateX(6px);
}


/* enterprise-risk-style */

/* ── Banner ── */
.erm-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.erm-banner>img:first-child {
  width: 100%;
}

.erm-banner-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.erm-banner-content {
  max-width: 580px;
  padding: 0 48px;
  margin: 0 auto;
}

.erm-banner-tag {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.erm-banner-title {
  color: #fff;
  font-size: var(--font-size-subhead);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0px;

  /* 👇 ADD THIS */
  text-shadow:
    0 4px 10px rgba(0, 0, 0, 0.7),
    0 10px 25px rgba(0, 0, 0, 0.8);
}

.erm-banner-title span {
  color: var(--color-accent);
}

.erm-banner-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--font-size-para);
  line-height: 1.8;
  margin-bottom: 5px;
}

.erm-banner-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.erm-btn-primary {
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.3s;
}

.erm-btn-primary:hover {
  background: #d4541a;
  color: #fff;
}

.erm-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s;
}

.erm-btn-outline:hover {
  background: #fff;
  color: var(--color-subhead);
}

/* ── Logo ── */
.erm-banner-logo {
  position: absolute;
  top: 20px;
  left: 28px;
  height: 70px !important;
  width: 180px !important;
  object-fit: contain;
  border-radius: 0;
  z-index: 10;
  background-color: rgb(0 0 0 / 40%);
}

/* ── Breadcrumb bar ── */
.erm-breadcrumb-bar {
  background: var(--color-subhead);
  padding: 12px 0;
}

.erm-breadcrumb-bar .breadcrumb {
  margin: 0;
  background: transparent;
}

.erm-breadcrumb-bar .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.88rem;
}

.erm-breadcrumb-bar .breadcrumb-item.active {
  color: var(--color-accent);
  font-size: 0.88rem;
  font-weight: 600;
}

.erm-breadcrumb-bar .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* ── Module Cards ── */
.module-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
  border-bottom: 5px solid var(--color-subhead);
}

.module-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 48px rgba(42, 92, 170, 0.15);
  border-bottom-color: var(--color-accent);
}

.module-card-img {
  position: relative;
  overflow: hidden;
  height: 190px;
}

.module-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.module-card:hover .module-card-img img {
  transform: scale(1.07);
}

.module-card-number {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 38px;
  height: 38px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

.module-card-body {
  padding: 22px 22px 20px;
}

.module-card-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.module-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-subhead);
  margin-bottom: 10px;
  line-height: 1.4;
}

.module-card-desc {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}

.module-card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.module-card-meta span {
  font-size: 12px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 5px;
}

.module-card-meta i {
  color: var(--color-accent);
  font-size: 13px;
}

.module-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-subhead);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}

.module-card-link:hover {
  gap: 14px;
  color: var(--color-accent);
}

.module-card-link i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.module-card-link:hover i {
  transform: translateX(4px);
}

/* ── Section label ── */
.section-label {
  display: inline-block;
  background: #fff0e8;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ── Mobile Responsive ── */
@media (max-width: 767px) {

  /* Fix horizontal overflow / white space on right */
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .erm-banner {
    height: 320px;
    width: 100%;
    overflow: hidden;
    /* ← prevents banner from overflowing */
  }

  .erm-banner>img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .erm-banner-overlay {

    align-items: flex-end;
    padding-bottom: 28px;
    width: 100%;
    /* ← force full width */
    left: 0;
    /* ← anchor to left edge */
    right: 0;
    /* ← anchor to right edge */
  }

  .erm-banner-content {
    padding: 0 20px;
    max-width: 100%;
    width: 100%;
    /* ← force full width */
    box-sizing: border-box;
    /* ← padding included in width */
  }

  .erm-banner-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    word-break: break-word;
    /* ← prevents long words from pushing width */
  }

  .erm-banner-logo {
    height: 40px !important;
    width: 120px !important;
    top: 10px;
    left: 14px;
  }

  .erm-banner-btns {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
    /* ← prevent buttons from overflowing */
  }

  .erm-btn-primary,
  .erm-btn-outline {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    box-sizing: border-box;
    /* ← padding included in width */
  }
}

/* ── Topic Cards (No Image) ── */
.topic-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 5px solid var(--color-subhead);
  height: 100%;
  /* height: auto !important; */
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-bottom-color 0.3s ease;
}

.topic-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 48px rgba(42, 92, 170, 0.15);
  border-bottom-color: var(--color-accent);
}

/* Card Header — number + title */
.topic-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.topic-number {
  min-width: 38px;
  height: 38px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.topic-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-subhead);
  line-height: 1.4;
  margin: 0;
}

/* List of topics */
.topic-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}

.topic-list li {
  font-size: 0.88rem;
  color: #555;
  padding: 8px 0;
  border-bottom: 1px dashed #e8e8e8;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}

.topic-list li::before {
  content: "→";
  color: var(--color-accent);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.topic-list li:last-child {
  border-bottom: none;
}

/* Footer — hours and mode */
.topic-footer {
  display: flex;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
  flex-wrap: wrap;
}

.topic-footer span {
  font-size: 12px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 5px;
}

.topic-footer i {
  color: var(--color-accent);
  font-size: 13px;
}

.courses-banner {
  background: url('img/sub-banner-img.jpg') center/cover no-repeat;
  padding: 60px 20px;
  position: relative;
  color: white;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  /* optional for readability */
}

.courses-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(144, 238, 144, 0.4);
  /* light green overlay */
}

.courses-title {
  font-size: var(--font-size-subhead);
  font-weight: 700;
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
}

.courses-subtitle {
  font-size: var(--font-size-para);
  color: #f1f1f1;
  position: relative;
  z-index: 1;
}

/*    Submit Enquiry*/
.btn-accent {
  background-color: var(--color-accent, #f26622);
  border: none;
  color: white;
  transition: background 0.3s ease;
}

.btn-accent:hover {
  background-color: #f26622;
  /* slightly darker on hover */
}

.floating-icons {
  position: fixed;
  bottom: 32px;
  left: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 9999;

  animation: slideInLeft 0.6s ease;
}

.float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

  transition: transform 0.3s, box-shadow 0.3s;

  /* Floating animation */
  animation: floatY 2.5s ease-in-out infinite;
}

.float-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* Delay each icon slightly */
.float-icon:nth-child(1) {
  animation-delay: 0s;
}

.float-icon:nth-child(2) {
  animation-delay: 0.2s;
}

.float-icon:nth-child(3) {
  animation-delay: 0.4s;
}

/* Colors */
.float-icon.whatsapp {
  background-color: #25D366;
}

.float-icon.phone {
  background-color: #f26622;
}

.float-icon.form {
  background-color: #007bff;
}

/* 🔥 Floating effect */
@keyframes floatY {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }
}

/* 🚀 Slide in from left */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 💥 Optional pulse (apply to one icon only if needed) */
.float-icon.whatsapp {
  animation: floatY 2.5s ease-in-out infinite,
    pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.course-title {
  color: var(--color-subhead);
  display: flex;
  align-items: center;
  /* Keeps icon and text vertically centered */
  gap: 10px;
  font-weight: 600;
  /* Adds space between the icon and text */
}

.course-title::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url('img/star-icon.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.our-course-section {
  background: linear-gradient(rgb(0 0 0 / 70%), rgb(0 0 0 / 70%)),
    url('img/sub-banner-img.jpg') center/cover no-repeat;

  /* Optional tweaks */
  color: #fff;
  /* makes text visible */
}

/* Accordion list items — look normal, act clickable */
.topic-list>li[data-content] {
  cursor: pointer;
}

.topic-list>li[data-content]:hover {
  color: var(--color-accent);
}

.topic-list>li[data-content].active {
  color: var(--color-accent);
  font-weight: 600;
}

.topic-list>li .arrow {
  font-size: 10px;
  transition: transform 0.2s;
  display: inline-block;
  color: #888;
  margin-left: auto;
}

.our-course-section .row .col-md-6 {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);

}

.topic-list>li.active .arrow {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.accordion-body {
  background: #f7f9ff;
  border-left: 3px solid var(--color-subhead);
  border-radius: 0 6px 6px 0;
  padding: 0 14px;
  font-size: 13px;
  color: #444;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  margin-bottom: 0;
}

.accordion-body.open {
  max-height: 200px;
  padding: 10px 14px;
  margin-bottom: 4px;
}

.animate-pulse {
  animation: pulseGlow 1.2s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 102, 34, 0.5);
    transform: scale(1);
  }

  70% {
    box-shadow: 0 0 16px 8px rgba(242, 102, 34, 0.25);
    transform: scale(1.06);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(242, 102, 34, 0.5);
    transform: scale(1);
  }
}

#backToTop {
  display: none;
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  background: var(--color-accent, #f26622);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.7) translateY(40px);
  transition:
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#backToTop.show {
  display: block;
  opacity: 1;
  transform: scale(1) translateY(0);
}

#backToTop:hover {
  box-shadow: 0 4px 16px rgba(242, 102, 34, 0.25);
  transform: scale(1.1) translateY(-4px);
}

/* Meena New css */
.title h2 {
  color: var(--color-subhead);
  font-size: clamp(2rem, 5vw, 3rem);
}

.bg {
  background-color: var(--color-primary)
}

.leader h2 {
  color: var(--color-1c2629);
  font-size: var(--font-size-subhead);
}

.read-more-button {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;

}

.read-back {
  background-color: var(--color-primary);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateX(100%);

}

.subpara-color {
  color: var(--color-1c2629)
}

.courses {
  color: var(--color-subwhite);
  font-size: var(--font-size-subhead);
}

.apply-now-button {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  font-size: var(--font-size-para);
  letter-spacing: 0.5px;
  box-shadow: 0 2px 12px rgba(242, 102, 34, 0.15);
  transition: transform 0.15s;
}

.subhead-color {
  color: var(--color-subhead)
}

.subhead-bg {
  background-color: var(--color-subhead)
}

.fs18 {
  font-size: 18px;
}

.sub-white {
  color: var(--color-subwhite);
}

.accent-color {
  color: var(--color-accent)
}

.footer-para {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-para);
  line-height: 1.8;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--font-size-para);
}

.sub-para {
  color: var(--color-1c2629);
  font-size: var(--font-size-para);
}

.about-wrap {
  font-family: 'DM Sans', sans-serif;
  padding: 5rem 2rem;
}

.about-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.about-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: #888;
}

.about-headline {
  /*font-family: "Roboto", sans-serif !important;*/
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 0.5rem;
}

.about-headline em {
  font-style: italic;
  color: #1D9E75;
}

.about-body {
  font-size: 17px;
  /*font-weight: 300;*/
  line-height: 1.8;
  /*font-family: "Roboto", sans-serif !important;*/
  color: #666;
  margin: 1.5rem 0 3rem;
}
.about-body-new {
  font-size: 17px;
  /*font-weight: 300;*/
  line-height: 1.4;
  /*font-family: "Roboto", sans-serif !important;*/
  color: #666;
}

.accent-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 99px;
  border: 1px solid #ddd;
  color: #666;
  margin-bottom: 3rem;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1D9E75;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}


/* Meena New css about */

.course-card {
  background: #fff;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: background .2s;
}

.course-card:hover {
  background: #f9f9f9;
}

.course-num {
  font-family: "Roboto", sans-serif !important;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #1D9E75;
}

.course-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.course-icon svg {
  width: 16px;
  height: 16px;
  stroke: #333;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.course-desc {
  font-size: 12px;
  font-weight: 300;
  color: #888;
  line-height: 1.6;
  margin: 0;
}

.divider-line {
  width: 100%;
  height: 1px;
  background: #eee;
  margin: 3rem 0;
}

.stat-row {
  display: flex;
  gap: 3rem;
}

.stat-num {
  font-family: "Roboto", sans-serif !important;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: #888;
  font-weight: 300;
  margin-top: 4px;
}

.pw-tag {
  font-family: "Roboto", sans-serif !important;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-subhead);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
}

.pw-tag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: #1D9E75;
  display: block;
}

.pw-headline {
  font-family: "Roboto", sans-serif !important;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.1;
}

.pw-headline em {
  font-style: italic;
  color: #1D9E75;
}

.pw-intro {
  /*font-family: "Roboto", sans-serif !important;*/
  font-size: 17px;
  /*font-weight: 300;*/
  line-height: 1.7;
  color: var(--bs-secondary-color) !important;
}

.pw-divider {
  height: 1px;
  background: #eee;
  margin: 3rem 0;
}

.pw-sublabel {
  font-family: "Roboto", sans-serif !important;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-subhead);
  margin-bottom: 1.2rem;
}

.pw-examples {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #eee;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
}

.pw-ex {
  background: #fff;
  padding: 1.1rem 1.5rem;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  align-items: start;
  transition: background .2s;
}

.pw-ex:hover {
  background: #f9f9f9;
}

.pw-ex-role {
  font-family: "Roboto", sans-serif !important;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-accent);
  padding-top: 3px;
}

.pw-ex-text {
  font-family: "Roboto", sans-serif !important;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

.pw-method-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.6rem;
  height: 100%;
}

.pw-method-alpha {
  font-family: "Roboto", sans-serif !important;
  font-size: 2.2rem;
  font-weight: 800;
  color: #ddd;
  line-height: 1;
  margin-bottom: 14px;
}

.pw-method-body {
  /*font-family: "Roboto", sans-serif !important;*/
  font-size: 17px;
  /*font-weight: 300;*/
  line-height: 1.7;
  color: black;
  margin: 0;
}

.pw-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2.5rem;
  border-top: 1px solid #eee;
  margin-top: 3rem;
}

.pw-brand {
  font-family: "Roboto", sans-serif !important;
  font-size: 1.1rem;
  font-weight: 800;
}

.pw-brand span {
  color: #1D9E75;
}

.pw-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #888;
  border: 1px solid #ddd;
  padding: 8px 18px;
  border-radius: 99px;
}

.pw-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1D9E75;
  animation: bl 2s infinite;
  flex-shrink: 0;
}

@keyframes bl {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .15
  }
}



/* Meena New css faster on a satisfying job? */


.pe-eyebrow {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #888;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
}

.pe-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: #1D9E75;
  display: block;
}

.pe-big-q {
  font-family: "Roboto", sans-serif !important;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 3rem;
  color: white;
}

.pe-big-q em {
  color: #f26622;
  font-style: italic;
}

.pe-pillar {
  display: grid;
  grid-template-columns: 56px 260px 1fr;
  gap: 0;
  border-top: 1px solid #eee;
  padding: 2.5rem 0;
  align-items: start;
}

.pe-pillar:last-of-type {
  border-bottom: 1px solid #eee;
}

.pe-pnum {
  font-family: "Roboto", sans-serif !important;
  font-size: 3rem;
  font-weight: 800;
  color: #e0e0e0;
  line-height: 1;
}

.pe-ptitle {
  font-family: "Roboto", sans-serif !important;
  font-size: 1rem;
  font-weight: 800;
  color: #111;
  line-height: 1.3;
  padding-right: 3rem;
  padding-top: 6px;
}


/* Glassmorphism cards */
.trendy-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  color: #fff;
  transition: all 0.35s ease;
  overflow: hidden;
  position: relative;
}

/* Hover effect */
.trendy-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Card title */
.trendy-card .card-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-family: "Roboto", sans-serif !important;
}

/* Text styling */
.trendy-card .card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
  /*font-family: "Roboto", sans-serif !important;*/
}

/* Subtle glow accent */
.trendy-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 60%);
  transform: rotate(25deg);
  pointer-events: none;
}


.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Icon styling */
.feature-list .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Highlight last point */
.feature-list li strong {
  color: #00c6ff;
}

.more-content {
  display: none;
}

/* Button styling */
.read-more-btn {
  background: none;
  border: none;
  color: #00c6ff;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
  padding: 0;
}

.read-more-btn:hover {
  text-decoration: underline;
}

.card-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

/* Stylish number */
.step-number {
  font-size: 18px;
  font-weight: 700;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;

  /* Gradient background */
  background: linear-gradient(135deg, #00c6ff, #2a5caa);
  color: #fff;

  /* Glow effect */
  box-shadow: 0 5px 15px rgba(0, 114, 255, 0.4);
}

.fs19 {
  font-size: 19px;
}

.pw-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  height: 100%;
  /*font-family: "Roboto", sans-serif !important;*/
  /* shadow */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  /* smooth hover */
  transition: all 0.3s ease;
}

.pw-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.pw-card img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 20px;
}

.pw-card h5 {
  /*font-family: "Roboto", sans-serif !important;*/
  font-weight: 600;
  margin-bottom: 10px;
}

.pw-card p {
  /*font-family: "Roboto", sans-serif !important;*/
  font-size: 16px;
  /*font-weight: 300;*/
  line-height: 1.7;
  color: #434343;
  margin: 0;
}

/* Card A */
.card-a {
  background: #eef6ff;
  border-color: #b6d4fe;
}

/* Card B */
.card-b {
  background: #f0fff4;
  border-color: #a7e3c2;
}

/* Card C */
.card-c {
  background: #fff5f5;
  border-color: #f5b5b5;
}

/* alpha A */
.alpha-a {
  color: #004fbd;
}

/* alpha B */
.alpha-b {
  color: #00ad4e;
}

/* alpha C */
.alpha-c {
  color: #af0000;
}

.bg-light-blue {
  background-color: #dde8f3;
}

.bg-light-gray {
  background-color: #efefef;
}

.justify {
  text-align: justify;
}

.iti {
  width: 100%;
}

.iti input {
  width: 100%;
}

.course-card-new {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.course-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.course-card-new img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.course-card-new:hover img {
  transform: scale(1.07);
}
.fs20{
  font-size: 20px;
}
/* Mobile view */
@media (max-width: 768px) {
  .course-card-new img {
    height: 95px;
     width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px !important;
  }
      .course-card-new {
    border-radius: 16px !important;
    overflow: hidden !important;
    min-height: 120px;
    position: relative;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
  }
    .info-overlay-new {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }

}
/* Mobile view */
@media (max-width: 768px) {
    .info-card {
    border-radius: 16px !important;
    overflow: hidden !important;
    min-height: 120px;
    position: relative;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
  }

  .info-card img {
    height: 115px !important;
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px !important;
  }
  .info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 22px 11px 2px !important;
  }

  .info-title {
    font-size: 15px !important;
    width: 80%;
  }

  .info-text {
    font-size: 12px !important;
  }

  .info-card img {
    height: auto !important;
  }
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}
input::placeholder,
textarea::placeholder{
    color: #666;     /* placeholder color */
    font-size: 14px;    /* placeholder size */
    opacity: 2;         /* keeps full color visibility */
}
