/* ==============================
   Variables
   ============================== */

:root {
  --primary: #1E858E;   /* Teal from the logo's 'V' */
  --secondary: #113651; /* Dark Blue from the logo's 'V' */
  --black: #212529;
  --light: #f8f9fa;
  --white: #ffffff;
  --text-dark: #101828;
  --text-light: #6b7280;

  --border: #b0b0b0;
  --grey: #454C52;
 --hover-bg: #EDF2F2;  
  /* Typography */
  --font-family-base: "Rubik", sans-serif;
  --h1-size: 2.5rem;
  --h2-size: 2rem;
  --h3-size: 1.75rem;
  --h4-size: 1.5rem;
  --font-h5: 1.25rem;
  --p-size: 1rem;
  --span-size: 0.875rem;

  /* Weights */
  --font-weight-bold: 700;
  --font-weight-semibold: 600;
  --font-weight-normal: 400;

  /* Others */
  --border-light: #dee2e6;
  --line-height-base: 1.5;
  --border-radius: 8px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

   body{
      font-family: "Rubik", sans-serif !important;
   }
body.main-body {
  font-family: var(--font-family-base);
  font-size: var(--p-size);
  color: var(--text-dark);
  line-height: var(--line-height-base);
  background-color: var(--light);
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: color 0.3s ease;
}
a:hover {
  color: var(--secondary);
}

.yv-header{
  background-color: #fff !important;
}
.yv-header .container {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

/* ---------- TOPBAR ---------- */
.yv-topbar {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--span-size);
  font-family: "Rubik", sans-serif;
 padding: 6px 0;
}
.yv-topbar a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
.yv-topbar a:hover { color: var(--white); }
.yv-topbar .topbar-inner { padding: 0.45rem 0; }
.yv-topbar .ico { font-size: 1rem; line-height: 1; }
.yv-topbar .vr-line {
  width: 1px; height: 18px;
  background: rgba(255, 255, 255, 0.25);
  margin: 0 0.5rem;
}

/* ---------- NAVBAR ---------- */
.yv-navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  font-family: "Rubik", sans-serif;
}
.yv-navbar .navbar-brand {
  display: flex; align-items: center; gap: 0.5rem;
  width: 100px; height: 100px;
}
.yv-navbar .navbar-brand .logo-bg { width: 100%; }
.yv-navbar .navbar-brand .logo-mark { border-radius: 6px; }
.yv-navbar .navbar-brand .logo-text {
  display: none;
  color: var(--secondary);
  font-weight: var(--font-weight-semibold);
  font-size: var(--span-size);
}
.yv-navbar .navbar-toggler {
  border: 1px solid var(--border-light);
  background: var(--white);
  width: 42px; height: 42px; padding: 0;
}
.yv-navbar .navbar-toggler:focus { box-shadow: none; }
.yv-navbar .navbar-toggler .navbar-toggler-icon { filter: invert(20%); }

.yv-navbar .nav-link {
  color: var(--secondary) !important;
  font-weight: var(--font-weight-semibold);
  padding: 6px 15px !important;
  border-radius: 0.5rem;
  transition: 0.2s ease;
}
.yv-navbar .nav-link:hover,
.yv-navbar .nav-link.active {
  color: var(--white) !important;
  background: var(--primary);
}

