:root {
  --brand-blue-500: #00be63;
  --brand-blue-600: #00a856;
  --brand-blue-400: #2fd17f;
  --brand-blue-700: #008f4a;

  --brand-blue-soft: rgba(0, 190, 99, 0.08);
  --brand-blue-border: rgba(0, 190, 99, 0.3);

  --brand-indigo-700: #0b7a46; 
  --brand-navy-900: #062a1a;
  --brand-navy-800: #0b3d26;

  --bg-page: #f5fffa;
  /*--bg-page: #F0FDF7;*/
  --bg-light: #deffef;

  --text-dark: #000000;
  --text-muted: #4D4D4D;
  --text-muted-soft: #5f6b7a;
  --text-on-dark: #ffffff;
  --text-on-dark-soft: rgba(255,255,255, 0.7);

  --blue-rgb: 0, 190, 99;

  --gradient-primary: linear-gradient(
    90deg,
    var(--brand-blue-600) 0%,
    var(--brand-blue-400) 40%,
    var(--brand-blue-700) 70%,
    var(--brand-blue-600) 100%
  );

  --gradient-arrow: linear-gradient(
    120deg,
    var(--brand-blue-500),
    var(--brand-indigo-700),
    var(--brand-blue-500)
  );

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --brand-accent-shadow: rgba(0, 190, 99, 0.25);
  --brand-accent-shadow-soft: rgba(0, 190, 99, 0.15);

  --brand-gradient-strong: linear-gradient(
    180deg,
    var(--brand-blue-600),
    var(--brand-blue-700)
  );

  --brand-gradient-horizontal: linear-gradient(
    90deg,
    var(--brand-blue-600),
    var(--brand-blue-700)
  );

  --brand-overlay-dark: rgba(6, 42, 26, 0.65);
  --brand-overlay-dark-soft: rgba(6, 42, 26, 0.6);

  --brand-bg-soft-1: #e9fbf2;
  --brand-bg-soft-2: #dff7eb;
  --brand-overlay-blog: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.12) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );

  --icon-bg: var(--brand-blue-border);
  --icon-fg: var(--brand-blue-700);
  --header-icon-color: var(--brand-blue-500);
} 

/* :root {

  --brand-blue-500: #1268fb;
  --brand-blue-600: #2563eb;
  --brand-blue-400: #3b82f6;
  --brand-blue-700: #1d4ed8;

  --brand-blue-soft: rgba(18, 104, 251, 0.08);
  --brand-blue-border: rgba(18, 104, 251, 0.3);

  --brand-indigo-700: #2c3e97;
  --brand-navy-900: #010e37;
  --brand-navy-800: #0b1f4a;

  --bg-page: #F0F6F9;
  --bg-light: #dff0ff;

  --text-dark: #000000;
  --text-muted: #4D4D4D;
  --text-muted-soft: #5f6b7a;
  --text-on-dark: #ffffff;
  --text-on-dark-soft: rgba(255,255,255, 0.7);

  --blue-rgb: 18, 104, 251;

  --gradient-primary: linear-gradient(
    90deg,
    var(--brand-blue-600) 0%,
    var(--brand-blue-400) 40%,
    var(--brand-blue-700) 70%,
    var(--brand-blue-600) 100%
  );

  --gradient-arrow: linear-gradient(
    120deg,
    var(--brand-blue-500),
    var(--brand-indigo-700),
    var(--brand-blue-500)
  );

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --brand-accent-shadow: rgba(18, 104, 251, 0.25);
  --brand-accent-shadow-soft: rgba(18, 104, 251, 0.15);

  --brand-gradient-strong: linear-gradient(
    180deg,
    var(--brand-blue-600),
    var(--brand-blue-700)
  );

  --brand-gradient-horizontal: linear-gradient(
    90deg,
    var(--brand-blue-600),
    var(--brand-blue-700)
  );

  --brand-overlay-dark: rgba(1, 14, 55, 0.65);
  --brand-overlay-dark-soft: rgba(1, 14, 55, 0.6);

  --brand-bg-soft-1: #e6f2ff;
  --brand-bg-soft-2: #d6eaff;

  --brand-overlay-blog: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.12) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
} */


* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-page);
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    color: var(--text-dark);
}
main{
    overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  padding: 0px 100px 0px 100px;
}

/* ===== GRADIENT GLOWS ===== */
.glow {
  position: absolute;
  width: 1100px;
  height: 1100px;
  pointer-events: none;
  z-index: 0;
  filter: blur(18px);

  background: radial-gradient(
    circle,
    rgba(var(--blue-rgb), 0.28) 0%,
    rgba(var(--blue-rgb), 0.18) 25%,
    rgba(var(--blue-rgb), 0.08) 40%,
    transparent 60%
  );
}

/* left behind team image */
.glow-left {
  left: -400px;
  bottom: -300px;
}

/* top behind navbar / heading */
.glow-top {
  top: -500px;
  left: 50%;
  transform: translateX(-50%);
}

/* right near magnet */
.glow-right {
  right: -400px;
  bottom: -350px;
}

