/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap"); */

/*--------------------prashant common styling---------------------------*/
body {
  font-family: "Poppins", sans-serif;
}

.black-one {
  color: #0a0a0a;
}

.black-two {
  color: #242424;
}

.black-three {
  color: #000;
}

.common-bg-one {
  background-color: #f8f4ef;
}
.common-upper-heading {
  font-size: 23px;
  font-weight: 500;
  color: #b53131;
}

.common-heading {
  font-size: 55px;
  text-transform: capitalize;
  font-weight: 600;
  color: #242424;
}

.custom-padding {
  padding: 0 170px;
}

.common-para {
  font-size: 18px;
  color: #000;
  font-weight: 400;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.break-column {
  column-count: 2;
}

.bottom-navbox {
  transition: top 5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
button:focus:not(:focus-visible) {
  box-shadow: none;
}

@keyframes slideDown {
  from {
    top: -100px;
  }

  to {
    top: 0;
  }
}
*:focus-visible {
  outline: none;
  box-shadow: none;
}
/* -----------------------------------Header css------------------------- */

header {
  position: sticky;
  top: 0;
  width: 100%;
  left: 0;

  z-index: 5;
  background-color: #fff !important;
}

header .top-navbox {
  background: #b53131;
}

header .top-navbox .left ul li a {
  position: relative;
  color: var(--mainWhite);
  width: 45px;
  font-size: 15px;
  line-height: 50px;
  z-index: 1;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-block;
  text-align: center;
}

header .top-navbox .left ul li a::before {
  background: #333;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  bottom: 100%;
  z-index: -1;
  transition: all 0.2s linear;
}

header .top-navbox .right a {
  font-size: 14px;
}

header .top-navbox .left ul li a:hover:before {
  opacity: 1;
  bottom: 0;
  top: 0;
}

header .bottom-navbox .search-icon {
  background: var(--mainRed);
  display: inline-block;
  color: var(--mainWhite);
  line-height: 35px;
  width: 35px;
  text-align: center;
  font-size: 13px;
  margin-left: 30px;
  border-radius: 3px;
}

header .bottom-navbox .search-icon:hover {
  background: var(--mainDark);
}

header .main-logo {
  height: 50px;
  width: auto;
  display: block;
}

.navbar {
  z-index: 5;
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: #0a0a0a;
  font-size: 16px;
}

.is-fixed .navbar-nav .nav-link {
  color: #fff;
}

.navbar-nav .nav-link svg:not(:root).svg-inline--fa {
  color: #333;
  font-size: 16px;
  margin-left: 6px;
  height: 10px;
  transition: 0.3s;
}

.is-fixed .navbar-nav .nav-link svg:not(:root).svg-inline--fa {
  color: #fff;
}

/* .navbar-nav .nav-link:hover {
  color: var(--orange);
} */

.navbar-nav .nav-item {
  position: relative;
  padding: 0 5px;
}

.navbar-nav .sub-menu {
  position: absolute;
  top: 70px;
  left: 0;
  padding: 10px 20px;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 10;

  width: max-content;
  min-width: 200px;
  max-width: 310px;
  margin: 0;
  padding: 20px 0;
  background-color: #fff;
  font-weight: 300;
}

.navbar-nav .sub-menu li {
  padding: 0 10px;
}

.navbar-nav .sub-menu li .nav-link {
  display: block;
  margin: 4px 0;
  color: #242424;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}

.navbar-nav .nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 43px;
}

.btn-apply,
.btn-login {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 17px;
  font-weight: 500;
  font-size: 15px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 12px;
}

/* Apply Button */
.btn-apply {
  background: #b53131;
  color: #fff;
}

.btn-apply:hover {
  background: #242424;
}

/* Login Button */
.btn-login {
  padding: 0;
  background-color: transparent;
  color: #242424;
}

/* .btn-login:hover {
  background: #3ea3c9;
  color: #fff;
} */
.btn-login svg {
  height: 28px;
  width: 28px;
}

/* Icon spacing */
.btn-login i {
  margin-right: 6px;
}

/* .fixed-top .btn-login {
  color: #fff;
} */
.white-logo {
  display: none !important;
}

.orignal-logo {
  display: block;
}

.is-fixed .white-logo {
  display: block !important;
}

.is-fixed .orignal-logo {
  display: none;
}

.is-fixed .btn-login {
  color: #fff;
}

.is-fixed .btn-apply:hover {
  background: #b53131;
}

/* Fixed header on scroll */
.bottom-navbox.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #242424;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
  animation: slideDown 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Wapas jaate waqt */
.bottom-navbox.is-hiding {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #242424;
  animation: slideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideDown {
  from {
    top: -100px;
  }

  to {
    top: 0;
  }
}

@keyframes slideUp {
  from {
    top: 0;
  }

  to {
    top: -100px;
  }
}

.bottom-navbox {
  position: sticky;
  top: 0;
  z-index: 999;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bottom-navbox.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #242424;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bottom-navbox.is-fixed.do-hide {
  transform: translateY(-100%);
}

.is-fixed .white-logo {
  display: block !important;
}

.is-fixed .orignal-logo {
  display: none;
}

.is-fixed .btn-login {
  color: #fff;
}

.is-fixed .btn-apply:hover {
  background: #b53131;
}



/*----------home page css------------*/

/* ------------------hero css start------------------------------ */
.hero {
  background: #f8f4ef;
  min-height: calc(100vh - 82px);
  padding: 70px 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 0;
}

/* ── LEFT CONTENT ── */
.hero-left {
  max-width: 500px;
  position: relative;
  z-index: 3;
}

.hero-title {
  font-size: 85px;
  font-weight: 700;
  color: #242424;
  line-height: 1.11;
  margin-bottom: 22px;
}

.hero-title .outline {
  -webkit-text-stroke: 2.5px #1a1a1a;
  color: transparent;
}

.hero-title .star {
  font-size: 72px;
  color: #e8472a;
  -webkit-text-stroke: 0;
  color: #b53131;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  line-height: 1.35;

  padding-right: 56px;
  margin-bottom: 30px;
}

/* ── SEARCH BAR ── */
.search-wrap {
  display: flex;
  display: none;
  align-items: center;
  background: #fff;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  max-width: 380px;
  margin-bottom: 34px;
}

.search-wrap input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 18px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #555;
  background: transparent;
}

.search-wrap input::placeholder {
  color: #aaa;
}

.search-wrap button {
  background: #1a1a1a;
  border: none;
  padding: 0 18px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.search-wrap button:hover {
  background: #333;
}

/* ── REVIEW ROW ── */
.review-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatars {
  display: flex;
}

.avatars .av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2.5px solid #f5f0e8;
  margin-right: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
}

.av-1 {
  background: #e8a87c;
}

.av-2 {
  background: #7cb8e8;
}

.av-3 {
  background: #a87ce8;
}

.av-4 {
  background: #7ce8a8;
}

.av-plus {
  background: #e8472a;
  font-size: 20px;
  font-weight: 700;
}

.review-info .score {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
}

.review-info .label {
  font-size: 12px;
  color: #000;
}

/* ── RIGHT SIDE ── */
.hero-right {
  position: relative;
  z-index: 2;
  height: 100%;
}

/* ── DECORATIVE SHAPES ── */
.shape {
  position: absolute;
  z-index: 1;
}

.shape-blue {
  width: 190px;

  height: 242px;
  width: 242px;
  background: #3ea3c9;

  top: -161px;
  right: 331px;
  clip-path: ellipse(50% 100% at 50% 100%);
  clip-path: circle(50% at 50% 98%);
}

.shape-red {
  animation: upDown 4s ease-in-out infinite;
  width: 145px;
  height: 145px;
  text-align: center;
  background: #b53131;
  border-radius: 50%;
  bottom: -95px;
  /* right: 365px; */
  left: -5px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes upDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}

.shape-red h2 {
  text-align: center;
  margin-bottom: 0px;
  color: #fff;
}

.shape-red span {
  font-size: 17px;
  color: #fff;
  font-weight: 500;
  line-height: 20px;
  display: block;
  margin-top: 2px;
}

.shape-yellow {
  width: 100px;
  height: 217px;
  background: #e8b84b;
  border-radius: 70px;
  bottom: 15px;
  right: -45px;
  z-index: 1;

  bottom: -94px;
}

.shape-star {
  animation: upDown 2s ease-in-out infinite;
  position: absolute;
  top: -43px;
  right: 55px;
  z-index: 1;
  font-size: 44px;
}
/* ── VIDEO CARDS ── */
.video-card {
  position: absolute;
  overflow: hidden;
  z-index: 3;
}
/* Left video — tall rectangle with rounded top */
.video-left {
  width: 380px;
  height: 450px;
  left: -29px;
  top: 70px;
  border-bottom-left-radius: 195px;
}

/* Right video — arch / rounded top-left only */
.video-right {
  width: 380px;
  height: 450px;
  /* right: 65px; */
  top: 0px;
  left: 365px;
  border-top-right-radius: 195px;
}

.video-card video,
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero .hero-contact-plus-location {
  display: flex;
  margin-top: 20px;
}
.hero .hero-contact-plus-location .btn-apply.home-phone {
  font-size: 18px;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid #242424;
  color: #242424;
  margin-left: 0;
}
.hero .hero-contact-plus-location .btn-apply.home-location {
  padding: 8px 16px;
  font-size: 18px;
}
/* ------------------hero css end------------------------------- */

/* -----------------counter css start------------------------------- */
.counter-section {
  background: #242424;
  padding: 35px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.counter-item {
  flex: 1;
  text-align: center;
  position: relative;
}
/* Vertical divider between items */
.counter-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5px;
  height: 70px;
  background: rgba(255, 255, 255, 0.3);
}

.counter-number {
  font-size: 65px;
  font-weight: 700;
  color: #e8d770;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.counter-label {
  font-size: 23px;
  font-weight: 300;
  color: #ffffff;
}

/* -----------------counter css End------------------------------- */

/* ---------------categories css start-------------------------------- */
.categories-section {
  background: #f5f0e8;
  padding: 100px 80px;
}

.categories-section .ec-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 35px;
  border: 1px solid #ececec;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.categories-section .ec-card .ec-card-header {
  background: #f4f4f4;
  min-height: 100px;
  border-bottom: 1px solid #ececec;
  padding: 1rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.categories-section .ec-card .ec-card-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.categories-section .ec-card .ec-card-icon {
  width: 48px;
  height: 48px;
  background: #e8f5ee;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* MS Office */
.ec-card-icon.one {
  background: #eaf4ff !important;
}

.ec-card-icon.one svg {
  stroke: #1a73e8;
  fill: #1a73e8;
}

/* Advance Courses */
.ec-card-icon.two {
  background: #fffbe8 !important;
}

.ec-card-icon.two svg {
  stroke: #f57c00;
  fill: #f57c00;
}

/* Excel & Analytics */
.ec-card-icon.four {
  background: #f5e8ff !important; /* purple background */
}
.ec-card-icon.four svg {
  stroke: #6a1b9a; /* purple stroke */
  fill: #6a1b9a;
}

/* Tally & GST */
.ec-card-icon.three {
  background: #fff4e8; /* green background */
}
.ec-card-icon.three svg {
  stroke: #1d6f42; /* green stroke */
  fill: #1d6f42;
}

/* Graphic Designing */
.ec-card-icon.five {
  background: #ffe8f0 !important;
}

.ec-card-icon.five svg {
  stroke: #d81b60;
  fill: #d81b60;
}

/* Web Design & Marketing */
.ec-card-icon.six {
  background: #e8f0ff !important;
}

.ec-card-icon.six svg {
  stroke: #1a73e8;
  fill: #1a73e8;
}

.categories-section .ec-card .ec-card-icon svg {
  height: 30px;
  width: 30px;
}

.categories-section .ec-card .ec-card-header-title {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.3;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.categories-section .ec-card .ec-card-header-sub {
  font-size: 12px;
  color: #888;
  margin: 2px 0 0;
  font-family: "Poppins", sans-serif;
  display: none;
}

.categories-section .ec-card .ec-card-num {
  font-size: 40px;
  font-weight: 700;
  color: #e0e0e0;
  line-height: 1;
  left: 11px;
  position: relative;
  font-family: "Poppins", sans-serif;
}

.categories-section .ec-card .ec-card-body {
  padding: 1.4rem 1.6rem;
}

.categories-section .ec-card .ec-card-desc {
  font-size: 16px;
  color: #212121;
  opacity: 0.85;
  line-height: 1.7;
  margin: 0 0 1.2rem;
  font-family: "Poppins", sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.categories-section .ec-card .ec-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #f5f5f5;
}

.categories-section .ec-card .ec-card-price {
  font-size: 17px;
  font-weight: 600;
  color: #c22424;
  font-family: "Poppins", sans-serif;
}

.categories-section .ec-card .ec-card-link {
  font-size: 13px;
  font-weight: 600;
  color: #242424;
  border: 1px solid #242424;
  text-decoration: none;
  /* padding: 5px 16px; */
  border-radius: 20px;
  display: flex;
  align-items: center;
  /* gap: 5px; */
  font-family: "Poppins", sans-serif;
  height: 25px;
  background: #dedede;
  width: 25px;
  justify-content: center;
}

.categories-section .ec-card .ec-card-link svg path {
  stroke: #242424;
}
/* ── HEADING ── */
.section-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.section-tag span {
  font-size: 18px;
}

/* ---------------categories css end-------------------------------- */

/* ----------------------right-coursecss start---------------------------- */
.right-course {
  padding: 60px 80px;
  background: #f5f0e8;
}

.right-course-wrapper {
  background-color: #77c9e0;
  /* base color */
  background-image: url("../images/grid.webp");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  padding: 30px 50px 30px 90px;

  /* border-bottom-right-radius: 160px; */
  border-top-left-radius: 160px;
}

.right-course-wrapper .common-para {
  margin-top: 25px;
  font-size: 20px;
}

.right-course-wrapper-left {
  position: relative;
  /* bottom: 30px; */
}

.right-course .right-course-wrapper .right-course-badge {
  display: inline-block;
  background: linear-gradient(
    90deg,
    #b53131 0%,
    #b53131 35%,
    #cc4444 48%,
    #e06060 50%,
    #cc4444 52%,
    #b53131 65%,
    #b53131 100%
  );
  background-size: 300% 100%;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  padding: 4px 20px 4px 6px;
  border-radius: 20px;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: badge-shimmer 1.5s infinite linear;
}

@keyframes badge-shimmer {
  0% {
    background-position: 100% center;
  }

  100% {
    background-position: 0% center;
  }
}

.right-course .right-course-wrapper .right-course-title {
  font-size: 50px;
  font-weight: 700;
  color: #242424;
  margin: 0 0 4px;

  line-height: 36px;
}

.right-course .right-course-wrapper .right-course-subtitle {
  font-size: 19px;
  color: #1a2e2a;
  font-style: italic;
  margin: 0 0 1.2rem;
}

.right-course .right-course-wrapper .right-course-price {
  display: flex;
  align-items: center;
  gap: 10px;
  /* margin-bottom: 0.8rem; */
  margin-top: 33px;
  line-height: 23px;
}

.right-course .right-course-wrapper .right-course-price-current {
  font-size: 28px;
  font-weight: 700;
  color: #1a2e2a;
}

.right-course .right-course-wrapper .right-course-price-original {
  font-size: 20px;
  color: #2d5a4a;
  text-decoration: line-through;
}

.right-course .right-course-wrapper .right-course-price-off {
  background: #207c3d;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
}

.right-course .right-course-wrapper .right-course-duration {
  font-size: 17px;
  color: #1a2e2a;
  margin: 0 0 30px;
}

.right-course .right-course-wrapper .right-course-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.right-course .right-course-wrapper .right-course-benefits li {
  font-size: 18px;
  color: #1a2e2a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.right-course .right-course-wrapper .right-course-benefits li::before {
  content: "";
  width: 17px;
  height: 17px;
  min-width: 17px;
  background-color: #1a6e55;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.right-course-link-box {
  display: flex;
  margin-top: 30px;
}
.right-course-link-box .course-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;

  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
  padding: 4px 17px;
  background: #fff;
  border: 1px solid #242424;
  color: #242424;
  margin-left: 12px;
}
.right-course-link-box .courseoffer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 17px;
  font-weight: 500;
  font-size: 15px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;

  padding: 4px 17px;
  font-size: 18px;
  background: #b53131;
  color: #fff;
}
.right-course-link-box .courseoffer:hover {
  background: #242424;
}
/* ----------------------right-coursecss end---------------------------- */

/* ----------------------skillcsstart--------------------------------- */
section.skill {
  background: #f5f0e8;
  padding: 70px 0;
  padding-top: 35px;
}

.skill-heading {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 48px;
}

/* ── CARD ── */
.skill-card {
  background: #fff;
  border-radius: 12px;
  /* padding: 22px 20px; */
  /* display: flex; */
  align-items: center;
  gap: 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  transition:
    box-shadow 0.22s,
    transform 0.22s;
  height: 100%;
  padding: 10px 20px;
  padding-top: 20px;
}

.skill-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
}
.skill-pic-filler {
  height: 100%;
}
.skill-pic-wrapper {
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid #fff;
}

.skill-pic-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Circle icon */
.skill-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #e8e2d9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.skill-icon svg {
  width: 30px;
  height: 30px;
}