/* airy spacing */
.yv-navbar .container {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

/* lg center spacing */
@media (min-width: 992px) {
  .yv-navbar .navbar-nav { gap: 0.25rem; }
}

/* ---------- ICON BUTTONS ---------- */
.yv-icon-btn,
.yv-ghost-circle {
    width: 42px !important;
    height: 42px !important;
    border-radius: 999px !important;
    border: 1px solid #dee2e6 !important;
}
.yv-icon-btn:hover,
.yv-ghost-circle:hover {
  background: #177079; /* slightly darker than --primary */
  color: #fff;
}

.yv-ghost-circle:hover .bi{
   color: #fff;
}

/* ---------- MEGA MENU ---------- */
.yv-has-mega .dropdown-menu.yv-mega {
  border: 0; border-radius: 12px;
  background: var(--white); color: var(--text-dark);
  box-shadow: var(--shadow); width: 50%;
}
@media (min-width: 992px) {
  .yv-has-mega { position: static; }
  .yv-has-mega:hover > .dropdown-menu {
    display: block;
    margin-top: 0.75rem;
  }
}
.yv-has-mega .yv-mega__title {
  font-size: var(--font-h5);
  color: var(--secondary);
  font-weight: var(--font-weight-semibold);
  margin: 0.25rem 0 0.5rem;
  padding-left: 12px;
  position: relative;
}
.yv-has-mega .yv-mega__title::before {
  content: "";
  position: absolute; left: 0; top: 0.15rem;
  width: 4px; height: 1.2rem;
  background: var(--primary); border-radius: 2px;
}
.yv-has-mega .yv-mega__list {
  list-style: none; margin: 0; padding: 0;
}
.yv-has-mega .yv-mega__list li { margin: 0.45rem 0; }
.yv-has-mega .yv-mega__list a {
  color: var(--text-dark); text-decoration: none;
  padding-left: 16px; position: relative; display: inline-block;
}
.yv-has-mega .yv-mega__list a::before {
  content: "•"; position: absolute; left: 0; top: 0; color: var(--primary);
}
.yv-has-mega .yv-mega__list a:hover { color: var(--primary); }

/* ---------- CTA BUTTON ---------- */
.yv-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  border: 1px solid transparent;
  padding: 0.7rem 1.5rem !important;
  font-weight: var(--font-weight-semibold) !important;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: all 0.3s ease;
}
.yv-cta .arrow {
  display: inline-block;
  transform: translateX(-4px);
  opacity: 0;
  transition: all 0.3s ease;
}
.yv-cta:hover {
  background: #177079 !important; /* darker teal */
  color: var(--white) !important;
}
.yv-cta:hover .arrow {
  transform: translateX(0);
  opacity: 1;
}

/* ---------- OFFCANVAS ---------- */
.yv-offcanvas {
  width: min(92vw, 420px);
  border-left: 0;
  background: #fff;
}
.yv-offcanvas .offcanvas-header {
  padding: 1rem 1rem 0.5rem;
  align-items: flex-start;
}
.yv-offcanvas .offcanvas-header .brand img {
  height: 80px; width: auto; display: block;
}
.yv-offcanvas .offcanvas-header .btn-close {
  width: 24px; height: 24px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background-color: #f7f7f7;
  color: #fff; font-size: 13px;
}
.yv-offcanvas .offcanvas-header .btn-close:focus { box-shadow: none; }

.yv-offcanvas .offcanvas-body { padding: 0.25rem 1rem 1.25rem; }

.yv-offcanvas .mini-title {
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  color: var(--secondary);
  margin: 0.25rem 0 1rem;
}

.yv-offcanvas .contact-list {
  display: grid; gap: 0.8rem; margin: 0 0 1rem;
}
.yv-offcanvas .contact-list li {
  display: grid; grid-template-columns: 22px 1fr;
  column-gap: 0.6rem; align-items: start;
  color: var(--text-dark); font-size: 0.97rem;
}
.yv-offcanvas .contact-list i {
  color: var(--secondary);
  font-size: 1.05rem; line-height: 1.2; margin-top: 0.15rem;
}
.yv-offcanvas .contact-list a {
  color: var(--text-dark); text-decoration: none;
}
.yv-offcanvas .contact-list a:hover { color: var(--primary); }