/* ===== CONTENT ===== */
.content {
  position: relative;
  z-index: 2;
  padding-top: 70px;
}
.image {
  position: relative;
}
/* images */
.team-img {
  max-width: 666px;
  width: 100%;
    position: relative;
  top: 160px; 
}

/* new */
.top-bar {
  background: var(--brand-navy-900);
}
.btn-primary-gradient,
.btn-primary-gradient:hover,
.btn-primary-gradient:focus,
.btn-primary-gradient:focus-visible,
.btn-primary-gradient:active,
.btn-primary-gradient.active {
  background-color: var(--brand-navy-900) !important;
  border: 1px solid var(--brand-blue-500) !important;
  color: var(--text-on-dark) !important;
  padding: 0 10px 0 26px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  height: 56px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary-gradient:hover,
.btn-primary-gradient:focus,
.btn-primary-gradient:focus-visible,
.btn-primary-gradient:active,
.btn-primary-gradient.active {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px var(--brand-accent-shadow);
}

.btn-primary-gradient .cta-arrow {
  position: relative;
  overflow: hidden;
  margin-left: 10px;

  background: var(--gradient-arrow);
  background-size: 200% 200%;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: background-position 500ms cubic-bezier(0, 0, 0.2, 1);
}
.arrow-inner {
  display: inline-block;
  transition:
    transform 500ms cubic-bezier(0, 0, 0.2, 1),
    opacity 300ms cubic-bezier(0, 0, 0.2, 1);
}
.btn-primary-gradient:hover .arrow-inner {
  transform: translate(8px, -8px);
  opacity: 0;
}
.btn-primary-gradient:hover .arrow-inner {
  animation: arrow-jump 500ms cubic-bezier(0, 0, 0.2, 1) forwards;
}

@keyframes arrow-jump {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }

  40% {
    transform: translate(8px, -8px);
    opacity: 0;
  }

  41% {
    transform: translate(-4px, 8px);
    opacity: 0;
  }

  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.btn-primary-gradient:hover .cta-arrow {
  background-position: 100% 50%;
}


/* .main-nav {
  background: radial-gradient(
    circle at top,
    rgba(18, 104, 251, 0.15),
    transparent 70%
  );
} */

.nav-link {
    font-size: 18px;
  color: var(--text-dark);
  transition: all ease 0.3s;
}
.nav-link:hover {
  color: var(--brand-blue-500);
}


.nav-link.active {
  background: var(--brand-blue-500);
  color: var(--text-on-dark)!important;
  padding: 8px 18px!important;
  border-radius: var(--radius-sm);
}
/* Navbar mobile fixes */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .navbar-nav {
    gap: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .nav-link {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
  }

  .nav-link.active {
    display: inline-block;
  }

  /* .btn-primary-gradient {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  } */
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(10,10,10,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
@media (max-width: 991.98px) {
  .hero {
    padding: 0 20px 60px 20px;
  }
}
.hero-head{
  font-size: 55px;
  font-weight: 600;
}

 .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 3px 14px;
  margin-bottom: 18px;

  font-size: 15px;
  font-weight: 600;
  color: var(--brand-blue-500);

  background: var(--brand-blue-soft);
  border: 1px solid var(--brand-blue-border);
  border-radius: 18px;
}

.hero-badge-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 3px 14px;
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-on-dark);
  background: var(--brand-blue-soft);
  border: 1px solid var(--brand-blue-border);
  border-radius: 18px;
}

.badge-line {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--brand-blue-500);
  border-radius: 2px;
}

.badge-dot {
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--brand-blue-500);
  border-radius: 50%;
}
.pre-badge-line {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--brand-blue-500);
  border-radius: 2px;
}

.pre-badge-dot {
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--brand-blue-500);
  border-radius: 50%;
}
@media (min-width: 992px) {
  .hero-badge {
    font-size: 14px;
  }
}

.hero-content{
  color: var(--text-muted-soft);
  font-size: 18px;
}

/* logo slider start */
.logo-slider {
  padding: 40px 0;
}

.logoSwiper {
  overflow: hidden;
}

.logoSwiper .swiper-wrapper {
  
  animation: ticker 5s linear infinite;
}

.logoSwiper .swiper-slide {
  width: auto !important; /* critical */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px; /* controls gap */
}

.logoSwiper img {
  max-height: 42px;
  width: auto;
  opacity: 0.7;
}

.logoSwiper img {
  filter: grayscale(100%) contrast(1.1);
  opacity: 0.7;
}