/* Text */
.skill-card-body {
  flex: 1;
}

.skill-meta {
  font-size: 18px;
  font-weight: 500;
  color: #b73430;

  margin: 13px 0 5px 0;
  display: none;
}

.skill-title {
  font-size: 18px;
  font-weight: 600;
  color: #b73430;
  margin: 15px 0 10px 0;
}

.skill-desc {
  font-size: 16px;
  color: #242424;
  line-height: 1.3;
  margin-bottom: 10px;
}

.skill-footer {
  display: flex;
  gap: 18px;
  font-size: 12px;
  color: #aaa;
}

.skill-footer span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.skill-footer svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.btn-view-all {
  display: inline-block;
  background: #b73430;
  /* border: 2px solid #1a1a1a; */
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  /* letter-spacing: 0.08em; */
  padding: 7px 17px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: 8px;
}

.btn-view-all:hover {
  background: #9e2c29;
  border-color: #9e2c29;
  color: #fff;
}

/* ---------------------skillcss end-------------------------------- */
/* -----------------------alumini css start--------------------------------- */
.alumini {
  padding: 70px 0;
  background-color: #f5f0e8;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.carousel-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 16px 0;
}

.carousel-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 180px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to right, #f5f0e8 10%, transparent 100%);
}

.carousel-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 180px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to left, #f5f0e8 10%, transparent 100%);
}

.carousel-wrap::before {
  background: linear-gradient(to right, #f5f0e8 10%, transparent 100%);
}

.carousel-wrap::after {
  background: linear-gradient(to left, #f5f0e8 10%, transparent 100%);
}

/* ── Track ── */
.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── Card ── */
.alumni-card {
  width: 220px;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.alumni-card:hover {
  transform: scale(1.02);
}

.alumni-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* -----------------------alumini css end--------------------------------- */
/* ---------------------footercss start------------------------------------------- */

/* ── FOOTER MAIN ── */
.footer-main {
  background: #fff;
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

/* ── SHAPES ── */
.deco-star-yellow {
  position: absolute;
  top: -10px;
  left: 38%;
}

.deco-star-blue {
  position: absolute;
  top: 30px;
  right: 100px;
}

.deco-pink {
  position: absolute;
  bottom: 50px;
  right: -50px;
  width: 130px;
  height: 130px;
  background: #e4f0fe;
  border-radius: 50%;
  clip-path: inset(0 50px 0 0);
}

.deco-blue-circle {
  position: absolute;
  bottom: -30px;
  left: -40px;
  width: 140px;
  height: 140px;
  background: #e4f5e4;
  border-radius: 50%;
  clip-path: inset(0 0 30px 40px);
}

/* ── SUBSCRIBE ── */
.sub-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.sub-form {
  display: flex;
  align-items: center;
  background: #f5f0e8;
  border-radius: 8px;
  padding: 4px 4px 4px 16px;
  margin-bottom: 34px;
}

.sub-form input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #555;
  padding: 10px 0;
}

.sub-form input::placeholder {
  color: #bbb;
}

.sub-form button {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: #b53131;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.sub-form button:hover {
  background: #c93a20;
}

/* ── NAVIGATE ── */
footer .nav-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 18px;
}

footer .nav-link-item {
  display: flex;
  align-items: self-start;
  gap: 7px;
  font-weight: 500;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  padding: 7px 0;
  transition: color 0.2s;
}

.footer-para {
  font-size: 16px;
  color: #333;
}

footer .nav-link-item:hover {
  color: #b53131;
}

.nav-link-item .arr {
  color: #b53131;
  font-weight: 700;
  font-size: 13px;
}

/* ── RIGHT LOGO ── */
footer .logo-icon img {
  height: 50px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}

/* ── CONTACT ── */
footer .contact-value-wrapper {
  display: flex;
  gap: 20px;
}

footer .contact-value a {
  color: inherit;
  text-decoration: none;
}

footer .contact-value a:hover {
  color: #fff;
}
footer .btn-close {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #b53131;
  opacity: 1;
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  right: 0;
  top: -6px;
}
footer .btn-close:hover {
  opacity: 1;
}
footer .btn-close svg {
  color: #fff;
}
.contact-label {
  font-size: 12px;
  color: #888;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 16px;
  font-weight: 400;
  color: #e6da77;
  background: #212121;
  padding: 5px 24px;
  border-radius: 5px;
}

/* ── APP BUTTONS ── */
.app-label {
  font-size: 12px;
  color: #888;
  margin-bottom: 12px;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  text-decoration: none;
  transition: background 0.2s;
}

.app-btn:hover {
  background: #333;
  color: #fff;
}

.app-btn .small {
  font-size: 9px;
  color: #aaa;
  display: block;
}

.app-btn .big {
  font-size: 13px;
  font-weight: 600;
  display: block;
  line-height: 1.2;
}

/* ── SOCIAL ── */
.social-label {
  font-size: 17px;
  font-weight: 600;
  color: #242424;

  margin-bottom: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #b73430;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b73430;
  text-decoration: none;
  transition: all 0.2s;
}

.social-icon svg {
  height: 21px;
  width: 21px;
}

.social-icon:hover {
  background: #b73430;
  color: #fff;
}

footer .trainer-partner-link {
  background-color: #e8d770;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 28px;
  font-weight: 600;
  color: #242424;
  text-transform: uppercase;
  font-size: 15px;
  text-decoration: none;
  text-align: center;
  height: 37px;
  display: flex;
  align-items: center;
}
footer .trainer-partner-link.footer-verify-certificate {
  margin-right: 22px;
  background-color: #77c9e0;
}
/* ── BOTTOM BAR ── */
.footer-bottom {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 18px 0;
}

.copy {
  font-size: 15px;
  color: #555;
}

.copy span {
  color: #b53131;
  font-weight: 600;
}

.bottom-link {
  font-size: 13px;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.bottom-link:hover {
  color: #b53131;
}
.trainer-loaction-wrpper {
  margin-top: 15px;
}
.footer-location-btn {
  text-decoration: none;

  color: #000;
  border: none;
  border: 1px solid #242424;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  font-weight: 600;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  height: 37px;
  margin-left: 22px;
}
.footer-location-btn span {
  position: relative;
  right: 2px;
  display: flex;
  align-items: center;
}
.footer-location-btn svg {
  height: 18px;
  width: 18px;
  margin-right: 2px;
}
.footer-location-btn svg path {
  fill: #b53131;
}
/* ---------------------footercss End----------------------------------------------- */
/* ---------------------bredcrumb css start----------------------- ------------------*/
.page-hero {
  background: #f7f4ef;
  padding: 70px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.breadcrumb-wrapper {
  border-bottom: 2px dashed #ddd;
  padding-bottom: 30px;
  margin: 0px 15px;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(232, 50, 26, 0.08), transparent 70%);
  border-radius: 50%;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.07), transparent 70%);
  border-radius: 50%;
}

.breadcrumb {
  font-size: 17px;
  color: #000;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.breadcrumb span {
  color: #b53131;
  font-weight: 500;
}

.breadcrumb .sep {
  color: #242424;
}

.page-hero h1 {
  font-size: 72px;
  color: #000;
  font-weight: 600;
  line-height: 1.1;
  animation: fadeUp 0.7s ease both;
}

/* ---------------------bredcrumb css end----------------------- ------------------*/

/* --------------------------------single about css start------------------------------------------ */
.single-about {
  padding: 20px 0 170px 0;
  background-color: #f8f4ef;
}

.single-about-right {
  position: relative;
  height: 420px;
}

.single-about-right .img-box {
  position: absolute;

  overflow: hidden;
  background: #ddd;
}

.single-about-right .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-about-right .img-box.main {
  width: 300px;
  height: 450px;
  left: 60px;
  top: 50px;
  z-index: 2;
  border-bottom-left-radius: 160px;
}

.single-about-right .img-box.side {
  width: 300px;
  height: 450px;
  right: 0;
  top: 0;
  right: -56px;
  border-top-right-radius: 160px;
  z-index: 3;
}

.single-about-right .shape {
  position: absolute;
  /* border-radius: 50%; */
}

.single-about-right .shape.pink {
  width: 110px;
  height: 110px;
  background: #3ea3c9;
  top: 3px;
  left: 11px;
  clip-path: ellipse(100% 100% at 100% 100%);
  z-index: 2;
}

.single-about-right .shape.red {
  width: 120px;
  height: 120px;
  background: #b53131;
  bottom: -70px;
  left: 30px;
  border-radius: 50%;
  z-index: 1;
}

.single-about-right .shape.yellow {
  width: 100px;
  height: 217px;
  right: -93px;
  z-index: 1;
  bottom: -87px;
  background: rgb(232, 184, 75);
  border-radius: 70px;
}

.single-about-right .shape.blue {
  width: 40px;
  height: 160px;
  background: #4a90d9;
  top: 60px;
  left: 80px;
  border-radius: 8px;
  z-index: 0;
}

/* --------------------------FAQ css start------------------------------ */
.faq-section {
  background: #f7f4ef;

  padding: 0 0 90px;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(62, 163, 201, 0.08);
  pointer-events: none;
}

.faq-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -50px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(181, 49, 49, 0.05);
  pointer-events: none;
}

/* Section Header */
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-header .sub-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #b53131;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.faq-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.2;
  margin: 0;
}

.faq-header h2 span {
  color: #b53131;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 780px;
  margin: 0 auto;
}

.faq-accordion .accordion-item {
  background: #ffffff;
  border: 1.5px solid #ede8e2 !important;
  border-radius: 14px !important;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26, 26, 46, 0.06);
  transition: box-shadow 0.3s;
}

.faq-accordion .accordion-item:hover {
  box-shadow: 0 6px 24px rgba(26, 26, 46, 0.11);
}

.faq-accordion .accordion-item:has(.accordion-collapse.show) {
  border-color: #b53131 !important;
}

.faq-accordion .accordion-button {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 20px;
  background: #ffffff !important;
  color: #1a1a2e !important;
  font-size: 23px;
  font-weight: 500;
  box-shadow: none !important;
  outline: none !important;
}

.faq-accordion .accordion-item:has(.accordion-collapse.show) .accordion-button {
  background: #fff8f8 !important;
}

/* Remove Bootstrap's default arrow icon */
.faq-accordion .accordion-button::after {
  background-image: none !important;
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: #b53131;
  width: auto;
  height: auto;
  transform: none !important;
  margin-left: auto;
  flex-shrink: 0;
  line-height: 1;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "×";
  font-size: 28px;
}

/* Number badge */
.faq-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #f5f0eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  color: #b53131;
  transition:
    background 0.3s,
    color 0.3s;
}

.faq-accordion .accordion-item:has(.accordion-collapse.show) .faq-num {
  background: #b53131;
  color: #fff;
}

/* Answer body */
.faq-accordion .accordion-body {
  padding: 20px;
  font-size: 18px;
  color: #000;
  line-height: 1.75;
  border-top: 1px solid #f0ece7;
}

/* Deco star */
.faq-deco-star {
  position: absolute;
  top: 36px;
  left: 32px;
  opacity: 0.18;
  pointer-events: none;
}
.faq-section.expanded-faq .faq-accordion {
  max-width: 93%;
}
/* ----------------term-condition css start---------------------------- */
.terms-condition .terms-card {
  background: #ffffff;
  border: 1px solid #f0e6cc;
  border-radius: 12px;
  padding: 36px 40px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(232, 184, 75, 0.08);
}

.terms-condition .terms-card-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid #e8d770;
  display: inline-block;
}

