body {
  margin: 0;
  padding: 0;
}

/* hero section strat  */
.page-root-font {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

/* HERO */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 700px;
  color: #fff;
  background: #02111a;
}

.hero-slides {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease-in-out;
  will-change: opacity;
  background: transparent;
}

.hero-slide.hero-slide--active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

/* inner element which will animate transform */
.hero-slide-inner {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  transform: scale(1);
  will-change: transform;
}

/* keyframes for smooth video-like zoom */
@keyframes hero-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(8, 18, 26, 0.4) 0%,
      rgba(6, 12, 18, 0.62) 75%);
  z-index: 2;
  pointer-events: none;
  opacity: 0.2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1320px;
  padding: 48px 60px;
  height: 100%;
  display: flex;
  align-items: flex-start;
}

.hero-left {
  width: 100%;
  padding-top: 36px;
}

.hero-eyebrow {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  position: relative;
  font-size: 12px;
}

.hero-eyebrow::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  background: #f7c500;
  margin-top: 4px;
}

.hero-title {
  color: #fff;
  font-size: 35px;
  line-height: 1.2;
  font-weight: 800;
  margin: 18px 0 24px 0;
  letter-spacing: -1px;
}

.hero-description {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 16px;
  font-weight: 400;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f7c500;
  color: #111;
  padding: 7px 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.18s ease;
  font-size: 12px;
}

.hero-cta:hover {
  transform: translateY(-3px);
}

.hero-section {

  display: flex;
  width: 100%;
  align-items: end;
}

/* responsive */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 43px;
  }

  .hero-left {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .hero-section {
    min-height: 520px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-left {
    width: 100%;
    padding-top: 28px;
  }

  .hero-content {
    padding: 36px 32px;
  }
}

/* MOBILE: center text */
@media (max-width: 640px) {
  .hero-section {
    min-height: 640px;
  }

  .hero-content {
    padding: 32px 20px;
    align-items: center;
  }

  .hero-left {
    width: 100%;
    max-width: 100%;
    padding-top: 12px;
    text-align: center;
  }

  .hero-eyebrow {
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
  }

  .hero-eyebrow::after {
    width: 56px;
    height: 3px;
    margin: 6px auto 0;
  }

  .hero-title {
    font-size: 22px;
    line-height: 1.05;
    font-weight: 800;
    margin: 6px 0 18px;
    letter-spacing: -0.5px;
    text-align: center;
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
  }

  .hero-cta {
    padding: 12px 18px;
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* hero section end  */

/* card section strat  */
.cards-section {
  width: 100%;
  background: #fafafa;
  padding: 72px 40px;
  color: #111;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.cards-container {
  max-width: 1250px;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 48px;
  align-items: start;
}

.card-item {
  position: relative;
  background: #ffffff;
  padding: 46px 36px 36px 42px;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.06);
  border-radius: 2px;
  overflow: visible;
  height: 280px;
  box-sizing: border-box;

  opacity: 0;
  transform: translateX(-40px);
  transition: transform 700ms cubic-bezier(0.2, 0.9, 0.25, 1),
    opacity 700ms ease;
}

.card-item.cards-inview {
  opacity: 1;
  transform: translateX(0);
}

.card-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #f7c500;
}

.card-item::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: #f7c500;
}

.card-icon {
  position: absolute;
  top: -28px;
  left: 20px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f7c500;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  z-index: 3;
}

.card-icon svg {
  width: 34px;
  height: 34px;
  fill: #111;
}

.card-inner-space {
  padding-left: 6px;
}

.card-title {
  font-size: 28px;
  font-weight: 700;
  margin: 8px 0 18px 0;
  color: #222;
  line-height: 1.08;
}

.card-desc {
  color: #707070;
  font-size: 15px;
  line-height: 1.8;
  max-width: 420px;
}

.card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px rgba(17, 17, 17, 0.09);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