.logoSwiper img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
/* CONSTANT SPEED */
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.logo-slider-head{
  font-weight: 600;
  font-size: 26px;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* logo slider end */
.get-quote-button {
  position: relative;
  overflow: hidden;

  background: none !important;
  border: none;
}
.get-quote-button,
.get-quote-button:hover,
.get-quote-button:focus,
.get-quote-button:focus-visible,
.get-quote-button:active,
.get-quote-button.active {
  display: inline-flex;
  align-items: center;

  background: none !important;

  color: var(--text-on-dark) !important;
  padding: 10px 10px 10px 26px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  height: 54px;

  transition:
    background-position 500ms cubic-bezier(0, 0, 0.2, 1),
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.get-quote-button:hover {
  background-position: 100% 50%;
  transform: translateY(-1px);
  box-shadow: 0 10px 30px var(--brand-accent-shadow);
}
.hero-primary-cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  margin-left: 10px;
  border-radius: 12px;
  background-color: var(--brand-navy-900);

  overflow: hidden;
}
.hero-primary-arrow-inner {
  display: inline-flex;
  will-change: transform, opacity;
}

.get-quote-button:hover .hero-primary-arrow-inner {
  animation: arrow-jump 500ms cubic-bezier(0, 0, 0.2, 1);
}

@keyframes arrow-jump {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }

  40% {
    transform: translate(8px, -8px);
    opacity: 0;
  }

  41% {
    transform: translate(-4px, 8px);
    opacity: 0;
  }

  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.get-quote-button::before {
  content: "";
  position: absolute;
  inset: 0;

  background: var(--gradient-primary);

  background-size: 200% 200%;
  background-position: 0% 50%;

  border-radius: inherit;
  z-index: 0;

  transition: background-position 500ms cubic-bezier(0, 0, 0.2, 1);
}
.get-quote-button:hover::before {
  background-position: 100% 50%;
}.get-quote-button > * {
  position: relative;
  z-index: 1;
}

.get-quote-button,
.btn-primary-gradient {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 10px 0 26px;
  border-radius: var(--radius-lg);
}
                .logo-marquee {
  overflow: hidden;
  width: 100%;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.logo-item {
  flex-shrink: 0;
  padding: 0 30px;
}

.logo-item img {
  height: 42px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.logo-item img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


/* ===== STATS SECTION ===== */
.stats-section {
  padding: 90px 0;
}

.stats-heading {
  font-weight: 600;
  font-size: 40px;
  color: var(--text-dark);
}

.stats-subtext {
  color: var(--text-muted-soft);
  max-width: 720px;
  font-size: 18px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  transition: transform 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
}

.stat-circle {
  width: 140px;
  height: 140px;
  margin: 0 auto 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--brand-blue-soft);
  border: 3px solid var(--brand-blue-border);
  border-radius: 50%;

  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.stat-card:hover .stat-circle {
  background: var(--brand-blue-500);
  border-color: var(--brand-blue-500);
  box-shadow: 0 18px 40px var(--brand-accent-shadow);
  transform: scale(1.05);
}

.stat-card:hover .stat-number {
  color: var(--text-on-dark);
}

.stat-number {
  font-size: 42px;
  font-weight: 900;
  color: var(--brand-blue-500);
  line-height: 1;
  transition: color 0.35s ease;
}

.stat-label {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-muted);
  max-width: 270px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .stats-heading {
    font-size: 28px;
  }

  .stat-circle {
    width: 125px;
    height: 125px;
  }

  .stat-number {
    font-size: 34px;
  }
}

/*  Industry-Specific Hiring section start */
.features-section {
  position: relative;
  padding: 120px 0 80px 0;
  background: radial-gradient(
      circle at top left,
      var(--brand-navy-900),
      transparent 40%
    ),
    linear-gradient(
      180deg,
      var(--brand-navy-800) 0%,
      var(--brand-navy-900) 100%
    );
  overflow: hidden;
}

.features-section .glow {
  position: absolute;
  width: 900px;
  height: 900px;
  pointer-events: none;
  filter: blur(50px);
  z-index: 0;

  background: radial-gradient(
    circle,
    rgba(var(--blue-rgb), 0.22) 0%,
    rgba(var(--blue-rgb), 0.12) 30%,
    rgba(var(--blue-rgb), 0.06) 45%,
    transparent 45%
  );
}

.features-section .glow-left {
  top: -300px;
  left: -350px;
}

.features-section .glow-center {
  top: -400px;
  left: 50%;
  transform: translateX(-50%);
}

.features-section .glow-right {
  bottom: -350px;
  right: -300px;
}
.features-section .features-section-container {
  position: relative;
  z-index: 2;
}
.features-section h2,
.features-section h3 {
  color: var(--text-on-dark);
}
.features-section-head{
  font-size: 40px;
}

.feature-card {
  text-align: center;
  color: var(--text-on-dark);
  cursor: pointer;
}
.feature-card-outer{
  margin-bottom: 35px;
}
.features-section-cards{
  margin-top: 77px;
}

.feature-icon {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  background: var(--brand-blue-500);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-icon::before {
  content: "";
  position: absolute;
  inset: -15px;
  border-radius: calc(20px + 12px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: -1;
}

.feature-icon img {
  width: 54px;
  height: 54px;
}

.feature-title {
  font-size: 21px;
  font-weight: 600;
  margin-top: 42px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  color: var(--text-on-dark);
}

.feature-text {
  font-size: 16px;
  color: var(--text-on-dark-soft);
  line-height: 1.6;
}

/* Hover effect */
.feature-card:hover .feature-icon {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px var(--brand-blue-700),
    0 12px 30px var(--brand-indigo-700);
}

.features-section-content{
  color: var(--text-on-dark-soft);
  font-size: 18px;
}
.features-swiper {
  padding-bottom: 0px;
  padding-top: 60px; 
}

.features-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  height: auto;
}

.features-swiper .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.4;
}

.features-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}
.features-section {
  overflow: visible;
}

.features-section-container {
  overflow: visible;
}

.features-swiper-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.swiper-btn {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: none;
  background: var(--brand-gradient-horizontal);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*.swiper-btn:active {*/
/*  transform: scale(0.96);*/
/*}*/

/* .features-section p {
  color: var(--text-on-dark);
}

.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
} */

.features-swiper-wrapper {
  position: relative;
}

/* Common nav style */
.feature-nav-left,
.feature-nav-right {
  position: absolute;
  top: 31%;
  transform: translateY(-50%);
  z-index: 5;

  width: 44px;
  height: 44px;
  border-radius: 12px;

  background: var(--brand-blue-500);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);

  display: flex;
  align-items: center;
  justify-content: center;
}

/* LEFT button */
.feature-nav-left {
  left: 0;
}

/* RIGHT button */
.feature-nav-right {
  right: 0;
}

@media (max-width: 576px) {
  .feature-nav-left,
  .feature-nav-right {
    width: 40px;
    height: 40px;
  }
}

/*  Industry-Specific Hiring section end */


/*  expertise section start */
.expertise-section{
  padding: 100px 0 100px 0;
}
.expertise-heading{
  font-weight: 600;
  font-size: 40px;
  color: var(--text-dark);
  margin-bottom: 20px;
  margin-top: 10px;
}
.expertise-section-text{
  color: var(--text-muted-soft);
  font-size: 18px;
  padding-bottom: 30px;
  border-bottom: 2px solid #dadada;
}
.expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.expertise-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.expertise-list .check-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.expertise-list .text {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
}
.expertise-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.expertise-image img {
  width: 628px;
  height: auto;
  position: relative;
  z-index: 2;
}
.expertise-image::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 360px;
  background: var(--brand-blue-600);
  border-radius: 60% 40% 50% 50%;
  z-index: 1;
  right: 0;
  opacity: 0.95;

  animation: liquidMorph 10s ease-in-out infinite;
}

@keyframes liquidMorph {
  0% {
    border-radius: 60% 40% 50% 50%;
    transform: translate(0, 0) scale(1);
  }
  25% {
    border-radius: 55% 45% 60% 40%;
    transform: translate(-6px, 4px) scale(1.02);
  }
  50% {
    border-radius: 45% 55% 45% 55%;
    transform: translate(4px, -6px) scale(0.98);
  }
  75% {
    border-radius: 65% 35% 55% 45%;
    transform: translate(-4px, -2px) scale(1.01);
  }
  100% {
    border-radius: 60% 40% 50% 50%;
    transform: translate(0, 0) scale(1);
  }
}

/* Tablet & below */
@media (max-width: 991px) {
  .expertise-image img {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    display: block;
  }

  .expertise-image::before {
    width: 320px;
    height: 280px;
    left: 0;
    top: 0;
    animation-duration: 12s;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .expertise-image {
    position: relative;
    text-align: center;
  }

  .expertise-image img {
    width: 100%;
    max-width: 320px;
    filter: drop-shadow(0 14px 28px rgba(0,0,0,0.12));
  }

  .expertise-image::before {
    width: 240px;
    height: 220px;
    left: 0;
    top: 0px;
    transform: translateX(-50%);
    animation-duration: 14s;
  }
}
/* .expertise-image img {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
} */
.expertise-image img {
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}
/*  expertise section end */

/* founder section start */
.founder-section-text{
  color: var(--text-muted-soft);
  font-size: 18px;
  padding-bottom: 10px;
}

.founder-section{
  padding: 100px 0 100px 0;
  background: var(--bg-light);
}
.founder-heading{
  font-weight: 600;
  font-size: 40px;
  color: var(--text-dark);
  margin-bottom: 20px;
  margin-top: 10px;
}

.founder-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*.founder-image img {*/
/*  width: 418px;*/
/*  height: auto;*/
/*  position: relative;*/
/*  z-index: 2;*/
/*  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));*/
  /* animation: float 6s ease-in-out infinite; */
/*}*/
/* .founder-image::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 360px;
  background: var(--brand-blue-600);
  border-radius: 60% 40% 50% 50%;
  z-index: 1;
  right: 0;
}
.founder-image::before {
  filter: blur(0px);
  opacity: 0.95;
} */
.founder-image img {
  width: 363px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
  border-radius: 34px;
  /* animation: float 6s ease-in-out infinite; */
}
/*.founder-image::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  width: 420px;*/
/*  height: 360px;*/
/*  background: var(--brand-blue-600);*/
/*  border-radius: 60% 40% 50% 50%;*/
/*  z-index: 1;*/
/*  left: 20px;*/
/*    top: 99px;*/
/*  opacity: 0.95;*/

/*  animation: liquidMorph 10s ease-in-out infinite;*/
/*}*/

@keyframes liquidMorph {
  0% {
    border-radius: 60% 40% 50% 50%;
    transform: translate(0, 0) scale(1);
  }
  25% {
    border-radius: 55% 45% 60% 40%;
    transform: translate(-6px, 4px) scale(1.02);
  }
  50% {
    border-radius: 45% 55% 45% 55%;
    transform: translate(4px, -6px) scale(0.98);
  }
  75% {
    border-radius: 65% 35% 55% 45%;
    transform: translate(-4px, -2px) scale(1.01);
  }
  100% {
    border-radius: 60% 40% 50% 50%;
    transform: translate(0, 0) scale(1);
  }
}


/* Tablet & below */
@media (max-width: 991px) {
  .founder-image img {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    display: block;
  }

  .founder-image::before {
    width: 320px;
    height: 280px;
    left: 0;
    top: 0;
    animation-duration: 12s;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .founder-image {
    position: relative;
    text-align: center;
  }

  .founder-image img {
    width: 100%;
    max-width: 251px;
    filter: drop-shadow(0 14px 28px rgba(0,0,0,0.12));
  }

    .founder-image::before {
        width: 259px;
        height: 228px;
        left: 20px;
        top: 52px;
        transform: translateX(-50%);
        animation-duration: 14s;
    }
}



/* @keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
} */

.founder-image {
  position: relative;
}

.founder-name-badge {
  position: absolute;

  left: -10px;
  bottom: 90px;

  background: #ffffff;
  color: var(--brand-blue-500);

  padding: 8px 16px;
  border-radius: 14px;

  font-size: 16px;
  font-weight: 600;

  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border: 2px solid var(--brand-blue-border);

  z-index: 5;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .founder-name-badge {
    left: -5px;
    bottom: 40px;
    font-size: 16px;
    padding: 6px 14px;
  }
}

/* founder section end */

/* faqs section start */
.faq-section{
  padding: 100px 0 100px 0;
  background: var(--bg-page);
}

.faq-heading{
  font-weight: 600;
  font-size: 40px;
  color: var(--text-dark);
  margin-bottom: 20px;
  margin-top: 10px;
}

.faq-section-header{
  margin-bottom: 30px;
}

.faq-section-text{
  color: var(--text-muted-soft);
  font-size: 18px;
  padding-bottom: 10px;
}

.faq-accordion .accordion-item {
  border: 1px solid var(--brand-blue-border);
  border-radius: var(--radius-lg);
  margin-bottom: 18px;
  overflow: hidden;
  background: #fff;
}

.faq-accordion .accordion-button {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 22px 26px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--brand-blue-soft);
  color: var(--text-dark);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted-soft);
  padding: 0 26px 22px;
}

.faq-accordion .accordion-button::after {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--brand-blue-700);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M2 5l6 6 6-6' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

@media (max-width: 767px) {
  .faq-accordion .accordion-item {
    margin-bottom: 16px;
  }
}

/* faqs section end */

/* home blog section start */
.home-blog-section {
  padding: 100px 0 100px 0;
  background: var(--bg-light);
}

.home-blog-section-header{
  margin-bottom: 30px;
}

.home-blog-section .blog-card {
  height: 100%;
}

.home-blog-section .blog-image {
  position: relative;
  height: 205px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.home-blog-section .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.home-blog-section .blog-card:hover .blog-image img {
  transform: scale(1.1);
}

/* ---------- Date Badge ---------- */

.home-blog-section .blog-date {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-blue-600);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}


.home-blog-section .blog-content {
  text-align: center;
  padding: 22px 10px 0;
}

.home-blog-section .blog-meta {
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-blue-500);
  margin-bottom: 14px;
}

.home-blog-section .blog-meta-link {
  color: var(--brand-blue-500);
  text-decoration: none;
  font-weight: 500;
}

.home-blog-section .blog-meta-link:hover {
  text-decoration: underline;
}

.home-blog-section .blog-meta .sep {
  margin: 0 6px;
  color: var(--brand-blue-500);
}


.home-blog-section .blog-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 12px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-blog-section .blog-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted-soft);
  line-height: 1.35;
  margin-bottom: 10px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.home-blog-section .read-more {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.home-blog-section .read-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--text-dark);
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 0.35s ease;
}

