.about-hero-section{
  padding: 10px 5%;
  background: #f4f4fb;
  font-family: 'Poppins', sans-serif;
}

/* wrapper */
.about-hero-wrap{
  display:flex;
  align-items:stretch;
  gap:24px;
}

/* big card */
.about-hero-main-card{
  flex: 1;
  background:#f7f7fd;
  border:3px solid #000;
  border-radius:16px;
  padding:30px;
  display:flex;
  flex-direction:column;
  gap:18px;
  position: relative;
  justify-content: space-between;
}

/* mobile/tab small card inside (default hidden on desktop) */
.about-hero-card-mobile{ display:none; }

/* info card */
.about-hero-info-card{
  background: #ffffff;
  border-radius:16px;
  padding:22px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.about-hero-card-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.about-hero-card-logo{ height:36px; width:auto; }

.about-hero-card-rating{
  font-weight:700;
  color:#ffd700;
  display:flex;
  align-items:center;
  gap:6px;
}

.about-hero-card-title{
  margin-top:16px;
  font-size:18px;
  color:#0D2D68;
  font-weight:700;
}

.about-hero-card-subtitle{ 
  color:#0D2D68; 
  font-size:14px; 
  margin-top:2px; 
}

.about-hero-card-exp{ 
  margin:14px 0; 
  color:#0D2D68; 
  font-size:14px; 
}

.about-hero-card-link{
  color:#8C0A0A;
  font-weight:700;
  text-decoration:underline;
}

/* middle */
.about-hero-middle{
  flex-shrink: 0;
}

.about-hero-heading{
  font-size:40px;
  font-weight:850;
  background:#8C0A0A;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height:1.15;
  margin-bottom:12px;
}

.about-hero-heading span{ 
  background:#8C0A0A;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-text{
  font-size:15.5px;
    color: #1C1C1C;
  line-height:1.7;
  max-width:560px;
  margin-bottom:10px;
}

/* buttons */
.about-hero-btn-row{
  display:flex;
  gap:12px;
  flex-wrap:nowrap;
  margin-bottom: 0;
}

.about-hero-btn{
  padding:10px 16px;
  border-radius:32px;
  font-size:13.5px;
  font-weight:650;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
 background: #8C0A0A;
  border:2px solid rgba(11,60,93,.35);
  color:#ffffff;
  transition:.25s ease;
  white-space:nowrap;
}

.about-hero-btn:hover{
  transform:translateY(-2px);
  border-color:#0b3c5d;
  background: #fff;
  color:#0b3c5d;
}

/* ✅ Bottom Stats Cards */
.about-hero-bottom-cards{
  display: none;
  gap: 16px;
  margin-top: 0;
  flex-shrink: 0;
}

.about-hero-stat-card{
  flex: 1;
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 8px 20px rgba(11,60,93,0.25);
  transition: transform 0.3s ease;
}

.about-hero-stat-card:hover{
  transform: translateY(-5px);
}

.stat-icon{
  width: 50px;
  height: 50px;
      background-color: #8C0A0A;
      
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
  flex-shrink: 0;
}

.stat-content{
  flex: 1;
}

.stat-number{
  font-size: 28px;
  font-weight: 800;
  color: #8C0A0A;
  margin: 0;
  line-height: 1;
}

.stat-label{
  font-size: 13px;
  color: #8C0A0A;
  margin: 5px 0 0 0;
  font-weight: 500;
}

/* image base */
.about-hero-image{
  width:100%;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,.12);
  object-fit:cover;
}

/* right areas show/hide */
.about-hero-right-desktop{ display:flex; }
.about-hero-right-mobile{ display:none; }

/* =========================================================
   ✅ DESKTOP/LAPTOP (>=1024): image outside + card floating
   ========================================================= */
@media (min-width:1024px){
  .about-hero-wrap{
    align-items:stretch;
  }

  /* Show bottom stats cards on desktop */
  .about-hero-bottom-cards{
    display: flex;
  }

  /* Main card ko proper justify kiya */
  .about-hero-main-card{
    gap: 20px;
  }

  /* Right side - Image container */
  .about-hero-right-desktop{
    flex: 1;
    display:flex;
    align-items:center;
    justify-content:center;
    position: relative;
  }

  .about-hero-right-desktop .about-hero-image{
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
  }

  /* Floating card - positioned absolute */
  .about-hero-floating-card{
    position: absolute;
    left: -40px;
    bottom: 30px;
    width: 320px;
    z-index: 10;
    animation: aboutLRFloat 3s ease-in-out infinite;
  }

  @keyframes aboutLRFloat{
    0%,100%{ 
      transform: translateX(0) translateY(0); 
    }
    50%{ 
      transform: translateX(-10px) translateY(-10px); 
    }
  }
}