.yv-offcanvas .socials {
  display: flex; gap: 0.9rem; margin: 0.25rem 0 1.25rem;
}
.yv-offcanvas .socials a {
  width: 44px; height: 44px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;     font-size: 22px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  text-decoration: none;
}
.yv-offcanvas .socials a[aria-label="facebook"]  { background: #1877F2; }
.yv-offcanvas .socials a[aria-label="youtube"]   { background: #FF0000; }
.yv-offcanvas .socials a[aria-label="instagram"] { background: #E4405F; }
.yv-offcanvas .socials a[aria-label="linkedin"]  { background: #0A66C2; }
.yv-offcanvas .socials a[aria-label="whatsapp"]  { background: #25D366; }
.yv-offcanvas .socials a[aria-label="x"]         { background: #111; }

.yv-offcanvas .yv-offcanvas-cta {
  width: 100%; height: 46px;
  background: var(--secondary); color: #fff;
  border-radius: 999px;
  font-weight: var(--font-weight-semibold); letter-spacing: 0.2px;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
}
.yv-offcanvas .yv-offcanvas-cta:hover {
  background-color: var(--primary);
  color: #fff;
}

/* ---------- Mobile Menu Visibility ---------- */
.mobile-navbar { display: none !important; }
@media (max-width: 767px) {
  .mobile-navbar { display: block !important; }
}


/* Keyframes for zoom */
@keyframes zoomAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1); /* Zoom In */
  }
  100% {
    transform: scale(1); /* Zoom Out */
  }
}

/* Parent container */
.img-container {
  overflow: hidden; 
  width: 100%; /* optional */
  max-width: 100%;
}

/* Image style */
.about-us-img {
  width: 100%;
  height: auto;
  display: block;
}

.yv-hero {
  position: relative;
  min-height: clamp(420px, 72vh, 720px);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  font-family: "Rubik", sans-serif;

  /* smooth zoom animation */
  transition: transform 2s ease-in-out;
  animation: zoom 10s ease-in-out infinite;
}

/* dark overlay */
.yv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(17, 54, 81, 0.72) 0%,
    rgba(17, 54, 81, 0.55) 55%,
    rgba(17, 54, 81, 0.35) 100%
  );
}

.yv-hero .container {
  position: relative;
  z-index: 1;
}

.yv-hero .hero-title {
  margin: 0 0 1rem;
  line-height: 1.08;
  font-weight: 500;
  font-size: 52px;
}

.yv-hero .hero-title .accent {
  font-style: italic;
  color: #00d3e5;
  font-weight: 600;
}

.yv-hero .hero-title .accent-dot {
  color: #1E858E;
  font-style: normal;
}

.yv-hero .hero-sub {
  max-width: 56ch;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.5rem;
}

.yv-hero .hero-cta {
  padding: 0.9rem 1.25rem;
  font-weight: 600;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

/* animated zoom keyframes (in/out cycle) */
@keyframes zoom {
  0%, 100% {
    background-size: 100% 100%;
    background-position: center;
  }
  50% {
    background-size: 110% 110%; /* zoom in */
    background-position: center;
  }
}

/* primary button */
.yv-btn-primary {
  background: #1E858E;
  color: #ffffff;
  border: 1px solid transparent;
}
.yv-btn-primary:hover {
  background: rgba(30, 133, 142, 0.9);
  color: #ffffff;
}
.yv-btn-primary:focus {
  box-shadow: none;
}

/* responsiveness */
@media (max-width: 991.98px) {
  .yv-hero .hero-sub {
    max-width: 100%;
  }
  @keyframes zoom {
    0%, 100% {
      background-size: 100% 100%;
    }
    50% {
      background-size: 106% 106%;
    }
  }
}

/* accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .yv-hero {
    animation: none;
  }
}

/* srvices section css start */


/* SERVICES SECTION */
.yv-services .section-title {
  font-size: 1.75rem; /* h3-size approx */
  font-weight: 700;
  color: #113651;
}
.yv-services .section-title .accent-1 {
  color: #113651;
}
.yv-services .section-title .accent-2 {
  color: #1E858E;
  font-style: italic;
}

/* CARD */
.service-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .img-wrap {
  position: relative;
  overflow: hidden;
}

.service-card .img-wrap img {
  width: 100%;
  height: clamp(220px, 32vw, 420px);
  object-fit: cover;
  transition: transform .7s ease;
  display: block;
}

.service-card .img-wrap:hover img {
  transform: scale(1.06);
}

.service-card .img-wrap .img-pill {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: #113651;
  color: #ffffff;
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  text-align: center;
}

.service-card .content .desc {
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
}

.service-card .content .read-more {
  color: #1E858E;
  font-weight: 600;
  text-decoration: none;
}
.service-card .content .read-more:hover {
  text-decoration: underline;
}

/* SWIPER CONTROLS */
/* SWIPER CONTROLS */
.services-swiper {
  padding-bottom: 36px; /* room for dots */
  position: relative;   /* arrows swiper ke andar rahenge */
}

.services-swiper .swiper-button-prev,
.services-swiper .swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
  top: 46%;         /* center vertically */
  color: #000;      /* arrow visible */
}

/* arrow icon style */
.services-swiper .swiper-button-prev:after,
.services-swiper .swiper-button-next:after {
  font-size: 18px;
  color: #113651;
  font-weight: 700;
}

/* Position fix */
.services-swiper .swiper-button-prev {
  left: 10px;   /* pehle right: 10px tha -> overlap ho raha tha */
}
.services-swiper .swiper-button-next {
  right: 10px;  /* sahi jagah pe */
}

/* Pagination bullets */
.services-swiper .swiper-pagination-bullets {
  bottom: 0;
}
.services-swiper .swiper-pagination-bullet {
  background: #1E858E;
  opacity: 0.45;
}
.services-swiper .swiper-pagination-bullet-active {
  background: #1E858E;
  opacity: 1;
}



/* small spacing tune for phones */
@media (max-width: 575.98px) {
  .service-card .img-wrap .img-pill {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
}

/* Section Head */
.section-head {
  text-align: center;
  padding-bottom: 50px;
}
.section-head .section-head-title {
  font-size: 18px;
  color: #6b7280;
}
.section-head .section-head-title .spark {
  font-size: 18px;
  padding-right: 6px;
}
.section-head h2 {
  font-size: 48px;
  padding-top: 15px;
}
.section-head h2 .title {
  font-size: 48px;
  color: #1E858E; /* accent-color */
}

/* slow rotation for spark icon */
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .mobile-navbar {
    display: block !important;
  }
  .yv-topbar {
    display: none;
  }
  .fields {
    display: inline-block !important;
  }
  .lead-title {
    font-size: 36px !important;
    font-weight: 600;
  }
  .hero-title {
    font-size: 40px !important;
  }

  .section-head {
    text-align: center;
    padding-bottom: 50px;
  }
  .section-head .section-head-title {
    font-size: 18px;
    color: #6b7280;
  }
  .section-head .section-head-title .spark {
    font-size: 18px;
    padding-right: 6px;
  }
  .section-head h2 {
    font-size: 36px;
    padding-top: 10px;
  }
  .section-head h2 .title {
    font-size: 36px;
    color: #1E858E;
  }
}


/* .yv-lead section css start */

.yv-lead {
  background: #113651; /* dark blue band */
  color: #ffffff;
  font-family: "Inter", sans-serif;
  padding: 100px 0px;
  background-image: url(https://lekhajokhahub.com/static/assets/img/benifits/shape.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.yv-lead .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  gap: clamp(1.25rem, 3vw, 2rem);
}

@media (max-width: 991.98px) {
  .yv-lead .container {
    grid-template-columns: 1fr;
  }
}

/* left side */
.lead-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 18px !important;
  color: rgba(255, 255, 255, .9);
  margin-bottom: .75rem;
}

.lead-copy .eyebrow .spark {
  font-size: 18px;
  line-height: 1;
}

.lead-copy .lead-title {
  margin: 0 0 1.25rem;
  font-weight: 700;
  font-size: clamp(1.8rem, 4.8vw, 3rem);
  line-height: 1.15;
}

.lead-copy .lead-title em {
  font-style: italic;
  color: #1E858E; /* accent */
  font-weight: 600;
}

.lead-copy .lead-list {
  list-style: none;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0px;
  display: grid;
  gap: 1rem;
}

.lead-copy .lead-list li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(255, 255, 255, .95);
  font-size: 18px;
  line-height: 1.6;
}