.home-blog-section .read-more:hover::after {
  transform: scaleX(0);
}

.home-blog-section .read-more .arrow {
  display: inline-block;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.home-blog-section .read-more:hover .arrow {
  transform: translateX(6px);
  opacity: 0;
}

.home-blog-section .blog-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: all ease 0.35s;
}

.home-blog-section .blog-title a:hover {
  color: var(--brand-blue-600);
}

.home-blog-section .blog-image a {
  display: block;
}

@media (max-width: 576px) {
  .home-blog-section .blog-image {
    height: 200px;
  }

  .home-blog-section .founder-heading {
    font-size: 28px;
  }
}


/* home blog section end */


/* footer start */
.site-footer {
  position: relative;
  padding: 100px 0 30px;
  background:
    radial-gradient(
      circle at top left,
      var(--brand-navy-900),
      transparent 40%
    ),
    linear-gradient(
      180deg,
      var(--brand-navy-800) 0%,
      var(--brand-navy-900) 100%
    );
  overflow: hidden;
  color: var(--text-on-dark);
}

.site-footer .footer-glow {
  position: absolute;
  width: 900px;
  height: 900px;
  filter: blur(60px);
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(var(--blue-rgb), 0.22) 0%,
    rgba(var(--blue-rgb), 0.12) 30%,
    rgba(var(--blue-rgb), 0.06) 45%,
    transparent 45%
  );
}