@media (max-width: 1000px) {
  .cards-section {
    padding: 58px 28px;
  }

  .cards-grid {
    gap: 28px;
  }

  .card-title {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .cards-section {
    padding: 36px 18px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .card-item {
    padding: 28px 20px 24px 28px;
    transform: translateY(30px);
    opacity: 0;
    transition: none;
  }

  .card-item::before {
    left: 0;
  }

  .card-item::after {
    left: 0;
  }

  .card-icon {
    top: -22px;
    left: 18px;
    width: 56px;
    height: 56px;
  }

  .card-title {
    font-size: 20px;
  }

  .card-desc {
    font-size: 14px;
  }
}

/* card section end  */

/* innovative solution section strat  */
.innovative-solution-root {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

/* ================
       Section layout
       ================ */
.innovative-solution-section {
  background: #ffffff;
  padding: 56px 28px;
  color: #222;
}

.innovative-solution-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  box-sizing: border-box;
}

/* left image wrapper */
.innovative-solution-image-wrap {
  position: relative;
  width: 100%;
  /* overflow: hidden; */
  min-height: 520px;
  display: flex;
  align-items: stretch;
}

.innovative-solution-image {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  box-shadow: 0 8px 30px rgba(17, 17, 17, 0.06);
}

/* yellow floating info box on top-left of image */
.innovative-solution-info {
  position: absolute;
    bottom: -5px;
    right: -6px;
    width: 229px;
  background: #f7c500;
  color: #111;
  padding: 15px;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
  transform: translateY(36px) scale(0.96);
  opacity: 0;
  border-radius: 2px;
  z-index: 6;
  transition: transform 700ms cubic-bezier(0.2, 0.9, 0.25, 1),
    opacity 650ms ease;
}

/* visible state (when scrolled into view) */
.innovative-solution-info.inview {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* list inside yellow box */
.innovative-solution-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.innovative-solution-list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
}

.innovative-solution-check {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.innovative-solution-check svg {
  width: 18px;
  height: 18px;
  fill: #111;
}

/* right content */
.innovative-solution-content {
  padding: 6px 6px;
}

.innovative-solution-eyebrow {
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
  display: inline-block;
  position: relative;
}

.innovative-solution-eyebrow::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #f7c500;
  margin-top: 8px;
}

.innovative-solution-title {
  font-size: 42px;
  line-height: 1.02;
  font-weight: 800;
  margin: 18px 0 12px 0;
  color: #111;
}

.innovative-solution-sub {
  color: #f7c500;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 18px;
  display: block;
  font-size: 18px;
}

.innovative-solution-paragraph {
  color: #6e6e6e;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 22px;
}

/* CTA area */
.innovative-solution-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}

.innovative-solution-readmore {
  background: #f7c500;
  color: #111;
  padding: 14px 28px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  letter-spacing: 1px;
  display: inline-block;
}

/* play button circle */
.innovative-solution-playwrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.15);
}

.innovative-solution-playwrap svg {
  width: 20px;
  height: 20px;
  fill: #f7c500;
  transform: translateX(3px);
}

/* pink pulse glow around play button */
.innovative-solution-playwrap::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
      rgba(255, 98, 172, 0.22) 0%,
      rgba(255, 98, 172, 0.06) 30%,
      transparent 50%);
  filter: blur(6px);
  opacity: 0.9;
  transition: transform 0.4s ease;
  z-index: -1;
  animation: innovative-solution-pulse 1800ms ease-in-out infinite;
}

@keyframes innovative-solution-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.18);
    opacity: 1;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.85;
  }
}

/* ================
       Modal (centered popup)
       ================ */
.innovative-solution-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  /* toggled via JS */
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.innovative-solution-modal-backdrop.active {
  display: flex;
}

.innovative-solution-modal {
  width: min(920px, 94vw);
  background: transparent;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.innovative-solution-modal-iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
}

/* circular close button at top-right of modal (inside modal area) */
.innovative-solution-modal-close {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 1100;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.innovative-solution-modal-close svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* ================
       Responsive
       ================ */
@media (max-width: 980px) {
  .innovative-solution-container {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .innovative-solution-image-wrap {
    min-height: 420px;
    order: 0;
  }

  .innovative-solution-content {
    order: 1;
    padding-top: 8px;
  }
}

@media (max-width: 640px) {
  .innovative-solution-section {
    padding: 36px 18px;
  }

  .innovative-solution-image-wrap {
    min-height: 320px;
  }

  .innovative-solution-info {
    top: -52px;
    width: calc(100% - 36px);
    max-width: 420px;
  }

  .innovative-solution-title {
    font-size: 28px;
    text-align: center;
  }

  .innovative-solution-eyebrow {
    display: block;
    text-align: center;
    margin: 0 auto 8px;
  }

  .innovative-solution-eyebrow::after {
    margin: 8px auto 0;
  }

  .innovative-solution-sub {
    text-align: center;
    display: block;
    margin-bottom: 18px;
  }

  .innovative-solution-paragraph {
    text-align: center;
  }

  .innovative-solution-cta-row {
    justify-content: center;
  }

  .innovative-solution-playwrap {
    width: 58px;
    height: 58px;
  }
}

/* innnovative solution section end  */

/* our client section strat  */
.our-client-section {
  padding: 48px 24px;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}

.our-client-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 100%;
  gap: 24px;
  align-items: center;
}

.our-client-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.our-client-border {
  width: 80px;
  height: 4px;
  background: #f7c500;
}

.our-client-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  color: #111;
}