.terms-condition .terms-card-intro {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.terms-condition .terms-card-list {
  padding-left: 20px;
  margin-bottom: 16px;
}

.terms-condition .terms-card-list li {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 12px;
}

.terms-condition .terms-card-list li strong {
  color: #1a1a2e;
}

.terms-condition .terms-card-note {
  font-size: 15px;
  color: #242424;
  font-style: italic;
  border-left: 3px solid #e8b84b;
  padding-left: 12px;
  margin-top: 10px;
  font-weight: 500;
}

/* ----------------terms-condition css end------------------------------ */

/* --------------------------------------contact us page css start---------------------------------------- */
.contact-us-single {
  padding-top: 0 !important;
}
.contact-us-single iframe {
  height: 100%;
  width: 100%;
}

.contact-us-single .map-wrapper {
  height: 450px;
  margin-top: 80px;
}

.contact-us-single .contact-wrap {
  width: 100%;

  background: #f5f4f1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(26, 26, 46, 0.13);
}

.contact-us-single .map-side {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.contact-us-single .map-side .hero-form-card {
  position: unset;
  display: flex;
  align-items: center;
}
.contact-us-single .map-side .hero-form-card .form-card-body {
  width: 100%;
  padding: 30px !important;
}

.contact-us-single .map-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  display: block;
}
.contact-us-single .hero-form-card {
  position: relative;
  top: unset;
  height: 100%;
}

.contact-us-single .card-side {
  display: flex;
  flex-direction: column;
}

.contact-us-single .card-header {
  position: relative;
  background: #242424;
  padding: 24px 28px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-us-single .header-pin {
  width: 40px;
  height: 40px;
  background: #b53131;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-us-single .header-pin svg {
  display: block;
}

.contact-us-single .header-text .location-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgb(230 218 119);
  margin-bottom: 3px;
}

.contact-us-single .header-text .location-name {
  font-size: 23px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.contact-us-single .card-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-us-single .info-row {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 12px 0;
  border-bottom: 1px solid #ddd8d0;
}

.contact-us-single .info-row:last-of-type {
  border-bottom: none;
}

.contact-us-single .info-icon {
  width: 34px;
  height: 34px;
  background: #b53131;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-us-single .info-icon svg {
  display: block;
}

.contact-us-single .info-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-us-single .info-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #242424;
  margin-bottom: 2px;
}

.contact-us-single .info-value {
  font-size: 18px;
  font-weight: 400;
  color: #1a1a2e;
  line-height: 1.5;
}

.contact-us-single .info-value a {
  color: #1a1a2e;
  text-decoration: none;
}

.contact-us-single .info-value a:hover {
  color: #b53131;
}

.contact-us-single .btn-directions {
  display: inline-flex;
  align-items: center;

  background: #b53131;
  color: #ffffff;
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  font-weight: 800;
  padding: 7px 17px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.4px;
  margin-top: 20px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  align-self: flex-start;
}
.contact-us-single .btn-directions span svg {
  margin-right: 2px;
}

.contact-us-single .btn-directions:hover {
  background: #b53131;
  transform: translateY(-1px);
}

.contact-us-single .btn-directions:active {
  transform: translateY(0);
}

@media (max-width: 640px) {
  .contact-us-single .contact-wrap {
    grid-template-columns: 1fr;
  }

  .contact-us-single .map-side {
    min-height: 220px;
  }
}

/* --------------------------hero-course css start---------------------------------------------- */
.hero-course {
  background: #f5f0e8;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* decorative shapes */
.hero-course::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: #0ea5e9;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-course::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 30%;
  width: 200px;
  height: 200px;
  background: #f5a623;
  border-radius: 50%;
  opacity: 0.12;
}

.hero-course-left {
  padding-right: 100px;
}

/* ═══════════════════════════════════════
         HERO / BANNER SECTION
         ═══════════════════════════════════════ */

.hero-course .hero-asterisk {
  position: absolute;
  top: 40px;
  right: 120px;
  font-size: 32px;
  color: #b53131;
  font-weight: 900;
  opacity: 0.7;
}

/* ── LEFT: Course Info ── */
.hero-left {
  /* padding-right:40px; 
            padding-bottom:40px;  */
}

.hero-course .breadcrumb {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}

.hero-course .breadcrumb span {
  color: #b53131;
  font-weight: 500;
}

.hero-course .stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.hero-course .stars {
  color: #f5a623;
  font-size: 20px;
  letter-spacing: 1px;
}

.hero-course .stars-count {
  font-size: 13px;
  color: #6b7280;
}

.hero-course .lang-tag {
  margin-left: auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
}

.hero-course .course-title {
  font-size: 45px;
  font-weight: 900;
  color: #1a1a2e;
  line-height: 50px;
  margin-bottom: 14px;
}
.hero-course .course-title span {
  font-size: 22px !important;
  font-weight: 600 !important;
  color: #242424 !important;
  position: relative;
  bottom: 10px;
}
.hero-course .course-title em {
  color: #b53131;
  font-style: normal;
}

.hero-course .course-desc {
  font-size: 19px;
  color: #242424;
  line-height: 27px;
  margin-bottom: 24px;
  max-width: 580px;
}

/* Price block */
.hero-course .price-block,
.categories-section .price-block {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.categories-section .price-block {
  margin-bottom: 0;
  gap: 8px;
}

.hero-course .price-now,
.categories-section .price-now {
  font-size: 35px;
  font-weight: 800;
  color: #1a1a2e;
}

.hero-course .price-old,
.categories-section .price-old {
  font-size: 20px;
  color: #6b7280;
  text-decoration: line-through;
}

.categories-section .price-old {
  font-size: 15px;
  color: #000;
  opacity: 0.75;
}

.hero-course .price-badge,
.categories-section .price-badge {
  background: #207c3d;
  color: #fff;
  padding: 4px 15px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
}

.categories-section .price-badge {
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}

/* CTA buttons */
.hero-course .hero-cta,
.categories-section .hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-course .btn-red,
.categories-section .btn-red {
  background: #b53131;
  color: #fff;
  border: none;
  padding: 4px 12px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  height: 38px;
  align-items: center;
  gap: 8px;
}

.hero-course .btn-red:hover,
.categories-section .btn-red:hover {
  background: #b8121f;
  transform: translateY(-1px);
}

.hero-course .btn-outline-red {
  background: #fff;
  text-decoration: none;
  color: #242424;
  /* border: 2px solid #b53131; */
  border: 1px solid #242424;
  padding: 4px 12px;
  height: 38px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-red span i {
  font-size: 14px;
  color: #242424;
}

.hero-course .btn-outline-red svg path {
  stroke: #242424 !important;
  fill: none !important;
}

.hero-course .btn-outline-red:hover {
  /* background: #242424; */
  color: #242424;
}

.hero-course .btn-outline-red:hover svg path {
  stroke: red !important;
  fill: none !important;
}

/* Feature pills */
.hero-course .feature-pills {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-course .pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a2e;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.hero-course .pill i {
  color: #b53131;
  font-size: 13px;
}

/* ── RIGHT: Demo Form Card ── */
.hero-course .hero-form-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  position: sticky;
  top: 80px;
  z-index: 3;
  border: 1px solid #e5e7eb;
}

.hero-course .form-card-header {
  background: #242424;
  padding: 10px 22px;
  text-align: center;
}

.hero-course .form-card-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  margin-bottom: 4px;
}

.hero-course .form-card-header h3 {
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

.hero-course .form-card-header .cert-note {
  color: #e8d770;
  font-size: 15px;
}

.hero-course .form-card-body {
  padding: 22px;
}

/* date selector */
.hero-course .date-label {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a2e;
  margin: 15px 0;
  display: block;
}

.hero-course .date-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.hero-course .date-chip {
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  margin: 2px 0;
  padding: 5px 10px;
  display: flex;
  justify-content: space-around;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.hero-course .date-chip:hover,
.hero-course .date-chip.active {
  border-color: #dedede;
  background: #fffbe8;
}

.hero-course .date-chip .day {
  font-size: 13px;
  color: #6b7280;
  display: block;
}

.hero-course .date-chip .date {
  font-size: 15px;
  font-weight: 500;
  color: #242424;
  display: block;
}

.hero-course .form-field {
  position: relative;
  margin-bottom: 12px;
}

.hero-course .form-field input,
.hero-course .form-field select {
  width: 100%;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  color: #1a1a2e;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.hero-course .form-field input:focus,
.hero-course .form-field select:focus {
  border-color: #b53131;
  box-shadow: 0 0 0 3px rgba(232, 25, 44, 0.08);
}

.hero-course .form-field input::placeholder {
  color: #242424;
  font-size: 15px;
}

.hero-course .form-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px;
}

.hero-course .btn-book {
  width: 100%;
  background: #b53131;
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

.hero-course .btn-book:hover {
  background: #b8121f;
}

.categories-section .price-now {
  font-size: 22px;
  font-weight: 600;
  color: #c22424;
}

/* ═══════════════════════════════════════
         STATS BAR
         ═══════════════════════════════════════ */
.stats-bar {
  background: #1a1a2e;
  padding: 28px 5%;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
}

.stat-item .num {
  font-size: 30px;
  font-weight: 900;
  color: #f5a623;
  display: block;
  line-height: 1;
}

.stat-item .lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  display: block;
}

/* ═══════════════════════════════════════
         SECTION TITLE COMPONENT
         ═══════════════════════════════════════ */
.course-syllabus {
  padding: 80px 0;
}

.course-syllabus .sec {
  padding: 64px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.course-syllabus .sec-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #b53131;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.course-syllabus .sec-tag::before {
  content: "* ";
}

.course-syllabus .sec-title {
  font-size: 30px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.4;
  margin-bottom: 15px;
}

.course-syllabus .sec-sub {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 36px;
}

/* ═══════════════════════════════════════
         SYLLABUS SECTION
         ═══════════════════════════════════════ */

/* ═══════════════════════════════════════
         WHAT YOU'LL LEARN
         ═══════════════════════════════════════ */
.learn-section {
  background: #f5f0e8;
  padding: 64px 5%;
}

.learn-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.learn-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid #e5e7eb;
  transition: all 0.25s;
}

.learn-card:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.14);
  transform: translateY(-3px);
}

.learn-card .lc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f5f0e8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.learn-card .lc-icon i {
  color: #b53131;
  font-size: 18px;
}

.learn-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.learn-card p {
  font-size: 12.5px;
  color: #6b7280;
  line-height: 1.65;
}

/* ═══════════════════════════════════════
         FREE PARTICIPATION CERTIFICATE BANNER
         ═══════════════════════════════════════ */
.cert-banner-wrap {
  padding: 0 5%;
}

.cert-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 20px;
  padding: 40px 48px;
  display: block;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cert-banner::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: #b53131;
  border-radius: 50%;
  opacity: 0.12;
}

.cert-banner::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 200px;
  width: 150px;
  height: 150px;
  background: #f5a623;
  border-radius: 50%;
  opacity: 0.1;
}

.cert-left {
  position: relative;
  z-index: 2;
}

.cert-tag {
  background: #e8d770;
  color: #1a1a2e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 14px;
}

.cert-left h2 {
  font-size: 29px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;

  margin: 12px 0;
}

.cert-left h2 em {
  color: #e8d770;
  font-style: normal;
}

.cert-left p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.cert-right {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.certificate-icon {
  position: relative;
  display: inline-block;
}

.certificate-icon svg {
  height: 120px;
  width: 120px;
}

.certificate-icon svg path {
  fill: #ada7a7;
}

.cert-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.cert-cta .btn-gold {
  margin-top: 33px;
  background: #e8d770;
  color: #1a1a2e;
  border: none;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.cert-cta .btn-gold:hover {
  background: #e09610;
}

.cert-cta .btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 11px 24px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  text-align: center;
}

.cert-cta .btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.course-highlight-aside {
  background: #f5f0e8;
  border: 1px solid #dedede;
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: 100px;
  margin: 0 25px;
}

.course-highlight-aside .cha-head {
  background: #242424;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-highlight-aside .cha-head-title {
  font-size: 17px;
  font-weight: 500;
  color: #e8d770;
  margin: 0;
}

.course-highlight-aside .cha-head-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  color: #fff;
}

.course-highlight-aside .cha-head-stars span {
  font-size: 12px;
  margin-left: 3px;
  color: #e8d770;
  font-weight: 700;
}

.course-highlight-aside .cha-body {
  padding: 20px;
}

.course-highlight-aside .cha-lang {
  display: inline-block;
  background: #fff;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 13px;
  color: #000;
  margin-bottom: 16px;
}

.course-highlight-aside .cha-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.course-highlight-aside .cha-price {
  font-size: 33px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1;
}

.course-highlight-aside .cha-off-badge {
  background: #207c3d;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  padding: 3px 12px;
  border-radius: 20px;
}

.course-highlight-aside .cha-old-price {
  font-size: 15px;
  color: #6b7280;
  text-decoration: line-through;
  margin-bottom: 23px;
}

.course-highlight-aside .cha-btn-register {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #e74c3c;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 8px;
  transition: background 0.2s;
}

.course-highlight-aside .cha-btn-register:hover {
  background: #242424;
}

.course-highlight-aside .cha-btn-trainer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #ffffff;
  color: #242424;
  border: 1px solid #242424;
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 20px;
  transition:
    background 0.2s,
    color 0.2s;
}

.course-highlight-aside .cha-btn-trainer:hover {
  background: #242424;
  color: #ffffff;
}

.course-highlight-aside .cha-divider {
  border: none;
  border-top: 1px solid #ebebeb;
  margin-bottom: 14px;
}

.course-highlight-aside .cha-feature {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  color: #242424;
  margin-bottom: 10px;
}

.course-highlight-aside .cha-feature:last-child {
  margin-bottom: 0;
}

