/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== FONTS ===== */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/MONTSERRAT-MEDIUM (1).TTF');
}
@font-face {
  font-family: 'MontserratSemi';
  src: url('../fonts/MONTSERRAT-SEMIBOLD.TTF');
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Regular.ttf');
}

body {
  font-family: 'Montserrat';
  overflow-x: hidden;
}

/* ===============================================================
   PRELOADER
=============================================================== */
#preloader {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 9999;
}

.screen-orange,
.screen-white {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screen-orange {
  background:#e28f26;
  z-index: 2;
  transition: opacity 0.8s ease;
}

.screen-white {
  background: #fff;
  z-index: 1;
}

/* ICON animation */
.icon {
  width: 230px;
  opacity: 0;
  transform: translateY(-60px);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,1));
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,1));
  animation: revealLogo 1.4s ease-out forwards;
}

@keyframes revealLogo {
  0% {
    opacity: 0;
    transform: translateY(-60px);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,1));
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,1));
  }
  60% {
    opacity: 1;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,1));
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,1));
  }
}

/* FULL LOGO */
.full-logo {
  width: 450px;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s ease;
}

.full-logo.show {
  opacity: 1;
  transform: scale(1);
}

/* ===============================================================
   HEADER
=============================================================== */
.main-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
}

.container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #929191;
}

.logo img {
  height: 50px;
}

/* NAV */
.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.nav ul li {
  position: relative;
  padding: 0 11px;
}

/* Pipe separator */
.nav ul li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -4px;
  color: #bbb;
  font-size: 11px;
  top: 50%;
  transform: translateY(-50%);
}

.nav ul li a {
  text-decoration: none;
  font-size: 12px;
  color: #333;
  letter-spacing: 0.8px;
  font-family: 'MontserratSemi';
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav ul li a:hover {
  color: #e28f26;
}

/* DROPDOWN */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  background: #fff;
  min-width: 200px;
  border-top: 3px solid #e28f26;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.3s ease;
  display: block;
}

.dropdown li {
  display: block;
  width: 100%;
  padding: 0;
}

.dropdown li::after {
  display: none !important;
}

.dropdown li a {
  display: block;
  padding: 11px 18px;
  font-size: 12px;
  color: #333;
  border-bottom: 1px solid #f1f1f1;
  text-transform: none;
  letter-spacing: 0;
  white-space: normal;
}

.dropdown li:last-child a {
  border-bottom: none;
}

.dropdown li a:hover {
  background: #fdf6ec;
  color: #d88927;
  padding-left: 24px;
}

/* Show on hover (desktop) */
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #333;
  line-height: 1;
  padding: 4px 8px;
  user-select: none;
}

/* ===============================================================
   SLIDER
=============================================================== */
.slider-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

.slide {
  min-width: 100%;
}

/* FIX: Dono slides ki height same — min-height set kiya */
.slide-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 60px;
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 600px;
}

/* ---- SLIDE 1 ---- */
/* FIX: flex-direction column taaki title aur image stack ho */
.slide-1-left {
  flex: 0 0 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.slide-1-left img {
  width: 100%;
  height: 350px;
  object-fit: contain;
}

.slide-1-right {
  flex: 1;
  background: #e28f26;
  border-radius: 14px;
  padding: 44px 48px;
  color: #fff;
}

/* FIX: display inline-block taaki border sirf text ki width tak rahe, centered */
.slide-title {
  font-family: 'MontserratSemi';
   font-size: 22px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #646262;
  margin-bottom: 14px;
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 2px solid#e28f26;
}

.slide-1-right p {
  font-family: 'Lato', Georgia, serif;
  font-size: 16px;
  line-height: 1.75;
  color: #fff;
  margin-bottom: 14px;
}

.slide-1-right p:last-child {
  margin-bottom: 0;
}

/* ---- SLIDE 2 ---- */
.slide-2 .slide-inner {
  align-items: stretch;
}

.slide-2-card {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  flex: 0 0 350px;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}

.slide-2-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}



/* ---- SLIDE ANIMATIONS ---- */
.anim-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}

.slide.in-view .anim-left,
.slide.in-view .anim-right {
  opacity: 1;
  transform: translateX(0);
}

/* ---- ARROWS ---- */
/* FIX: transform -50% (pehle -60% tha), size thoda kam kiya */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background:transparent;
  color: rgba(216, 137, 39, 0.85);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s;
}

.slider-arrow.disabled {
  opacity: 0.2;
  cursor: not-allowed;
  pointer-events: none; /* Isse click kaam nahi karega */
}



.arrow-prev { left: 35px; }
.arrow-next { right: 35px; }