.our-client-carousel-wrap {
  width: 100%;
  overflow: hidden;
}

.our-client-carousel {
  display: flex;
  gap: 28px;
  transition: transform 0.5s ease;
}

.our-client-item {
  flex: 0 0 auto;
  width: auto !important;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-client-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Desktop 4 */
@media (min-width: 900px) {
  .our-client-item {
    width: calc((100% - 3 * 28px) / 8);
  }
}

/* Tablet 3 */
@media (min-width: 640px) and (max-width: 899px) {
  .our-client-item {
    width: calc((100% - 2 * 28px) / 3);
  }
}

/* Mobile 1 */
@media (max-width: 639px) {
  .our-client-container {
    grid-template-columns: 1fr;
  }

  .our-client-title {
    font-size: 24px;
  }

  .our-client-item {
    width: 100%;
  }
}

/* our client section end  */

/* why choose us section start  */
.why-choose-us-section {
  background-image: url("/assets/images/lining-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 64px 24px;
  box-sizing: border-box;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    sans-serif;
  color: #111;
}

.why-choose-us-container {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 540px;
  gap: 40px;
  align-items: start;
}

/* LEFT - cards grid */
.why-choose-us-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.why-choose-us-card {
  position: relative;
  background: #fff;
  padding: 28px 22px 26px 28px;
  min-height: 160px;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.06);
  border-radius: 2px;
  overflow: visible;
  box-sizing: border-box;

  /* initial (hidden) state for reveal animation */
  opacity: 0;
  transform: translateY(28px);
  transition: transform 700ms cubic-bezier(0.2, 0.9, 0.25, 1),
    opacity 700ms ease;
}

.why-choose-us-card.why-inview {
  opacity: 1;
  transform: translateY(0);
}

/* top thin border and left thin border */
.why-choose-us-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #f7c500;
  z-index: 1;
}

.why-choose-us-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: #f7c500;
  z-index: 1;
}

/* numbered circle overlapping top */
.why-choose-us-number {
  position: absolute;
  top: -24px;
  left: 18px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #f7c500;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #ffffff;
  z-index: 3;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  font-size: 28px;
}

.why-choose-us-card h3 {
  margin: 28px 0 12px 0;
  font-size: 22px;
  font-weight: 800;
  color: #111;
  line-height: 1.05;
}

.why-choose-us-card p {
  margin: 0;
  color: #6e6e6e;
  line-height: 1.7;
  font-size: 14px;
}

/* ---------- EXACT FIGMA OFFSETS (ZIG-ZAG) ---------- */
.why-choose-us-card[data-idx="0"] {
  margin-top: 0px;
}

.why-choose-us-card[data-idx="1"] {
  margin-top: 60px;
}

.why-choose-us-card[data-idx="2"] {
  margin-top: 30px;
}

.why-choose-us-card[data-idx="3"] {
  margin-top: 120px;
}

/* RIGHT content */
.why-choose-us-right {
  padding-top: 6px;
}

.why-choose-us-eyebrow {
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
}

.why-choose-us-eyebrow::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  background: #f7c500;
  margin-top: 8px;
}

.why-choose-us-title {
  font-weight: 800;
  font-size: 44px;
  line-height: 1.02;
  margin: 16px 0 22px 0;
  color: #111;
}

.why-choose-us-desc {
  color: #6e6e6e;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 15px;
}

.why-choose-us-stat-row {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.why-choose-us-counter-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.why-choose-us-counter {
  font-size: 56px;
  font-weight: 800;
  color: #f7c500;
  line-height: 1;
}

.why-choose-us-counter-label {
  font-size: 14px;
  color: #111;
  font-weight: 700;
}

.why-choose-us-person {
  margin-left: auto;
  display: flex;
  gap: 18px;
  align-items: center;
}

.why-choose-us-person-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.12);
  transform: translateY(6px);
}

.why-choose-us-person-badge {
  background: #f7c500;
  padding: 16px 22px;
  border-radius: 2px;
  min-width: 180px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.why-choose-us-person-badge h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #111;
}