.lead-copy .lead-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6rem;
  width: .5rem;
  height: .5rem;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .15);
}

/* CTA button */
.yv-btn-accent {
  background: #1E858E;
  color: #ffffff;
  padding: .9rem 1.25rem;
  font-weight: 600;
  border: 1px solid transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.yv-btn-accent:hover {
  background: rgba(30, 133, 142, .9);
  color: #ffffff;
}

/* right side */
.lead-form .form-card {
  background: #1E858E;
  color: #113651;
  border-radius: 14px;
  padding: clamp(1rem, 3vw, 2rem);
  display: grid;
  align-content: start;
}

.lead-form .form-title {
  color: #ffffff;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 30px;
}

.lead-form form {
  width: 100%;
}

/* grid of fields */
.lead-form .fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}

.lead-form .fields .field {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 24px;
  padding: .85rem .9rem;
  font-size: 1rem;
  color: #222222;
}

.lead-form .fields .field::placeholder {
  color: #6b7280;
}

.lead-form .fields .field.field--textarea {
  grid-column: 2;
  grid-row: 1 / span 3;
  min-height: 160px;
  resize: vertical;
}

@media (max-width: 575.98px) {
  .lead-form .fields {
    grid-template-columns: 1fr;
  }
  .lead-form .fields .field.field--textarea {
    grid-column: auto;
    grid-row: auto;
  }
}