.course-highlight-aside .cha-feature i {
  font-size: 16px;
  color: #1a1a2e;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
         ABOUT SECTION
         ═══════════════════════════════════════ */
.about-section {
  background: #fff;
  padding: 64px 5%;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-img-stack {
  position: relative;
  height: 340px;
}

.about-img-stack .img-main {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 75%;
  height: 90%;
  background: #f5f0e8;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-stack .img-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 55%;
  background: #e0d5c8;
  border-radius: 14px;
  border: 3px solid #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #6b7280;
  text-align: center;
}

.about-img-stack .floating-badge {
  position: absolute;
  bottom: 20px;
  left: 0;
  background: #b53131;
  color: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(232, 25, 44, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-img-stack .floating-badge i {
  font-size: 16px;
}

.about-text .sec-tag {
  margin-bottom: 6px;
}

.about-text .sec-title {
  margin-bottom: 16px;
}

.about-text p {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-checklist {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #1a1a2e;
}

.about-checklist li i {
  color: #22c55e;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
         EXAM & CERTIFICATION
         ═══════════════════════════════════════ */
.exam-section {
  background: #f5f0e8;
  padding: 64px 5%;
}

.exam-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.exam-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.exam-text p {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 14px;
}

.cert-visual {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.14);
  border: 2px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.cert-visual::before {
  content: "CERTIFICATE";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  font-size: 60px;
  font-weight: 900;
  color: #f5f0e8;
  letter-spacing: 4px;
  white-space: nowrap;
  pointer-events: none;
}

.cert-visual .cv-logo {
  background: #b53131;
  color: #fff;
  display: inline-block;
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.cert-visual h3 {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 8px;
}

.cert-visual .cv-name {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a2e;
  padding-bottom: 8px;
  border-bottom: 3px solid #f5a623;
  margin-bottom: 10px;
}

.cert-visual .cv-course {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 20px;
}

.cert-visual .cv-seals {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cv-seal {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #b53131;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(232, 25, 44, 0.3);
}

.cv-seal.gold {
  background: #f5a623;
}

/* ═══════════════════════════════════════
         RELATED COURSES
         ═══════════════════════════════════════ */
.related-section {
  background: #fff;
  padding: 64px 5%;
}

.related-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.course-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  transition: all 0.25s;
  cursor: pointer;
}

.course-card:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.14);
  border-color: #b53131;
  transform: translateY(-3px);
}

.cc-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #f5f0e8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.cc-icon i {
  color: #b53131;
  font-size: 18px;
}

.cc-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.cc-desc {
  font-size: 11.5px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 12px;
}

.cc-price {
  font-size: 14px;
  font-weight: 800;
  color: #b53131;
}

.cc-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
}

.cc-rating {
  font-size: 11px;
  color: #6b7280;
}

.cc-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f5f0e8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-arrow i {
  font-size: 12px;
  color: #b53131;
}

/* ----------------------------------------kuch bhi----------------------- */
.course-syllabus .accordion-item {
  border: 1px solid #e0e0e0 !important;
  border-radius: 10px !important;
  overflow: hidden;
  margin-bottom: 10px;
}

/* ===== BUTTON ===== */
.course-syllabus .accordion-button {
  background: #f6f7f9 !important;
  box-shadow: none !important;
  outline: none !important;
  border-radius: 10px !important;
  padding: 13px 16px;
  font-size: 15px;
  font-weight: 700;
  color: #111 !important;
}

/* Bootstrap ka default arrow hatao */
.course-syllabus .accordion-button::after {
  display: none !important;
}

/* Open state */
.course-syllabus .accordion-button:not(.collapsed) {
  background: #f6f7f9 !important;
  color: #cc2222 !important;
  border-bottom: 1px solid #f5c0c0;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/* ===== PLUS / MINUS via ::before — NO JS ===== */
.course-syllabus .accordion-button::before {
  font-family: "bootstrap-icons";
  content: "\F4FE";
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #242424;
  order: 99;
  margin-left: auto;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}

.course-syllabus .accordion-button:not(.collapsed)::before {
  content: "\F2EA";
  color: #b53131;
}

/* ===== BODY ===== */
.course-syllabus .accordion-body {
  padding: 0;
  background: #fff;
}

.course-syllabus .acc-body-inner {
  padding: 10px;
}

.course-syllabus .acc-divider {
  display: none;
  height: 1px;
  background: #f5c0c0;
  margin-bottom: 10px;
}

/* ===== TOPICS ===== */
.course-syllabus .acc-topic {
  font-size: 13px;
  color: #555;
  padding: 5px 0;
  /* display: flex; */
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #f5f5f5;
}

.course-syllabus .acc-topic:last-child {
  border-bottom: none;
}

.course-syllabus .acc-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: #cc2222;
}

.course-syllabus .syllabus-list {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.course-syllabus .syllabus-list li {
  color: #242424;
  line-height: 1.7;
}

.course-syllabus .bar-sep {
  color: #b53131;
  font-weight: 500;
  padding: 0 3px;
}

/* ===== HEADER CONTENT LAYOUT ===== */
.course-syllabus .acc-header-content {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.course-syllabus .acc-icon {
  display: none !important;
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: #f2f2f2;
  color: #999;
  transition:
    background 0.2s,
    color 0.2s;
}

.course-syllabus .accordion-button:not(.collapsed) .acc-icon {
  display: none;
  background: #fde8e8;
  color: #cc2222;
}

.course-syllabus .acc-title {
  font-size: 23px;
  font-weight: 600;
  color: #242424;
  margin: 0;
  line-height: 1.4;
}

.course-syllabus .accordion-button:not(.collapsed) .acc-title {
  color: #cc2222;
}

.course-syllabus .acc-count {
  font-size: 14px;
  color: #242424;
  margin: 0;
  font-weight: 500;
  opacity: 0.8;
}

.course-syllabus .accordion-button:not(.collapsed) .acc-count {
  color: #242424;
}

.course-syllabus .accordion-collapse.show .accordion-body {
  display: block !important;
}

.course-syllabus .accordion-collapse {
  transition: height 0.35s ease !important;
}
.syllabus-dynamic-content p {
  font-size: 18px;
  margin-bottom: 0;
  letter-spacing: 0.2px;
  line-height: 1.6;
}
.course-syllabus .accordion-collapse.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease !important;
}

/* --------------------------------examcertificate css start--------------------------- */
.exam-certificate {
  background-color: #dadada;
  background-image: url(../images/grid2.webp);
  background-size: cover;
  background-position: bottom;
  background-blend-mode: multiply;
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}

.exam-certificate::before {
  content: "";
  position: absolute;
  top: 182px;
  right: 194px;
  width: 220px;
  height: 220px;
  background-image: radial-gradient(#242424 1.8px, transparent 1.8px);
  background-size: 18px 18px;
  opacity: 0.3;
  z-index: 0;
}

.exam-certificate .content {
  padding-right: 50px;
}

.exam-certificate h2 {
  font-size: 45px;
  font-weight: 600;
  color: #242424;
  margin-bottom: 10px;
}

.exam-certificate h3 {
  font-size: 25px;
  font-weight: 600;
  color: #b53131;
  margin-bottom: 20px;
}

.exam-certificate p {
  font-size: 18px;
  line-height: 35px;
  color: #242424;
  margin-bottom: 20px;
}

.exam-certificate .features {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.exam-certificate .feature {
  background-color: #e8b84b;
  color: #242424;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
}

.exam-certificate .verify-btn {
  background-color: #b53131;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.exam-certificate .verify-btn:hover {
  background-color: #242424;
}

.exam-certificate .certificate {
  flex: 1;
  text-align: right;
}

.exam-certificate .certificate img {
  border: 3px solid #fff;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* --------------------------------examcertificate css end--------------------------- */

/* --------------------------feature band css start---------------------------------------- */
.features-band {
  background: #f5f0e8;
  padding: 0;
}

.features-band .features-row-outer {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
}

.features-band .features-row-outer > div {
  flex: 1;
  min-width: 0;
}

.features-band .feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 25px 16px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  cursor: default;

  background: #fff;

  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.features-band .feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 50px;
  height: 3px;
  background: #c0392b;
  border-radius: 2px 2px 0 0;
  transition: transform 0.3s ease;
}

.features-band .feature-card:hover {
  background: rgba(255, 255, 255, 0.04);
  background-color: #fdecea;
}

.features-band .feature-card:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.features-band .features-row-outer > div:last-child .feature-card {
  border-right: none;
}

.features-band .icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(192, 57, 43, 0.18);
  border: 1.5px solid rgba(192, 57, 43, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition:
    background 0.25s,
    border-color 0.25s;
}

.features-band .feature-card:hover .icon-wrap {
  background: #c0392b;
  border-color: #e74c3c;
}

.features-band .icon-wrap i {
  font-size: 22px;
  color: #e87f74;
  transition: color 0.25s;
}

.features-band .feature-card:hover .icon-wrap i {
  color: #ffffff;
}

.features-band .feature-title {
  font-size: 19px;
  font-weight: 500;
  color: #242424;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.features-band .feature-desc {
  opacity: 0.75;
  font-size: 15px;
  color: #000;
  line-height: 1.3;
  margin: 0;
}

@media (max-width: 768px) {
}

/* --------------------------feature band css end------------------------------------------ */

/* -----------------------participation certificate css start------------------------------ */
.participation-certificate .btn-back {
  background: transparent;
  border: 1.5px solid #7b2d8b;
  color: #7b2d8b;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 6px;
  padding: 7px 18px;
  transition:
    background 0.18s,
    color 0.18s;
  text-decoration: none;
  display: inline-block;
}

#learningOutcomes .common-para {
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px;
}

.participation-certificate .btn-back:hover {
  background: #7b2d8b;
  color: #fff;
}

.participation-certificate {
  background: #f5f0e8;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
}

.participation-certificate .blob-1 {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: #3d0c11;
  border-radius: 50%;
  opacity: 0.45;
  pointer-events: none;
}

.participation-certificate .blob-2 {
  position: absolute;
  bottom: -40px;
  left: 80px;
  width: 150px;
  height: 150px;
  background: #3d0c11;
  border-radius: 50%;
  opacity: 0.35;
  pointer-events: none;
}

.participation-certificate .cert-badge {
  background: #e8d84a;
  color: #1a1a2e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  padding: 6px 18px;
  border-radius: 20px;
  display: inline-block;
}

.participation-certificate .cert-title {
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
}

.participation-certificate .cert-subtitle {
  color: #e8d84a;
  font-weight: 700;
  font-size: 1.9rem;
}

.participation-certificate .cert-desc {
  color: #b0b8d1;
  font-size: 0.93rem;
  max-width: 420px;
}

.participation-certificate .btn-book {
  background: #e8d84a;
  color: #1a1a2e;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 8px;
  padding: 13px 0;
  width: 85%;
  max-width: 480px;
  transition: background 0.2s;
  cursor: pointer;
}

.participation-certificate .btn-book:hover {
  background: #d4c832;
}

.participation-certificate .cert-about {
  background: #fdfaff;
  padding: 30px;
  border-radius: 10px;
}

.participation-certificate .cert-about h4 {
  color: #242424;
  border-bottom: 1px solid #dedede;
  padding-bottom: 10px;
}

.participation-certificate .cert-about ul li {
  /* margin-bottom: 6px;
  font-size: 0.93rem; */
}

.participation-certificate .cert-learn {
  background: #fdfaff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.participation-certificate .cert-learn h4 {
  color: #242424;
}

.participation-certificate .cert-learn .learn-sub {
  color: #b53131;
  font-weight: 600;
  font-size: 0.9rem;
}

.participation-certificate .learn-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.55;
}

.participation-certificate .learn-item .chk {
  color: #b53131;
  font-weight: 700;
  flex-shrink: 0;
}

.participation-certificate .grad-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #e8d84a55, transparent);
}

.participation-certificate .light-divider {
  height: 1px;
  background: #e8e0f0;
}
.participation-certificate #courseAboutContent p,
.participation-certificate #courseAboutContent ul li {
  font-size: 18px;
  color: #000;
  font-weight: 400;
}
/* -----------------------participation certificate css End------------------------------ */
.alumini.course-alumini {
  padding: 70px 0 !important;
}

.faq-section.course-faq {
  padding: 70px 0 !important;
}

/* --------------------------related course css start------------------------------- */

.ec-cards-slider .slick-slide {
  padding: 0 10px;
}

.ec-cards-slider .slick-prev,
.ec-cards-slider .slick-next {
  width: 40px;
  height: 40px;
  background: #e8d770;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.ec-cards-slider .slick-prev {
  left: -66px;
}

.ec-cards-slider .slick-next {
  right: -66px;
}

.ec-cards-slider .slick-prev:before,
.ec-cards-slider .slick-next:before {
  font-size: 18px;
  color: #333;
  opacity: 1;
}

.ec-cards-slider .slick-prev:hover,
.ec-cards-slider .slick-next:hover {
  background: #b53131;
}

.ec-cards-slider .slick-prev:hover:before,
.ec-cards-slider .slick-next:hover:before {
  color: #fff;
}

.ec-cards-slider .slick-dots li button:before {
  font-size: 10px;
  color: #ccc;
  opacity: 1;
}

.ec-cards-slider .slick-dots li.slick-active button:before {
  color: #b53131;
}

.categories-section.related-course .ec-card .ec-card-link {
  display: none;
}

.categories-section.related-course .slick-dots {
  display: none !important;
}

.ec-cards-slider .slick-slide {
  padding: 0 10px;
}

.ec-cards-slider .slick-prev,
.ec-cards-slider .slick-next {
  width: 40px;
  height: 40px;
  background: #e8d770;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.ec-cards-slider .slick-prev {
  left: -66px;
}

.ec-cards-slider .slick-next {
  right: -66px;
}

.ec-cards-slider .slick-prev:before,
.ec-cards-slider .slick-next:before {
  font-size: 18px;
  color: #333;
  opacity: 1;
}

.ec-cards-slider .slick-prev:hover,
.ec-cards-slider .slick-next:hover {
  background: #b53131;
}

.ec-cards-slider .slick-prev:hover:before,
.ec-cards-slider .slick-next:hover:before {
  color: #fff;
}

.ec-cards-slider .slick-dots li button:before {
  font-size: 10px;
  color: #ccc;
  opacity: 1;
}

.ec-cards-slider .slick-dots li.slick-active button:before {
  color: #b53131;
}

.categories-section.related-course .ec-card .ec-card-link {
  display: none;
}

.categories-section.related-course .slick-dots {
  display: none !important;
}
.categories-section.related-course .ec-card .ec-card-header {
  padding: 1rem 1.4rem;
}
/* --------------------------related course css end-------------------------------- */

/* -----------------------mobileMenu css Start------------------------------------ */

/* Hamburger Button */
.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
  height: 40px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3ea3c9;
  background: #b53131;
  border-radius: 3px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.is-fixed .mobile-menu-btn span {
  background: #fff;
}

/* .mobile-menu-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
} */

/* Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: #1e1e1e;
  z-index: 9999;
  overflow-y: auto;
  transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding-top: 30px;
}
.mobile-drawer-upper-wrapper
{
      display: flex;
    justify-content: space-between;
    padding-right: 15px;
}
.mobile-drawer-upper-wrapper .mobile-drawer-close
{
     height: 30px;
    width: 30px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #fff;
    border-radius: 50%;
    border: 2px solid #fff;
}
.mobile-drawer.open {
  left: 0;
}

.mobile-menu-logo {
  height: 50px;
  width: auto;
  padding-left: 15px;
  margin-bottom: 20px;
}

/* Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Nav List */
.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-nav-btn {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  padding: 15px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 19px;
  font-weight: 500;
  text-align: left;
  transition: background 0.2s;
}

.mobile-nav-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav-btn.active {
  color: #fff;
}

.mobile-nav-btn i {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.3s;
}

.mobile-nav-btn.active i {
  transform: rotate(180deg);
  color: #b53131;
}

/* Accordion Submenu */
.mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
  transition: max-height 0.35s ease;
}

.mobile-submenu.open {
  max-height: 400px;
}

.mobile-submenu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-submenu li:last-child {
  border-bottom: none;
}

.mobile-submenu li a {
    display: block;
    padding: 10px 15px 10px 20px;
    color:#e8d770;
    font-size: 17px;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    /* display: flex; */
    display: flex;
    /* align-items: flex-start; */
    align-items: baseline;
}

.mobile-submenu li a:hover {
  color: #fff;
  background: rgba(119, 201, 224, 0.5);
}

.mobile-submenu li a::before {
  content: "—";
  margin-right: 8px;
  color: #f5f5f5;
  font-size: 10px;
  display:none;
}

/* Bottom Buttons */
.mobile-bottom-btns {
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  justify-content: space-between;
}

.mobile-bottom-btns .btn-apply {
  flex: 1;
  margin-left: 0;
  padding: 7px 16px;
  font-size: 14px;
}

.mobile-bottom-btns .btn-apply:hover {
  background-color: #b53131;
}

.btn-login-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
    text-decoration: none;
    font-size: 13px;
    white-space: nowrap;
    padding: 4px 16px;
    font-size: 13px;
    background: #fff;
    border-radius: 30px
}

.btn-login-mobile svg {
   fill: #000;
   height: 18px;
   width: 18px;
}

/* -----------------------mobileMenu css End-------------------------------------- */
/* ------------------mobilebook free link css start------------------------------ */
.mobile-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9;
  background: #242424;
  width: 100%;
  padding: 10px 0;
}
.fixed-book-free-btn {
  background-color: #b53131;
  color: #fff;
  padding: 9px 12px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500 !important;
  text-decoration: none;
  cursor: pointer;
}
.fixed-book-free-btn:hover {
  background-color: #e8d770 !important;
  border-color: #e8d770 !important;
  color: #000 !important;
}
.fixed-book-free-btn:hover .label,
.fixed-book-free-btn:focus .label {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}
a.whatsapp-link.whatsapp-link2 {
  text-decoration: none;
  display: flex;
  background: #fff;

  border-radius: 4px;
  font-size: 16px;
  padding: 0 5px;
  font-weight: 500 !important;
  margin-right: 0;
  justify-content: center;
}
a.whatsapp-link.whatsapp-link2 span {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500 !important;
  align-self: center;
  color: #111;
}
a.whatsapp-link.whatsapp-link2 svg {
  width: 25px;
}
.mobile-fixed-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
}

/* --------------------------cororate training css start---------------------- */
.corporate-training {
  background: linear-gradient(
    to top,
    #f7f4ef 0%,
    #f6f2ea 30%,
    #f5f1e9 60%,
    #f5f0e8b8 100%
  );

  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

/* ── Left: Text Content ── */
.corporate-training .ct-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 51, 42, 0.08);
  border: 1px solid rgba(200, 51, 42, 0.22);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #c8332a;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 55px;
}
.corporate-training .ct-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8332a;
  animation: ct-pulse 2s infinite;
}
@keyframes ct-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.corporate-training .ct-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 14px;
}

.corporate-training .ct-title {
  font-family: "Poppins", sans-serif;
  font-size: 45px;
  font-weight: 600;

  color: #1a1a1a;
  margin-bottom: 22px;
}
.corporate-training .ct-title .ct-accent {
  color: #c8332a;
}

.corporate-training .ct-desc {
  font-size: 18px;
  line-height: 1.75;
  color: #242424;
  font-weight: 300;
  max-width: 460px;
  margin-bottom: 36px;
}

.corporate-training .ct-btn-primary {
  background: #c8332a;
  color: #fff;
  border: none;
  padding: 13px 30px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.2s,
    transform 0.2s;
}
.corporate-training .ct-btn-primary:hover {
  background: #e8453c;
  transform: translateY(-1px);
  color: #fff;
}

.corporate-training .ct-btn-outline {
  background: transparent;
  color: #1a1a1a;
  border: 1.5px solid rgba(26, 26, 26, 0.18);
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s;
}
.corporate-training .ct-btn-outline:hover {
  border-color: #1a1a1a;
  color: #1a1a1a;
}

/* ── Right: Form Panel ── */
.corporate-training .ct-form-panel {
  background: #1a1a1a;
  padding: 30px 44px;
  border-radius: 8px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.corporate-training .ct-form-panel::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(200, 51, 42, 0.1);
  pointer-events: none;
}