.why-choose-us-person-badge p {
  margin: 4px 0 0;
  color: #333;
  font-weight: 600;
  font-size: 13px;
}

.why-choose-us-dot {
  width: 48px;
  height: 48px;
  background: #111;
  border-radius: 50%;
  margin-left: 8px;
}

/* Responsive adjustments */
@media (max-width: 1000px) {
  .why-choose-us-container {
    grid-template-columns: 1fr 420px;
  }

  .why-choose-us-title {
    font-size: 36px;
  }

  .why-choose-us-counter {
    font-size: 48px;
  }
}

@media (max-width: 760px) {
  .why-choose-us-container {
    grid-template-columns: 1fr;
  }

  .why-choose-us-section {
    padding: 0px 10px;
  }

  .why-choose-us-cards {
    grid-template-columns: 1fr;
  }

  .why-choose-us-person {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    gap: 12px;
  }

  .why-choose-us-person-img {
    width: 300px;
    height: 320px;
  }

  .why-choose-us-person-badge {
    min-width: 160px;
    padding: 12px 16px;
  }

  .why-choose-us-counter {
    font-size: 42px;
  }

  .why-choose-us-title {
    font-size: 28px;
    text-align: left;
  }

  /* Reset the zig-zag offsets on small screens for stacked look */
  .why-choose-us-card[data-idx="0"],
  .why-choose-us-card[data-idx="1"],
  .why-choose-us-card[data-idx="2"],
  .why-choose-us-card[data-idx="3"] {
    margin-top: 0 !important;
  }
}

@media (max-width: 420px) {
  .why-choose-us-card {
    padding: 20px 16px 18px 18px;
  }

  .why-choose-us-number {
    left: 14px;
    width: 48px;
    height: 48px;
    top: -22px;
    font-size: 16px;
  }

  .why-choose-us-title {
    font-size: 22px;
  }

  .why-choose-us-counter {
    font-size: 36px;
  }
}

/* why choose us section end  */

/* our services section start  */
.our-services-section {
  padding: 70px 24px 80px;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    sans-serif;
  background: #ffffff;
  color: #111111;
  box-sizing: border-box;
  text-align: center;
}

.our-services-section-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Header */
.our-services-section-label {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  position: relative;
}

.our-services-section-label::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #f7c500;
  margin: 10px auto 0;
}

.our-services-section-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  margin: 16px 0 10px;
}

.our-services-section-subtitle {
  font-size: 14px;
  color: #777777;
  max-width: 560px;
  margin: 0 auto 42px;
  line-height: 1.7;
}

/* Cards grid */
.our-services-section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
  text-align: left;
}

.our-services-section-card {
  position: relative;
  background: #ffffff;
  padding: 32px 26px 26px 32px;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.06);
  border-radius: 2px;
  box-sizing: border-box;
  overflow: visible;
  min-height: 210px;

  /* animation initial state */
  opacity: 0;
  transform: translateY(30px);
  transition: transform 700ms cubic-bezier(0.2, 0.9, 0.25, 1),
    opacity 700ms ease;
}

/* TOP border */
.our-services-section-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #f7c500;
}

/* LEFT border (ye naya part hai) */
.our-services-section-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: #f7c500;
}

/* yellow circle icon */
.our-services-section-card-icon {
  position: absolute;
  top: -26px;
  left: 36px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f7c500;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  font-size: 26px;
  color: #ffffff;
}

/* visible state */
.our-services-section-card.our-services-section-inview {
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 20px;
}

.our-services-section-card-title {
  font-size: 20px;
  font-weight: 800;
  margin: 16px 0 12px;
  color: #111111;
}

.our-services-section-card-text {
  font-size: 14px;
  color: #777777;
  line-height: 1.8;
  margin-bottom: 18px;
}

.our-services-section-card-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #f7c500;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.our-services-section-card-link-arrow {
  font-size: 16px;
  line-height: 1;
}

.our-services-section-card:focus-within {
  outline: 3px solid rgba(247, 197, 0, 0.18);
  outline-offset: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
  .our-services-section-title {
    font-size: 32px;
  }

  .our-services-section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .our-services-section {
    padding: 54px 18px 60px;
  }

  .our-services-section-title {
    font-size: 26px;
  }

  .our-services-section-subtitle {
    margin-bottom: 32px;
  }

  .our-services-section-grid {
    grid-template-columns: 1fr;
  }

  .our-services-section-card {
    padding: 28px 22px 22px 26px;
    min-height: auto;
  }

  .our-services-section-card-icon {
    left: 26px;
    width: 54px;
    height: 54px;
  }
}