/* ---- DOTS ---- */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0px 0 28px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #4f4e4e;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.dot.active {
  background: #d88927;
  transform: scale(1.3);
}

/* ===============================================================
   RESPONSIVE
=============================================================== */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 998;
  }

  .nav.active {
    max-height: 700px;
  }

  .nav ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 6px 0;
  }

  .nav ul li {
    width: 100%;
    padding: 0;
  }

  .nav ul li::after {
    display: none !important;
  }

  .nav ul li a {
    display: block;
    padding: 13px 22px;
    font-size: 13px;
    border-bottom: 1px solid #f1f1f1;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid #e28f26;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: #fdf6ec;
    margin-left: 16px;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  .dropdown li a {
    padding: 10px 16px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .slide-inner {
    flex-direction: column;
    padding: 30px 20px;
    min-height: unset;
    gap: 24px;
  }

  .slide-1-left {
    flex: unset;
    width: 100%;
  }

  .slide-1-left img {
    max-width: 220px;
    margin: 0 auto;
    display: block;
  }

  .slide-1-right {
    padding: 28px 24px;
  }

  .slide-1-right p {
    font-size: 15px;
  }

  .slide-2 .slide-inner {
    flex-direction: column;
  }

  .slide-2-card {
    width: 100%;
    min-height: 280px;
  }

  .slider-arrow {
    display: none;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 42px;
  }

  .rr-text {
    font-size: 15px;
  }
}


/* ===============================================================
   ABOUT US SECTION
=============================================================== */
.about-section {
  background: #fff;
  padding: 20px 0 80px;
  position: relative;
}

.about-container {
  max-width: 1300px;
  margin: 0 auto;
  padding:  60px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  position: relative; /* Container needs to be relative for arrows */
}

/* ---- LEFT COLUMN ---- */
.about-left {
  flex: 0 0 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: 90px;
}

.about-heading {
  margin-bottom: 30px;
  width: 100%;
}

.about-heading h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #646262;
  margin-bottom: 8px;
  display: inline-block;
  border-bottom: 2px solid #e28f26;
  text-transform: uppercase;
}

.about-image-wrap {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}

.about-mascot {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 14px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.about-mascot.switching {
  opacity: 0;
  transform: translateY(10px);
}

/* ---- RIGHT COLUMN ---- */
.about-right {
  flex: 1;
  min-width: 0;
}

.about-tabs-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 15px;
  /* border-bottom: 1px solid #e0e0e0; */
  padding-bottom: 14px;
}

.about-tab-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #646262;
  padding: 4px 0;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.about-tab-btn:hover {
  color: #d88927;
}

.about-tab-btn.active {
  color: #e28f26;
}

.about-tab-sep {
  color: #ccc;
  font-size: 11px;
  margin: 0 10px;
}

.about-tab-panel {
  display: none;
  animation: aboutFadeIn 0.4s ease forwards;
}

.about-tab-panel.active {
  display: block;
}

@keyframes aboutFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.about-content-box {
  background: #ebeced;
  border-radius: 14px;
  padding: 36px 40px;
}

.about-content-box p {
  font-family: 'Lato', Georgia, serif;
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 14px;
}

.about-content-box p:last-child { margin-bottom: 0; }

.founders-subtabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  background: #f0f0f0;
  border-radius: 8px;
  padding: 4px;
  width: fit-content;
}

.founder-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #888;
  padding: 8px 18px;
  border-radius: 6px;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.founder-btn.active {
  background: #fff;
  color: #e28f26;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.founder-panel {
  display: none;
  animation: aboutFadeIn 0.35s ease forwards;
}

.founder-panel.active { display: block; }

.founder-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.strength-item { margin-bottom: 22px; }

.strength-item h4 {
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

/* ---- SIDE ARROWS ---- */
.about-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: rgba(216, 137, 39, 0.85);
  border: none;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s, opacity 0.3s;
}


.about-arrow.disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* Positioned relative to the container for better alignment */
.about-arrow-prev { left: 10px; }
.about-arrow-next { right: 10px; }

@media (max-width: 992px) {
  .about-container { flex-direction: column; padding: 0 50px; gap: 36px; }
  .about-left { width: 100%; position: static; flex-direction: row; align-items: center; gap: 24px; }
  .about-heading { width: auto; }
  .about-image-wrap { padding: 0; justify-content: flex-start; }
  .about-mascot { max-width: 140px; }
  .about-arrow-prev { left: 6px; }
  .about-arrow-next { right: 6px; }
}

