:root {
  --bg-1: #123f8f;
  --bg-2: #0f2f78;
  --bg-3: #042c63;
  --accent-white: #ffffff;
  --logo-bg: #ffffff;
  --bg: #ffffff;
  --accent-blue: #2e63b8;
  --panel-border: rgba(46, 99, 184, 0.18);
  --side-grad-start: #eaf1ff;
  --side-grad-end: #eef4ff;
  --dark-start: #143b92;
  --dark-end: #0f2e72;
  --muted: #5f6b78;
  --text: #0f2130;
  --box-shadow: 0 12px 28px rgba(19, 38, 76, 0.06);
}

body {
  font-family: "Poppins", sans-serif;
}
/* hero banner section */
.corporate-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
  padding: 60px 0;
  background: linear-gradient(135deg, #11357d 0%, #0e2f6f 35%, #0ea092 100%);
  overflow: hidden;
}

.corporate-hero__headline {
  font-weight: 600;
  font-size: 3.5rem;
  margin-bottom: 18px;
  line-height: 1.1;
}

.corporate-hero__headline .highlight--orange,
.corporate-hero__headline .highlight--orange-alt {
  color: #ff7a00;
}

.corporate-hero__sub {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  margin-bottom: 26px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}

.corporate-hero__cta .btn-orange {
  background: #ff7a00;
  border: none;
  color: #fff;
  /* font-weight: 600; */
  padding: 12px 24px;
  border-radius: 6px;
  transition: 0.2s;
}

.corporate-hero__cta .btn-orange:hover {
  background: #e56c00;
  text-decoration: none;
  transform: translateY(-2px);
}

.corporate-hero__cta .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.6);
  /* font-weight: 600; */
  padding: 11px 24px;
  border-radius: 6px;
}

/* Stats */
.corporate-hero__stats {
  margin-top: 2rem;
}

.corporate-hero__stats .stat-card_banner {
  text-align: center;
  padding: 18px 12px;
  height: 100%;
}