/* our services section end  */

/* our stories section strat  */
.our-success-stories-section {
  position: relative;
  padding: 120px 32px;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  overflow: hidden;
}

/* FIXED BACKGROUND IMAGE */
.our-success-stories-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/background-img.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* IMAGE FIXED */
  z-index: -2;
}

/* DARK OVERLAY */
.our-success-stories-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: -1;
}

.our-success-stories-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: stretch;
  height: 60vh;
}

/* LEFT TEXT AREA */
.our-success-stories-left {
  padding-right: 20px;
}

.our-success-stories-kicker {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
}

.our-success-stories-kicker-line {
  width: 110px;
  height: 3px;
  background: #f7c500;
  margin: 20px 0 30px;
}

.our-success-stories-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 18px;
}

.our-success-stories-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
  max-width: 440px;
  margin-bottom: 26px;
}

.our-success-stories-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #f7c500;
  text-decoration: none;
  text-transform: uppercase;
}

.our-success-stories-link-arrow {
  font-size: 20px;
}

/* RIGHT SIDE CARDS */
.our-success-stories-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  height: 200px;
}

.our-success-stories-card {
  position: relative;
  background: #ffffff;
  color: #111111;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  /* overflow: hidden; */
  padding-bottom: 22px;

  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.9, 0.25, 1);
}

/* top + left border */
.our-success-stories-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #f7c500;
  z-index: 1;
}

.our-success-stories-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: #f7c500;
  z-index: 1;
}

.our-success-stories-card-img-wrap {
  height: 220px;
  overflow: hidden;
  width: 280px;
}

.our-success-stories-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.6s ease;
}

.our-success-stories-card:hover .our-success-stories-card-img {
  transform: scale(1.07);
}

.our-success-stories-card-body {
  padding: 20px 22px 0 26px;
}

.our-success-stories-card-date {
  font-size: 14px;
  font-weight: 700;
  color: #f7c500;
  margin-bottom: 12px;
}

.our-success-stories-card-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

/* SCROLL-IN VISIBLE STATE */
.our-success-stories-card.our-success-stories-inview {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .our-success-stories-container {
    grid-template-columns: 1fr;
    height: auto;
  }

  .our-success-stories-right {
    grid-template-columns: repeat(2, 1fr);
  }

  .our-success-stories-section {
    height: 1800px;
  }
}

@media (max-width: 768px) {
  .our-success-stories-title {
    font-size: 40px;
  }

  .our-success-stories-section {
    height: 1800px;
  }
}

@media (max-width: 600px) {
  .our-success-stories-right {
    grid-template-columns: 1fr;
  }

  .our-success-stories-title {
    font-size: 32px;
  }

  .our-success-stories-section {
    height: 1800px;
  }
}

/* our stories section end  */

/* counter section start  */
.our-counter-build-section {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 16px;
  /* is section ko upar wale section ke upar 50% overlap jaisa feel dena */
  transform: translateY(-50%);
  z-index: 5;
}

.our-counter-build-inner {
  position: relative;
  background-color: #ffffff;
  /* yaha apna background image lagao */
  background-image: url("https://images.pexels.com/photos/373912/pexels-photo-373912.jpeg?auto=compress&cs=tinysrgb&w=1200");
  background-size: cover;
  background-position: center;
  border-top: 3px solid #ffc107;
  /* top border */
  border-left: 3px solid #ffc107;
  /* left border */
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  border-radius: 0;
  overflow: hidden;
}

/* white overlay jaisa pattern feel */
.our-counter-build-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(1px);
  z-index: 0;
}