@media (max-width: 768px) {
  .about-container { padding: 0 40px; }
  .about-tabs-nav { gap: 6px; }
  .about-tab-sep { display: none; }
  .about-tab-btn { font-size: 11px; padding: 6px 10px; background: #f5f5f5; border-radius: 4px; }
  .about-tab-btn.active { background: #fdf0dc; }
  .about-content-box { padding: 24px 20px; }
  .about-arrow-prev { left: 4px; }
  .about-arrow-next { right: 4px; }
}
/*///////////////////////  our people //////////////////////////////*/

/* ===============================================================
   OUR PEOPLE SECTION
=============================================================== */
.people-section {
  background: #e28f26;
  padding: 70px 0 80px;
}

.people-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: stretch;
  gap: 40px;
}

/* LEFT */
.people-left {
  flex: 0 0 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 0;
}

.people-heading {
  margin-bottom: 28px;
}

.people-heading h2 {
  font-family: 'MontserratSemi';
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.people-heading-line {
  display: block;
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,.65);
}

.people-intro {
  max-width: 360px;
}

.people-intro p {
  font-family: 'Lato', Georgia, serif;
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 18px;
}

/* RIGHT */
.people-right {
  flex: 1;
  min-width: 0;
}

.people-grid {
  background: #fff;
  border-radius: 14px;
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.people-card {
  display: flex;
  flex-direction: column;
}

.people-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: #e0e0e0;
  margin-bottom: 12px;
}

.people-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.35s ease, transform 0.35s ease;
}

.people-card:hover .people-photo-wrap img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.people-info {
  position: relative;
  padding-left: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.people-info::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 2px;
  background: #e28f26;
  border-radius: 2px;
}

.people-name {
  font-family: 'MontserratSemi', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #e28f26;
  letter-spacing: 0.2px;
  line-height: 1.4;
}

.people-designation {
  font-family: 'MontserratSemi', Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
}

.people-exp {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 10px;
  color: #555;
  line-height: 1.4;
  margin-top: 2px;
}

.people-companies {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 9.5px;
  color: #888;
  line-height: 1.4;
  font-style: italic;
}
/* ===============================================================
   RESPONSIVE
=============================================================== */
@media (max-width: 1100px) {
  .people-container {
    padding: 0 40px;
    gap: 40px;
  }

  .people-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .people-container {
    flex-direction: column;
    padding: 0 30px;
    gap: 36px;
  }

  .people-left {
    flex: unset;
    width: 100%;
    justify-content: flex-start;
  }

  .people-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .people-section {
    padding: 50px 0 60px;
  }

  .people-container {
    padding: 0 20px;
  }

  .people-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .people-heading h2 {
    font-size: 18px;
  }

  .people-intro p {
    font-size: 15px;
  }

  .people-name {
    font-size: 11px;
  }

  .people-designation {
    font-size: 10px;
  }

  .people-exp,
  .people-companies {
    font-size: 9px;
  }
}

@media (max-width: 360px) {
  .people-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}



/*///////////////////////////////////////////*/

.adf-clients-section {
  background: #e28f26;
  padding: 60px 0 80px;
  position: relative;
}
 
/* ── Container: same as .about-container ── */
.adf-clients-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  position: relative;
}
 
/* ─────────────────────────────────────────
   LEFT COLUMN  (same as .about-left)
   flex: 0 0 400px  |  sticky top: 90px
───────────────────────────────────────── */
.adf-clients-left {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: 90px;
}
 
/* Heading — mirrors .about-heading h2 colours for orange bg */
.adf-clients-heading {
  margin-bottom: 30px;
  width: 100%;
}
 
.adf-clients-heading h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 2px solid rgba(255,255,255,0.5);
  padding-bottom: 8px;
  margin-bottom: 0;
}
 
/* Left text — sits where the mascot image sits in About Us */
.adf-clients-left-text {
  width: 100%;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
 
.adf-clients-left-text p {
  font-family: 'Lato', Georgia, serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.92);
  margin-bottom: 5px;
}
 
/* ─────────────────────────────────────────
   RIGHT COLUMN  (same as .about-right)
   flex: 1  |  min-width: 0
───────────────────────────────────────── */
.adf-clients-right {
  flex: 1;
  min-width: 0;
}
 
/* ── Tabs nav — mirrors .about-tabs-nav exactly ── */
.adf-clients-tabs-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 15px;
  /* border-bottom: 1px solid rgba(255,255,255,0.3); */
  padding-bottom: 14px;
}
 
.adf-clients-tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 4px 0;
  margin-bottom: -1px;
  transition: color 0.25s ease;
  white-space: nowrap;
}
 