.site-footer .footer-glow-left {
  top: -300px;
  left: -350px;
}

.site-footer .footer-glow-right {
  bottom: -350px;
  right: -300px;
}

.footer-container {
  position: relative;
  z-index: 2;
}

.footer-logo {
  max-width: 37px;
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-on-dark-soft);
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer-social {
  display: flex;
  gap: 2px;
}

.footer-social a {
  color: #fff;
  margin-right: 14px;
  display: inline-flex;
  align-items: center;
}

.footer-social a:hover {
  color: var(--brand-blue-500);
}

.footer-social svg {
  display: block;
}

.footer-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--text-on-dark);
}

.footer-list a {
  text-decoration: none;
  color: var(--text-on-dark-soft);
}

.footer-list, .footer-links {
  padding-left: 0px!important;
}

.footer-list li {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-on-dark-soft);
  margin-bottom: 10px;
  list-style: none;
}

.footer-links li {
  list-style: none;
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-on-dark-soft);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--brand-blue-500);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 60px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--text-on-dark-soft);
}
/* footer end */

@media (max-width: 425px) {
  .content {
    padding-top: 30px;
  }
  .hero-head {
    font-size: 36px;
  }
  .get-quote-button{
    margin-bottom: 20px;
  }
  .logo-slider {
    padding: 18px 0;
  }
  .hero {
    min-height: auto;
    padding: 0 14px 0px 14px;
  }
  .team-img {
    top: 0;
    max-width: 100%;
    margin: 0 auto;
  }
  .stats-section {
    padding: 55px 0;
  }
  h2{
    font-size: 24px!important;
  }
  .stats-heading {
    margin-bottom: 15px;
  }
  .stat-card {
    padding: 0;
  }
  .feature-card-outer {
    margin-bottom: 10px;
  }
  .expertise-heading{
      margin-top: 0px;
  }
  .features-section {
    padding: 50px 0 22px 0;
  }
  .expertise-section {
    padding: 50px 0 22px 0;
  }
  .expertise-list li {
    margin-bottom: 8px;
  }
  .founder-section {
    padding: 50px 0 0px 0;
  }
  .faq-section{
    padding: 50px 0 22px 0;
  }
  .faq-accordion .accordion-button {
    font-size: 18px
  }
  .home-blog-section {
    padding: 50px 0 22px 0;
  }
  .home-blog-section .blog-card {
    margin-bottom: 20px;
  }
  .home-blog-section .blog-content {
    padding: 10px 10px 0;
  }
  .home-blog-section .blog-meta {
    margin-bottom: 5px;
    text-align: left;
  }
  .home-blog-section .blog-image {
    height: 154px;
  }
  .home-blog-section .blog-title {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: left;
  }
  .home-blog-section .blog-desc {
    font-size: 16px;
    text-align: left;
  }
  .site-footer {
    padding: 48px 0 12px;
  }
  .footer-bottom {
    margin-top: 34px;
  }
  .features-section h2 {
    margin-bottom: 18px;
  }
}