.our-counter-build-content {
  position: relative;
  z-index: 1;
  padding: 40px 40px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* ===============  COUNTER ITEMS  =============== */
.our-counter-build-item {
  flex: 1 1 180px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.our-counter-build-number-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
  text-align: center;
  justify-content: center;
}

.our-counter-build-number {
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: #ffc107;
  /* yellow number */
}

.our-counter-build-plus {
  font-size: 32px;
  font-weight: 700;
  color: #ffc107;
}

.our-counter-build-label {
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  text-align: center;
}

/* ===============  TEXT BLOCK (RIGHT SIDE)  =============== */
.our-counter-build-text-block {
  flex: 1.3 1 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.our-counter-build-heading {
  font-size: 26px;
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
  margin-bottom: 10px;
}

.our-counter-build-heading span {
  font-weight: 700;
}

/* heading ke right side wali yellow line */
.our-counter-build-right-line {
  position: relative;
  margin-top: 10px;
  width: 100%;
  max-width: 180px;
  height: 3px;
  background-color: #ffc107;
  top: 40px;
}

/* ===============  RESPONSIVE  =============== */
@media (max-width: 992px) {
  .our-counter-build-content {
    padding: 32px 24px;
    gap: 24px;
  }

  .our-counter-build-heading {
    font-size: 26px;
  }

  .our-counter-build-number {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .our-counter-build-section {
    transform: translateY(-25%);
    /* mobile par thoda kam overlap */
  }

  .our-counter-build-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .our-counter-build-item {
    flex: 1 1 100%;
  }

  .our-counter-build-heading {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .our-counter-build-content {
    padding: 24px 18px;
  }

  .our-counter-build-number {
    font-size: 34px;
  }

  .our-counter-build-label {
    font-size: 14px;
  }
}

/* counter section end  */

/* our expert team section strat  */
/* .our-expert-team-section {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 16px;
}

.our-expert-team-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.our-expert-team-header-left {
  max-width: 520px;
}

.our-expert-team-mini-label {
  font-size: 22px;
  font-weight: 500;
  color: #111827;
  line-height: 1.2;
}

.our-expert-team-mini-line {
  width: 70px;
  height: 3px;
  background-color: #ffc107;
  margin-top: 10px;
  margin-bottom: 24px;
}

.our-expert-team-main-title {
  font-size: 44px;
  font-weight: 700;
  color: #111827;
  line-height: 1.15;
}

.our-expert-team-header-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.our-expert-team-long-line {
  width: 100%;
  max-width: 330px;
  height: 3px;
  background-color: #ffc107;
  align-self: flex-end;
  margin-top: 36px;
}

.our-expert-team-view-btn {
  border: none;
  outline: none;
  padding: 16px 40px;
  background-color: #ffc107;
  color: #111827;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 25px rgba(234, 179, 8, 0.4);
}

.our-expert-team-view-btn:hover {
  background-color: #facc15;
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(234, 179, 8, 0.5);
}

.our-expert-team-card-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.our-expert-team-card {
  background-color: #f9fafb;
  border-top: 3px solid #ffc107;
  border-left: 3px solid #ffc107;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
  text-align: center;
  padding-bottom: 24px;
  overflow: hidden;

  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.our-expert-team-card-visible {
  opacity: 1;
  transform: translateY(0);
}

.our-expert-team-card-img-wrap {
  width: 100%;
  background-color: #e5e7eb;
}

.our-expert-team-card-img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.our-expert-team-card-inner {
  padding: 20px 18px 0;
}

.our-expert-team-card-name {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.our-expert-team-card-role {
  font-size: 14px;
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: 18px;
}

.our-expert-team-card-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.our-expert-team-card-social a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background-color: #ffc107;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.our-expert-team-card-social a:hover {
  background-color: #111827;
  color: #ffc107;
  transform: translateY(-2px);
}

@media (max-width: 1080px) {
  .our-expert-team-main-title {
    font-size: 36px;
  }

  .our-expert-team-card-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .our-expert-team-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .our-expert-team-header-right {
    align-items: flex-start;
  }

  .our-expert-team-long-line {
    align-self: stretch;
    max-width: none;
    margin-top: 18px;
  }

  .our-expert-team-main-title {
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  .our-expert-team-card-row {
    grid-template-columns: 1fr;
  }

  .our-expert-team-card-img {
    height: 230px;
  }

  .our-expert-team-main-title {
    font-size: 26px;
  }
} */

/* our expert team section end  */

/* mission and vision section strat  */
.mission-vision-section-wrapper {
  width: 100%;
  max-width: 1430px;
  margin: 0 auto;
}

.mission-vision-section-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  min-height: 460px;
}

.mission-vision-section-left {
  position: relative;
  overflow: hidden;
}

.mission-vision-section-right {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* ================= LEFT IMAGE SLIDER ================= */
.mission-vision-section-slider {
  position: relative;
  width: auto;
  height: auto;
  min-height: 100%;
  overflow: hidden;
}

.mission-vision-section-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.mission-vision-section-slide img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  display: block;
}

.mission-vision-section-slide.mission-vision-section-slide-active {
  opacity: 1;
  transform: scale(1);
}

/* subtle gradient overlay */
.mission-vision-section-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.18), transparent 55%);
  pointer-events: none;
}