.adf-clients-tab-btn:hover { color: #fff; }
 
.adf-clients-tab-btn.active {
  color: #fff;
  border-bottom: 2px solid #fff;
}
 
.adf-clients-tab-sep {
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  margin: 0 10px;
  pointer-events: none;
}
 
/* ── Panels ── */
.adf-clients-panel { display: none; }
.adf-clients-panel.active {
  display: block;
  animation: clientsFadeIn 0.4s ease forwards;
}
 
@keyframes clientsFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
/* ── Body row inside right col: arrows + card ── */
.adf-clients-body-row {
  display: flex;
  align-items: center;
  gap: 0;
}
 
/* ── Arrows — mirrors .about-arrow ── */
.adf-clients-arrow {
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 0 6px;
  flex-shrink: 0;
  align-self: center;
  transition: opacity 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.adf-clients-arrow:hover { opacity: 0.6; }
 
.adf-clients-arrow.disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}
 
/* ── White card — mirrors .about-content-box ── */
.adf-clients-card {
  flex: 1;
  background: #ebeced;
  border-radius: 14px;
  padding: 36px 40px;
  min-height: 380px;
}
 
/* ── Logo rows ── */
.adf-clients-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #d4d4d5;
}
 
.adf-clients-row:last-child { border-bottom: none; }
 
.adf-clients-logo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 8px;
}
 
.adf-clients-logo img {
  max-height: 55px;
  max-width: 115px;
  width: auto;
  height: auto;
  object-fit: contain;
}
 
.adf-clients-vsep {
  width: 1px;
  height: 34px;
  background: #c8c8c9;
  flex-shrink: 0;
}
 
/* ─────────────────────────────────────────
   RESPONSIVE  (mirrors About Us breakpoints)
───────────────────────────────────────── */
@media (max-width: 992px) {
  .adf-clients-container {
    flex-direction: column;
    padding: 0 50px;
    gap: 36px;
  }
  .adf-clients-left {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    position: static;
  }
  .adf-clients-heading { margin-bottom: 0; width: auto; }
  .adf-clients-left-text { padding: 0; }
}
 
@media (max-width: 768px) {
  .adf-clients-container { padding: 0 40px; }
  .adf-clients-tabs-nav { gap: 6px; justify-content: flex-start; }
  .adf-clients-tab-sep { display: none; }
  .adf-clients-tab-btn {
    font-size: 11px;
    padding: 6px 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    border-bottom: none;
    margin-bottom: 0;
  }
  .adf-clients-tab-btn.active {
    background: rgba(255,255,255,0.25);
    color: #fff;
  }
  .adf-clients-card { padding: 24px 20px; min-height: unset; }
  .adf-clients-row { flex-wrap: wrap; gap: 16px; justify-content: center; padding: 14px 0; }
  .adf-clients-vsep { display: none; }
  .adf-clients-logo { flex: 0 0 28%; }
}


/* ══════════════════════════════════════
   SECTION WRAPPER
══════════════════════════════════════ */
.svc-section {
  background: #fff;
  padding: 60px 0 80px;
}
 
/* ── About-Us identical container ── */
.svc-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
 
/* ── LEFT COL (same as about-left) ── */
.svc-left {
  flex: 0 0 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: 90px;
}
 
.svc-heading { margin-bottom: 30px; width: 100%; }
.svc-heading h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #646262;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 2px solid #e28f26;
  padding-bottom: 8px;
}
 
.svc-desc { padding: 20px 0 0; }
.svc-desc p {
  font-family: 'Lato', Georgia, serif;
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}
 
/* ── RIGHT COL ── */
.svc-right { flex: 1; min-width: 0; }
 
/* ══════════════════════════════════════
   GREY CARD
   overflow:visible so boxes can poke out
══════════════════════════════════════ */
.svc-card {
  background: #ebeced;
  border-radius: 14px;
  padding: 40px 20px 50px;
  position: relative;
  overflow: visible;
}
 
/* ══════════════════════════════════════
   CANVAS  — position:relative, fixed height
   Everything inside is absolute positioned
   to match the reference exactly.
══════════════════════════════════════ */
.svc-canvas {
  position: relative;
  width: 100%;
  /* height is set by JS based on wheel size */
  min-height: 560px;
}
 
/* ── WHEEL image — centered ── */
.svc-wheel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}
 
/* ══════════════════════════════════════
   ORANGE BOX
══════════════════════════════════════ */
.svc-box {
  position: absolute;
  background: #e28f26;
  border-radius: 10px;
  padding: 14px 16px;
  width: 230px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
  z-index: 10;
 
  /* Animation start */
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.55s ease;
}
 