.lead-form .btn-send {
  margin-top: 1rem;
  width: 100%;
  background: #113651;
  color: #ffffff;
  font-weight: 600;
  padding: .9rem 1rem;
  border: 1px solid transparent;
}

.lead-form .btn-send:hover {
  opacity: .95;
}

.lead-form .privacy {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin: .9rem 0 0;
  font-size: 0.875rem;
  color: #113651;
}

.lead-form .privacy .dot {
  margin-top: .35rem;
  width: 46px;
  height: 29px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}





/* services Section css start*/
.empowering {
  font-family: 'Poppins', sans-serif; /* replace with your font */
  padding-top: 70px;
  padding-bottom: 150px;
  background-color: #fff;
}

.empowering .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem; /* example for $span-size */
  color: #f8f9fa;      /* example for $text-light */
  margin-bottom: 0.5rem;
}

.empowering .eyebrow .bi-stars {
  font-size: 1rem;
  color: #1E858E; /* example for $secondary */
}

.empowering .heading {
  text-align: center;
  margin: 0 0 2rem; /* approximation for clamp(1.6rem, 3.5vw, 2.2rem) */
  font-weight: 700; /* $font-weight-bold */
  line-height: 1.1;
  font-size: 2.5rem; /* approximation for clamp(2rem, 5.4vw, 3.2rem) */
  color: #1E858E; /* $secondary */
}

.empowering .heading .bold {
  color: #1E858E;
  font-weight: 700;
}

.empowering .heading .accent {
  color: #1E858E; /* $primary */
  font-style: italic;
  font-weight: 600; /* $font-weight-semibold */
}

/* Feature card */
.card-feature {
  background: #1E858E; /* $secondary */
  color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12); /* $shadow */
  padding: 2rem 1.5rem 4rem; /* approximation for clamp values */
  position: relative;
  min-height: 320px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* card head */
.card-feature .card-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.card-feature .card-head i {
  font-size: 2.1rem;
  line-height: 1;
  color: #ffffff;
}

.card-feature .card-head h5 {
  margin: 0;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem; /* approximation for clamp(1.1rem, 2vw, 1.35rem) */
  letter-spacing: 0.2px;
}

/* card text */
.card-feature .card-text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem; /* $p-size */
  line-height: 1.7;
  max-width: 36ch;
}

/* badge arch */
.card-feature .badge-arch {
  position: absolute;
  left: 50%;
  bottom: -1.55rem;
  transform: translateX(-50%);
  width: 90px;
  height: 84px;
  background: #ffffff;
  border-radius: 999px 999px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.35rem;
}

.card-feature .badge-dot {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 999px;
  background: #1E858E; /* $primary */
  color: #113651;     /* $secondary */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700; 
  font-size: 1.05rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* Responsive for small screens */
@media (max-width: 767.98px) {
  .card-feature {
    text-align: center;
  }
  .card-feature .card-text {
    max-width: none;
  }
}


/* testimonials section css start */


.testimonials {
  position: relative;
  background: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1470&q=80") center/cover no-repeat;
  color: #fff; /* $white */
  padding: 152px 0;
  z-index: 1;
}

.testimonials .overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 54, 81, 0.75); /* $secondary with opacity */
  z-index: -1;
}

.testimonials .heading {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700; /* $font-weight-bold */
  margin-bottom: 2.5rem;
  color: #fff; /* $white */
}

.testimonials .testimonial-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  max-width: 820px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* $shadow */

  font-style: italic;
  line-height: 1.7;
}

.testimonials .testimonial-card .quote {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.5rem;
}

.testimonials .testimonial-card .quote-open {
  margin-right: 0.35rem;
}

.testimonials .testimonial-card .quote-close {
  margin-left: 0.35rem;
}

.testimonials .testimonial-card .author strong {
  display: block;
  font-weight: 700; /* $font-weight-bold */
  color: #1E858E; /* $primary */
}

.testimonials .testimonial-card .author span {
  font-size: 0.875rem; /* $span-size */
  color: rgba(255,255,255,0.8);
}