/* ================= RIGHT: VISION + MISSION ================= */
.mission-vision-section-panel {
  padding: 16px 80px 56px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mission-vision-section-panel-vision {
  background-color: #111111;
  color: #ffffff;
}

.mission-vision-section-panel-mission {
  background-color: #ffc107;
  color: #111111;
}

.mission-vision-section-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.mission-vision-section-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.mission-vision-section-panel-vision .mission-vision-section-icon {
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
}

.mission-vision-section-panel-mission .mission-vision-section-icon {
  background-color: transparent;
  color: #111111;
  border: 2px solid #111111;
}

.mission-vision-section-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.mission-vision-section-text {
  font-size: 14px;
  line-height: 1.8;
  max-width: 620px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
  .mission-vision-section-panel {
    padding: 40px 40px 40px 40px;
  }

  .mission-vision-section-heading {
    font-size: 24px;
  }
}

@media (max-width: 900px) {
  .mission-vision-section-layout {
    grid-template-columns: 1fr;
  }

  .mission-vision-section-slider {
    min-height: 300px;
  }
}

@media (max-width: 600px) {
  .mission-vision-section-panel {
    padding: 30px 20px;
  }

  .mission-vision-section-heading {
    font-size: 20px;
  }

  .mission-vision-section-text {
    font-size: 13px;
  }
}

/* mission and vision section end  */

/* FAQ section strat  */
.Frequently-ask-question-wrapper {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 16px;
}

.Frequently-ask-question-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: flex-start;
}

/* ========== LEFT IMAGE ========== */
.Frequently-ask-question-image-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.Frequently-ask-question-image {
  display: block;
  max-width: 100%;
  height: 520px;
  /* fixed height */
  object-fit: contain;
}

@media (max-width: 992px) {
  .Frequently-ask-question-image {
    height: 340px;
  }
}

@media (max-width: 640px) {
  .Frequently-ask-question-image {
    height: 260px;
  }
}

/* ========== RIGHT FAQ AREA ========== */
.Frequently-ask-question-right {
  background-color: transparent;
}

.Frequently-ask-question-top-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.Frequently-ask-question-top-line {
  width: 46px;
  height: 3px;
  background-color: #15803d;
}

.Frequently-ask-question-top-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #15803d;
}

.Frequently-ask-question-heading {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 26px;
}

@media (max-width: 768px) {
  .Frequently-ask-question-heading {
    font-size: 30px;
  }
}

/* ========== ACCORDION ========== */
.Frequently-ask-question-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.Frequently-ask-question-item {
  background-color: #ffffff;
  border-radius: 0;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.Frequently-ask-question-item.active {
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
}

/* question row */
.Frequently-ask-question-question-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
}

.Frequently-ask-question-question-text {
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  margin-right: 16px;
}

.Frequently-ask-question-toggle-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.Frequently-ask-question-item.active .Frequently-ask-question-toggle-icon {
  background-color: #111827;
  color: #facc15;
  transform: rotate(180deg);
}

/* answer */
.Frequently-ask-question-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.Frequently-ask-question-answer p {
  font-size: 14px;
  color: #4b5563;
  padding-bottom: 18px;
}

.Frequently-ask-question-item.active .Frequently-ask-question-answer {
  max-height: 200px;
  /* enough height, adjust if your text is longer */
}

@media (max-width: 900px) {
  .Frequently-ask-question-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .Frequently-ask-question-wrapper {
    margin: 40px auto;
  }
}

/* FAQ section end  */

/* fooetr section start  */
a {
  text-decoration: none;
}

/* ============== FOOTER MAIN ============== */
.footer-section {
  background-color: #111111;
  color: #ffffff;
  padding: 70px 0 24px;
}

.footer-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.footer-section-grid {
  display: grid;
  grid-template-columns: 1.7fr 1.1fr 1.1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 46px;
}

/* ============== LEFT BRAND COLUMN ============== */
.footer-section-brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-section-logo-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #ffc107;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 30px;
  color: #111111;
}

.footer-section-logo-text-main {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.footer-section-logo-text-sub {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e5e5e5;
}

.footer-section-brand-text {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.7;
  max-width: 360px;
}

/* ============== COLUMN TITLES ============== */
.footer-section-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-section-title-line {
  width: 90px;
  height: 3px;
  background-color: #ffc107;
  margin-bottom: 18px;
}

/* ============== LINK LISTS ============== */
.footer-section-list {
  list-style: none;
  font-size: 14px;
  color: #e5e5e5;
}

.footer-section-list li+li {
  margin-top: 10px;
}

.footer-section-list a {
  color: #e5e5e5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-section-list a:hover {
  color: #ffc107;
  transform: translateX(3px);
}

.footer-section-arrow {
  font-size: 11px;
  color: #ffc107;
}

/* ============== BOTTOM BAR ============== */
.footer-section-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 16px;
  font-size: 13px;
  color: #bbbbbb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-section-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-section-bottom-links a {
  color: #bbbbbb;
  transition: color 0.2s ease;
}