.footer-accordion-item {
  margin-bottom: 16px;
}

.footer-accordion-header {
  width: 100%;
  background: var(--brand-gradient-horizontal);
  border: none;
  border-radius: 14px;
  padding: 16px 20px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.footer-accordion-item.active .footer-accordion-body {
  max-height: 500px;
  padding: 14px 20px 0;
}

.accordion-icon {
  transition: transform 0.35s ease;
}

.footer-accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}


/* =========================
   TABLET RESPONSIVE (768–991)
   ========================= */
/* @media (min-width: 768px) and (max-width: 991px) {

  h1,
  .hero-head {
    font-size: 42px;
    line-height: 1.2;
  }

  h2,
  .features-section-head,
  .stats-heading,
  .expertise-heading,
  .founder-heading,
  .faq-heading {
    font-size: 32px;
    line-height: 1.25;
  }

  h3 {
    font-size: 26px;
  }

  .hero {
    padding: 0 40px 60px 40px;
    min-height: auto;
  }

  .hero-content {
    font-size: 17px;
  }

  .team-img {
    top: 60px;          
    max-width: 520px;
    margin: 0 auto;
  }

  .stats-section {
    padding: 70px 0;
  }

  .stat-circle {
    width: 120px;
    height: 120px;
  }

  .stat-number {
    font-size: 36px;
  }

  .features-section {
    padding: 90px 0 60px 0;
  }

  .features-section-content {
    font-size: 17px;
  }

  .features-section-cards {
    margin-top: 50px;
  }

  .feature-card-outer {
    margin-bottom: 50px;
  }

  .feature-icon {
    width: 80px;
    height: 80px;
  }

  .feature-icon img {
    width: 48px;
    height: 48px;
  }

  .feature-title {
    font-size: 19px;
    margin-top: 36px;
  }

  .feature-text {
    font-size: 15px;
  }

  .expertise-section {
    padding: 80px 0;
  }

  .expertise-section-text {
    font-size: 17px;
  }

  .expertise-image img {
    max-width: 460px;
  }

  .founder-section {
    padding: 80px 0;
  }

  .founder-section-text {
    font-size: 17px;
  }

  .founder-image img {
    max-width: 460px;
  }

  .faq-section {
    padding: 80px 0;
  }

  .faq-accordion .accordion-button {
    font-size: 18px;
  }

  .faq-accordion .accordion-body {
    font-size: 17px;
  }

  .home-blog-section {
    padding: 80px 0;
  }

  .home-blog-section .blog-title {
    font-size: 20px;
  }

  .home-blog-section .blog-desc {
    font-size: 17px;
  }

  .site-footer {
    padding: 70px 0 30px;
  }

  .footer-title {
    font-size: 18px;
  }

  .footer-desc,
  .footer-links a,
  .footer-list li {
    font-size: 15px;
  }
} */