.corporate-training .ct-form-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c8332a;
  font-weight: 500;
  margin-bottom: 8px;
}
.corporate-training .ct-form-title {
  font-family: "Poppins", sans-serif;
  font-size: 34px;
  color: #fff;
  line-height: 1;
  margin-bottom: 15px;
}
.corporate-training .ct-form-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 28px;
  line-height: 1.5;
}

.corporate-training .ct-field label {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
  display: block;
  opacity: 0.65;
}
.corporate-training .ct-field input,
.corporate-training .ct-field select,
.corporate-training .ct-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 9px 14px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #fff;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  box-shadow: none;
}
.corporate-training .ct-field input::placeholder,
.corporate-training .ct-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.18);
}
.corporate-training .ct-field input:focus,
.corporate-training .ct-field select:focus,
.corporate-training .ct-field textarea:focus {
  border-color: #c8332a;
  background: rgba(200, 51, 42, 0.06);
  box-shadow: none;
}
.corporate-training .ct-field select {
  appearance: none;
  cursor: pointer;
}
.corporate-training .ct-field select option {
  background: #1a1a1a;
  color: #fff;
}
.corporate-training .ct-field textarea {
  resize: none;
  height: 80px;
}

.corporate-training .ct-submit {
  width: 100%;
  background: #c8332a;
  color: #fff;
  border: none;
  border-radius: 8px;

  padding: 9px 10px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  margin-top: 4px;
}
.corporate-training .ct-submit:hover {
  background: #e8453c;
  transform: translateY(-1px);
}

.corporate-training .ct-form-note {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.22);
  margin-top: 10px;
}

/* Success State */
.corporate-training .ct-success {
  display: none;
  text-align: center;
  padding: 30px 0;
}
.corporate-training .ct-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(15, 110, 86, 0.14);
  border: 1px solid #0f6e56;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
}
.corporate-training .ct-success-title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  color: #fff;
}
.corporate-training .ct-success-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 6px;
  line-height: 1.6;
}

/* ── Features Strip ── */

/* Responsive tweaks */
@media (max-width: 991px) {
  .corporate-training .ct-form-panel {
    padding: 44px 28px;
    margin-top: 40px;
  }
  .corporate-training .ct-feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  }
  .corporate-training .ct-feature-item:last-child {
    border-bottom: none;
  }
}
/* --------------------------corporate training css end------------------------ */
/* --------------------------feature strip css start------------------------ */
.feature-strip-wrapper {
  padding: 100px 0;
  background-color: #f8f4ef;
}
.features-strip {
  border-top: 1px solid #f0ede8;
  padding: 26px 25px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  background: #fff;
  border-radius: 12px;
}
.feat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.feat-item + .feat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: #eeebe6;
}
.feat-ico {
  width: 70px;
  height: 70px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.feat-ico svg {
  height: 50px;
  width: 50px;
}
.fi-r {
  background: #fff0f0;
}
.fi-y {
  background: #fffbe8;
}
.fi-g {
  background: #e8f5ee;
}
.fi-b {
  background: #eaf4ff;
}
.fi-p {
  background: #f5e8ff;
}
.feat-item h6 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a2e;

  margin: 9px 0;
}
.feat-item p {
  font-size: 16px;
  color: #242424;
  margin: 0;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .card-top {
    flex-direction: column;
  }
  .left-side {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #f0ede8;
    padding: 28px 24px;
  }
  .right-side {
    width: 100%;
    padding: 28px 24px;
  }
  .features-strip {
    flex-wrap: wrap;
    padding: 20px 24px;
  }
  .feat-item {
    width: 50%;
    min-width: 50%;
    padding: 12px;
  }
  .feat-item + .feat-item::before {
    display: none;
  }
}
@media (max-width: 576px) {
  .left-side h2 {
    font-size: 22px;
  }
  .page-hero h1 {
    font-size: 26px;
  }
  .feat-item {
    width: 100%;
  }
}
/* -------------------------feature strip css end-------------------------------- */

/* ------------------------------corporate about css start------------------------- */
.corporate-about {
}
.corporate-about .corporate-about-left {
  padding-right: 80px;
}
.corporate-about-right img {
  height: 330px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 3px solid #fff;
}
.corporate-about-right img.second {
  position: relative;
  top: 70px;
  /* right: -83px; */
  right: 47px;
  height: 300px;
}
/* -----------------------------corporate about css end ----------------------- */

/* -----------------------------all courses  css start-------------------------------- */
.all-courses {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(
    to top,
    #f7f4ef 0%,
    #f6f2ea 30%,
    #f5f1e9 60%,
    #f5f0e8b8 100%
  );
  padding: 40px 0 80px;
  padding-top: 0;
}

/* FILTER BAR */
.all-courses .ac-filter {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.all-courses .ac-filter label {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a2e;
  white-space: nowrap;
  margin: 0;
}
.all-courses .ac-filter-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.all-courses .ac-filter-wrap svg {
  position: absolute;
  right: 12px;
  pointer-events: none;
}
.all-courses .ac-filter-wrap svg path {
  stroke: #e8d770;
}

.all-courses .ac-filter select {
  appearance: none;
  -webkit-appearance: none;
  background: #242424;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 9px 38px 9px 14px;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #e8d770;
  cursor: pointer;
  outline: none;
  min-width: 210px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

/* SECTION */
.all-courses .courses-section {
  margin-bottom: 56px;
}

/* SECTION HEAD */
.all-courses .section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 45px;
  padding-bottom: 14px;
  border-bottom: 2px solid #ececec;
}
.all-courses .section-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  display: none;
}
.all-courses .section-icon svg {
  width: 22px;
  height: 22px;
}
.all-courses .si-blue {
  background: #eaf4ff;
}
.all-courses .si-blue svg {
  fill: #1a73e8;
}
.all-courses .si-amber {
  background: #fffbe8;
}
.all-courses .si-amber svg {
  fill: #f57c00;
}
.all-courses .si-green {
  background: #e8f5ee;
}
.all-courses .si-green svg {
  fill: #1d6f42;
}
.all-courses .si-purple {
  background: #f5e8ff;
}
.all-courses .si-purple svg {
  fill: #6a1b9a;
}
.all-courses .si-pink {
  background: #ffe8f0;
}
.all-courses .si-pink svg {
  fill: #d81b60;
}
.all-courses .si-indigo {
  background: #e8f0ff;
}
.all-courses .si-indigo svg {
  fill: #3949ab;
}

.all-courses .section-title-wrap {
  flex: 1;
}
.all-courses .section-title {
  font-size: 30px;
  font-weight: 700;
  color: #242424;
  line-height: 1.2;
  margin: 0;
}
.all-courses .section-count {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
  display: none;
}
.all-courses .section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #ececec, transparent);
}

/* CARD */
.all-courses .ec-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ececec;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.22s,
    box-shadow 0.22s;
  height: 100%;
}
.all-courses .ec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.11);
}
.all-courses .ec-card a {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* CARD HEADER */
.all-courses .ec-card-header {
  background: #f4f4f4;
  min-height: 100px;
  border-bottom: 1px solid #ececec;
  padding: 1rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
[data-category="web-design-marketing"] .ec-card-header {
  min-height: 148px !important;
}
.all-courses .ec-card-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.all-courses .ec-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.all-courses .ec-card-icon svg {
  width: 30px;
  height: 30px;
}

.all-courses .ec-card-icon.one {
  background: #eaf4ff;
}
.all-courses .ec-card-icon.one svg {
  stroke: #1a73e8;
  fill: #1a73e8;
}
.all-courses .ec-card-icon.two {
  background: #fffbe8;
}
.all-courses .ec-card-icon.two svg {
  stroke: #f57c00;
  fill: #f57c00;
}
.all-courses .ec-card-icon.three {
  background: #e8f5ee;
}
.all-courses .ec-card-icon.three svg {
  stroke: #1d6f42;
  fill: #1d6f42;
}
.all-courses .ec-card-icon.four {
  background: #f5e8ff;
}
.all-courses .ec-card-icon.four svg {
  stroke: #6a1b9a;
  fill: #6a1b9a;
}
.all-courses .ec-card-icon.five {
  background: #ffe8f0;
}
.all-courses .ec-card-icon.five svg {
  stroke: #d81b60;
  fill: #d81b60;
}
.all-courses .ec-card-icon.six {
  background: #e8f0ff;
}
.all-courses .ec-card-icon.six svg {
  stroke: #3949ab;
  fill: #3949ab;
}

.all-courses .ec-card-header-title {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.3;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
.all-courses .ec-card-header-sub {
  font-size: 12px;
  color: #888;
  margin: 2px 0 0;
  display: none;
}
.all-courses .ec-card-num {
  font-size: 40px;
  font-weight: 700;
  color: #e0e0e0;
  line-height: 1;
  position: relative;
  left: 11px;
  flex-shrink: 0;
}

/* CARD BODY */
.all-courses .ec-card-body {
  padding: 1.4rem 1.6rem;
}
.all-courses .ec-card-desc {
  font-size: 16px;
  color: #212121;
  opacity: 0.85;
  line-height: 1.7;
  margin: 0 0 1.2rem;
  font-family: "Poppins", sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.all-courses .ec-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #f5f5f5;
}

/* PRICE */
.all-courses .price-block {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.all-courses .price-now {
  font-size: 22px;
  font-weight: 600;
  color: #c22424;
}
.all-courses .price-old {
  font-size: 15px;
  color: #000;
  opacity: 0.75;
  text-decoration: line-through;
}
.all-courses .price-badge {
  background-color: #207c3d;
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}

/* ARROW BUTTON */
.all-courses .ec-card-link {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #dedede;
  border: 1px solid #242424;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.all-courses .ec-card:hover .ec-card-link {
  background: #c22424;
  border-color: #c22424;
}
.all-courses .ec-card:hover .ec-card-link svg {
  stroke: #fff !important;
}

/* ROW GUTTER FIX */
.all-courses .row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

/* -----------------------------all courses css end here------------------------------- */
/* ----------------------------franchise css start------------------------------ */

.franchise {
  background-color: #f5f0e8;
  padding: 60px 0;
}

.franchise .section-tag {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c0392b;
}
.franchise .franchise .section-tag::before {
  content: "* ";
}

.franchise .section-title {
  font-size: 50px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0;
}

.franchise .section-sub {
  font-size: 15px;
  font-weight: 500;
  color: #242424;
  margin-bottom: 0;
}

/* Card wrapper */
.franchise .form-card {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.09);
  border: 1px solid #e0d9d0;
  padding: 40px;
  max-width: 600px;
  /* margin: auto; */
  margin: 50px auto 50px auto;
  background: #fff;
}

/* Sidebar */
.franchise .form-sidebar {
  background: #c0392b;
  padding: 40px 30px;
  color: #fff;
  height: 100%;
}

.franchise .franchise .form-sidebar h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 26px;
  line-height: 1.35;
}

.franchise .sb-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.franchise .franchise .sb-point .arr {
  color: #e8c84a;
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

.franchise .franchise .sb-point p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  margin: 0;
}

.franchise .sb-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 24px 0;
}

.franchise .sb-call-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}

.franchise .sb-call-num {
  font-size: 22px;
  font-weight: 800;
  color: #e8c84a;
  text-decoration: none;
  display: block;
}

/* Form body */
.form-.franchise {
  background: #fff;
  padding: 40px 36px;
}