/* =========================================================
   ✅ TABLET + MOBILE (<=1023): mobile style (inside)
   ========================================================= */
@media (max-width:1023px){
  .about-hero-wrap{
    flex-direction:column;
    gap:0;
    align-items:stretch;
  }

  /* hide outside right area */
  .about-hero-right-desktop{ display:none !important; }

  /* Hide bottom stats cards on mobile/tablet */
  .about-hero-bottom-cards{ display:none !important; }

  /* show inside card + inside image */
  .about-hero-card-mobile{ display:block; }

  .about-hero-right-mobile{
    display:flex !important;
    width:100%;
    justify-content:flex-start;
  }

  /* order same as you wanted */
  .about-hero-middle{ order:1; }
  .about-hero-card-mobile{ order:2; }
  .about-hero-right-mobile{ order:3; }

  .about-hero-btn-row{ flex-wrap:wrap; }
  .about-hero-btn{ width:100%; justify-content:center; }

  .about-hero-heading{ font-size:34px; }
  .about-hero-image{ height:auto; }
}

/* =========================================================
   ✅ MEDIUM DESKTOP (1024px - 1280px): Adjust floating card
   ========================================================= */
@media (min-width:1024px) and (max-width:1280px){
  .about-hero-floating-card{
    width: 280px;
    left: -30px;
    bottom: 20px;
  }
  
  .about-hero-heading{ font-size: 36px; }
  .about-hero-text{ font-size: 14.5px; }
  
  .stat-number{ font-size: 24px; }
  .stat-label{ font-size: 12px; }
}

/* extra small */
@media (max-width:480px){
  .about-hero-heading{ font-size:17px; }
  .about-hero-text{ font-size:10.5px; }
  .about-hero-main-card{ padding:18px; }
}


/* section 1css */
/* ====== ABOUT US SECTION 1 ====== */
.about_us-section-1{
  /* padding: 70px 0; */
  background: #f7f7fd;
}