/* =========================
   HIDE GLOW OVERFLOW (<=768)
   ========================= */
/* @media (max-width: 768px) { */

  /* Section wrappers */
  .hero,
  .features-section,
  .site-footer {
    overflow: hidden;
  }

  /* .glow,
  .features-section .glow,
  .site-footer .footer-glow {
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
  } */
  /* body {
    overflow-x: hidden;
  } */
/* } */

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .founder-heading {
    margin-top: 0;
  }
  .faq-heading{
      margin-top: 0;
  }
}

/* inner pages hero */
.inner-hero {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--brand-overlay-dark);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-on-dark);
}

.inner-hero h1 {
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-on-dark);
}

.inner-hero .breadcrumb {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  background: rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
}

.inner-hero .breadcrumb a {
  color: var(--text-on-dark);
  text-decoration: none;
}

.inner-hero .breadcrumb a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .inner-hero {
    min-height: 180px;
  }

  .inner-hero h1 {
    font-size: 30px;
  }
}

/* inner pages hero */

/* BLOG PAGE */
.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card-large {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.blog-card-content {
  position: absolute;
  inset: 0;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  background: var(--brand-overlay-blog);
}

.blog-card-title {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin: 14px 0 10px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin: 0;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-link:hover .blog-card-large {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.blog-card-link:hover img {
  transform: scale(1.06);
}
.blog-card-content .hero-badge{
width: max-content;
background: var(--brand-blue-700);
color: var(--text-on-dark);
 backdrop-filter: blur(6px);
}
.blog-card-content .badge-line{
background: var(--text-on-dark)!important;
}
.blog-card-content .badge-dot{
background: var(--text-on-dark)!important;
}
@media (max-width: 768px) {
  .blog-card-image img {
    height: 260px;
  }

  .blog-card-title {
    font-size: 22px;
  }

  .blog-card-content {
    padding: 22px;
  }
}

/* blog page */

/* blog sidebar */
.blog-sidebar {
  background: var(--brand-bg-soft-1);
  padding: 26px;
  border-radius: 26px;
}

.sidebar-search form {
  position: relative;
}

.sidebar-search input {
  width: 100%;
  height: 52px;
  padding: 0 54px 0 18px;
  border-radius: 14px;
  border: none;
  outline: none;
  font-size: 15px;
}

.sidebar-search button {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: none;
  background: var(--brand-blue-500);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.sidebar-box {
  margin-top: 26px;
}

.sidebar-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--text-dark);
}

.recent-post {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  text-decoration: none;
  color: inherit;
}

.recent-post img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
}

.recent-post-content .date {
  font-size: 13px;
  color: var(--brand-blue-500);
  display: block;
  margin-bottom: 4px;
}

.recent-post-content h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-post:hover h6 {
  color: var(--brand-blue-600);
}

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sidebar-tags a {
  background: var(--brand-bg-soft-2);
  color: var(--brand-blue-700);
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.sidebar-tags a:hover {
  background: var(--brand-blue-500);
  color: #fff;
}

@media (max-width: 991px) {
  .blog-sidebar {
    margin-top: 40px;
  }
}
/* blog sidebar */

/* blgo details start */

.blog-detail-image {
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 22px;
}

.blog-detail-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.blog-detail-date {
  margin-bottom: 16px;
}

.blog-detail-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 22px;
  color: var(--text-dark);
}

.blog-detail-content p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted-soft);
  margin-bottom: 18px;
}

.blog-detail-content h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 34px 0 14px;
  color: var(--text-dark);
}

.blog-detail-content ul {
  padding-left: 20px;
  margin-bottom: 22px;
}

.blog-detail-content ul li {
  font-size: 18px;
  color: var(--text-muted-soft);
  margin-bottom: 10px;
}