.franchise .franchise .form-body h2 {
  font-size: 21px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.franchise .franchise .form-body .sub {
  font-size: 13px;
  color: #999;
  margin-bottom: 24px;
}

.franchise .req {
  color: #c0392b;
}

.franchise .form-label {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin-bottom: 5px;
}

.franchise .form-control,
.franchise .form-select {
  font-size: 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  background: #faf9f7;
  padding: 10px 14px;
  color: #1a1a1a;
  transition: border-color 0.2s;
}

.franchise .form-control:focus,
.franchise .form-select:focus {
  border-color: #c0392b;
  box-shadow: none;
  background: #fff;
}

.franchise textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

.franchise .btn-franchise {
  background: #c0392b;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  padding: 12px 0;
  width: 100%;
  transition:
    background 0.2s,
    transform 0.15s;
}

.franchise .franchise .btn-franchise:hover {
  background: #96281b;
  color: #fff;
  transform: translateY(-1px);
}

.franchise .form-note {
  font-size: 11px;
  color: #bbb;
  text-align: center;
  margin-top: 10px;
}

.franchise .success-msg {
  display: none;
  background: #edfaf1;
  border: 1px solid #82daa1;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: #166534;
  font-size: 15px;
  font-weight: 600;
  margin-top: 16px;
}
.franchise.hero-course::after {
  left: 0;
}
/* ----------------------------franchise css end--------------------------- */

/* -----------------------thankyou page css start------------------------ */
.thankyou-message {
  background-color: #f5f0e8;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 95vh;
  padding: 40px 20px;
  width: 100%;
}
.thankyou-wrapper {
  background: #fff;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
/* -----------------------thankyou page css end here-------------------------- */

/* -----------------------register page css start--------------------------- */
.registration-form {
  min-height: 100vh;
}
.regitraion-logo-box {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
/* -----------------------register page css end--------------------------- */

/* -----------------------verify certificate page css start--------------------------- */
.verify-form {
  padding: 30px 30px 40px 30px;
}
.verify-form input {
  font-family: "Inter", sans-serif;
  color: #000;
  font-weight: 400;
  border-radius: revert-layer;
  font-size: 17px;
  padding: 7px 12px 7px 15px;
  background: 0 0;
  border: 1px solid rgba(0, 0, 0, 0.2509803922);
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 15px;
}
.verify-form input::placeholder {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #242424;
  opacity: .75;
  font-size: 15px;
  text-transform: capitalize;
}
.verify-form input.form-control {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.2509803922);
}
.verify-form .contact-value,
.verify-form .contact-value:active {
  color: #e6da77;
  background: #212121;
  display: flex;
  align-items: center;
  padding: 5px 15px;
}
.verify-form .verify-btn,.registerSection .default-btn
{
  background-color:#b53131; 
  color:#fff;
   padding: 5px 15px;
}
.verify-form .verify-btn:hover{
 background-color:#b53131; 
  color:#fff; 
}
/* -----------------------verify certificate page css End--------------------------- */

/* ------------------mobilebook free link css End------------------------------ */
/* ==============responsive================================== */
@media (min-width: 768px) {
  .counter-section br,.features-band .feature-title br {
    display: none;
  }
}

@media (min-width: 1921px) and (max-width: 2561px) {
  .sr_widget {
    height: 392px !important;
  }
}

@media (min-width: 1536px) and (max-width: 1920px) {
  .sr_widget {
    height: 392px !important;
  }
}

@media (max-width: 1749.98px) {
  .custom-padding {
    padding: 0 90px;
  }
}

@media (max-width: 1590.98px) {
  .custom-padding {
    padding: 0 60px;
  }

  header .main-logo {
    height: 45px;
  }

  header .btn-apply {
    padding: 8px 26px;

    font-size: 14px;
  }

  .btn-login svg {
    height: 25px;
    width: 25px;
  }

  .navbar-nav .nav-link svg:not(:root).svg-inline--fa {
    margin-left: 0;
  }
}

@media (max-width: 1499.98px) {
  .custom-padding {
    padding: 0px 30px;
  }

  header .btn-apply {
    margin-left: 7px;
    padding: 6px 18px;
  }

  .navbar-nav .nav-link svg:not(:root).svg-inline--fa {
    margin-left: 0;
  }
  .categories-section .ec-card .ec-card-header {
    padding: 15px;
  }
  .categories-section .ec-card .ec-card-icon {
    width: 40px;
    height: 40px;
  }
  .categories-section .ec-card .ec-card-icon svg {
    height: 25px;
    width: 25px;
  }
  .categories-section .ec-card .ec-card-header-title {
    font-size: 18px;

    line-height: 1.2;
  }
  .categories-section .ec-card .ec-card-header-left {
    gap: 8px;
  }
  .categories-section .ec-card .ec-card-num {
    font-size: 30px;
    left: 5px;
  }
  .deco-blue-circle {
    bottom: -44px;
    left: -40px;
    width: 90px;
    height: 90px;
  }
  .deco-pink {
    bottom: 50px;
    right: -54px;
    width: 90px;
    height: 90px;
    background: #e4f0fe;
  }
  .single-about {
    padding-top: 0;
    padding-bottom: 60px;
  }
  .single-about .common-para {
    font-size: 16px;
  }
  .single-about-right .img-box.main {
    width: 290px;
    height: 330px;
    left: 25px;
    top: 50px;
    z-index: 2;
    border-bottom-left-radius: 140px;
  }
  .single-about-right .img-box.side {
    width: 290px;
    height: 330px;
    right: 0;
    border-top-right-radius: 140px;
  }
  .single-about-right .shape.pink {
    width: 90px;
    height: 90px;
    top: 3px;
    left: -10px;
  }
  .single-about-right .shape.red {
    width: 90px;
    height: 90px;
    background: #b53131;
    bottom: 35px;
    left: 28px;
    border-radius: 50%;
    z-index: 1;
  }
  .single-about-right .shape.yellow {
    width: 70px;
    height: 154px;
    right: -28px;
    z-index: 1;
    bottom: 50px;
    background: rgb(232, 184, 75);
    border-radius: 70px;
  }
  .corporate-about-right img.second {
    position: relative;
    top: 45px;

    right: 54px;
    height: 300px;
  }
}

@media (max-width: 1399.98px) {
  .syllabus-dynamic-content strong {
    margin: 0 3px;
  }
  .common-heading {
    font-size: 40px;
  }
  .common-upper-heading {
    font-size: 19px;
  }

  .custom-padding {
    padding: 0px 40px;
  }

  header .main-logo {
    height: 40px;
  }

  .navbar-nav .nav-link {
    font-weight: 600;
    color: #0a0a0a;
    font-size: 15px;
    padding: 3px 4px !important;
  }
  .navbar-nav .sub-menu li .nav-link {
    font-size: 14px;
  }
  header .btn-apply {
    padding: 4px 10px;
    margin-left: 3px;
    font-size: 13px;
  }

  .btn-login svg {
    height: 23px;
    width: 23px;
  }
  .hero {
    padding-top: 50px;
  }
  .hero-title {
    font-size: 70px;
    line-height: 1;
  }
  .hero-subtitle {
    font-size: 17px;
  }
  .hero-title .star {
    font-size: 62px;
  }
  .hero-title {
    font-size: 66px;
    line-height: 1;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .video-left {
    width: 310px;
    height: 340px;
    left: -29px;
    top: 45px;
    border-bottom-left-radius: 160px;
  }
  .video-right {
    width: 310px;
    height: 340px;
    /* right: 65px; */
    top: 12px;
    left: 293px;
    border-top-right-radius: 160px;
  }
  .shape-blue {
    height: 200px;
    width: 200px;

    top: -100px;
    right: 303px;
  }
  .shape-yellow {
    width: 66px;
    height: 143px;
    background: #e8b84b;
    border-radius: 70px;
    bottom: 15px;
    right: 7px;
    z-index: 1;
    bottom: -8px;
  }
  .btn-view-all {
    font-size: 15px;
    padding: 6px 13px;
  }
  .hero .hero-contact-plus-location .btn-apply.home-phone {
    font-size: 15px;
  }
  .hero .hero-contact-plus-location .btn-apply.home-location {
    font-size: 15px;
  }
  .avatars .av {
    height: 38px;
    width: 38px;
  }
  .review-info .score {
    font-size: 14px;
  }
  .review-info .label {
    font-size: 12px;
  }
  .shape-red {
    width: 118px;
    height: 118px;
    bottom: -6px;
    left: -19px;
  }
  .shape-red h2 {
    font-size: 22px;
  }
  .shape-red span {
    font-size: 15px;
    line-height: 18px;
  }
  .counter-section {
    padding: 30px 0;
  }
  .counter-number {
    font-size: 50px;
  }
  .counter-label {
    font-size: 19px;
  }
  .categories-section .ec-card .ec-card-header {
    min-height: 90px;
  }
  .categories-section .price-now {
    /* font-size: 20px; */
  }
  .categories-section .price-old {
    font-size: 14px;
  }
  .categories-section .price-badge {
    font-size: 12px;
  }
  .categories-section .ec-card .ec-card-desc {
    font-size: 14px;
  }
  .right-course-wrapper {
    padding: 30px 50px 30px 90px;
  }
  .right-course-wrapper-left {
    bottom: 0px;
    padding-top: 15px;
  }
  .right-course .right-course-wrapper .right-course-badge {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .right-course .right-course-wrapper .right-course-title {
    font-size: 40px;
  }
  .right-course .right-course-wrapper .right-course-subtitle {
    font-size: 17px;
  }
  .right-course .right-course-wrapper .right-course-price-current {
    font-size: 25px;
  }
  .right-course .right-course-wrapper .right-course-price-original {
    font-size: 17px;
  }
  .right-course .right-course-wrapper .right-course-price-off {
    font-size: 15px;
  }
  .right-course .right-course-wrapper .right-course-duration {
    font-size: 15px;
  }
  .right-course .right-course-wrapper .right-course-benefits li {
    font-size: 16px;
  }
  .right-course-link-box .courseoffer {
    font-size: 15px;
  }
  .right-course-link-box .course-contact {
    font-size: 15px;
  }
  .hero-course .stars-count {
    font-size: 12px;
    color: #6b7280;
  }
  .hero-course .stars {
    font-size: 18px;
  }
  .hero-course .lang-tag {
    font-size: 13px;
  }
  .hero-course .course-title {
    font-size: 36px;
    line-height: 43px;
  }
  .hero-course .course-title span {
    font-size: 18px !important;
  }
  .hero-course .course-desc {
    font-size: 16px;
  }
  .hero-course .price-now {
    font-size: 30px;
  }
  .hero-course .price-old {
    font-size: 18px;
  }
  .hero-course .price-badge {
    font-size: 14px;
  }
  .hero-course .btn-red,
  .btn-outline-red {
    font-size: 15px;
    height: 35px;
  }
  .hero-course .form-card-header h3 {
    font-size: 22px;
  }
  .hero-course::before {
    height: 200px;
    width: 200px;
  }
  .hero-course .hero-asterisk {
    position: absolute;
    top: 24px;
    right: 55px;
    font-size: 25px;
  }
  .hero-course::after {
    width: 170px;
    height: 170px;
  }
  .features-band .icon-wrap {
    height: 50px;
    width: 50px;
  }
  .features-band .feature-title {
    font-size: 15px;
  }
  .features-band .feature-desc {
    font-size: 13px;
  }
  .course-syllabus .sec-title {
    font-size: 23px;
  }
  .course-syllabus .accordion-button {
    padding: 10px 16px;
  }
  .course-syllabus .acc-title {
    font-size: 19px;
  }
  .course-syllabus .acc-count {
    font-size: 13px;
  }
  .course-syllabus .accordion-button::before {
    font-size: 20px;
  }
  .syllabus-dynamic-content p {
    font-size: 15px;
    margin-bottom: 0;
  }
  .course-highlight-aside .cha-head-title {
  }
  .course-highlight-aside .cha-head-title {
    font-size: 14px;
  }
  .course-highlight-aside .cha-head-stars {
    font-size: 10px;
  }
  .course-highlight-aside .cha-head-stars span {
    font-size: 11px;
  }
  .course-highlight-aside .cha-lang {
    font-size: 12px;
  }
  .course-highlight-aside .cha-price {
    font-size: 30px;
  }
  .course-highlight-aside .cha-off-badge {
    font-size: 13px;
  }
  .course-highlight-aside .cha-old-price {
    font-size: 13px;
  }
  .course-highlight-aside .cha-btn-register {
    padding: 10px 16px;
    font-size: 12px;
  }
  .course-highlight-aside .cha-btn-trainer {
    padding: 10px 16px;
    font-size: 12px;
  }
  .course-highlight-aside .cha-feature {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: #242424;
    margin-bottom: 5px;
  }
  .participation-certificate .cert-learn h4 {
    font-size: 21px;
  }
  .participation-certificate .cert-learn .learn-sub {
    font-size: 12px;
  }
  .participation-certificate .common-para,
  .participation-certificate #courseAboutContent p,
  .participation-certificate #courseAboutContent ul li {
    font-size: 16px;
  }
  .cert-tag {
    font-size: 12px;
  }
  .cert-left h2 {
    font-size: 25px;
  }
  .cert-left p {
    font-size: 13px;
  }
  .certificate-icon svg {
    width: 100px;
    height: 100px;
  }
  .cert-cta .btn-gold {
    margin-top: 20px;
    font-size: 13px;
    padding: 10px 28px;
  }
  .exam-certificate h2 {
    font-size: 40px;
  }
  .exam-certificate h3 {
    font-size: 22px;
  }
  .exam-certificate p {
    font-size: 16px;
    line-height: 28px;
  }
  .exam-certificate::before {
    top: 249px;
    right: 52px;
    width: 200px;
    height: 200px;
  }
  .alumni-card {
    height: 200px;
    width: 200px;
  }
  .faq-header h2 {
    font-size: 2rem;
  }
  .faq-accordion .accordion-button {
    font-size: 20px;
  }
  .faq-accordion .accordion-body {
    /* padding: 13px 24px 13px 72px; */
    font-size: 16px;
  }
  .faq-num {
    font-size: 15px;
    width: 30px;
    height: 30px;
  }
  .hero-course {
    padding-top: 40px;
  }

  .hero-course .form-card-header .cert-note {
    font-size: 14px;
  }
  .features-band .feature-card {
    padding: 17px 16px;
  }
  .course-highlight-aside .cha-divider {
    margin: 0;
  }
  .related-course {
    padding-top: 0 !important;
    padding-bottom: 40px !important;
  }
  .whatsapp-float {
    height: 50px;
    width: 50px;
  }
  .whatsapp-float svg {
    height: 35px;
    width: 35px;
  }

  .skill-title {
    font-size: 15px;
  }
  .skill-icon {
    height: 53px;
    width: 53px;
  }
  .skill-icon svg {
    height: 27px;
    width: 27px;
  }
  .skill-desc {
    font-size: 14px;
  }
  footer .logo-icon img {
    height: 40px;
  }
  .footer-para {
    font-size: 14px;
  }
  footer .nav-title {
    font-size: 20px;
  }
  .contact-value {
    font-size: 14px;
  }
  .social-label {
    font-size: 15px;
  }
  .social-icon {
    height: 35px;
    width: 35px;
  }
  .social-icon svg {
    height: 18px;
    width: 18px;
  }
  footer .nav-link-item {
    font-size: 14px;
  }
  footer .trainer-partner-link {
    font-size: 14px;
  }
  .footer-location-btn {
    font-size: 14px;
  }
  .sr_widget {
    height: 390px !important;
  }
  .breadcrumb {
    font-size: 15px;
  }
  .page-hero h1 {
    font-size: 55px;
  }
  .breadcrumb-wrapper {
    padding-bottom: 20px;
  }
  .single-about {
    padding-top: 0;
    padding-bottom: 60px;
  }
  .single-about .common-para {
    font-size: 16px;
  }
  .single-about-right .img-box.main {
    width: 250px;
    height: 330px;
    left: 25px;
    top: 50px;
    z-index: 2;
    border-bottom-left-radius: 140px;
  }
  .single-about-right .img-box.side {
    width: 250px;
    height: 330px;
    right: 0;
    border-top-right-radius: 140px;
  }
  .single-about-right .shape.pink {
    width: 90px;
    height: 90px;
    top: 7px;
    left: -12px;
  }
  .single-about-right .shape.red {
    width: 90px;
    height: 90px;
    background: #b53131;
    bottom: 35px;
    left: 28px;
    border-radius: 50%;
    z-index: 1;
  }
  .single-about-right .shape.yellow {
    width: 70px;
    height: 154px;
    right: -28px;
    z-index: 1;
    bottom: 50px;
    background: rgb(232, 184, 75);
    border-radius: 70px;
  }
  .page-hero {
    padding: 50px 0;
  }
  .corporate-training .ct-form-panel {
    padding: 20px 35px;
  }
  .corporate-training .ct-badge {
    font-size: 13px;
  }
  .corporate-training .ct-title {
    font-size: 38px;
  }
  .corporate-training .ct-desc {
    font-size: 16px;
    max-width: 460px;
  }
  .corporate-training .ct-form-title {
    font-size: 28px;
  }
 
  .corporate-training .ct-field input,
  .corporate-training .ct-field select,
  .corporate-training .ct-field textarea {
    padding: 5px 10px;
  }
  .corporate-training .ct-submit {
    padding: 6px 10px;
    font-size: 16px;
  }
  .feat-ico {
    height: 60px;
    width: 60px;
  }
  .feat-ico svg {
    height: 40px;
    width: 40px;
  }
  .feat-item h6 {
    font-size: 18px;
  }
  .feat-item p {
    font-size: 14px;
  }
  .corporate-about-right img {
    height: 200px;
  }
  .corporate-about-right img.second {
    height: 200px;
  }
  .franchise {
    padding-top: 25px;
  }
  .franchise .section-tag {
    font-size: 14px;
    margin-bottom: 0;
  }
  .franchise .section-title {
    font-size: 40px;
  }
  .franchise .section-sub {
    font-size: 12px;
  }
  .franchise .form-card {
    margin: 20px auto 0px auto;
    padding: 20px;
    max-width: 500px;
    padding-bottom: 12px;
    padding-top: 10px;
  }
  .franchise .form-card .mb-3 {
    margin-bottom: 8px !important;
  }
  .franchise .form-label {
    font-size: 13px;
  }
  .franchise .form-control,
  .franchise .form-select {
    padding: 5px 14px;
  }
  .franchise textarea.form-control {
    min-height: 65px;
  }
  .franchise .btn-franchise {
    font-size: 14px;
    padding: 5px 0;
    margin-top: 7px;
  }
  .thankyou-wrapper {
    padding: 45px 35px;
  }
  .thankyou-wrapper svg {
    height: 50px;
    width: 50px;
  }
  .thankyou-wrapper h2 {
    font-size: 32px !important;
  }
  .thankyou-wrapper p {
    font-size: 15px !important;
  }
  .thankyou-wrapper .return-home {
    padding: 5px 15px !important;
    font-size: 14px;
  }
  .all-courses .ac-filter select {
    padding: 7px 38px 7px 14px;
    font-size: 13px;
  }
  .all-courses .section-title {
    font-size: 26px;
  }
  .all-courses .ec-card-icon {
    height: 40px;
    width: 40px;
  }
  .all-courses .ec-card-icon svg {
    height: 25px;
    width: 25px;
  }
  .all-courses .ec-card-header-title {
    font-size: 19px;
  }
  .all-courses .ec-card-num {
    font-size: 32px;
  }
  .all-courses .ec-card-desc {
    font-size: 14px;
  }
  .all-courses .price-now {
    font-size: 20px;
  }
  .all-courses .price-old {
    font-size: 14px;
  }
  .all-courses .price-badge {
    font-size: 12px;
  }
  [data-category="web-design-marketing"] .ec-card-header {
    min-height: 135px !important;
  }
  .course-highlight-aside {
    margin: 0 5px;
  }
  .contact-us-single .card-header {
    padding: 15px 28px 15px;
  }
  .contact-us-single .header-text .location-label {
    font-size: 12px;
  }
  .contact-us-single .header-text .location-name {
    font-size: 20px;
  }
  .contact-us-single .header-pin {
    height: 35px;
    width: 35px;
  }
  .contact-us-single .card-body {
    padding: 15px 28px 15px;
  }
  .contact-us-single .info-icon {
    height: 30px;
    width: 30px;
  }
  .contact-us-single .info-label {
    font-size: 12px;
  }
  .contact-us-single .info-value {
    font-size: 16px;
  }
}

@media (max-width: 1299.98px) {
  .custom-padding {
    padding: 0px 30px;
  }

  .navbar-nav .nav-link svg:not(:root).svg-inline--fa {
    margin-left: 3px;
  }

  header .main-logo {
    height: 32px;
  }

  .navbar-nav .nav-link svg:not(:root).svg-inline--fa {
    margin-left: 0px;
  }

  .navbar-nav .nav-link {
    font-weight: 600;
    color: #0a0a0a;
    font-size: 14px;
    padding: 3px 4px !important;
  }

  header .btn-apply {
    padding: 4px 16px;
    margin-left: 3px;
    font-size: 13px;
  }

  header .btn-login {
    margin-left: 10px;
  }

  .btn-login svg {
    height: 21px;
    width: 21px;
  }
}

@media (max-width: 1199.98px) {
  .common-upper-heading {
    font-size: 20px;
  }
  .common-heading {
    font-size: 45px;
  }
  .custom-padding {
    padding: 0px 100px;
  }

  header .main-logo {
    height: 50px;
  }
  .hero-title {
    font-size: 53px;
    line-height: 55px;
  }
  .hero-subtitle {
    font-size: 15px;
  }
  .hero {
    min-height: unset;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .hero-title {
    font-size: 56px;
  }

  .video-left {
    width: 240px;
    height: 280px;
    left: -29px;
    top: 45px;
    border-bottom-left-radius: 140px;
  }
  .video-right {
    width: 240px;
    height: 280px;
    /* right: 65px; */
    top: 12px;
    left: 224px;
    border-top-right-radius: 140px;
  }
  .shape-blue {
    height: 180px;
    width: 180px;
    top: -119px;
    right: 198px;
  }
  .shape-yellow {
    width: 49px;
    height: 114px;
    background: #e8b84b;
    border-radius: 70px;
    bottom: 15px;
    right: 53px;
    z-index: 1;
    bottom: 1px;
  }
  .shape-red {
    width: 100px;
    height: 100px;
    bottom: -15px;
    left: -19px;
  }
  .shape-red h2 {
    font-size: 20px;
  }

  .shape-red span {
    font-size: 13px;
    line-height: 15px;
  }
  .shape-star {
    font-size: 30px;
  }
  .counter-section {
    padding: 20px 0;
  }
  .counter-number {
    font-size: 45px;
    margin-bottom: 5px;
  }
  .counter-label {
    font-size: 18px;
  }
  .categories-section {
    padding: 80px 0;
  }
  .categories-section .ec-card .ec-card-desc {
    font-size: 15px;
  }
  .right-course-wrapper-left {
    bottom: 0;
  }
  footer .nav-link-item {
    word-wrap: break-word;
    overflow-wrap: anywhere;
    padding: 7px 15px;
  }
  .hero-course-left {
    padding-right: 48px;
  }
  .course-highlight-aside {
    margin: 0 10px;
  }
  .single-about-right .shape.pink,
  .single-about-right .shape.red,
  .single-about-right .shape.yellow {
    display: none;
  }
  .single-about-right .img-box.main {
    width: 220px;
    height: 270px;
    left: 0;
    top: 50px;
    z-index: 2;
    border-bottom-left-radius: 100px;
  }
  .single-about-right .img-box.side {
    width: 220px;
    height: 270px;
    right: 0;
    border-top-right-radius: 100px;
  }
}

@media (max-width: 1080.98px) {
  .shape-yellow {
    width: 44px;
    height: 107px;
    right: 30px;
  }
}
@media (max-width: 1024.98px) {
  .shape-blue {
    height: 160px;
    width: 160px;
    top: -94px;
    right: 198px;
  }
  .shape-yellow {
    width: 44px;
    height: 107px;
    right: -3px;
  }
}
@media (max-width: 991.98px) {
  .common-upper-heading {
    font-size: 21px;
  }
  .hero .hero-contact-plus-location {
    justify-content: center;
  }
  .hero {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .hero-title {
    font-size: 36px;
    line-height: 20px;
    margin-top: 30px;
  }
  .hero-subtitle {
    font-size: 14px;
    padding: 0 120px;
    margin-bottom: 16px;
  }

  .hero .shape-blue,
  .hero .shape-yellow {
    display: none;
  }
  .shape-star {
    font-size: 27px;
  }

  .hero .row {
    flex-direction: column-reverse;
  }
  .hero-right {
    display: flex;
    justify-content: center;
  }
  .video-card {
    position: static;
  }
  .hero-left {
    max-width: unset;
    text-align: center;
  }
  .hero-title br {
    display: none;
  }
  .hero-title .star {
    font-size: 40px;
  }
  .review-row {
    justify-content: center;
  }
  .video-left {
    width: 240px;
    height: 280px;
    left: -29px;
    top: 45px;
    border-bottom-left-radius: 100px;
  }
  .video-right {
    width: 240px;
    height: 280px;

    top: 12px;
    left: 224px;
    border-top-right-radius: 100px;
    margin-left: 10px;
  }
  .shape-red {
    width: 88px;
    height: 88px;
    bottom: 204px;
    left: 49px;
  }
  .shape-red h2 {
    font-size: 18px;
  }
  .shape-red span {
    font-size: 12px;
    line-height: 13px;
  }
  .right-course .row {
    flex-direction: column-reverse;
  }
  .right-course-wrapper img {
    height: 400px;
    margin-bottom: 20px;
  }
  .right-course-wrapper {
    padding: 25px 40px 25px 40px;
    border-bottom-right-radius: 120px;
    border-top-left-radius: 120px;
  }
  .hero-course-left {
    padding-right: 0;
  }
  .hero-course .stars {
    font-size: 15px;
  }
  .hero-course .lang-tag {
    font-size: 12px;
  }
  .hero-course .course-title {
    font-size: 32px;
  }
  .hero-course .course-desc {
    font-size: 15px;
    line-height: 25px;
  }
  .hero-course .form-card-header h3 {
    font-size: 17px;
  }
  .hero-course .form-card-header .cert-note {
    font-size: 12px;
  }
  .hero-course .form-card-header {
    padding: 6px 20px;
  }
  .course-highlight-aside {
    margin: 0 0;
  }
  .course-highlight-aside .cha-head {
    padding: 10px 10px;
  }
  .features-band .icon-wrap {
    height: 38px;
    width: 38px;
  }
  .features-band .feature-card {
    padding: 14px 7px;
  }
  .features-band .icon-wrap i {
    font-size: 18px;
  }
  .ec-cards-slider .slick-prev,
  .ec-cards-slider .slick-next {
    top: 100%;
    width: 33px;
    height: 33px;
  }
  .ec-cards-slider .slick-prev:before,
  .ec-cards-slider .slick-next:before {
    font-size: 14px;
  }
  .ec-cards-slider .slick-prev {
    left: 42%;
  }
  .ec-cards-slider .slick-next {
    right: 42%;
  }
  .cert-banner {
    padding: 24px 40px 0 40px;
    margin-bottom: 30px;
  }
  .cert-cta {
    display: none;
  }
  .categories-section {
    padding-top: 0;
  }
  .exam-certificate::before {
    display: none;
  }
  .exam-certificate .content {
    padding-right: 0;
  }
  .page-hero {
    padding: 50px 0 50px;
  }
  .breadcrumb-wrapper {
    padding-bottom: 15px;
  }
  .breadcrumb {
    font-size: 16px;
  }
  .page-hero h1 {
    font-size: 50px;
  }
  .contact-us-single {
    padding-top: 0;
  }
  .contact-us-single .card-header {
    padding: 18px 18px;
  }
  .contact-us-single .header-text .location-label {
    margin-bottom: 0;
  }
  .contact-us-single .contact-wrap .row {
    flex-direction: column-reverse;
  }
  .contact-us-single .map-side .hero-form-card {
    border-radius: 0;
  }
  .single-about.corporate-about {
    padding-bottom: 80px;
  }
  .single-about-right .img-box.main {
    width: 300px;
    height: 270px;
    left: 0;
    top: 50px;
    z-index: 2;
    border-bottom-left-radius: 100px;
  }
  .single-about-right .img-box.side {
    width: 300px;
    height: 270px;
    right: 0;
    border-top-right-radius: 100px;
    right: 80px;
    top: 50px;
  }
  .single-about {
    padding-bottom: 0;
  }
  .page-hero::before,
  .page-hero::after {
    display: none;
  }
  .thankyou-message {
    min-height: unset;
    padding: 80px 20px;
  }
  .mobile-bottom-btns {
    margin-top: 0;
  }
  .mobile-bottom-btns .btn-apply {
    padding: 6px 12px;
    font-size: 14px;
  }
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: 60px;
  }
  .section-tag span {
    display: none;
  }
  .common-upper-heading {
    font-size: 18px;
    text-align: center;
  }
  .common-heading {
    font-size: 33px;
  }

  .hero {
    padding: 50px 0;
  }
  .hero .shape-red {
    display: none;
  }
  .video-left {
    width: 240px;
    height: 215px;

    border-bottom-left-radius: 30px;
  }
  .video-right {
    width: 240px;
    height: 215px;

    border-top-right-radius: 30px;
    margin-left: 10px;
  }
  .hero-title {
    font-size: 32px;
    line-height: 38px;
    margin-top: 11px;
    margin-bottom: 8px;
  }
  .hero-title .star {
    display: none;
  }
  .hero-subtitle {
    padding: 0 25px;
    font-size: 16px;
    line-height: 22px;
  }
  .counter-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
  }
  .counter-number {
    font-size: 40px;
  }
  .counter-label {
    font-size: 16px;
    padding: 0 20px;
  }
  .counter-item:not(:last-child)::after {
    top: 40px;
  }
  .features-band .features-row-outer {
    flex-wrap: wrap;
  }
  .features-band .features-row-outer > div {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .features-band .features-row-outer > div:nth-child(5) {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .features-band .feature-card {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .ec-cards-slider .slick-prev,
  .ec-cards-slider .slick-next {
    top: 100%;
    width: 33px;
    height: 33px;
  }
  .ec-cards-slider .slick-prev:before,
  .ec-cards-slider .slick-next:before {
    font-size: 14px;
  }
  .ec-cards-slider .slick-prev {
    left: 42%;
  }
  .ec-cards-slider .slick-next {
    right: 42%;
  }
  .exam-certificate h2 {
    font-size: 33px;
  }
  .whatsapp-float {
    display: none;
  }
  .single-about-right .img-box.main {
    width: 210px;
    height: 270px;
  }
  .single-about-right .img-box.side {
    width: 210px;
    height: 270px;
  }
  .faq-section::before,
  .faq-section::after,
  .faq-deco-star {
    display: none;
  }
  .footer-location-btn.get-direction {
    margin-left: 0;
    margin-top: 12px;
  }
  footer .footer-about-list
  {
    column-count: 2;
  }
}

@media (max-width: 575.98px) {
  header .custom-padding {
    padding: 0 50px;
  }
  .btn-view-all {
      padding: 8px 16px;
      font-size: 15px;
  }
  .hero-title {
    font-size: 36px;
    line-height: 42px;
    margin-top: 16px;
    margin-bottom: 10px;
  }
  .hero-title .outline {
    -webkit-text-stroke: unset;
    color: #b73430;
  }
  .alumini {
    padding-top: 0;
    padding-bottom: 50px;
  }
  .alumni-card {
    width: 200px;
    height: 200px;
  }
  .carousel-wrap::before,
  .carousel-wrap::after {
    display: none;
  }
  .right-course {
    padding: 30px 0;
  }
  .right-course-wrapper img {
    height: 270px;
  }

  .right-course-wrapper {
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
  }
  .right-course .right-course-wrapper .right-course-badge {
    font-size: 13px
  }
  .right-course .right-course-wrapper .right-course-badge svg
  {
    height: 16px;
    width: 16px;
  }
  .right-course .right-course-wrapper .right-course-title {
    font-size: 30px;
  }
  .right-course .right-course-wrapper .right-course-price-current {
    font-size: 26px;
  }
  .right-course .right-course-wrapper .right-course-price-original {
    font-size: 15px;
  }
  .right-course .right-course-wrapper .right-course-price-off {
    font-size: 13px;
  }
  .right-course .right-course-wrapper .right-course-duration {
    font-size: 14px;
    margin-top: 3px;
  }
  .right-course .right-course-wrapper .right-course-duration svg
  {
    height: 18px;
    width: 18px;
  }
  .right-course .right-course-wrapper .right-course-benefits li {
    font-size: 15px;
    align-items: self-start;
  }
  section.skill {
    padding: 70px 0;
  }
  footer .nav-title {
    margin-bottom: 10px;
  }
  .categories-section .ec-card .ec-card-num {
    /* color: #555555; */
  }
  .categories-section .ec-card .ec-card-header-title,.all-courses .ec-card-header-title {
    color: #222222;
    font-size: 20px;
    line-height: 24px;
  }
  .categories-section .ec-card .ec-card-desc,.all-courses .ec-card-desc {
    font-size: 16px;
    line-height: 24px;
  }
  .all-courses .price-now
  {
    font-size: 22px;
  }
  .all-courses .price-badge
  {
    font-size: 11px;
  }
  .categories-section .ec-card .ec-card-body {
    padding: 16px;
  }
  .all-courses .ec-card-num
  {
    font-size: 30px;
    left:5px;
  }
  .hero-course .form-card-header h3 {
    font-size: 15px;
  }
  .verify-certificate-single .form-card-header h3{
    font-size: 20px;
  }
  .verify-form .verify-btn {
   /* padding: 5px 15px; */
  }
  .categories-section .price-badge {
    font-size: 11px;
  }
  .categories-section .ec-card .ec-card-link,.all-courses .ec-card-link
  {
    height: 32px;
    width: 32px;
    background-color: transparent;
  }
  .categories-section .ec-card .ec-card-link svg,.all-courses .ec-card-link svg{
    width: 18px;
    height: auto;
  }
  .all-courses .section-line
  {
    display: none;
  }
  .related-course .ec-cards-slider .slick-next,.related-course .ec-cards-slider .slick-prev
  {
    top:108%;
  }
  .all-courses .ac-filter-wrap
  {
    margin-bottom:20px;
  }
  .hero-course .course-title
  {
    margin-bottom: 5px;
  }
  .hero-course .stars-count
  {
    font-size: 13px;
  }
  .hero-course .lang-tag
  {
    font-size: 14px;
  }
  .hero-course .course-desc
  {
    font-size: 16px;
  }
  .features-band .feature-title
  {
    font-size: 17px;
    line-height: 22px;
  }
  .features-band .feature-desc
  {
    font-size: 15px;
  }
  .feature-strip-wrapper .feat-item h6 
  {
    font-size: 20px;
  }
  .feature-strip-wrapper .feat-item p
  {
    font-size: 16px;
  }
  .registerSection .common-para{
    font-size: 16px;
    margin: 5px 0 15px 0;
  }
      .franchise .form-card
     {
      margin-bottom: 50px;
     }
}
@media (max-width: 516.98px) {
  .common-heading {
    font-size: 34px;
    line-height: 40px;
  }
  .common-upper-heading {
    font-size: 15px;
    margin-top: 5px;
  }
  .res-red {
    color: #b53131;
  }
  .categories-section {
    padding-top: 50px;
    padding-bottom: 70px;
  }
  section.skill {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .hero .hero-contact-plus-location {
    justify-content: center;
  }
  .hero .hero-contact-plus-location .btn-apply.home-phone {
    font-size: 15px;
    line-height: 20px;
  }
  .hero .hero-contact-plus-location .btn-apply.home-location {
    font-size: 15px;
    line-height: 20px;
  }
  .alumni-card {
    width: 170px;
    height: 170px;
  }
  .right-course-wrapper img {
    display: none;
  }
  .skill .g-3 {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
  }
  .skill-pic-wrapper {
    height: 230px;
    width: 100%;
    border: 0;
    border-radius: 0;
  }
  .skill-pic-wrapper img {
    object-position: bottom;
  }
  .skill-icon {
    width: 45px;
    height: 45px;
  }
  .skill-icon svg {
    width: 25px;
    height: 25px;
  }
  .skill-card {
    display: flex;
    align-items: self-start;
    padding: 16px;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #dedede69;
  }
  .skill-title {
    font-size: 18px;
    margin-top: 0;
    line-height: 24px;
    margin-bottom: 6px;
  }
  .skill-desc {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 0;
  }
.right-course-link-box .courseoffer,.right-course-link-box .course-contact
{
  font-size: 15px;
  line-height: 20px;
  padding: 8px 16px;
  height: 38px;
}

  .footer-para {
    font-size: 15px;
  }
  .social-label {
    font-size: 16px;
    margin-bottom: 2px;
    margin-top: 10px;
  }
  .social-icon {
    height: 33px;
    width: 33px;
  }
  footer .nav-link-item {
    padding: 2px 5px;
    font-size: 15px;
  }
  .footer-margin {
    margin-top: 15px;
  }
  .right-course .right-course-wrapper .right-course-benefits li::before
{
  position: relative;
  top:4px;
}
.footer-middle-row
{
  margin: 15px 0;
}
 .footer-middle-row ul
 {
   margin-bottom: 0;
 }
 footer .trainer-partner-link.footer-verify-certificate
 {
  margin-right: 12px;
  font-size: 15px;
 }
 footer .trainer-partner-link
 {
  font-size: 15px;
 }
 .social-list-footer
 {
  gap: 10px!important;
  margin-bottom: 10px;
 }
}

@media (max-width: 480.98px) {
  header .main-logo {
    height: 40px;
  }
  header .custom-padding {
    padding: 0 20px;
  }
  footer .logo-icon img {
    height: 40px;
  }
  .counter-section {
    padding: 15px 0;
  }
  .counter-number {
    font-size: 30px;
  }
  .counter-label {
    font-size: 13px;
    /* padding: 0 15px; */
    /* line-height: 1.2; */
    line-height: 16px;
    padding: 0;
  }
  .categories-section {
    /* padding-top: 0; */
  }
  footer .nav-title {
    font-size: 18px;
    margin-bottom: 0;
  }

  footer .trainer-partner-link {
    font-size: 15px;
    padding: 5px 10px;
    margin-bottom: 0;
    height: 33px;
  }

  .footer-location-btn {
    padding: 5px 10px;
    font-size: 15px;
    height: 33px;
  }

  .whatsapp-float {
    width: 34px;
    height: 34px;
    bottom: 40px;
  }
  .whatsapp-float svg {
    height: 25px;
    width: 25px;
  }
  .footer-location-btn svg {
    height: 18px;
    width: 18px;
  }
  .contact-value {
    font-size: 13px;
    padding: 3px 10px;
  }
  .footer-list {
    margin-bottom: 4px !important;
  }
  .nav-title.one {
    margin-top: 5px;
  }
  .trainer-loaction-wrpper {
    margin-top: 15px;
  }
  .footer-main {
    padding-bottom: 25px;
  }
  .footer-bottom {
    padding: 10px 0;
  }
  .copy {
    font-size: 13px;
  }
  .ec-cards-slider .slick-prev {
    left: 38%;
  }
  .ec-cards-slider .slick-next {
    right: 38%;
  }
  .fixed-book-free-btn,
  a.whatsapp-link.whatsapp-link2 {
    font-size: 15px;
    padding: 7px 12px;
    height: 35px;
  }
  a.whatsapp-link.whatsapp-link2 span {
    padding: 0;
    font-size: 15px;
  }
  a.whatsapp-link.whatsapp-link2 svg {
    width: 20px;
    /* padding-left: 6px; */
    margin-left: 5px;
  }
  .hero-course {
    padding: 40px 10px;
    padding-bottom: 0;
  }
  .hero-course .hero-asterisk,
  .hero-course::before {
    display: none;
  }
  .hero-course .btn-red,
  .hero-course .btn-outline-red {
    font-size: 14px;
    height: 33px;
  }
  .course-syllabus {
    padding: 60px 10px;
  }
  .participation-certificate {
    padding: 60px 10px;
  }
  .course-syllabus .acc-title {
    font-size: 18px;
  }
  .course-syllabus .acc-count
  {
    font-size: 14px;
  }
  .syllabus-dynamic-content p
 {
  font-size: 16px;
 }

  .participation-certificate .cert-learn {
    padding: 20px !important;
  }
  .participation-certificate .cert-learn h4
  {
    font-size:22px;
  }
  .participation-certificate .cert-learn .learn-sub
  {
    font-size: 13px;
  }
  .participation-certificate .cert-about {
    padding: 20px !important;
  }
  .participation-certificate .common-para,
  .participation-certificate #courseAboutContent p,
  .participation-certificate #courseAboutContent ul li {
    font-size: 16px;
  }
  .cert-banner {
    padding: 20px 25px;
    padding-bottom: 0;
  }
  .cert-tag {
    font-size: 11px;
  }
  .cert-left h2 {
    font-size: 20px;
  }
  .cert-left p 
  {
    font-size:14px;
  }
  .certificate-icon svg {
    width: 80px;
    height: 80px;
  }
  .exam-certificate {
    padding: 30px 10px 50px 10px;
  }
  .exam-certificate h2 {
    font-size: 30px;
  }
  .exam-certificate h3 {
    font-size: 20px;
  }
  .faq-header h2 {
    font-size: 30px;
  }
  .faq-accordion .accordion-button {
    display: flex;
    align-items: self-start;
    font-size: 18px;
  }
  .features-band .features-row-outer > div:nth-child(5) .feature-desc {
    padding: 0 65px;
  }
  .mobile-bottom-btns .btn-apply {
    flex: unset;
    margin-left: 0;
    padding: 4px 10px;
    font-size: 16px;
  }
  .btn-login-mobile
  {
      padding: 4px 10px;
    font-size: 16px;
  }
  .contact-us-single .card-header {
    padding: 15px 15px;
  }
  .contact-us-single .header-text .location-label {
    font-size: 12px;
    letter-spacing: 2px;
  }
  .contact-us-single .header-pin,
  .contact-us-single .info-icon {
    width: 30px;
    height: 30px;
  }
  .contact-us-single .header-pin svg {
    height: 16px;
    width: 16px;
  }
  .contact-us-single .info-value {
    font-size: 16px;
  }
  .contact-us-single .map-side .hero-form-card .form-card-body {
    padding: 5px !important;
  }
  .contact-us-single .map-side .hero-form-card .sr_widget {
    height: 375px !important;
  }
  .breadcrumb {
    font-size: 14px;
  }
  .page-hero h1 {
    font-size: 35px;
  }
  .single-about-right {
    height: 370px;
  }
  .single-about-right .img-box.main,
  .single-about-right .img-box.side {
    border-radius: 0;
    width: 47%;
    height: 230px;
  }
  .single-about-right .img-box.side {
    right: 10px;
  }
  .page-hero {
    padding: 30px 0 30px;
  }
  .single-about.corporate-about {
    padding-bottom: 40px;
  }
  .corporate-training .ct-title {
    font-size: 28px;
  }
  .corporate-training .ct-badge {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .corporate-training .ct-desc {
    margin-bottom: 20px;
  }
  .feature-strip-wrapper {
    padding: 40px 0;
  }
  .features-strip {
    background-color: unset;
  }
  .feat-item {
    margin: 4px 0;
    background-color: #ffff;
  }
  .corporate-about .corporate-about-left {
    padding-right: 0;
    padding-top: 20px;
  }
  .corporate-about {
    padding-bottom: 40px;
  }
  .corporate-about .row {
    flex-direction: column-reverse;
  }
  .corporate-about-right img.second {
    position: unset;
    top: 0;
  }
  .franchise .section-tag {
    font-size: 13px;
  }
  .franchise .section-title {
    font-size: 34px;
  }
  .franchise .section-sub {
    font-size: 13px;
    padding: 0 38px;
  }
  .thankyou-message {
    min-height: unset;
  }

  footer .btn-close {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #b53131;
    opacity: 1;
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    right: 6px;
    top: -11px;
  }
  .categories-section .ec-card .ec-card-header,.all-courses .ec-card-header {
    min-height: 65px;
  }
  .categories-section .ec-card {
    margin-bottom: 12px;
  }
  .categories-section .ec-card .ec-card-meta {
    padding-top: 10px;
  }
  .alumini .carousel-wrap {
    padding: 0;
  }
   footer .nav-title {
    font-size: 21px;
  }
   .contact-value {
    font-size: 17px;
    padding: 3px 8px;
    margin: 15px 0;
    margin-top: 4px;
  }
  .verify-form .contact-value,
.verify-form .contact-value:active
{
  margin: 0;
}
  .all-courses #dynamic-courses-container .courses-section .row
  {
    margin-bottom: 50px;
  }
  .all-courses #dynamic-courses-container .courses-section:last-child .row
  {
    margin-bottom:0;
  }
  .all-courses .section-head
  {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 20px;
  }
  .all-courses div.col-lg-4.col-md-6 
  {
    margin:12px 0 0px 0!important;
  }
  .verify-certificate-single .form-card-header{
    font-size: 20px;
        padding: 8px 20px;
  }
}
@media (max-width: 440.98px) {
  .right-course-wrapper {
    padding: 25px 20px 25px 20px;
  }
  .deco-blue-circle {
    display: none;
  }
  .deco-blue-circle {
    display: none;
  }
  .deco-pink {
    display: none;
  }
  header .custom-padding {
    padding: 0 16px;
  }
  .single-about-right {
    height: 320px;
  }
  .single-about-right .img-box.main {
    height: 200px;
  }
  .single-about-right .img-box.side {
    height: 200px;
    border-radius: 0;
  }
  .page-hero h1 {
    font-size: 30px;
  }
  .terms-condition .terms-card {
    padding: 25px;
  }
  .terms-condition .terms-card-title {
    font-size: 23px;
  }
  .terms-condition .terms-card-intro {
    font-size: 16px;

    line-height: 1.5;
  }
  .faq-section {
    padding: 0 0 50px;
  }
  .all-courses {
    padding-bottom: 40px;
  }
  .all-courses .courses-section {
    margin-bottom: 0;
  }
  .all-courses #dynamic-courses-container {
    margin-top: 15px;
  }
 
  .all-courses .section-head {
    display: block;
  }
  .all-courses .section-title {
    font-size: 23px;
  }
  .mobile-menu-logo {
    height: 40px;
  }
  .skill-pic-wrapper {
    height: 210px;
  }
}
@media (max-width: 420.98px) {
  .hero-course .form-card-header {
    padding: 6px 15px;
  }
   .verify-certificate-single .form-card-header{
    font-size: 20px;
        padding: 8px 20px;
  }
}

@media (max-width: 390.98px) {
  .skill-pic-wrapper {
    height: 180px;
  }
 
 
  .hero-course .course-title {
    font-size: 30px;
    line-height: 35px;
  }
  .hero-course .course-title span {
    display: inline-block;
    line-height: 25px;
    bottom: 0;
  }
  .right-course {
    padding: 30px 0px;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.25) and (-webkit-max-device-pixel-ratio: 1.99) {
  .sr_widget {
    height: 388px !important;
  }
}

/* ===== Student Portal Login Page (Legacy Design) ===== */
.header-small {
  padding: 40px 0 0;
}
.header-small .logo img {
  width: 140px;
}
.header-small .logo {
  text-align: center;
}

.registerPage {
  position: relative;
}
.registerPage:after {
  position: absolute;
  height: 300px;
  content: "";
  width: 100%;
  background: #c3c3c3;
  top: 0;
  left: 0;
  filter: grayscale(1);
  opacity: 0.05;
  z-index: 0;
}
.registerPage .main {
  z-index: 1;
  position: relative;
}

.registerSection {
  padding: 20px 0 20px 0;
}
.registerSection .formTitle {
  text-align: center;
  margin: 0;
  font-size: 22px;
  text-transform: uppercase;
  color: #fff;
  background: #ad3335;
  padding: 8px 45px;
  border-radius: 20px 20px 0 0;
  letter-spacing: 1px;
  display: flex;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.registerSection .formTitle span svg {
  width: 17px;
  fill: #fff;
  position: relative;
  bottom: 3px;
}
.registerSection .formTitle:after {
  height: 20px;
  width: 90px;
  border-top: 5px solid #0098da;
  border-bottom: 5px solid #fff;
  position: absolute;
  content: "";
  right: 0;
  transform: rotate(-60deg);
  top: 20px;
}
.registerSection .formTitle a {
  font-size: 24px;
  display: none;
  color: #fff !important;
}
.registerSection .default-btn {
  /* padding: 10px 20px; */
  line-height: normal;
  background: #b53131;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 0.5px;
}
/* .registerSection .default-btn:hover {
  background: #8a2020;
} */
.registerSection form {
  padding: 20px 30px 30px;
  background: #fff;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.registerSection form > p {
  font-size: 20px;
  display: block;
  text-transform: none;
  line-height: normal;
  margin: 0 0 26px 0;
  color: #000;
}
.registerSection form > p.registerSubTitle {
  font-size: 20px;
}
.registerSection .form-control {
  font-weight: 400;
  font-size: 18px;
  border-color: rgba(0, 0, 0, .2509803922);
}
.registerSection .form-control:focus{
  box-shadow: none;
}
.registerSection .form-control::-webkit-input-placeholder {

   font-family: Inter,sans-serif;
    font-weight: 500;
    color: #242424;
    opacity: .75;
    font-size: 15px;
    text-transform: capitalize
}
.registerSection .form-control:-ms-input-placeholder {
  color: #242424;
}
.registerSection .form-control::placeholder {

   font-weight: 500;
    color: #242424;
    opacity: .75;
    font-size: 15px;
}

.formMsgs {
  margin-bottom: 12px;
  font-size: 15px;
}



.login-small-header-wrapper .header-small
{
 
background-color: transparent!important;
margin-bottom: 40px;
}
.login-small-header-wrapper .header-small .logo img{
  width: 170px;
}
.login-small-header-wrapper .login-small-header-wrapper-title
{
     background: #242424;
     border-top-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
    padding: 10px 22px;
    text-align: center;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
}
.login-small-header-wrapper .login-small-header-wrapper-title::after
{
  display: none;
}


@media (max-width: 767px) {
  .header-small {
    padding: 12px 0 0;
  }
  .header-small .logo img {
    width: 100px;
  }
  .registerSection {
    padding: 12px 0 20px 0;
  }
  .registerSection .formTitle {
    font-size: 20px;
    padding: 8px 20px;
  }
  .registerSection form {
    padding: 20px;
  }
  .registerSection form > p.registerSubTitle {
    font-size: 17px;
  }
  .registerSection .default-btn {
    padding: 8px 18px;
    font-size: 14px;
  }
}