/* Left boxes slide in from left */
.svc-box.from-left  { transform: translateX(-22px); }
.svc-box.from-left.show  { transform: translateX(0); }
 
/* Right boxes slide in from right */
.svc-box.from-right { transform: translateX(22px); }
.svc-box.from-right.show { transform: translateX(0); }
 
.svc-box.show { opacity: 1; }
 
.svc-box h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 7px;
  line-height: 1.4;
}
 
.svc-box p {
  font-family: 'Lato', Georgia, serif;
  font-size: 11px;
  line-height: 1.62;
  color: rgba(255,255,255,0.93);
  margin-bottom: 5px;
}
.svc-box p:last-child { margin-bottom: 0; }
 
/* ══════════════════════════════════════
   CONNECTOR LINES  (SVG overlay)
══════════════════════════════════════ */
.svc-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 5;
}
 
.svc-line {
  stroke: #999;
  stroke-width: 1.2;
  fill: none;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 0.5s ease;
}
.svc-line.show { stroke-dashoffset: 0; }
 
/* ══════════════════════════════════════
   LABEL TEXT (sits on the line)
══════════════════════════════════════ */
.svc-lbl {
  position: absolute;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #2e2e2e;
  letter-spacing: 0.3px;
  line-height: 1.25;
  z-index: 6;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.svc-lbl.show { opacity: 1; }
 
/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .svc-container { flex-direction: column; padding: 0 30px; gap: 28px; }
  .svc-left { width: 100%; flex-direction: row; align-items: center; gap: 20px; position: static; }
  .svc-heading { margin-bottom: 0; width: auto; }
  .svc-desc { padding: 0; }
}
@media (max-width: 600px) {
  .svc-container { padding: 0 16px; }
  .svc-card { padding: 20px 10px 30px; }
}







    /* ── SECTION ── */
    .gc-section {
      background: #fff;
      padding: 60px 80px 80px 80px;
    }

    .gc-section .container{
      padding: 60px;
    }
 
    /* ── HEADING ── */
    .gc-main-heading {
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #646262;
      display: inline-block;
      border-bottom: 2px solid #C8822A;
      padding-bottom: 4px;
      margin-bottom: 6px;
    }
 
    /* ── TOP TABS ── */
    .gc-top-tabs {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 48px 0 52px 0;
    }
 
    .gc-top-tab {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #aaa;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0 28px 0 0;
      transition: color 0.2s;
    }
    .gc-top-tab.active { color: #C8822A; }
    .gc-top-tab:hover:not(.active) { color: #555; }
 
    .gc-top-sep {
      color: #bbb;
      font-size: 15px;
      padding-right: 28px;
      line-height: 1;
    }
 
    /* ── OUTER WRAPPER: holds left-arrow + content + right-arrow ── */
    .gc-outer {
      position: relative;
      display: flex;
      align-items: center;
      gap: 0;
    }
 
    /* ── ARROWS — fixed to sides, never move ── */
    .gc-arrow {
      flex-shrink: 0;
      width: 0;
      height: 0;
      cursor: pointer;
      background: none;
      border: none;
      outline: none;
      padding: 8px;        /* bigger click area */
      transition: opacity 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .gc-arrow:hover { opacity: 0.65; }
 
    /* Left arrow ◀ */
    .gc-arrow-left {
      margin-right: 24px;
    }
    .gc-arrow-left::after {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border-top: 8px solid transparent;
      border-bottom: 8px solid transparent;
      border-right: 13px solid #C8822A;
    }
 
    /* Right arrow ▶ */
    .gc-arrow-right {
      margin-left: 24px;
    }
    .gc-arrow-right::after {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border-top: 8px solid transparent;
      border-bottom: 8px solid transparent;
      border-left: 13px solid #C8822A;
    }
 
    /* ── PANELS CONTAINER ── */
    .gc-panels {
      flex: 1;
      min-width: 0;
    }
 
    /* ── SINGLE PANEL ── */
    .gc-panel {
      display: none;
      align-items: center;
      gap: 40px;
    }
    .gc-panel.active { display: flex; }
 
    /* Text */
    .gc-text {
      flex: 0 0 380px;
    }
 
    .gc-text h3 {
      font-size: 16px;
      font-weight: 700;
      color: #111;
      margin-bottom: 20px;
      line-height: 1.5;
    }
 
    .gc-text p {
      font-size: 13.5px;
      color: #444;
      line-height: 1.9;
    }
 
    /* Gray image box */
  .gc-img-box {
  flex: 1;
  background: #ececec;
  border-radius: 10px;
  height: 360px; 
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px; 
}

.gc-img-box img {
  width: 300px;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
   