/* ======================================
   COMMON GLOBAL STYLES
====================================== */
  html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    }

    .reveal {
      opacity: 0;
      transform: translateY(14px);
      transition: .7s ease;
    }

    .reveal.in {
      opacity: 1;
      transform: none;
    }

    .navlink::after {
      content: "";
      display: block;
      height: 2px;
      width: 0;
      background: #2563eb;
      transition: .25s;
      margin-top: 6px;
      border-radius: 999px;
    }

    .navlink:hover::after {
      width: 100%;
    }
html { scroll-behavior: smooth; }
body { font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }

/* Sticky header shadow */
.header-shadow { box-shadow: 0 4px 20px rgba(2, 6, 23, 0.08); }

/* Reveal */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.in{ opacity: 1; transform: translateY(0); }

/* --------------------------------------
   BACKGROUND HERO SLIDER (IMPORTANT)
-------------------------------------- */
.bg-slide{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 900ms ease;
  will-change: opacity;
}
.bg-slide.active{ opacity: 1; }

/* Optional overlays */
.hero-overlay-light{
  background: linear-gradient(to bottom,
    rgba(255,255,255,0.85),
    rgba(255,255,255,0.65),
    rgba(255,255,255,1)
  );
}
.hero-overlay-side{
  background: linear-gradient(to right,
    rgba(255,255,255,0.85),
    rgba(255,255,255,0.55),
    rgba(255,255,255,0.15)
  );
}

/* Slider dots (shared) */
.slider-dot{
  height: 10px;
  width: 10px;
  border-radius: 999px;
  background: #cbd5e1; /* slate-300 */
  transition: background-color .25s ease, transform .25s ease;
}
.slider-dot.active{
  background: #2563eb; /* primary-600 */
  transform: scale(1.15);
}

/* Right card slides */
.slide{
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity .6s ease, transform .8s ease;
}
.slide.active{
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.stepCard { will-change: transform; }


/* ================================
   SERVICES SECTION – SERC
================================ */

.services-section {
  background: #f8fafc;
  padding: 5rem 1.25rem;
}

.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Title */
.services-section h2 {
  font-size: 2.25rem;
  font-weight: 900;
  text-align: center;
  color: #0f172a;
  margin-bottom: 3.5rem;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

/* Card */
.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

/* Image */
.service-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* Content */
.service-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

/* Preview text */
.service-preview {
  font-size: 0.97rem;
  line-height: 1.7;
  color: #475569;
}

/* Full content */
.service-full {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
  margin-top: 0.75rem;
}

.service-full p {
  margin-bottom: 0.75rem;
}

.service-full ul {
  margin: 0.75rem 0 0.75rem 1.25rem;
}

.service-full li {
  list-style: disc;
  margin-bottom: 0.4rem;
}

/* Expanded state */
.service-card.expanded .service-full {
  max-height: 1400px;
}

/* Read more button */
.read-more-btn {
  margin-top: auto;
  margin-top: 1.75rem;
  align-self: flex-start;
  border: none;
  background: #2563eb;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.9rem;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.read-more-btn:hover {
  background: #1e40af;
  transform: translateY(-1px);
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .service-img img {
    height: 220px;
  }

  .services-section h2 {
    font-size: 1.9rem;
  }
}


/* Tabs */
.gallery-tab {
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #334155;
  transition: all .3s ease;
}

.gallery-tab:hover {
  background: #f1f5f9;
}

.gallery-tab.active {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

/* Gallery Cards */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  background: #fff;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: transform .4s ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,23,42,.75),
    rgba(15,23,42,.15),
    transparent
  );
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity .4s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-weight: 800;
  font-size: 15px;
}


/* Video Card */
.video-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
  transition: transform .35s ease, box-shadow .35s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15,23,42,.12);
}

/* Thumbnail */
.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.08);
}

/* Play Button */
.play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.play-btn::before {
  content: "";
  height: 64px;
  width: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.play-btn::after {
  content: "";
  margin-left: 4px;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #2563eb;
  position: absolute;
}

/* Body */
.video-body {
  padding: 18px 20px 22px;
}

.video-body h3 {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
}

.video-body p {
  margin-top: 6px;
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}


.profile-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease;
}

.profile-card:hover {
  transform: translateY(-6px);
}

.profile-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.profile-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.profile-name {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
}

.profile-role {
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 800;
  text-transform: uppercase;
  color: #2563eb;
  margin: 4px 0 14px;
}

.profile-intro {
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
}

.profile-more {
  display: none;
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #334155;
}

.profile-more p + p {
  margin-top: 10px;
}

.read-more-btn {
  margin-top: 30px;
  align-self: flex-start;
  padding: 10px 18px;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: background .25s ease;
}

.read-more-btn:hover {
  background: #1e40af;
}



.org-section{
  padding:80px 0;
  background:#f8fafc;
  border-top:1px solid #e2e8f0;
  border-bottom:1px solid #e2e8f0;
}

.org-container{
  max-width:1100px;
  margin:0 auto;
  padding:0 16px;
}

.org-header{
  max-width:720px;
  margin-bottom:36px;
}

.org-header--tight{
  margin-top:64px;
}

.org-kicker{
  font-size:11px;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#2563eb;
}

.org-title{
  margin-top:10px;
  font-size:32px;
  line-height:1.1;
  font-weight:900;
  color:#0f172a;
}

.org-subtitle{
  margin-top:12px;
  font-size:15.5px;
  line-height:1.7;
  color:#334155;
}

.org-grid{
  display:grid;
  grid-template-columns:repeat(1,minmax(0,1fr));
  gap:22px;
}

@media(min-width:768px){
  .org-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
}