/* TAGS */
.blog-detail-tags {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.blog-detail-tags span {
  font-weight: 600;
  color: var(--text-dark);
}

.blog-detail-tags a {
  background: var(--brand-blue-soft);
  color: var(--brand-blue-700);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
}

.blog-detail-tags a:hover {
  background: var(--brand-blue-500);
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .blog-detail-title {
    font-size: 28px;
  }

  .blog-detail-image img {
    height: 260px;
  }
}
/* blog detail end */






/* ===== INNER PAGE BASE ===== */
.inner-page {
  background: var(--bg-page);
}

/* ===== ABOUT SECTIONS ===== */
.about-section {
  margin-bottom: 40px;
}

.about-section h2,
.about-section h3 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.about-section p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted-soft);
  margin-bottom: 12px;
}

/* ===== STATS / COUNTERS ===== */
.counter {
  font-size: 42px;
  font-weight: 700;
  color: var(--brand-blue-500);
  margin-bottom: 6px;
}

.counter + p {
  font-size: 16px;
  color: var(--text-muted);
}

/* ===== ABOUT LIST ===== */
.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 18px;
  color: var(--text-dark);
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--brand-blue-500);
  border-radius: 50%;
}

/* ===== PROCESS STEPS ===== */
.process-step {
  background: #fff;
  border: 1px solid var(--brand-blue-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-step strong {
  display: block;
  font-size: 18px;
  color: var(--brand-blue-700);
  margin-bottom: 6px;
}

.process-step p {
  margin: 0;
  font-size: 16px;
  color: var(--text-muted-soft);
}

.process-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px var(--brand-accent-shadow-soft);
}

/* ===== CTA ===== */
.about-cta {
  background: var(--brand-gradient-strong);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  color: var(--text-on-dark);
}

.about-cta h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-on-dark);
}

.about-cta p {
  font-size: 18px;
  color: var(--text-on-dark-soft);
  margin-bottom: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .counter {
    font-size: 32px;
  }

  .about-section p,
  .about-list li {
    font-size: 16px;
  }

  .about-cta {
    padding: 30px 20px;
  }
}







/* ===== CONTACT PAGE ===== */
.contact-info-box,
.contact-form-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  height: 100%;
}

.contact-info-box h3,
.contact-form-box h3 {
  font-weight: 600;
  margin-bottom: 14px;
}

.contact-info-box p {
  color: var(--text-muted-soft);
  margin-bottom: 24px;
}

.contact-info-item {
  margin-bottom: 16px;
}

.contact-info-item strong {
  display: block;
  font-size: 15px;
  color: var(--brand-blue-700);
  margin-bottom: 4px;
}

.contact-info-item span {
  font-size: 16px;
  color: var(--text-dark);
}

/* FORM */
.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  border: 1px solid var(--brand-blue-border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 15px;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
  outline: none;
  border-color: var(--brand-blue-500);
}

/* ===== POPUP ===== */
.contact-success-popup {
  position: fixed;
  inset: 0;
  background: var(--brand-overlay-dark);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.contact-success-popup.active {
  display: flex;
}

.popup-box {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-lg);
  max-width: 420px;
  text-align: center;
}

.popup-box h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.popup-box p {
  font-size: 16px;
  color: var(--text-muted-soft);
  margin-bottom: 20px;
}

.popup-box button {
  border: none;
  padding: 10px 20px;
  background: var(--brand-blue-500);
  color: #fff;
  border-radius: var(--radius-md);
}
/* Loader */
.popup-loader {
  width: 48px;
  height: 48px;
  border: 4px solid var(--brand-accent-shadow-soft);
  border-top-color: var(--brand-blue-500);
  border-radius: 50%;
  margin: 20px auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.popup-success {
  display: none;
}
@media (max-width: 576px) {
  .d-flex.gap-4 {
    flex-direction: column;
    align-items: flex-start;
    gap: 0 !important;
  }
.hero-badge{
    margin-bottom: 15px;
}
.expertise-section-text{
    text-align: left;
}
.founder-section-text{
    text-align: left;
}
.expertise-section-content{
    margin-bottom: 35px;
}
  .hero-badge.blog-detail-date {
    font-size: 14px;
    padding: 4px 12px;
    width: fit-content;
  }
  .faq-accordion .accordion-button {
    padding: 14px 12px;
    font-size: 17px;
  }
  .faq-accordion .accordion-button::after {
    width: 24px;
    height: 24px;
    background-size: 10px;
  }
  .site-logo-text {
    font-size: 22px;
  }
  .site-logo-icon {
    height: 40px;
  }
  .footer-logo-text {
    font-size: 18px;
  }
}

.site-logo-text {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--text-dark);
  line-height: 1;
}

.site-logo-icon {
  display: block;
}

.top-bar + .navbar .site-logo-text,
.navbar-dark .site-logo-text {
  color: var(--text-dark);
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text-on-dark);
  line-height: 1;
}



/*@media (min-width: 768px) {*/
/*  .founder-section .row {*/
/*    align-items: center;*/
/*  }*/
/*}*/