/* ==========================================================================
   OBOX GCC Page Styles – Responsive v2.0
   - Preserves original visual design
   - Improved responsive behavior (Bootstrap 5 compatible)
   - Renamed a few classes for clarity (see mapping below)
   - Mobile animations simplified for performance (<= 768px)
   Updated by ChatGPT on 2025-10-30
   ========================================================================== */

/* === Class rename mapping (kept for compatibility) ===
   - .container11             -> .gcc-stats-container      (alias: .container11 still supported)
   - .design-card             -> .gcc-card                 (alias: .design-card still supported)
   - .experts-row             -> .gcc-experts-row          (alias: .experts-row still supported)
   - .expert-pill             -> .gcc-expert-pill          (alias: .expert-pill still supported)
   - .expert-card             -> .gcc-expert-card          (alias: .expert-card still supported)
   - .carousel-inner          -> .gcc-carousel-inner       (alias: .carousel-inner still supported)
   ========================================================================== */

/* ==========================
   Root palette & variables
   ========================== */
:root{
  --obox-blue: #069af3;
  --obox-green: #9de217;
  --obox-ink: #1b2b38;
  --obox-muted: #6b7b8a;
  --obox-card: #ffffff;
  --obox-bg: #f5f9ff;
  --obox-shadow: 0 10px 20px rgba(9, 30, 66, 0.08);
  --obox-shadow-hover: 0 14px 28px rgba(9, 30, 66, 0.12);
  --site-max-width: 1200px;
  --site-gutter: 1rem;
  --site-header-h: 80px;
}

/* ==========================
   Base / Reset (Bootstrap-compatible)
   ========================== */
html, body {
  font-family: "Jost", sans-serif !important;
  color: var(--obox-ink);
  background: #fff;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
/* Make sure key text elements also use Jost */
      .bs-heading,
      .bs-para,
      .design-text,
      .design-title,
      .card,
      .accordion-button,
      .btn,
      .nav,
      .nav-link {
        font-family: 'Jost', sans-serif !important;
      }
a { text-decoration: none; color: inherit; }

/* Utility */
.text-primary { color: var(--obox-blue) !important; }

/* Make images & videos responsive by default */
img, video, .img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Buttons default */
.btn {
  display:inline-block;
  padding:10px 16px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  cursor: pointer;
}

/* Primary / Link btn */
.btn--primary { background: #0C5ADB; color: #fff; border: none; }
.btn--link { color: #0C5ADB; background: transparent; border: none; padding: 0; }

/* ==========================
   Step box / counters
   ========================== */
.step-box {
  text-align: center !important;
  padding: 20px;
  background-color: transparent;
  color: #000;
  border-radius: 8px;
}

.step-box i {
  font-size: 50px;
  color: #000; /* Black color */
  margin-bottom: 15px;
}
.step-box i:hover {
  color: #0471b2; /* blue color */
  margin-bottom: 15px;
}

.step-box h3 { margin-bottom: 10px; }
.step-box p { color: #6b7b8a; }

/* counter */
.counter-number1{
  background: #fff;
  padding: 15px;
  border-radius: 22px;
}

/* ==========================
   GCC: Why Now Section
   ========================== */
.gcc-why-now { padding: 64px 0; background:#fff; }
.gcc-why-now h2 { margin: 0 0 12px; line-height:1.2; font-size:2rem; }
.gcc-why-now p { margin: 0 0 14px; color: var(--obox-muted); }
.gcc-why-now .why-now-points { margin: 8px 0 20px; padding-left: 18px; color: var(--obox-muted); }
.gcc-why-now .why-now-points li { margin: 6px 0; }
.gcc-why-now .cta-row { display:flex; gap:12px; flex-wrap:wrap; }

/* ==========================
   Card / Design components
   ========================== */
/* New name: .gcc-card (alias for .design-card to keep compatibility) */
.gcc-card, .design-card {
  border: 0;
  border-radius: 14px;
  box-shadow: var(--obox-shadow);
  padding: 1.5rem;
  background: var(--obox-card);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}

.gcc-card::before, .design-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:4px;
  background: linear-gradient(90deg, var(--obox-blue), var(--obox-green));
}

.gcc-card:hover, .design-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--obox-shadow-hover);
}

/* Header within card */
.design-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: .75rem;
}
.design-icon i, .design-icon1 i, .design-icon2 i {
  font-size: 2.5rem;
  color: var(--obox-blue);
  display: inline-block;
}
.design-title {
  margin: 0;
  font-weight: 600;
  color: #079af3;
  margin-bottom: .75rem;
}
.design-subtle {
  font-weight: 400;
  color: var(--obox-muted);
  font-size: .9rem;
}
.design-text {
  color: #425466;
  line-height: 1.6;
  margin: 0;
}

/* gif icon */
.gif-icon {
  width: 55px;
  height: auto;
  display: block;
}

/* ==========================
   Banner / overlay
   ========================== */
.banner-overlay { position: relative; overflow: hidden; }
.banner-overlay::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.25); /* subtle overlay to keep text readable */
  z-index: 1;
}
.banner-overlay .container {
  position: relative;
  z-index: 2; /* keeps text above overlay */
}