@media(min-width:1024px){
  .org-grid{ grid-template-columns:repeat(3,minmax(0,1fr)); }
}

.org-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 16px 40px rgba(2,6,23,.06);
  display:flex;
  flex-direction:column;
  transition:transform .25s ease, box-shadow .25s ease;
}

.org-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 60px rgba(2,6,23,.10);
}

.org-avatar{
  width:100%;
  aspect-ratio:1/1;
  object-fit: 60px;
  display:block;
}

.org-body{
  padding:22px;
  display:flex;
  flex-direction:column;
  height:100%;
}

.org-name{
  font-size:18px;
  font-weight:900;
  color:#0f172a;
}

.org-role{
  margin-top:4px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#1d4ed8;
}

.org-intro{
  margin-top:12px;
  font-size:14.8px;
  line-height:1.65;
  color:#334155;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height:74px; /* keeps equal height */
}

.org-more{
  display:none;
  margin-top:12px;
  font-size:14.6px;
  line-height:1.65;
  color:#334155;
}

.org-more p + p{ margin-top:10px; }

.org-btn{
  margin-top:30px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 100px;
  border-radius:999px;
  background:#2563eb;
  color:#fff;
  font-size:13px;
  font-weight:900;
  border:none;
  cursor:pointer;
  transition:background .25s ease;
}

.org-btn:hover{ background:#1e40af; }
/* Vertical video cards */
.gallery-video {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
  aspect-ratio: 9 / 16; /* vertical reels style */
}

/* Video element */
.gallery-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay (same style as images) */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.15),
    transparent
  );
  pointer-events: none;
}


.global-clients {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  display: flex;
  justify-content: center;
}

.clients-wrapper {
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

/* Headings */
.title {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.subtitle {
  margin: 12px auto 45px;
  color: #64748b;
  max-width: 600px;
}

/* Tabs – Centered */
.continent-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab {
  padding: 10px 26px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s ease;
}

.tab.active,
.tab:hover {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
}

/* Content */
.continent-content {
  display: none;
}

.continent-content.active {
  display: flex;
  justify-content: center;
}

/* ⭐ Grid – Centered Horizontally & Vertically */
.country-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 55px;
  justify-content: center;
  align-items: center;
  justify-items: center;
  max-width: 1200px;
}

/* Cards – Fully Centered */
.country-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #b2b2b2;
  border-radius: 18px;
  width: 100%;
  max-width: 150px;
padding-bottom: 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.country-card img {
  width: 200px;
  margin-bottom: 12px;
}

.country-card span {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}

/* Hover */
.country-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 60px rgba(0,0,0,.1);
}

/* 📱 Mobile – 2 in a row */
@media (max-width: 768px) {
  .country-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Google Translate Cleanup */
.goog-te-gadget {
  font-family: Inter, system-ui, sans-serif !important;
  font-size: 13px !important;
  color: #0f172a !important;
}

.goog-te-gadget span {
  display: none !important;
}

.goog-te-gadget select {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  font-weight: 600;
  cursor: pointer;
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0px !important;
}
  .serc-marquee-wrap { overflow: hidden; }
  .serc-marquee-track {
    flex: 0 0 auto;
    min-width: max-content;
    animation: serc-marquee-left 70s linear infinite;
    will-change: transform;
  }
  @keyframes serc-marquee-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
  }
  .serc-marquee-wrap:hover .serc-marquee-track { animation-play-state: paused; }

  @media (prefers-reduced-motion: reduce) {
    .serc-marquee-track { animation: none; }
  }



    /* ===============================
     WRAPPER
  =============================== */
  .g-translate-wrap{
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 9999;
  }

  /* ===============================
     BUTTON
  =============================== */
  .g-translate-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;           /* mobile tap target */
    min-width: 44px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.12);
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    font: 500 14px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  }

  .g-translate-btn:hover{
    border-color: rgba(0,0,0,.22);
  }

  /* ===============================
     PANEL (DESKTOP DEFAULT)
  =============================== */
  .g-translate-panel{
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: 320px;
    max-width: calc(100vw - 24px);
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.12);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
    display: none;
  }

  .g-translate-panel.open{
    display: block;
  }

  /* ===============================
     GOOGLE WIDGET CLEANUP
  =============================== */
  .g-translate-panel .goog-te-gadget{
    font-size: 0;
  }

  .g-translate-panel select.goog-te-combo{
    width: 100%;
    min-height: 48px;           /* proper mobile tap */
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,.14);
    padding: 10px 14px;
    font: 500 15px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    outline: none;
    background: #fff;
    appearance: none;
  }

  /* ===============================
     MOBILE (TABLETS + PHONES)
  =============================== */
  @media (max-width: 768px){
    .g-translate-btn span{
      display: none;            /* icon-only */
    }

    .g-translate-panel{
      left: 0;
      right: 0;
      margin: 0 auto;
      width: calc(100vw - 24px);
    }
  }

  /* ===============================
     SMALL PHONES (BOTTOM SHEET)
  =============================== */
  @media (max-width: 480px){
    .g-translate-panel{
      position: fixed;
      left: 12px;
      right: 12px;
      bottom: 12px;
      top: auto;
      width: auto;
      border-radius: 20px;
      padding: 16px;
      box-shadow: 0 25px 60px rgba(0,0,0,.25);
      animation: slideUp .25s ease-out;
    }
  }

  @keyframes slideUp{
    from{
      transform: translateY(20px);
      opacity: 0;
    }
    to{
      transform: translateY(0);
      opacity: 1;
    }
  }

  /* ===============================
     GOOGLE BANNER KILL
  =============================== */
  .goog-te-banner-frame{
    display: none !important;
  }