.about_us-section-1-container{
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* TOP CENTER */
.about_us-section-1-top{
  text-align: center;
  margin-bottom: 28px;
}

.about_us-section-1-title{
  background: #8C0A0A;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(18px, 3.2vw, 54px);
  font-weight: 900;
  margin: 0 0 10px;
}

.about_us-section-1-desc{
  background: #1C1C1C;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 12px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

/* ✅ BOTTOM GRID (Right column wider now) */
.about_us-section-1-bottom{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

/* LEFT IMAGE */
.about_us-section-1-image-wrap{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  background: rgba(0,0,0,0.02);
}

.about_us-section-1-image{
  width: 100%;
  height: 370px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}
.about_us-section-1-image-wrap:hover .about_us-section-1-image{
  transform: scale(1.08);
}

/* ✅ RIGHT GRID (cards width increased) */
.about_us-section-1-right{
  display: grid;
  grid-template-columns: repeat(2, minmax(270px, 1fr));
  gap: 16px;
  align-content: center;
}

/* CARD */
.about_us-section-1-card{
  background:#ffffff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 14px;
  padding: 16px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, background 0.25s ease, border 0.25s ease;
  min-height: 124px;
  overflow: hidden;
}

.about_us-section-1-card:hover{
  transform: translateY(-6px);
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.18);
}

.about_us-section-1-icon{
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #000;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.10);
}

.about_us-section-1-icon i{
  font-size: 16px;
}

/* CONTENT */
.about_us-section-1-card-content{
  min-width: 0;
}

.about_us-section-1-card-content h4{
  margin: 0;
  color: #8C0A0A;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;

  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  white-space: normal;
}

.about_us-section-1-card-content p{
  margin: 8px 0 0;
  color: rgba(0, 0, 0, 0.75);
  font-size: 13px;
  line-height: 1.55;

  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ✅ 1024px */
@media (max-width: 1024px){
  .about_us-section-1-bottom{
    grid-template-columns: 0.9fr 1.1fr;
    gap: 22px;
  }

  .about_us-section-1-right{
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    gap: 14px;
  }

  .about_us-section-1-card{
    padding: 14px;
    min-height: 128px;
  }

  .about_us-section-1-card-content h4{
    font-size: 14px;
  }

  .about_us-section-1-card-content p{
    font-size: 12.5px;
  }

  .about_us-section-1-image{
    height: 291px;
  }
}

/* TABLET */
@media (max-width: 768px){
  .about_us-section-1-bottom{
    grid-template-columns: 1fr;
  }
  .about_us-section-1-right{
    grid-template-columns: 1fr 1fr;
  }
}

/* MOBILE */
@media (max-width: 600px){
  .about_us-section-1-right{
    grid-template-columns: 1fr;
  }
  .about_us-section-1-image{
    height: 240px;
  }
}

/* section 2css */
/* ===== Our Clients Section (No Background) ===== */
/* ===== Our Clients Section (No Background) ===== */
.our-clients-section{
  width: 100%;
  padding: 28px 0;
  background: #f7f7fd;
}

.our-clients-container{
  width: min(1200px, 92%);
  margin: 0 auto;
  background-color: #E0C2C0;
  height: 200px;

}

/* ✅ HEADING CENTER */
.our-clients-heading{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  text-align: center;
}

.our-clients-emoji{
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1;
}

.our-clients-title{
  margin: 0;
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 800;
  letter-spacing: 0.2px;
  text-align: center;
  background:#8C0A0A;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Marquee wrapper */
.our-clients-marquee{
  overflow: hidden;
  position: relative;
  width: 100%;
  background: transparent;
}

/* Track that moves right-to-left */
.our-clients-track{
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  width: max-content;
  padding-left: 12px;
  will-change: transform;
  animation: ourClientsScroll linear infinite;
  animation-duration: 22s;
}

/* Each logo box */
.our-clients-item{
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.10);
  background: transparent;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.our-clients-item:hover{
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(0,0,0,0.22);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

/* Logo image */
.our-clients-item img{
  height: clamp(60px, 4vw, 52px);
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.92;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.our-clients-item:hover img{
  opacity: 1;
  transform: scale(1.03);
}

/* Smooth infinite scroll right-to-left */
@keyframes ourClientsScroll{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Pause on hover (optional) */
.our-clients-marquee:hover .our-clients-track{
  animation-play-state: paused;
}

/* Responsive tweaks */
@media (max-width: 576px){
  .our-clients-section{ padding: 22px 0; }
  .our-clients-item{ padding: 10px 12px; border-radius: 14px; }
  .our-clients-item img{ max-width: 120px; }
  .our-clients-track{ animation-duration: 28s; }
}

/* section 3 css */
.about_us_section_3-section {
  padding: 70px 0;
  background: #f7f7fd;
}

.about_us_section_3-container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* Heading */
.about_us_section_3-heading {
  text-align: center;
  margin-bottom: 34px;
}

.about_us_section_3-title {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: #7a0b0b;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.about_us_section_3-title-strong {
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 800;
  background: #8C0A0A;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about_us_section_3-title-light {
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 500;
  background:#8C0A0A;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about_us_section_3-sparkle {
  display: inline-block;
  margin-left: 6px;
  transform: translateY(-6px);
  font-size: clamp(20px, 3vw, 34px);
}

.about_us_section_3-line-wrap {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.about_us_section_3-line {
  width: min(520px, 70%);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(11, 60, 93, 0.65), transparent);
  border-radius: 999px;
}

/* Grid (Default 4 columns) */
.about_us_section_3-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}

/* Card */
.about_us_section_3-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(20, 33, 61, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about_us_section_3-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.12);
}

/* Image */
.about_us_section_3-imgWrap {
  background: #f7f7f7;
  padding: 18px 18px 12px;
  display: grid;
  place-items: center;
  min-height: 230px;
}

.about_us_section_3-img {
  width: 100%;
  max-width: 260px;
  height: 170px;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.12));
}

/* Body */
.about_us_section_3-body {
  padding: 16px 18px 20px;
}

.about_us_section_3-cardTitle {
  margin: 6px 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: #0f1b2d;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Link */
.about_us_section_3-link {
  appearance: none;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #0f1b2d;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.about_us_section_3-link:hover {
  color: #0b3c5d;
}

/* CTA */
.about_us_section_3-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.about_us_section_3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 34px;
  background: #8C0A0A;
  color: #ffffff;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(11, 60, 93, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.about_us_section_3-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #0b3c5d 0%, #1565c0 50%, #0b3c5d 100%);
  box-shadow: 0 18px 40px rgba(11, 60, 93, 0.32);
}

/* ===== Responsive ===== */
/* 1024px par bhi 4 columns hi rahe */
@media (max-width: 1024px) {
  .about_us_section_3-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .about_us_section_3-img {
    max-width: 240px;
    height: 160px;
  }
}

/* Tab 768px => 2 columns */
@media (max-width: 768px) {
  .about_us_section_3-section {
    padding: 56px 0;
  }

  .about_us_section_3-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .about_us_section_3-imgWrap {
    min-height: 220px;
    padding: 16px 14px 10px;
  }

  .about_us_section_3-img {
    max-width: 260px;
    height: 160px;
  }

  .about_us_section_3-body {
    padding: 14px 14px 18px;
  }

  .about_us_section_3-cardTitle {
    font-size: 17px;
  }
}

/* Mobile 767px => 1 column */
@media (max-width: 767px) {
  .about_us_section_3-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .about_us_section_3-imgWrap {
    min-height: 210px;
  }

  .about_us_section_3-img {
    max-width: 320px;
    height: 170px;
  }
}

/* ===============================
   MODAL (100% CENTER - FIXED)
================================= */
.about_us_section_3-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 99999;
}

.about_us_section_3-modal.is-open {
  display: block;
}

.about_us_section_3-modalOverlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

/* ✅ Always center, never header/bottom */
.about_us_section_3-modalBox {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: min(500px, 85vw);   /* ✅ aur chhota */
  height: min(420px, 70vh);  /* ✅ aur chhota */

  background: #ffffff;
  border-radius: 12px;
  padding: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.about_us_section_3-modalClose {
  position: absolute;
  right: 14px;
  top: 14px;
  border: none;
  background: #f2f2f2;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
}

/* image wrapper */
.about_us_section_3-modalImgWrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* image fit */
.about_us_section_3-modalImg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Mobile modal */
@media (max-width: 767px) {
  .about_us_section_3-modalBox {
    width: 92vw;
    height: 40vh;
    padding: 12px;
    border-radius: 10px;
  }
}

/* section 4 css */
/* =========================
   HOW DOES IT WORK SECTION
========================= */
.how-work-section{
  background: #f7f7fd;
  padding: 60px 0;
}

.how-work-container{
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* Heading */
.how-work-heading{
  text-align: center;
  font-size: clamp(25px, 3vw, 52px);
  font-weight: 800;
  margin-bottom: 45px;
  background: #8C0A0A;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.2px;
}

/* Layout */
.how-work-layout{
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr;
  gap: 30px;
  align-items: center;
}

/* Steps container */
.how-work-steps{
  display: flex;
  flex-direction: column;
}

/* Cards row */
.how-work-cards-row{
  display: flex;
  flex-wrap: wrap;
  row-gap: 28px;
  column-gap: 22px;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Bootstrap col padding control */
.how-work-col{
  padding-left: 11px !important;
  padding-right: 11px !important;
}

/* Card (✅ equal height fix included) */
.how-work-card{
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 22px 22px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 210px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.how-work-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 45px rgba(0,0,0,0.10);
}

/* Step badge */
.how-work-step-badge{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: black;
  background: #f7f7fd;
  margin-bottom: 14px;
}

/* Title & text */
.how-work-title{
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--e-global-color-b79745f, #B43A3A);
  margin: 0 0 10px;
}


.how-work-text{
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
 color: rgb(28, 28, 28);
}

/* Buttons (✅ pushed to bottom for equal height) */
.how-work-btns{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}

.how-work-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.how-work-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

.how-work-btn-call,
.how-work-btn-wa{
  background: #e4b478;
  color: #ffffff;
      border-color: var(--e-global-color-1f000dc);
}

.how-work-icon{
  font-size: 16px;
}

/* =========================
   CENTER VIDEO BOX
========================= */
.how-work-media{
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(0,0,0,0.16);
  background: transparent;
  height: 520px;
  max-width: 80%;
  margin: 0 auto;
}

.how-work-media-video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Live Call Tag */
.how-work-media-tag{
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,0.35);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.how-work-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff4d4d;
}

.how-work-tag-title{
  font-weight: 800;
  font-size: 14px;
  line-height: 1.1;
}

.how-work-tag-sub{
  font-size: 12px;
  opacity: 0.9;
}

/* Profile bubble */
.how-work-profile{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.85);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
  background: #fff;
}

.how-work-profile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px){
  .how-work-layout{
    grid-template-columns: 1fr;
  }

  .how-work-media{
    order: 2;
    max-width: 100%;
    height: 420px;
  }

  .how-work-steps{ order: 1; }
  .how-work-steps-right{ order: 3; }
}

/* ✅ TAB VIEW (merged + clean) */
/* ✅ TAB VIEW (merged + clean) */
@media (min-width: 768px) and (max-width: 992px){
  .how-work-cards-row{
    row-gap: 36px;
    column-gap: 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .how-work-col{
    width: 100%;
  }

  .how-work-card{
    text-align: center;
    min-height: 280px;
    height: 100%;
  }

  .how-work-step-badge{
    margin: 0 auto 14px;
  }

  .how-work-btns{
    justify-content: center;
  }

  .how-work-media{
    max-width: 85% !important;
    width: 85% !important;
    margin: 0 auto !important;
    height: 650px !important;
  }

  .how-work-media-tag{
    top: 14px !important;
    left: 14px !important;
    padding: 9px 10px !important;
    border-radius: 14px !important;
    max-width: calc(100% - 95px) !important;
  }

  .how-work-tag-title{ font-size: 13px !important; }
  .how-work-tag-sub{ font-size: 11px !important; }

  .how-work-profile{
    top: 12px !important;
    right: 12px !important;
    width: 56px !important;
    height: 56px !important;
    border-radius: 16px !important;
  }
}
/* Mobile */
@media (max-width: 768px){
  .how-work-media{
    height: 300px;
  }
}

@media (max-width: 600px){
  .how-work-card{
    min-height: auto;
    text-align: center;
  }

  .how-work-step-badge{
    margin: 0 auto 14px;
  }

  .how-work-btns{
    justify-content: center;
  }

  .how-work-cards-row{
    row-gap: 22px;
    column-gap: 0;
  }

  .how-work-col{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .how-work-media{
    height: 360px;
    border-radius: 22px;
  }

  .how-work-profile{
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }
}

/* Desktop: side columns cards full width */
@media (min-width: 992px){
  .how-work-steps .how-work-cards-row > .col-md-6{
    flex: 0 0 100%;
    max-width: 100%;
  }
}


/* section 5 css */
.about_us_section_5{
  padding: 80px 0;
  background: #f7f7fd;
}

.about_us_section_5_container{
  width: min(1200px, 92%);
  margin: auto;
  text-align: center;
}

/* Heading */
.about_us_section_5_heading{
  font-size: clamp(25px, 3vw, 46px);
  font-weight: 800;
  background: linear-gradient(90deg, #0b3c5d 0%, #1565c0 50%, #0b3c5d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 60px;
  line-height: 1.2;
}

.about_us_section_5_heading span{
  background: linear-gradient(90deg, #0b3c5d 0%, #1565c0 50%, #0b3c5d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Cards Layout */
.about_us_section_5_cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.about_us_section_5_card{
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 30px;
  transition: all 0.3s ease;
}

.about_us_section_5_card:hover{
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

/* Avatar */
.about_us_section_5_avatar{
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
}

.about_us_section_5_avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stars */
.about_us_section_5_stars{
  color: #ffb400;
  font-size: 20px;
  margin-bottom: 18px;
}

/* Text */
.about_us_section_5_text{
  font-size: 15.5px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 22px;
}

/* Name */
.about_us_section_5_name{
  font-size: 18px;
  font-weight: 700;
  color: #0b2a5b;
}

/* Responsive */
@media (max-width: 992px){
  .about_us_section_5_cards{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .about_us_section_5_cards{
    grid-template-columns: 1fr;
  }
}


/* section 6 css */
.about_us-section6{
  width: 100%;
  padding: 70px 0;
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.about_us-section6-container{
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT */
.about_us-section6-left{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about_us-section6-heading{
  margin: 0;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.1;
  background: linear-gradient(90deg, #0b3c5d 0%, #1565c0 50%, #0b3c5d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.about_us-section6-heading span{
  font-weight: 600;
  background: linear-gradient(90deg, #0b3c5d 0%, #1565c0 50%, #0b3c5d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about_us-section6-heading b{
  font-weight: 800;
  background: linear-gradient(90deg, #0b3c5d 0%, #1565c0 50%, #0b3c5d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about_us-section6-line{
  width: min(380px, 100%);
  height: 6px;
  background: linear-gradient(90deg, #0b3c5d 0%, #1565c0 50%, #0b3c5d 100%);
  opacity: 0.3;
  border-radius: 999px;
  margin: 18px 0 18px;
}

.about_us-section6-text{
  margin: 0;
  max-width: 520px;
  font-size: 15px;
  color: #5a6b85;
  line-height: 1.7;
}

/* RIGHT */
.about_us-section6-right{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}

.about_us-section6-icons-row{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  padding-bottom: 6px;
  width: 100%;
  
}

.about_us-section6-icons-row::-webkit-scrollbar{
  height: 0;
}

.about_us-section6-icon{
  width: calc(33.33% - 9.33px);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #467ff7 !important; /* ✅ force apply */
}


.about_us-section6-icon i{
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(90deg, #0b3c5d 0%, #1565c0 50%, #0b3c5d 100%);
  color: #fff;
  font-size: 18px;
  transition: 0.25s ease;
  box-shadow: 0 10px 22px rgba(11, 60, 93, 0.25);
}

.about_us-section6-icon span{
  font-size: 12px;
  font-weight: 600;
  color: #263b5a;
}

.about_us-section6-icon:hover i{
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 30px rgba(11, 60, 93, 0.35);
}

/* Button */
.about_us-section6-btn{
  width: min(340px, 100%);
  text-align: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0b3c5d 0%, #1565c0 50%, #0b3c5d 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: 0.25s ease;
  box-shadow: 0 18px 32px rgba(11, 60, 93, 0.22);

  /* ✅ Laptop/Desktop center under icons */
  align-self: center;
}

.about_us-section6-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(11, 60, 93, 0.30);
}

/* ✅ Responsive */
@media (max-width: 992px){
  .about_us-section6-container{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about_us-section6-right{
    align-items: flex-start;
  }

  .about_us-section6-icons-row{
    justify-content: flex-start;
  }

  .about_us-section6-text{
    max-width: 100%;
  }
}

@media (max-width: 520px){
  .about_us-section6{
    padding: 55px 0;
  }

  .about_us-section6-icon{
    width: calc(50% - 7px);
  }

  .about_us-section6-icon i{
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .about_us-section6-btn{
    padding: 13px 16px;
    margin: 0 auto;
  }
}

/* Mobile/Tablet View (Two columns) */
@media (max-width: 768px) {
  .about_us-section6-icons-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .about_us-section6-icon {
    width: 100%;
  }

  .about_us-section6-btn {
    margin: 0 auto;
  }
}

/* section 7 css */
.about_us-section7{
  width: 100%;
  padding: 70px 0;
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.about_us-section7-container{
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.about_us-section7-left{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about_us-section7-heading{
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.1;
  background: linear-gradient(90deg, #0b3c5d 0%, #1565c0 50%, #0b3c5d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  min-height: 52px;
  overflow: hidden;
}

.about_us-section7-text{
  margin-top: 12px;
  font-size: 16px;
  color: #5a6b85;
  line-height: 1.6;
}

.about_us-section7-btn{
  margin-top: 25px;
  padding: 12px 30px;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(90deg, #0b3c5d 0%, #1565c0 50%, #0b3c5d 100%);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: 0.25s ease;
  box-shadow: 0 10px 22px rgba(11, 60, 93, 0.25);
  width: auto;
  min-width: 180px;
  text-align: center;
}

.about_us-section7-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(11, 60, 93, 0.35);
}

/* ✅ Responsive */
@media (max-width: 992px){
  .about_us-section7-container{
    width: 90%;
    gap: 15px;
  }

  .about_us-section7-heading{
    font-size: clamp(22px, 3vw, 45px);
  }

  .about_us-section7-btn{
    padding: 12px 16px;
  }
}

@media (max-width: 520px){
  .about_us-section7{
    padding: 40px 0;
  }

  .about_us-section7-heading{
    font-size: clamp(20px, 3.5vw, 40px);
  }

  .about_us-section7-btn{
    padding: 10px 14px;
  }
}