.footer-section-bottom-links a:hover {
  color: #ffc107;
}

.footer-section-bottom-copy span.footer-section-brand-highlight {
  color: #ffc107;
  font-weight: 500;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .footer-section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }
}

@media (max-width: 720px) {
  .footer-section {
    padding: 50px 0 20px;
  }

  .footer-section-grid {
    grid-template-columns: 1fr;
  }

  .footer-section-title {
    font-size: 22px;
  }

  .footer-section-brand-logo {
    margin-bottom: 14px;
  }
}

/* footer section end  */


img {
  -webkit-user-drag: none !important;
  user-drag: none !important;
  pointer-events: none !important;
}


.our-client-left {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}


#awardShowcase.award-hyperzone {
  background: #000;
  padding: 140px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.award-hyperzone__container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

#awardShowcase .easyzoom--overlay {
  border: 4px solid #ffd400;
  border-radius: 14px;
  transition: transform .3s ease;
  padding: 40px;
  background-color: #fff !important;
}

#awardShowcase .easyzoom--overlay img {
  background-color: #fff !important;

}

.award-hyperzone__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd400;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-shadow: 0px 0px 20px #ffd400;
  text-align: center;
}

.award-hyperzone__text {
  font-size: 1.2rem;
  color: #eee;
  line-height: 1.6;
  text-transform: capitalize;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .award-hyperzone__container {
    display: grid;
    align-items: center;
    gap: 60px;
    max-width: 100%;
    width: 100%;
    padding: 0 !important;
    grid-template-columns: 100%;
}

#awardShowcase .easyzoom--overlay {
    border: 4px solid #ffd400;
    border-radius: 14px;
    transition: transform .3s ease;
    padding: 40px;
    background-color: #fff !important;
    transform: scale(0.8);
}
}

.main-highlight-heading {
    text-align: center;
    font-size: 46px;
    padding-bottom: 50px;
    font-weight: 600;
    display: none;
}

.main-highlight-heading span {
    color: #ffd400;
    text-shadow: 0px 0px 3px #000;

}

.yellow-box-titlle{
    background-color: #ffd400;
    padding: 30px;

}

.yellow-box-titlle h2{
    text-align: center;
    font-size: 46px;
    font-weight: 900;
    text-transform: uppercase;
}

/* Mobile-first adjustments */
@media (max-width: 576px) {
    .yellow-box-titlle {
        padding: 15px;
    }

    .yellow-box-titlle h2 {
        font-size: 22px;
        font-weight: 700;
        line-height: 1.2;
        text-align: center;
    }
}
/* ======================================
   Sanjivan Content Section – Premium UI
   ====================================== */

.extra-p {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 10px;
    font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #2b2b2b;
    background-color: #ffffff;
}

/* Paragraph Styling */
.extra-p p {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 10px;
    letter-spacing: 0.2px;
    color: #333333;
}

/* First paragraph = positioning statement */
.extra-p p:first-child {
    font-size: 1.15rem;
    font-weight: 500;
    color: #111111;
}

/* Visual hierarchy via subtle divider */
.extra-p p:not(:last-child) {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Emphasis for key terms if wrapped later */
.extra-p strong {
    font-weight: 600;
    color: #000000;
}

/* Optional highlight utility */
.extra-p .highlight {
    color: #0a3cff;
    font-weight: 600;
}

/* Corporate polish on hover (if interactive later) */
.extra-p p:hover {
    transform: translateX(2px);
    transition: transform 0.2s ease;
}

/* Responsive Optimization */
@media (max-width: 768px) {
    .extra-p {
        padding: 20px 8px;
    }

    .extra-p p {
        font-size: 1rem;
        line-height: 1.75;
    }

    .extra-p p:first-child {
        font-size: 1.05rem;
    }
}

.img-custom-watermark{
position: relative;
}

.img-custom-watermark::after {
  content: "WATERMARK";
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: rgba(0, 0, 0, 0.08);
  pointer-events: none;
  z-index: 9999;
}

.seo-content{
  display: none !important;
}