/* =====================
   SECTION
===================== */
.gad-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

/* Orange curved line accent */
.gad-section::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  border: 3px solid #ff6a2b;
  border-radius: 50%;
  top: -300px;
  left: -300px;
  opacity: 0.25;
}

/* =====================
   CARD COMMON
===================== */
.gad-card {
  border-radius: 28px;
  padding: 40px;
  height: 100%;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.gad-card:hover {
  transform: translateY(-8px);
}

/* =====================
   CARD 1 – LIGHT
===================== */
.card-light {
  background: #f4f4f4;
}

.card-light h3 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
}

.card-light p {
  font-size: 16px;
  color: #555;
  margin-top: 15px;
}

/* abstract shape */
.card-light::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: #e0e0e0;
  border-radius: 50%;
  right: -40px;
  top: 30px;
}

/* =====================
   CARD 2 – ORANGE
===================== */
.card-orange {
  background: #ff6a2b;
  color: #000000;
}

/* diagonal pattern */
.card-orange::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.08) 2px,
    transparent 2px,
    transparent 10px
  );
}

.card-orange * {
  position: relative;
}

.logo-box {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  margin-bottom: 25px;
}

.card-orange h3 {
  font-size: 30px;
  font-weight: 700;
}

/* =====================
   CARD 3 – IMAGE
===================== */
.card-image {
  background-image: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085');
  background-size: cover;
  background-position: center;
  color: #fff;
}

/* dark overlay */
.card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

/* dotted texture */
.card-image::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 100%;
  right: 0;
  top: 0;
  background-image: radial-gradient(rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 8px 8px;
}

.card-image * {
  position: relative;
}

.card-image h3 {
  font-size: 30px;
  font-weight: 700;
}

/* =====================
   BUTTON
===================== */
.btn-outline-custom {
  border: 2px solid currentColor;
  color: inherit;
  border-radius: 30px;
  padding: 10px 22px;
  font-weight: 500;
  margin-top: 30px;
}

.btn-outline-custom:hover {
  background: rgba(255,255,255,0.15);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 992px) {
  .gad-section {
    padding: 80px 0;
  }

  .gad-card h3 {
    font-size: 26px;
  }
}
/* =====================================
   MOBILE FIRST RESPONSIVE FIX
/* =====================================
   MOBILE LAYOUT FIX – PREMIUM STACK
===================================== */
@media (max-width: 768px) {

  .gad-section {
    padding: 48px 14px;
  }

  /* Reduce card height & spacing */
  .gad-card {
    padding: 22px;
    border-radius: 20px;
    box-shadow: 0 18px 36px rgba(0,0,0,0.08);
  }

  /* Fix heading balance */
  .gad-card h3 {
    font-size: 21px !important;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  /* Text should sit closer to heading */
  .gad-card p {
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 16px;
  }

  /* Button closer to content */
  .btn-outline-custom {
    margin-top: 12px;
    padding: 9px 16px;
    font-size: 14px;
    width: auto;
  }

  /* Remove unnecessary decoration on mobile */
  .card-light::after {
    display: none;
  }

  /* Orange background curve – subtle */
  .gad-section::before {
    width: 300px;
    height: 300px;
    top: -180px;
    left: -180px;
    opacity: 0.12;
  }

  /* IMAGE CARD FIX */
  .card-image {
    min-height: 260px;
  }

  .card-image::after {
    width: 50px; /* reduce dotted strip */
    opacity: 0.6;
  }

}

/* =====================================
   VERY SMALL DEVICES (iPhone SE etc.)
===================================== */
@media (max-width: 420px) {

  .gad-card {
    padding: 20px;
  }

  .gad-card h3 {
    font-size: 19px !important;
  }

  .gad-card p {
    font-size: 14px;
  }

  .btn-outline-custom {
    width: 100%;
    text-align: center;
  }
}

/* =====================================
   SMALL MOBILE DEVICES
===================================== */
@media (max-width: 480px) {

  .gad-card {
    padding: 24px;
  }

  .gad-card h3 {
    font-size: 20px !important;
  }

  .gad-card p {
    font-size: 14px;
  }

  /* Full width button */
  .btn-outline-custom {
    width: 100%;
    text-align: center;
  }
}


/* =====================
   IMAGE CONTAINER
===================== */
.image-slider-section {
  max-width: 1920px;
  margin: 80px auto;
}

.image-box {
  position: relative;
  width: 100%;
  height: 200px; /* FIXED IMAGE HEIGHT */
  background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d');
  background-size: cover;
  background-position: center;
  /* border-radius: 28px; */
  overflow: hidden;
}

/* dark overlay */
.image-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.75)
  );
}