/* Controls */
.testimonials .carousel-control-prev,
.testimonials .carousel-control-next {
  width: auto;
  top: 50%;
  transform: translateY(-50%);
}

.testimonials .carousel-control-prev {
  left: 10%;
}

.testimonials .carousel-control-next {
  right: 10%;
}

.testimonials .carousel-control-prev .control-btn,
.testimonials .carousel-control-next .control-btn {
  background: #fff;
  color: #113651; /* $secondary */
  border-radius: 50%;
  padding: 0.55rem 0.79rem;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* $shadow */
  transition: all 0.2s ease;
}

.testimonials .carousel-control-prev .control-btn:hover,
.testimonials .carousel-control-next .control-btn:hover {
  background: #1E858E; /* $primary */
  color: #fff;
}





/* blog section css start */


.blogs {
    background: #fff;
  padding: 80px 0;
}

.blogs .section-head {
  text-align: center;

}

.blogs .eyebrow {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.blogs .title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.blogs .subtitle {
  font-size: 1rem;
  color: #6b7280;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.blog-card .thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card .body {
  padding: 1.5rem;
}

.blog-card .blog-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #113651;
    line-height: 1.35;
    margin-bottom: 0.65rem;

}

.blog-card .excerpt {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card .readmore {
  font-weight: 600;
  color: #1E858E;
  text-decoration: none;
}

.blog-card .readmore:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 767.98px) {
  .blog-card .thumb img {
    height: 200px;
  }
}





















/* footer css start */


/* Root wrapper */
.yv-footer {
  background: #113651;  /* replace $secondary with actual color */
  color: #ffffff;       /* replace $white */

  padding-top: 30px;
  padding-bottom: 30px;
}

.yv-footer .footer-logo {
  border-radius: 8px;
}

.yv-footer .about-text {
  padding-top: 15px;
  padding-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem; /* replace $p-size */
  line-height: 1.7;
  max-width: 520px;
}

.yv-footer .ft-title {
  color: #ffffff;
  font-weight: 600; /* replace $font-weight-semibold */
  margin-bottom: 0.75rem;
  font-size: 1.25rem; /* replace $font-h5 */
}

.yv-footer .ft-list li {
  margin-bottom: 0.6rem;
}

.yv-footer .ft-list li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: 0.2s ease;
}

.yv-footer .ft-list li a:hover {
  color: #00d3e5;
  text-decoration: underline;
}

/* Social icon circles (bootstrap-icons) */
.yv-footer .social {
  width: 39px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #113651; /* replace $secondary */
  border: 1px solid #e5e7eb; /* replace $border-light */
  transition: 0.2s ease;
}

.yv-footer .social i {
  font-size: 1rem;
}

.yv-footer .social:hover {
  background: #1E858E; /* replace $primary */
  color: #ffffff;
  border-color: transparent;
}

/* Bottom bar */
.yv-footer .footer-bottom {
  background: #1E858E; /* replace $primary */
  color: #ffffff;
  margin-top: 50px;
}

.yv-footer .footer-bottom a {
  color: #ffffff;
  text-decoration: underline;
}

/* Responsive spacing refinements */
@media (max-width: 991.98px) {
  .yv-footer .about-text {
    max-width: none;
  }
}





















.contact-section {
  padding: 80px 0;
  background: #ffffff;
  font-family: "Arial", sans-serif;
  color: #113651;
}

.contact-section .contact-subtitle {
  font-size: 1rem;
  color: rgba(17, 54, 81, 0.7);
  margin-bottom: 10px;
}

.contact-section .contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #113651;
  margin-bottom: 20px;
}

.contact-section .city-btns {
  margin-top: 1rem;
}