/* ==========================
   Video container
   ========================== */
.video-container video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ==========================
   Dashed divider for stats
   ========================== */
.border-dashed {
  border-right: 1px dashed #bbb;
}
.row > div:last-child { border-right: none !important; }

/* ==========================
   Grid: stats / custom-grid
   ========================== */
.gcc-stats-container, .container11 {
  background: linear-gradient(135deg, #f0f8ff, #e6f7ff, #ffffff);
  border-radius: 12px;
  padding: 40px;
}

.custom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-collapse: collapse;
  text-align: left;
  gap: 0;
}
.grid-item {
  background: transparent;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  transition: all 0.3s ease;
  padding: 20px;
}
.grid-item:hover {
  background: rgba(6, 154, 243, 0.05);
  transform: translateY(-4px);
}
/* Desktop adjustments */
.grid-item:nth-child(3n) { border-right: none; }
.grid-item:nth-last-child(-n+3) { border-bottom: none; }

/* ==========================
   Info card & theme
   ========================== */
.info-card {
  background: #f5f8ff;
  border-radius: 12px;
  transition: all 0.3s ease;
  padding: 20px;
}
.info-card:hover {
  background: #eaf2ff;
  transform: translateY(-5px);
}

/* ==========================
   Sticky sidebar & nav
   ========================== */
.sticky-nav {
  position: sticky;
  top: 5rem;
  z-index: 99;
}
.sidebar-nav .nav-link {
  color: #5170ff;
  font-weight: 500;
  border-radius: 6px;
  margin-bottom: 0.3rem;
  background: #fff;
  transition: background 0.18s;
}
.sidebar-nav .nav-link.active, .sidebar-nav .nav-link:hover {
  background: #eaf1fe;
  color: #1b1f3b;
}

/* ==========================
   Section styles
   ========================== */
.section-alt {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(31,47,97,0.10);
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
  min-height: 430px;
}
.section-primary {
  background: #5170ff;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(81,112,255,0.16);
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
  min-height: 430px;
}
.section-title { font-weight: 700; font-size: 2rem; margin-bottom: 1.25rem; }
.section-subtitle { font-size: 1.15rem; font-weight: 500; margin-bottom: 1.5rem; }