/* =====================
   TEXT SLIDER
===================== */
.text-slider {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 50px;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.carousel-item {
  transition: opacity 0.8s ease-in-out;
}

.metrics-row {
  display: flex;
  gap: 50px;
  width: 100%;
}

.metric {
  flex: 1;
}

.metric h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
}

.metric p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}

/* =====================
   INDICATORS
===================== */
.carousel-indicators {
  bottom: 20px;
}

.carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 0.4;
}

.carousel-indicators .active {
  opacity: 1;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {

  .image-box {
    height: 380px;
  }

  .text-slider {
    padding: 30px;
  }

  .metrics-row {
    flex-direction: column;
    gap: 25px;
  }

  .metric h2 {
    font-size: 34px;
  }

  .metric p {
    font-size: 14px;
  }
}


.process-card {
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* Purple cards glow */
.card-purple:hover {
  transform: translateY(-8px);
  box-shadow:
    0 25px 60px rgba(127, 86, 243, 0.45),
    0 0 0 1px rgba(255,255,255,0.08) inset;
}

/* Image card glow */
.card-image:hover {
  transform: translateY(-8px);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255,255,255,0.08) inset;
}

/* CTA arrow subtle motion */
.process-card:hover .card-cta {
  transform: translateX(4px);
  transition: transform 0.3s ease;
}

/* =====================
   MOBILE – NO HOVER
===================== */
@media (max-width: 768px) {
  .process-card:hover {
    transform: none;
    box-shadow: none;
  }
}

/* =====================
   SECTION
===================== */
.process-section {
  padding: 10px 20px;
  max-width: 1300px;
  margin: auto;
}

/* =====================
   HEADER
===================== */
.process-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 70px;
}

.process-header h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 16px;
}

.process-header p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* =====================
   CARD GRID
===================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* =====================
   CARD BASE
===================== */
.process-card {
  border-radius: 26px;
  padding: 36px;
  min-height: 360px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* =====================
   PURPLE CARD
===================== */
.card-purple {
  background: linear-gradient(135deg, #7f56f3, #8b5cf6);
  color: #ffffff;
}

.card-purple h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 14px;
}

.card-purple ul {
  list-style: none;
  font-size: 15px;
  line-height: 1.7;
}

.card-purple ul li {
  margin-bottom: 8px;
}

/* =====================
   IMAGE CARD
===================== */
.card-image {
  background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  overflow: hidden;
}

.card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.card-image * {
  position: relative;
}

.card-image h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 14px;
}

.card-image ul {
  list-style: none;
  font-size: 15px;
  line-height: 1.7;
}

.card-image ul li {
  margin-bottom: 8px;
}

/* =====================
   CTA
===================== */
.card-cta {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 20px;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: auto;
  }

  .process-header h2 {
    font-size: 32px;
  }
}




  .impact-showcase {
  padding: 80px 0;
  background: #ffffff;
  font-family: "Inter", sans-serif;
}

.impact-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Title */
.impact-left h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f2d24;
}

.impact-left h2 span {
  color: #23b58c;
  position: relative;
}

.impact-left h2 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #ffb347;
  border-radius: 10px;
}

.impact-sub {
  color: #6b7c77;
  font-size: 15px;
  max-width: 520px;
  margin: 15px 0 40px;
}

/* GRID – 4 PER ROW */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* COMPACT CARDS */
.impact-box {
  border-radius: 14px;
  padding: 18px 14px;
  min-height: 105px;
  transition: 0.35s ease;
  text-align: left;
}

.impact-box h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
}

.impact-box p {
  font-size: 13px;
  line-height: 1.4;
  color: #6a7b88;
}