.contact-section .city-btns .btn {
  border: 1px solid #d9d9d9;
  color: #113651;
  background: transparent;
  margin: 0 10px 10px 0;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.contact-section .city-btns .btn:hover {
  background: #1E858E;
  color: #ffffff;
  border-color: #1E858E;
}

.contact-section .contact-info {
  margin-bottom: 2rem;
}

.contact-section .contact-info h6 {
  font-size: 0.9rem;
  color: rgba(17, 54, 81, 0.7);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-section .contact-info a {
  display: block;
  color: #113651;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-section .contact-info a i {
  font-size: 1.1rem;
  color: #1E858E;
  margin-right: 6px;
}

.contact-section .contact-info a:hover {
  color: #1E858E;
}

/* Responsive */
@media (max-width: 991.98px) {
  .contact-section {
    text-align: center;
  }

  .contact-section .city-btns .btn {
    margin: 5px;
  }

  .contact-section .contact-info {
    margin-top: 1.5rem;
  }
}





/* SLIDER MAIN */
.yv-slider {
  width: 100%;
  height: 100vh; /* Full screen height */
  position: relative;
  overflow: hidden;
  font-family: var(--font-family-base);
}

/* SLIDE IMAGE */
.yv-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT BOX (Address / Info) */
.yv-slider .text-box {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: var(--black);
  background: var(--white);
  padding: 15px 20px;
  border-radius: 8px;
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.6;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.15);
  z-index: 2;
}

.yv-slider .text-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.yv-slider .text-box p {
  margin: 0;
  font-size: 1rem;
}

/* ARROWS */
.yv-slider .swiper-button-next,
.yv-slider .swiper-button-prev {
  background: var(--white);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  box-shadow: 0px 3px 6px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.yv-slider .swiper-button-next {
  right: 20px;
}

.yv-slider .swiper-button-prev {
  left: 20px;
}

.yv-slider .swiper-button-next::after,
.yv-slider .swiper-button-prev::after {
  font-size: 18px;
  color: var(--secondary);
  font-weight: bold;
}

.yv-slider .swiper-button-next:hover,
.yv-slider .swiper-button-prev:hover {
  background: var(--primary);
}

.yv-slider .swiper-button-next:hover::after,
.yv-slider .swiper-button-prev:hover::after {
  color: var(--white);
}





/* container look like screenshot: rounded + shadow */
    .hero-slider-wrap{
      margin:32px auto;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 20px 45px rgba(0,0,0,.18);
      max-width: 1140px; /* same feel as your screenshot */
    }

    /* swiper box height */
    .hero-slider{
      width:100%;
      height: clamp(360px, 48vw, 560px);
      position: relative;
      background:#000;
    }

    /* each slide */
    .hero-slide{
      position: relative;
      width:100%; height:100%;
    }
    .hero-slide img{
      width:100%; height:100%;
      object-fit:cover; object-position:center;
      display:block;
    }

    /* gradient overlay like screenshot */
    .hero-slide::after{
      content:"";
      position:absolute; inset:0;
      background:
        linear-gradient(180deg, rgba(0,0,0,0) 48%, rgba(6,34,42,.72) 80%, rgba(6,34,42,.92) 100%),
        radial-gradient(1200px 480px at 20% 70%, rgba(4,33,40,.55), transparent 60%);
      pointer-events:none;
    }

    /* bottom-left text */
    .hero-caption{
      position:absolute;
      left: clamp(18px, 4vw, 48px);
      bottom: clamp(18px, 3.4vw, 44px);
      color:#fff; z-index:2;
      max-width: 820px;
    }
    .hero-caption h3{
      margin:0 0 8px;
      font-weight:700; line-height:1.25;
      font-size: clamp(22px, 2.1vw + 10px, 34px);
      letter-spacing:.2px;
      text-shadow:0 2px 18px rgba(0,0,0,.35);
    }
    .hero-caption p{
      margin:0; font-weight:600; color:#d6dde1;
      font-size: clamp(12px, .65vw + 10px, 15px);
    }

    /* circular nav at bottom-right */
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev{
      width:56px; height:56px; border-radius:50%;
      background:#fff; color:#0a2230;
      box-shadow:0 10px 25px rgba(0,0,0,.18);
      top:auto; bottom: clamp(18px, 3.4vw, 44px);
    }
    .hero-slider .swiper-button-next{ right: clamp(18px, 4vw, 48px); }
    .hero-slider .swiper-button-prev{ right: calc(clamp(18px, 4vw, 48px) + 72px); }

    /* hide default arrow glyph and use icons inside */
    .hero-slider .swiper-button-next::after,
    .hero-slider .swiper-button-prev::after{ display:none; }
    .hero-slider .swiper-button-next i,
    .hero-slider .swiper-button-prev i{ font-size:1.15rem; }

    /* make arrows accessible even over overlay */
    .hero-slider .swiper-button-next, .hero-slider .swiper-button-prev{ z-index:5; }

    /* small tweak for mobile */
    @media (max-width:520px){
      .hero-slider .swiper-button-next,
      .hero-slider .swiper-button-prev{ width:50px; height:50px; }
    }





    /* Contact form block */
.yv-contact-form{ background:#fff; padding-top: 80px; padding-bottom: 80px; }
.cf-title{
  color:#11284b;            /* navy heading like screenshot */
  font-weight:700;
  line-height:1.15;
  font-size:clamp(28px, 2.4vw + 12px, 44px);
  letter-spacing:.2px;
  margin:0;
}
.cf-title .cf-italic{
  font-style:italic;
  font-weight:500;
}

/* Social round pills */
.social-pill{
  width:44px; height:44px; border-radius:50%;
  display:grid; place-items:center;
  color:#fff; font-size:20px; text-decoration:none;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}
.social-pill.fb{ background:#1877F2; } /* Facebook */
.social-pill.yt{ background:#FF0000; } /* YouTube */
.social-pill.ig{ background:#E4405F; } /* Instagram (approx) */
.social-pill.li{ background:#0A66C2; } /* LinkedIn */
.social-pill.wa{ background:#25D366; } /* WhatsApp */
.social-pill.x { background:#000000; } /* X */

.social-pill:hover{ filter:brightness(0.94); }

/* Form look */
.cf-form .form-control{
  border-radius:.35rem;
  padding:.9rem 1rem;
  border-color:#E5E7EB;
  box-shadow: none;
}
.cf-form .form-control:focus{
  border-color:#274060;
  box-shadow:0 0 0 .25rem rgba(17,42,92,.08);
}
.cf-form textarea.form-control{
  min-height:160px;
  resize:vertical;
}

/* Submit button (full width, deep navy) */
.cf-submit{
  background:#10264b;
  border:0;
}
.cf-submit:hover{ background:#0d2142; }








/* about us css start */

.who-we-are {
  padding: 80px 0;
  font-family: var(--font-family-base);
}

.who-content{
  padding-left: 40px;
}

.who-we-are .who-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

.who-we-are .who-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 20px;
}

.who-we-are .who-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}

.who-we-are .who-content strong {
  font-weight: 600;
  color: var(--secondary);
}

.who-we-are .who-content .highlight {
  font-weight: 600;
  color: var(--accent);
}




.stats-section {
  background: #fff;
}

.stat-box {
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.stat-box:hover {
  background-color: var(--hover-bg);
  transform: translateY(-5px);
}

.stat-box svg {
  margin-bottom: 15px;
}

.stat-number {
  font-size: 2.8rem;   /* bada number */
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 1rem;
  color: #555;
  margin: 0;
}



.company-registration .reg-title a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  text-decoration: underline;
}

.company-registration .reg-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary);
  margin: 15px 0;
}

.company-registration .reg-subtitle span {
  color: var(--primary);
}

.company-registration .reg-points {
  padding-left: 18px;
  color: #333;
  line-height: 1.8;
}

.services-right {
  background: var(--light-gray);
}

.services-right h4 {
  font-weight: 700;
  color: var(--secondary);
}

.accordion-button {
  font-weight: 500;
  color: var(--secondary);
}

.accordion-item .accordion-button
{
    background-color: var(--primary) !important;
  color: #fff;
}
.accordion-button:not(.collapsed) {
  background-color: var(--primary) !important;
  color: #fff !important;
}

.accordion-button::after{
      /* background-color: #fff; */
 
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;


    border-radius: 3px;
}




/* .benefits h2 {
  font-size: 2rem;
  color: var(--secondary);
} */

.benefit-box {
  background: var(--secondary);
  color: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0px 6px 16px rgba(0,0,0,0.15);
  text-align: center;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.25);
  background: var(--primary);
}


.card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.sr-title{ 
  color:#113651 !important;
}

.card .bi{
   color:#113651 !important;
}

.faq-section {
  background-color: var(--secondary);
  color: var(--white);
  padding-top: 80px;
  padding-bottom: 80px;
}

.faq-content {
  background-color: var(--primary);
  border-radius: 12px;
}

.faq-content h3 {
  font-size: 1.8rem;
  line-height: 1.4;
}

.accordion-button {
  background-color: var(--secondary);
  color: var(--white);
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary);
  color: var(--white);
}

.accordion-body {
  font-size: 0.9rem;
  color: var(--black);
  background-color: var(--white);
}