/* Icon wrap */
.icon-wrap { font-size: 2.5rem; margin-bottom: 0.7rem; color: #5170ff; }
.section-primary .icon-wrap { color: #fff; }

/* ==========================
   Expandable "more-text"
   ========================== */
.more-text { max-height: 0; overflow: hidden; display: block; transition: max-height 0.5s ease; }
.more-text.open { max-height: 1000px; }

/* ==========================
   LTY Section & cards
   ========================== */
.lty-section { position: relative; padding: 60px 0; background: #f9f9f9; }
.main-heading { margin-bottom: 40px; }
.connector-svg { width: 100%; height: 250px; }
.card { background: #fff; border-radius: 12px; padding: 20px; transition: transform 0.3s ease; }
.card:hover { transform: translateY(-8px); }

/* ==========================
   Engagement section & timeline
   ========================== */
.engagement-section { padding: 80px 15px; position: relative; }
.engagement-section h2 { font-size: 2.5rem; text-align: center; margin-bottom: 20px; color: #ff6600; }

/* Timeline vertical line and items */
.timeline-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 95%;
  background: #ddd;
  border-radius: 3px;
}
.timeline-item {
  position: relative;
  margin-bottom: 60px;
  width: 50%;
  padding: 20px 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.timeline-item:hover { transform: translateY(-10px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; text-align: left; }
.timeline-item .number-circle {
  width: 50px; height: 50px; background: var(--obox-blue); color: #fff; font-weight: bold;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  position: absolute; top: 20px; border: 4px solid white; z-index: 1;
}
.timeline-item.left .number-circle { right: -25px; }
.timeline-item.right .number-circle { left: -25px; }
.timeline-item h5 { margin-top: 10px; font-weight: 600; color: #333; }
.timeline-item p { color: #555; }

.timeline-item button {
  background: #9de217; color: #000; border: none; border-radius: 30px; padding: 8px 20px; margin-top: 15px;
  transition: background 0.3s;
}
.timeline-item button:hover { background: #e65c00; }

/* Animation on scroll helpers (kept lightweight) */
.timeline-item { opacity: 0; transform: translateY(50px); transition: all 0.6s ease-out; }
.timeline-item.visible { opacity: 1; transform: translateY(0); }

/* ==========================
   Experts section
   ========================== */
.experts-title { font-weight: 800; letter-spacing:.3px; margin: 40px 0 20px; text-align:left; }
.gcc-experts-row, .experts-row {
  display:flex; gap:24px; flex-wrap:wrap; align-items:flex-start;
  background: var(--obox-bg); padding: 18px 20px;
  position: sticky; top: var(--site-header-h); z-index: 100; background: #fff; margin-top:40px;
}
.gcc-expert-pill, .expert-pill {
  cursor:pointer; border:0; padding:0; display:flex; flex-direction:column; align-items:center;
  width: 32%; padding: 30px 0;
}
.expert-avatar {
  width:110px; height:110px; border-radius:50%; background:#f3f3f3; display:grid; place-items:center; overflow:hidden;
  transition: transform .2s ease, box-shadow .2s ease, outline-color .2s ease;
  outline:4px solid #ccc; box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.expert-avatar img { width:100%; height:100%; object-fit:cover; border-radius:50%; }
.expert-name { margin-top:10px; font-weight:700; font-size:18px; text-align:center; }
.expert-tag { font-size:18px; color:#5f6b60; text-align:center; }
.expert-pill.active .expert-avatar { transform:scale(1.04); outline-color:#f88019; }

/* Expert content panel */
.expert-content { margin-top:50px; background:#fff; border-radius:14px; box-shadow:0 10px 24px rgba(0,0,0,.06); padding:28px; display:none; }
.expert-content.active { display:block; }
.expert-grid { display:grid; grid-template-columns: 240px 1fr; gap:24px; }
.expert-photo { width:100%; aspect-ratio:4/5; border-radius:12px; overflow:hidden; background:#e9e9e9; }
.expert-photo img { width:100%; height:100%; object-fit:cover; }
.expert-body { text-align:left; }
.expert-body h5 { font-weight:800; margin-bottom:8px; }
.expert-body p { margin-bottom:14px; line-height:1.65; }
.expert-body strong { font-weight:700; }

/* ==========================
   Carousel styles (touch-friendly)
   ========================== */
.gcc-carousel-inner, .carousel-inner {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding-bottom: 1rem;
}
.carousel-item, .gcc-carousel-item {
  flex: 0 0 auto;
  width: 300px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.carousel-item:hover { transform: scale(1.05); box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
.carousel-item img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; }
.carousel-item:hover img { transform: scale(1.1); }
.carousel-caption { position: absolute; bottom: 0; background: rgba(0, 0, 0, 0.55); width: 100%; color: white; padding: 10px; }

/* scrollbar styles (subtle) */
.carousel-inner::-webkit-scrollbar { height: 6px; }
.carousel-inner::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.2); border-radius: 10px; }

/* ==========================
   Expert cards (grid)
   ========================== */
.experts-section { padding: 60px 0; }
.expert-card, .gcc-expert-card {
  background: #fff; text-align: center; transition: transform 0.3s, box-shadow 0.3s; border-radius: 16px; padding: 20px 0; position: relative; overflow: hidden;
}
.expert-card img {
  width: 180px; height: 180px; object-fit: cover; border-radius: 50%; padding: 5px; background: linear-gradient(to bottom right, #dbdbdb, #dbdbdb);
  display: block; margin: 0 auto 15px;
}
.expert-img { width: 180px; height: 180px; margin: 0 auto; border-radius: 50%; overflow: hidden; border: 5px solid #dfe9ff; }
.expert-img img { width: 100%; height: 100%; object-fit: cover; }
.expert-card:hover { transform: translateY(-6px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); }
.expert-card:hover img { transform: scale(1.05); background: linear-gradient(to bottom right, #99de17, #0085ff); transition: all 0.3s ease-in-out; }
.expert-name { color: #069af3; font-weight: 700; margin-top: 16px; margin-bottom: 4px; }
.expert-role { color: #6b7b8a; font-size: 14px; }
.expert-icons { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 10px; }
.expert-icons a { font-size: 14px; color: #069af3; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: color 0.2s; }
.expert-icons a:hover { color: #056ab1; }

/* ==========================
   Modal styling
   ========================== */
.modal-content { border-radius: 16px; border: none; overflow: hidden; }
.modal-header { background: linear-gradient(to bottom right, #dbdbdb, #dbdbdb); color: #000; padding: 18px 24px; border-bottom: none; }
.modal-title { font-weight: 700; font-size: 1.3rem; }
.modal-body { padding: 24px; line-height: 1.7; color: #1b2b38; }
.modal-body strong { color: #069af3; }

/* ==========================
   Accessibility helpers
   ========================== */
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ==========================
   Desktop / Large screens (>= 1200px)
   ========================== */
/* (mostly handled by default styles + Bootstrap). No big changes here. */

/* ==========================
   Tablet adjustments (max-width: 992px)
   ========================== */
/* === Tablet Layout Adjustments (max-width: 992px) === */
@media (max-width: 992px) {
  /* Make custom grid 2 columns on tablets */
  .custom-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-item:nth-child(3n) { border-right: 1px solid #ccc; }
  .grid-item:nth-child(2n) { border-right: none; }
  .grid-item:nth-last-child(-n+2) { border-bottom: none; }

  /* Experts row becomes horizontal scroll-friendly */
  .gcc-experts-row, .experts-row {
    gap: 12px;
    padding: 12px 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .gcc-expert-pill, .expert-pill { width: auto; min-width: 180px; padding: 18px; }

  /* Cards & sections get smaller paddings */
  .section-alt, .section-primary { padding: 1.5rem; min-height: unset; }
  .gcc-why-now { padding: 40px 0; }

  /* Timeline: narrow but still two-column feel */
  .timeline-item { width: 80%; left: 10% !important; padding: 18px; }
  .timeline-line { left: 4%; transform: none; height: 100%; }

  /* Carousel: show slightly larger items */
  .carousel-item { width: 260px; }
}

/* ==========================
   Mobile readability (max-width: 768px)
   ========================== */
/* === Mobile Readability Fixes (max-width: 768px) === */
@media (max-width: 768px) {
  /* Typography scaling for mobile readability */
  .section-title { font-size: 1.5rem; }
  .section-subtitle { font-size: 1rem; }
  .gcc-why-now h2 { font-size: 1.6rem; }
  body { font-size: 15px; }

  /* Grid -> single column */
  .custom-grid { grid-template-columns: 1fr; gap: 12px; padding: 0; }
  .grid-item { border-right: none; border-bottom: 1px solid #e6e6e6; border-radius: 10px; padding: 16px; }

  /* Stats container padding reduced */
  .gcc-stats-container, .container11 { padding: 20px; }

  /* Cards: remove hover transforms & heavy shadows on mobile */
  .gcc-card, .design-card { transform: none !important; box-shadow: 0 6px 16px rgba(9,30,66,0.06); }
  .gcc-card:hover, .design-card:hover { transform: none; box-shadow: 0 6px 16px rgba(9,30,66,0.06); }

  /* Timeline: vertical single column */
  .timeline-item, .timeline-item.left, .timeline-item.right {
    width: 100% !important;
    left: 0 !important;
    transform: none;
    text-align: left !important;
    padding-left: 56px;
  }
  .timeline-line { left: 20px; width: 6px; }
  .timeline-item .number-circle { left: -28px !important; top: 12px; }

  /* Experts: stacked */
  .gcc-experts-row, .experts-row {
    position: static; top: unset; margin-top: 10px;
    display: block;
  }
  .gcc-expert-pill, .expert-pill {
    width: 100% !important; display:flex; flex-direction:row; gap:12px; align-items:center; padding: 12px 14px;
    border-radius: 10px; margin-bottom: 10px;
  }
  .expert-avatar { width:72px; height:72px; }
  .expert-name { font-size: 16px; text-align: left; margin: 0; }
  .expert-tag { font-size: 13px; text-align: left; }

  /* Expert grid becomes single column */
  .expert-grid { grid-template-columns: 1fr; gap: 18px; }

  /* Carousel: smaller, touch-first */
  .carousel-item { width: 85%; min-width: 260px; }
  .carousel-caption { font-size: 0.9rem; padding: 8px; }

  /* Buttons centered and full-width-friendly */
  .gcc-why-now .cta-row { justify-content: center; }
  .btn--primary, .btn--link {
    width: auto;
    padding: 12px 18px;
    border-radius: 10px;
  }

  /* Modal body responsive text sizes */
  .modal-body { font-size: 14px; padding: 18px; }

  /* Reduce animations for mobile performance */
  .carousel-item:hover, .expert-card:hover, .card:hover, .timeline-item:hover { transform: none; box-shadow: 0 6px 14px rgba(0,0,0,0.06); }
  .carousel-item img { transition: none; }
  .expert-card img { transition: none; }

  /* Make touch targets larger */
  .btn, .sidebar-nav .nav-link { min-height: 44px; padding: 10px 16px; }

  /* Adjust header spacing */
  .banner-overlay { padding: 24px 12px; }
}

/* ==========================
   Small phones (max-width: 576px)
   ========================== */
/* === Small phone tweaks (max-width: 576px) === */
@media (max-width: 576px) {
  body { font-size: 14px; }
  .section-title { font-size: 1.25rem; }
  .section-subtitle { font-size: 0.98rem; }
  .gcc-why-now { padding: 20px 0; }
  .gcc-stats-container { padding: 14px; }
  .expert-avatar { width: 64px; height: 64px; }
  .expert-name { font-size: 15px; }

  /* Reduce padding for list items */
  .gcc-why-now .why-now-points { padding-left: 14px; font-size: 0.95rem; }

  /* Make timeline number circle smaller */
  .timeline-item .number-circle { width: 40px; height: 40px; font-size: 1rem; left: -22px; }
}

/* ==========================
   Micro interactions (prefers-reduced-motion)
   ========================== */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/*Case study section*/

.case-section {
  background: #f8faff;
  padding: 80px 0;
  text-align: center;
}

.case-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
}

.swiper {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding-bottom: 60px;
}

.swiper-slide {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  padding: 30px;
  text-align: left;
  transition: all 0.5s ease;
  transform: scale(0.85);
  filter: blur(2px);
  opacity: 0.6;
}

.swiper-slide-active {
  transform: scale(1);
  filter: blur(0);
  opacity: 1;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.case-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.case-slide h3 {
  font-size: 1.2rem;
  color: #00a36c;
  margin-bottom: 10px;
}

.case-slide p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 6px;
}

.read-btn {
  display: inline-block;
  background: #069af3;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  Margin-top:15px;
}

.read-btn:hover {
  background: #fff;
  border:1px solid #069af3;
    color: #069af3;
}

.swiper-pagination-bullet {
  background: #00a36c;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}
/* ---------------- MOBILE TAB FIX: SHOW ALL TABS CLEARLY ---------------- */
@media (max-width: 1366px) {

    /* Make tabs visible in 1 row */
    .mob-tabscrollCompil {
        display: flex;
        flex-wrap: wrap !important;
        justify-content: space-between;
        gap: 10px !important;
        overflow: visible !important;
    }

    /* Each tab takes equal width */
    .mob-tabscrollCompil .nav-item {
        flex: 1 1 30%;
        max-width: 32%;
    }

    /* Tab button styling */
    .mob-tabscrollCompil .nav-link {
        padding: 10px !important;
        font-size: 13px !important;
        text-align: center !important;
        white-space: normal !important;
        line-height: 1.2 !important;
        min-height: 60px;
    }

    /* HIDE SUB-TEXT under each tab */
    .mob-tabscrollCompil .nav-link p {
        display: none !important;
    }

    /* Ensure titles remain visible */
    .mob-tabscrollCompil .nav-link div {
        font-size: 14px !important;
        font-weight: 600 !important;
    }

}



/* === FIX: Success Stories image cut issue on mobile === */
@media (max-width: 768px) {

  .case-slide img {
      width: 100%;
      height: auto !important;   /* REMOVE fixed height */
      object-fit: contain !important;  /* Prevents cropping */
      border-radius: 12px;
  }

  /* Reduce card padding for mobile */
  .swiper-slide.case-slide {
      padding: 20px !important;
  }

  /* Fix Swiper scaling issue for mobile */
  .swiper-slide {
      transform: scale(1) !important;
      filter: none !important;
      opacity: 1 !important;
  }

  /* Disable center-zoom behavior on small screens */
  .swiper-slide-active {
      transform: scale(1) !important;
      box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  }

}



/* ==========================
   End of stylesheet
   ========================== */