.corporate-hero__stats .stat-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin: 0 auto 12px auto;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ff7a00;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.corporate-hero__stats .stat-number {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.corporate-hero__stats .stat-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 991px) {
  .corporate-hero {
    padding: 48px 0;
  }

  .corporate-hero__headline {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .corporate-hero {
    padding: 36px 0 1rem;
    text-align: center;
  }

  .corporate-hero__headline {
    font-size: 28px;
  }

  .corporate-hero__sub {
    font-size: 15px;
    padding: 0 18px;
  }
}

/* hero banner section end */

/* Features section */
.features-section {
  padding: 3rem 0;
  background: #fff;
}

/* Title */
.features-section__title {
  font-weight: 600;
  font-size: 2rem;
  line-height: normal;
  color: #111;
  text-align: center;
  margin-bottom: 2rem;
}

.features-section__title--accent {
  display: block;
  color: #1e63ff;
  /* bright blue accent like screenshot */
  font-weight: 700;
  margin-top: 6px;
}

/* Force five-equal columns on large screens using bootstrap column override */
.features-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

/* Make .feature-col 20% width on large screens (>=992px) to show exactly 5 in a row */
@media (min-width: 992px) {
  .feature-col {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* For medium screens let bootstrap's col-md handle (3 in a row) */
@media (min-width: 768px) and (max-width: 991px) {
  .feature-col {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

/* For small screens 2 per row */
@media (max-width: 767px) {
  .feature-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Card styles */
.feature-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(22, 24, 28, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Top image area */
.feature-card__media img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

/* Body */
.feature-card__body {
  padding: 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1 0 auto;
}

.feature-card__title {
  color: #174ea6;
  /* deep-blue title like screenshot */
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

.feature-card__desc {
  color: #666;
  font-size: 13px;
  margin: 0;
  line-height: 1.4;
}

/* Shadow & hover */
.feature-card.shadow-sm {
  box-shadow: 0 6px 22px rgba(12, 20, 30, 0.06);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(12, 20, 30, 0.12);
}

/* spacing tweaks to visually match screenshot */
.features-row .feature-col {
  padding-left: 8px;
  padding-right: 8px;
}

@media (min-width: 1200px) {
  .feature-card__media img {
    height: 130px;
  }

  .features-section__title {
    font-size: 30px;
  }
}

/* small-screen title tweak */
@media (max-width: 576px) {
  .features-section__title {
    font-size: 20px;
  }

  .feature-card__media img {
    height: 130px;
  }
}

/* Features section end */

/* cleint logo section */

.clients-section {
  background: linear-gradient(
    180deg,
    var(--bg-1) 0%,
    var(--bg-2) 40%,
    var(--bg-3) 100%
  );
  color: var(--accent-white);
  padding: 36px 12px;
  overflow: hidden;
}

.clients-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

/* title */
.clients-title {
  margin: 0 0 18px;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* marquee wrapper */
.clients-marquee {
  overflow: hidden;
  position: relative;
}

/* track: horizontal flex and animation */
.clients-track {
  display: flex;
  align-items: center;
  gap: 22px;
  /* wide enough so duplicated content can scroll */
  animation: marquee 18s linear infinite;
  will-change: transform;
}

/* pause on hover */
.clients-marquee:hover .clients-track {
  animation-play-state: paused;
}

/* logo card */
.logo {
  background: var(--logo-bg);
  padding: 8px 18px;
  min-width: 130px;
  height: 54px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
}

.logo img {
  max-height: 48px;
  width: auto;
  display: block;
}

/* animation: move left by 50% (since content duplicated) */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* responsive adjustments */
@media (max-width: 992px) {
  .clients-title {
    font-size: 22px;
  }

  .logo {
    min-width: 130px;
    height: 56px;
    padding: 6px 14px;
  }

  .logo img {
    max-height: 40px;
  }

  .clients-track {
    gap: 16px;
    animation-duration: 20s;
  }
}

@media (max-width: 576px) {
  .clients-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .logo {
    min-width: 110px;
    height: 50px;
    padding: 6px 10px;
    border-radius: 6px;
  }

  .logo img {
    max-height: 36px;
  }

  .clients-track {
    gap: 12px;
    animation-duration: 22s;
  }
}

/* cleint logo section end*/

/* training section start */

.training-specials {
  background: #f6fbfb;
  padding: 3rem 0;
}

.ts-title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 8px;
  text-align: center;
  color: #1f2530;
}

.ts-sub {
  margin: 0 0 34px;
  color: #6b7278;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 15px;
}

/* grid spacing */
.ts-grid {
  margin-top: 6px;
}

/* card */
.ts-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
  border: 1px solid rgba(16, 24, 40, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: 0.1s ease-in-out;
}

.ts-card:hover {
  color: #fff;
  background: #075bd9;
}

.ts-card:hover .ts-card__icon {
  background-color: #fff;
}

.ts-card__icon img {
  width: 30px;
  height: 30px;
}

.ts-card:hover .ts-card__desc,
.ts-card:hover .ts-card__title {
  color: #fff;
}

/* icon square on top-left */
.ts-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  background: rgba(24, 119, 242, 0.08);
  color: #1777f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}

/* title & description */
.ts-card__title {
  font-size: 1.1rem;
  color: #102232;
  font-weight: 600;
  margin: 0 0 10px;
}

.ts-card__desc {
  color: #6b7278;
  font-size: 13px;
  line-height: 1.45;
  margin: 0 0 12px;
  flex-grow: 1;
}

/* tags */
.ts-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 8px;
}

.ts-tag {
  background: #e9fbf6;
  color: #0b8b74;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 999px;
  display: inline-block;
  box-shadow: inset 0 -1px 0 rgba(11, 139, 116, 0.06);
}

/* hover lift */
.ts-card:hover {
  transform: translateY(-6px);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.09);
}

/* responsive adjustments */
@media (max-width: 991px) {
  .ts-title {
    font-size: 28px;
  }

  .training-specials {
    padding: 2rem 10px 0;
  }

  .ts-card {
    padding: 18px;
    border-radius: 10px;
  }
}

@media (max-width: 575px) {
  .ts-title {
    font-size: 22px;
  }

  .ts-sub {
    font-size: 14px;
    padding: 0 8px;
  }

  .ts-card {
    padding: 16px;
  }

  .ts-card__icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .ts-card__title {
    font-size: 15px;
  }
}
/* training section end */

/* <!-- upskills section --> */
.upskill-wrap {
  background: var(--bg);
  padding: 26px 12px 36px;
  color: var(--text);
}

.upskill-inner {
  max-width: 1180px;
  margin: 0 auto;
}

/* header */
.us-header {
  text-align: center;
  margin-bottom: 18px;
}

.us-logo {
  color: var(--accent-blue);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 0;
}

.us-title {
  font-size: 2rem;
  line-height: normal;
  margin: 0 0 2rem 0;
  font-weight: 600;
}

/* grid layout */
.us-grid {
  display: grid;
  grid-template-columns: 1fr 60px 380px 60px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 12px;
}

/* arrow columns center vertically */
.arrow-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow {
  width: 44px;
  height: 44px;
  opacity: 0.98;
}

/* panels */
.us-panel {
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.98) 0%, #fff 100%);
  border-radius: 10px;
  padding: 18px;
  min-height: 380px;
  border: 2px solid var(--panel-border);
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
}

.us-panel--center {
  background: linear-gradient(
    180deg,
    var(--dark-start) 0%,
    var(--dark-end) 100%
  );
  color: #fff;
  border-color: rgba(16, 46, 122, 0.28);
  min-height: 420px;
  padding: 22px;
}

.panel-title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin: 6px 0 14px;
}

/* lists */
.panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* side items (light gradient) */
.panel-list--light li {
  background: linear-gradient(
    90deg,
    rgba(80, 130, 230, 0.12) 0%,
    rgba(120, 160, 240, 0.06) 100%
  );
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 14px;
  align-self: stretch;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.02);
}

.panel-list--light li span {
  display: inline-block;
}

/* center items (dark) */
.panel-list--dark li {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border-radius: 8px;
  padding: 12px 14px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

/* CTA */
.us-cta {
  margin-top: 1rem;
  text-align: center;
  color: var(--text);
  font-size: 1.5rem;
}

.cta-link {
  color: var(--accent-blue);
  text-decoration: underline;
  font-weight: 700;
}

/* RESPONSIVE: collapse to stacked layout on narrower screens */
@media (max-width: 1024px) {
  .us-grid {
    grid-template-columns: 1fr 50px 420px 50px 1fr;
    gap: 14px;
  }

  .us-panel {
    min-height: 340px;
  }

  .us-panel--center {
    min-height: 380px;
    padding: 18px;
  }
}

@media (max-width: 860px) {
  .us-grid {
    grid-template-columns: 1fr;
  }

  .arrow-col {
    display: none;
  }

  .us-panel {
    min-height: auto;
  }

  .us-panel--center {
    order: 2;
  }

  .us-panel--side:nth-of-type(1) {
    order: 1;
    margin-bottom: 12px;
  }

  .us-panel--side:nth-of-type(2) {
    order: 3;
    margin-top: 12px;
  }

  .us-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .us-title {
    font-size: 1.5rem;
  }

  .panel-title {
    font-size: 18px;
  }

  .panel-list--light li,
  .panel-list--dark li {
    font-size: 13px;
    padding: 10px 12px;
  }

  .us-inner {
    padding: 0 8px;
  }

  .us-cta {
    font-size: 15px;
    padding: 0 8px;
  }
}

/* <!-- upskills section end --> */

/* meet kvch section  */
.kvch-section {
  background-color: #1f4cbf;
  /* blue background */
  color: #fff;
  padding: 3.4rem 0;
}

.kvch-badge {
  background-color: #fff;
  color: #1f4cbf;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 20px;
  padding: 8px 16px;
  display: inline-block;
  margin-bottom: 20px;
}

.kvch-heading {
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

.kvch-text {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #dbe4ff;
}

.kvch-btn {
  background-color: #fff;
  color: #1f4cbf;
  font-weight: 600;
  border-radius: 25px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.kvch-btn i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.kvch-image-wrap img {
  height: 450px;
  float: right;
  width: auto;
  border-radius: 10px;
}
/* meet kvch section end */

/* cleint testimonils section start */

.slider_section {
  margin: 4rem 0 3rem 0;
}

.slider-container {
  position: relative;
  overflow: hidden;
}

.slider-header {
  text-align: center;
  margin-bottom: 20px;
}

.slider-header h3 {
  font-weight: 600;
  text-align: center;
  color: #f5a623;
  font-size: 1rem;
  text-transform: uppercase;
}

.slider-header h4 {
  text-align: center;
  color: #000;
  font-weight: 600;

  font-size: 2.2rem;
  margin: 1rem 0 1rem 0;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  flex: 0 0 33.33333%;

  padding: 15px;
}

.testimonial-card {
  height: 100%;
  background: white;
  border-radius: 10px;
  padding: 20px 20px 10px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.testimonial-card p.profession {
  font-size: clamp(12px, 1.5vw, 14px);
  color: #777;
  margin-bottom: 15px;
}

.testimonial-card p.description {
  color: #555;
  margin-top: 1rem;
  text-align: start;
  line-height: 1.5;
  margin-bottom: 10px;
}

.stars {
  text-align: start;
  color: #f5a623;
  font-size: clamp(14px, 1.5vw, 16px);
}

.navigation {
  text-align: center;
  margin-top: 10px;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: #bbb;
  /* border-radius: 50%; */
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
}

.dot.active {
  background-color: #f5a623;
}

.testimonils_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(20px, 3vw, 30px);
  color: #333;
  cursor: pointer;
  user-select: none;
}

.testimonils_arrow.left {
  left: 10px;
}

.testimonils_arrow.right {
  right: 10px;
}

.trustated_sec h2 {
  text-align: center;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.4rem;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.trustated_sec .logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.slider_container_logo {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider_logo {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide_logo {
  flex: 0 0 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
}

.what_makes {
  margin: 4rem 0;
}

.what_makes .leftimg {
  width: auto;
  height: 400px;
  margin: auto;
  display: block;
  border-radius: 10px;
}

.what_makes h3 {
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  color: #febd58;
}

.what_makes .first_para {
  color: #fff;
  font-size: 1.6rem;
  line-height: normal;
  font-weight: 600;
}

.what_makes .second_para {
  color: #fff;
  font-size: 1rem;
  line-height: normal;
}

.list-item {
  position: relative;
  color: white;
  font-size: 15px;
  margin-bottom: 10px;
  padding-left: 20px;
}

.list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 15px;
  border: solid #0a78be;
  border-width: 0 4px 4px 0;
  display: inline-block;
  margin-right: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .slide_logo {
    flex: 0 0 33.33%;
    /* Show 3 logos on tablet */
  }

  .trustated_sec .logo {
    width: 80px;
    height: 80px;
  }

  .slide {
    flex: 0 0 50%;
  }

  .testimonils_arrow {
    font-size: 24px;
  }

  .slider-header h1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .slide_logo {
    flex: 0 0 50%;
  }

  .slide {
    flex: 0 0 100%;
  }

  .testimonils_arrow {
    font-size: 20px;
  }

  .slider-header h1 {
    font-size: 24px;
  }

  .slider-header h4 {
    font-size: 14px;
  }
}

.testimonials_head {
  /* justify-content: center; */
  align-items: center !important;
  display: flex;
}

.testimonials_head img {
  margin-right: 10px;
  width: 55px;
  height: 55px;
  border-radius: 100%;
}

.testimonials_head .head {
  display: inline;
}

.testimonials_head .head h5 {
  color: #333;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 600;
}

.testimonials_head .head p {
  margin-bottom: 0;
}

/* cleint testimonils section end */

/* why choose us section */

.why-choice {
  background-color: #0e1526;
  /* dark navy background */
  color: #fff;
  padding: 60px 0;
}

.why-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.why-subtitle {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #cfd4e3;
  line-height: 1.6;
}

.why-list {
  list-style: none;
  padding-left: 0;
}

.why-list li {
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: #cfd4e3;
}

.why-list i {
  color: #00d08a;
  /* green check icon */
  margin-right: 8px;
  font-size: 1.1rem;
}

/* Stat cards */
.stat-card {
  background-color: #1a2236;
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 20px;
  text-align: center;
  /* width: 100%;
                height: 100%; */
}

.stat-icon {
  font-size: 2rem;
  color: #fca63f;
  /* orange accent */
  margin-bottom: 10px;
}

.stat-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.stat-card p {
  font-size: 0.9rem;
  color: #cfd4e3;
  margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .why-title {
    text-align: center;
  }

  .why-subtitle {
    text-align: center;
  }

  .why-list li {
    justify-content: flex-start;
  }
}
/* why choose us end */

/* expertiese guidence section */

.expert-guidance {
  background: linear-gradient(
    to right,
    #1f4cbf 0%,
    #ffffff 15%,
    #ffffff 85%,
    #1f4cbf 100%
  );
  padding: 2.3rem 0;
}

.expert-title {
  font-size: 3rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1.2rem;
}

.expert-title span {
  color: #1f4cbf;
}

.expert-btn {
  background-color: #1f4cbf;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  padding: 14px 28px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.1s ease-in-out;
}

.expert-btn:hover {
  background-color: #ffff;
  color: #1f4cbf;
  text-decoration: none;
  border: 1px solid #1f4cbf;
}

.expert-btn i {
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 767px) {
  .expert-title {
    font-size: 1.7rem;
  }

  .expert-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}
/* expertiese guidence section  end*/

/* blog section */

.blog_reviews_sec {
  padding: 4rem 0;
  background-color: #f2f7fd;
}

.blog_reviews_sec h5 {
  font-weight: 600;
  font-size: 2rem;
  color: #000;
  text-align: center;
}

.blog_reviews_sec h5 span {
  color: #1f4cbf;
}

.blog_slider-container {
  position: relative;
  width: 90%;
  margin: auto;
  overflow: hidden;
}

.blog_slider-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.blog_slide {
  min-width: 33.3333333333%;
  box-sizing: border-box;
  padding: 20px;
  background: 0 0;
}

.blog_arrow-left,
.blog_arrow-right {
  height: auto;
  width: 48px;
  border-radius: 50px;
  position: absolute;
  top: 6%;
  transform: translateY(-50%);
  background-color: transparent;
  border: 1px solid #1f4cbf;
  background-color: #1f4cbf;
  color: #fff;
  padding: 10px;
  transition: 0.8s ease-in-out;
}

.blog_arrow-left:hover,
.blog_arrow-right:hover {
  background-color: transparent;
  color: #1f4cbf;
  border: 1px solid #1f4cbf;
}

.blog_card,
.blog_card img {
  border-radius: 10px;
  width: 100%;
}

.blog_arrow-left {
  left: 90%;
}

.blog_arrow-right {
  right: 1%;
}

.blog_arrow-left i,
.blog_arrow-right i {
  text-align: center;
  font-size: 1.5rem;
}

.blog_card {
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
  background-color: #fff;
  height: auto;
  padding: 1rem;
  margin: 10px;
}

.blog_card a:hover {
  text-decoration: none !important;
}

.blog_card img {
  height: 180px;
}

.blog_card_a {
  color: #1f4cbf;
  padding: 0 !important;
}

.blog_card .blog_category_box,
.blog_card span {
  text-align: start;
  cursor: pointer;
  border: 0;
  font-size: 13px;
  font-weight: 600;
  border-radius: 5px;
  padding: 5px 10px;
  background-color: rgba(134, 161, 225, 0.15);
}

.blog_card h6,
.blog_card p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  text-overflow: ellipsis;
  text-align: start;
  color: #000;
  -webkit-line-clamp: 4;
}

.blog_card .blog_category_box:hover,
.blog_card span:hover {
  color: #fff;
  background-color: #1f4cbf;
}

.blog_card h6 {
  -webkit-line-clamp: 2;
  font-size: 1.3rem;
  line-height: normal;
  font-weight: 600;
  margin: 14px 0 9px;
}
/* blog section end*/

/* faq section start */

.faq-section {
  padding: 3rem 0;
  background: #fff;
}

.faq-subtitle {
  text-align: center;
  color: #ff8800;
  /* orange accent */
  font-weight: 600;
  margin-bottom: 5px;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 2px solid #1f4cbf;
  border-radius: 12px;
  padding: 10px 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #1f4cbf;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
}

.faq-question .faq-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.faq-answer {
  display: none;
  background: #f9f9f9;
  border-left: 4px solid #1f4cbf;
  padding: 15px 20px;
  margin-top: 8px;
  border-radius: 8px;
}

.faq-answer p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}

/* Responsive */
@media (max-width: 767px) {
  .faq-title {
    font-size: 1.5rem;
  }

  .faq-question {
    text-align: start;
    font-size: 1rem;
  }
}
/* faq section end */

/* training-advisor section */
.training-advisor {
  background: #f5faff;
  padding: 3rem 0;
}

.training-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  color: #000;
}

.training-title span {
  color: #1f4cbf;
}

.advisor-form {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.advisor-form .form-group label {
  font-weight: 600;
  font-size: 0.9rem;
}

.advisor-form input,
.advisor-form select {
  border-radius: 8px;
  padding: 10px 12px;
  height: 40px;
  font-size: 0.95rem;
}

.advisor-form textarea {
  font-size: 0.95rem;
}

.btn-submit {
  background: #1f4cbf;
  color: #fff;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 8px;
  border: none;
  margin-top: 10px;
}

.btn-submit i {
  margin-left: 6px;
}

/* Right Side */
.contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.contact-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-card ul li {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #333;
}

.contact-card ul li i {
  color: #1f4cbf;
  margin-right: 8px;
  font-size: 1rem;
}

.quick-response {
  background: #1f4cbf;
  border-radius: 12px;
  padding: 20px;
  color: #fff;
}

.quick-response h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.quick-response p {
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-card,
  .quick-response {
    margin-top: 20px;
  }
}
/* training-advisor section end */

@media only screen and (max-width: 500px) {
  .kvch-section {
    padding: 2rem 0;
  }
  .kvch-image-wrap img {
    display: none;
  }
  .testimonial-card {
    height: auto;
  }
  .why-choice {
    padding: 2rem 0;
  }
  .blog_reviews_sec {
    padding: 1.5rem 0;
  }

  .faq-section {
    padding: 1rem 0;
  }
  .corporate-hero__stats .stat-card_banner {
    text-align: center;
    padding: 10px 12px;
    height: auto;
  }
  .features-section {
    padding: 2rem 0 1rem;
  }

  .clients-track {
    display: flex;
    align-items: center;
    gap: 22px;
    /* wide enough so duplicated content can scroll */
    animation: marquee 9s linear infinite;
    will-change: transform;
  }

  .blog_arrow-left {
    top: 6%;
    left: 66%;
  }
  .blog_arrow-right {
    right: 5%;
    top: 6%;
  }
  .blog_slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 20px 0 0;
  }
  .blog_reviews_sec h5 {
    font-weight: 600;
    font-size: 1.5rem;
    text-align: start;
  }
  .blog_slider-container {
    width: 95%;
  }
  .training-title {
    font-size: 1.5rem;
  }
}