/* Colors */
.green { background: #ecf9f4; color:#1c9c7c; }
.orange { background: #fff4e6; color:#ff9a1f; }
.pink { background: #ffeef2; color:#ff5a7d; }
.blue { background: #eef5ff; color:#2f80ff; }

.impact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* RIGHT IMAGE */
.impact-right {
  display: flex;
  justify-content: center;
}

.image-card {
  width: 340px;
  height: 490px;
  background: #ffc983;
  border-radius: 36px;
  padding: 14px;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
}
/* Tablets */
@media (max-width: 1024px) {
  .impact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .impact-right {
    order: 2;
  }

  .impact-left {
    order: 1;
  }

  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .image-card {
    width: 300px;
    height: 420px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .impact-showcase {
    padding: 60px 20px;
  }

  .impact-left h2 {
    font-size: 34px;
    text-align: center;
  }

  .impact-sub {
    text-align: center;
    margin: 15px auto 35px;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .impact-box {
    padding: 14px;
    min-height: 95px;
  }

  .impact-box h3 {
    font-size: 22px;
  }

  .impact-box p {
    font-size: 12px;
  }

  .impact-right {
    justify-content: center;
  }

  .image-card {
    width: 260px;
    height: 360px;
    margin: auto;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .impact-box {
    min-height: auto;
    padding: 16px;
  }

  .image-card {
    width: 100%;
    height: 320px;
  }
}





  .impact-showcase {
  padding: 80px 0;
  background: #ffffff;
  font-family: "Inter", sans-serif;
}

.impact-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Title */
.impact-left h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f2d24;
}

.impact-left h2 span {
  color: #23b58c;
  position: relative;
}

.impact-left h2 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #ffb347;
  border-radius: 10px;
}

.impact-sub {
  color: #6b7c77;
  font-size: 15px;
  max-width: 520px;
  margin: 15px 0 40px;
}

/* GRID – 4 PER ROW */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* COMPACT CARDS */
.impact-box {
  border-radius: 14px;
  padding: 18px 14px;
  min-height: 105px;
  transition: 0.35s ease;
  text-align: left;
}

.impact-box h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
}

.impact-box p {
  font-size: 13px;
  line-height: 1.4;
  color: #6a7b88;
}

/* Colors */
.green { background: #ecf9f4; color:#1c9c7c; }
.orange { background: #fff4e6; color:#ff9a1f; }
.pink { background: #ffeef2; color:#ff5a7d; }
.blue { background: #eef5ff; color:#2f80ff; }

.impact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* RIGHT IMAGE */
.impact-right {
  display: flex;
  justify-content: center;
}

.image-card {
  width: 340px;
  height: 490px;
  background: #ffc983;
  border-radius: 36px;
  padding: 14px;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
}
/* Tablets */
@media (max-width: 1024px) {
  .impact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .impact-right {
    order: 2;
  }

  .impact-left {
    order: 1;
  }

  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .image-card {
    width: 300px;
    height: 420px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .impact-showcase {
    padding: 60px 20px;
  }

  .impact-left h2 {
    font-size: 34px;
    text-align: center;
  }

  .impact-sub {
    text-align: center;
    margin: 15px auto 35px;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .impact-box {
    padding: 14px;
    min-height: 95px;
  }

  .impact-box h3 {
    font-size: 22px;
  }

  .impact-box p {
    font-size: 12px;
  }

  .impact-right {
    justify-content: center;
  }

  .image-card {
    width: 260px;
    height: 360px;
    margin: auto;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .impact-box {
    min-height: auto;
    padding: 16px;
  }

  .image-card {
    width: 100%;
    height: 320px;
  }
}





  .gad-awards-ribbon {
  background: #ffffff;
  padding: 100px 0 60px;
  text-align: center;
  overflow: hidden;
}

.gad-awards-ribbon h3 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 60px;
  color: #111;
}

/* Ribbon */
.award-ribbon {
  display: flex;
  gap: 30px;
  justify-content: center;
  padding: 0 60px;
  transform: perspective(1000px) rotateX(8deg);
}

/* Award Cards */
.award-card {
  background: #fff;
  width: 280px;
  min-height: 260px;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  padding: 30px 20px;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.award-card img {
  max-width: 140px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.award-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  font-weight: 600;
}

/* Cinematic fade edges */
.gad-awards-ribbon::before,
.gad-awards-ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 5;
}

.gad-awards-ribbon::before {
  left: 0;
  /* background: linear-gradient(to right, white, transparent); */
}

.gad-awards-ribbon::after {
  right: 0;
  /* background: linear-gradient(to left, white, transparent); */
}

/* Hover */
.award-card:hover {
  transform: translateY(-15px) scale(1.05);
}
/* Tablets */
@media (max-width: 1024px) {
  .gad-awards-ribbon {
    padding: 70px 0 40px;
  }

  .gad-awards-ribbon h3 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .award-ribbon {
    gap: 20px;
    padding: 0 30px;
    transform: none; /* remove 3D tilt on small screens */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .award-card {
    min-width: 240px;
    min-height: 240px;
    scroll-snap-align: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .gad-awards-ribbon h3 {
    font-size: 28px;
  }

  .award-ribbon {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 20px 20px;
    gap: 16px;
  }

  .award-ribbon::-webkit-scrollbar {
    height: 6px;
  }

  .award-ribbon::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
  }

  .award-card {
    min-width: 220px;
    padding: 24px 18px;
  }

  .award-card img {
    max-width: 120px;
  }

  .award-card p {
    font-size: 13px;
  }

  /* Disable side fade on mobile */
  .gad-awards-ribbon::before,
  .gad-awards-ribbon::after {
    display: none;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .gad-awards-ribbon {
    padding: 50px 0 30px;
  }

  .gad-awards-ribbon h3 {
    font-size: 24px;
  }

  .award-card {
    min-width: 200px;
    min-height: 210px;
  }

  .award-card img {
    max-width: 100px;
  }
}




  
    .glf-about {
    background: #f7f9f8;
    padding: 100px 8%;
    font-family: "Inter", sans-serif;
  }

  .glf-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  /* LEFT IMAGES */
  .glf-image-area {
    position: relative;
  }

  .main-img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
  }

  .small-img {
    position: absolute;
    bottom: -60px;
    right: -40px;
    width: 220px;
    /* border-radius: 18px; */
    /* box-shadow: 0 30px 80px rgba(0,0,0,0.15); */
  }

  /* Floating badge */
  .experience-badge {
    position: absolute;
    top: 30px;
    left: -40px;
    background: linear-gradient(135deg, #00c896, #5ee28a);
    color: white;
    padding: 20px 22px;
    border-radius: 16px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 20px 60px rgba(0,200,150,0.4);
  }

  .experience-badge strong {
    font-size: 28px;
    display: block;
  }

  /* RIGHT CONTENT */
  .glf-tag {
    color: #00c896;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
  }

  .glf-content h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #0d1f1c;
  }

  .glf-content h2 span {
    color: #00c896;
  }

  .glf-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
  }

  .glf-list {
    list-style: none;
    padding: 0;
  }

  .glf-list li {
    font-size: 15px;
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    color: #222;
  }

  .glf-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00c896;
    font-weight: 700;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .glf-container {
      grid-template-columns: 1fr;
    }

    .small-img {
      display: none;
    }

    .experience-badge {
      left: 20px;
    }
  }
  /* Tablets */
@media (max-width: 1024px) {
  .glf-about {
    padding: 70px 6%;
  }

  .glf-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .glf-content h2 {
    font-size: 40px;
  }

  .glf-desc {
    font-size: 16px;
  }

  .glf-list li {
    font-size: 14px;
  }

  .experience-badge {
    top: 20px;
    left: 20px;
    padding: 16px 18px;
  }

  .experience-badge strong {
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .glf-about {
    padding: 50px 20px;
  }

  .glf-image-area {
    text-align: center;
  }

  .main-img {
    border-radius: 18px;
  }

  .experience-badge {
    top: 15px;
    left: 15px;
    padding: 14px 16px;
    border-radius: 12px;
  }

  .experience-badge strong {
    font-size: 22px;
  }

  .experience-badge span {
    font-size: 12px;
  }

  .glf-content h2 {
    font-size: 32px;
    text-align: center;
  }

  .glf-desc {
    text-align: center;
    font-size: 15px;
    margin-bottom: 25px;
  }

  .glf-list {
    max-width: 520px;
    margin: auto;
  }

  .glf-list li {
    font-size: 13px;
    padding-left: 24px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .glf-content h2 {
    font-size: 26px;
    line-height: 1.2;
  }

  .experience-badge {
    padding: 12px 14px;
  }

  .experience-badge strong {
    font-size: 20px;
  }

  .glf-desc {
    font-size: 14px;
  }

  .glf-list li {
    font-size: 12.5px;
  }
}


  

  
  .gad-clientele {
  padding: 90px 0;
  background: #ffffff;
  text-align: center;
  overflow: hidden;
}

.gad-clientele h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #0b1c2d;
  letter-spacing: 1px;
}

.logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  width: max-content;
  padding: 20px;
  animation: scrollLogos 70s linear infinite;
}

.logo-card {
  width: 180px;
  height: 110px;
  background: #ffffff;
  border-radius: 14px;
  margin: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.logo-card img {
  max-height: 60px;
  max-width: 120px;
  object-fit: contain;
}

.logo-card:hover {
  transform: translateY(-8px) scale(1.06);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Soft fade edges */
.logo-slider::before,
.logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}

.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

@keyframes scrollLogos {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

