/* ═══════════════════════════════════════
   HOME PAGE — PAGE-SPECIFIC STYLES
   Imports shared: style.css
═══════════════════════════════════════ */

/* ═══════════════════════════════════════
   HOME HERO
═══════════════════════════════════════ */

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
  background-image: url(./images/home-contact-us.jpg);
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.hero-wrap {
  position: relative;
  z-index: 3;
}

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(48px, 8vw, 95px);
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
  margin: 40px 0 30px;
  line-height: .95;
  text-align: center;
}

.hero-title span { color: #c05fff; }

.hero-bottom {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  align-items: flex-end;
}

.hero-left {width: 60%; margin:0 auto; }

.hero-left p {
  color: rgba(255,255,255,.95);
  font-size: 16px;
  margin: 0;
  font-family: var(--font-b);
  text-align: center;
}

.home-cta{ display: flex; align-items: center; gap: 14px; flex-wrap: wrap;justify-content: center;
    margin-top: 30px;}


/* ═══════════════════════════════════════
   FEATURED STRIP
═══════════════════════════════════════ */

.featured-strip {
  background: #fff;
  padding: 20px 30px 28px;
}

.featured-title {
  text-align: center;
  font-size: 13px;
  color: #444;
  margin-bottom: 18px;
  font-family: var(--font-b);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-card {
display: flex;
    align-items: center;
    gap: 12px;
    transition: .3s ease;
}
.f-thumb img{max-width: 80%;}
.f-number { font-size: 11px; color: #777; min-width: 35px; }
.f-text   { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.3; }

/* ═══════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════ */

.about-sec {
  color: #000;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background-color: #e5e5f7;
    background-image: linear-gradient(45deg, #000005 1%, #ffffff 5%);
    background-size: 10px 10px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: center;
}

.about-content h1, .about-content h2, .about-content h3, .about-content h4, .about-content h5, .about-content h6 {
  font-family: var(--font-d);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.15;
  margin-bottom: 35px;
  max-width: 700px;
  font-weight: 600;
}

.about-content p {
  color: #000;
  font-size: 16px;
  margin-bottom: 22px;
  max-width: 700px;
}

.about-image img { width: 100%; display: block; object-fit: cover; }

/* ═══════════════════════════════════════
   HOME STATS
═══════════════════════════════════════ */

.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.home-stats-card {
  height: 240px;
  overflow: hidden;
  background: #fff;
}

.home-stats-card.content-card {
  padding: 35px 22px;
  display: flex;
  flex-direction: column;
  justify-content: top;
  border: 1px solid #fff;
  min-height: 400px;
}

.content-card h2 { font-size: 75px; line-height: 1; margin-bottom: 18px; font-weight: 600; color: #ffffff; }
.content-card p  { color: #fff;  font-size: 14px; }
.content-card span, .content-card h4{font-size: 18px;margin-bottom: 10px;color: #fff;text-decoration: underline;}

.home-stats-card {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .5s;
    background-image: linear-gradient(45deg, #ffffff 3%, #2563eb 5%);
    background-size: 10px 10px;
}

/* ══════════════════════════════════════════
       OUR EXPERTISE SECTION
    ══════════════════════════════════════════ */
 
    .expertise-sec {
      background: #fff;
    }
 
 .expertise-wrap{margin: 0 auto;
    padding: 0px 40px;
    width: 90%;}


    /* ── Header row: heading left, subtitle right ── */
    .expertise-header {
      width: 90%;
      margin: 0 auto;
      padding: 0px 40px 40px;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 60px;
    }
 
    .expertise-heading {
     font-family: var(--font-d);
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.15;
    max-width: 700px;
    font-weight: 600;
    }
 
    .expertise-header p {
      color: #000;
    font-size: 16px;
    max-width: 500px;
    }
 
    /* ── Tab Navigation ── */
    .expertise-tab-nav {
      display: flex;
      overflow-x: auto;
      scrollbar-width: none;
      justify-content: center;
    background: #2563eb;
    }
 
    .expertise-tab-nav::-webkit-scrollbar { display: none; }
 
    .etab-btn {
      min-width: 140px;
      padding: 18px 90px;
      font-family: 'Manrope', sans-serif;
      font-size: 15px;
      font-weight: 600;
      color: #000;
      background: #2563eb;
      border: none;
      border-top: 1px solid #000;
      cursor: pointer;
      transition: color .2s;
      white-space: nowrap;
      text-align: center;
      position: relative;
      border-right: 1px solid #000;
    }
 
    .etab-btn:last-child { border-right: none; }
    .etab-btn:hover { color: #000;background: #fff; }
 
    .etab-btn.active { color: #000;background: #fff; }
 
    .etab-btn.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: #f7f3ff;
    }
 
    .expertise-panel-wrap {
      background: #000;
    }
 
    .etab-panel {
      display: none;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 80px 40px;
    width: 90%;
    margin: 0 auto;
    min-height: 420px;
    }
 
    .etab-panel.active { display: grid; }
 
    /* ── Panel Left: Text ── */
    .expertise-panel-wrap h3 {
      font-family: 'Manrope', sans-serif;
      font-size: clamp(24px, 2.6vw, 36px);
      font-weight: 600;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 18px;
    }
 
    .expertise-panel-wrap p {
      font-size: 15px;
      color: #fff;
      line-height: 1.8;
      margin-bottom: 28px;
      max-width: 400px;
    }
 
    .expertise-panel-wrap ul {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding-left: 0;
    }
 
    .expertise-panel-wrap ul li {
      font-size: 14px;
      color: #fff;
      line-height: 1.6;
      padding-left: 18px;
      position: relative;
    }
 
    .expertise-panel-wrap ul li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 8px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #fff;
    }
 
    .etab-image {
      border-radius: 5px;
      overflow: hidden;
      aspect-ratio: 4/3;
      background: #222;
    }
 
    .etab-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: grayscale(20%);
      transition: filter .4s;
    }
 
    .etab-panel:hover .etab-image img { filter: grayscale(0%); }

    /* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
 
    @media (max-width: 1024px) {
      .etab-panel {padding: 80px 35px;}
    }
 
    @media (max-width: 992px) {
      .expertise-header { flex-direction: column; gap: 16px; }
      .expertise-header p { max-width: 100%; }
      .etab-btn { min-width: 110px; font-size: 13px; padding: 15px 16px; }
      .etab-panel { grid-template-columns: 1fr; padding: 40px 30px; min-height: auto; }
      .etab-image { aspect-ratio: 16/9; }
    }
 
    @media (max-width: 768px) {
      .expertise-header { padding: 40px 20px 30px; }
      .expertise-heading { font-size: 42px; }
      .etab-btn { min-width: 90px; font-size: 12px; padding: 13px 12px; }
      .etab-panel { padding: 32px 20px; gap: 28px; }
      .expertise-panel-wrap h3 { font-size: 24px; }
      .expertise-panel-wrap p { font-size: 14px; }
    }
 
    @media (max-width: 480px) {
      .expertise-heading { font-size: 36px; letter-spacing: -1px; }
      .etab-btn { min-width: 80px; font-size: 11px; padding: 12px 10px; }
    }


/* ═══════════════════════════════════════
   HOME PROCESS SECTION
═══════════════════════════════════════ */

.home-process-sec {
  background: #fff;
}

.process-top {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 60px;
  align-items: flex-start;
}

.process-heading { max-width: 700px; }

.process-heading h2 {
  font-family: var(--font-d);
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.15;
    max-width: 700px;
    font-weight: 600;
}

.process-content { max-width: 380px; }
.process-content p {color: #000;
    font-size: 16px; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card { display: flex; flex-direction: column; gap: 12px; }

.process-top-box {
  background: #fff;
  border: 1px solid #ddd;
  height: 90px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.process-top-box span { font-size: 42px; font-weight: 500; color: #111; }

.process-thumb-01{width: 120px;
    height: 70px;background-color: #E5E5F7;
background-image: radial-gradient(#444CF7 1px, #ffffff 1px);
background-size: 10px 10px;}
.process-thumb-02{width: 120px;
    height: 70px;background-color: #ffffff;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 19px, #444CF7 19px, #444CF7 20px, transparent 20px, transparent 39px, #444CF7 39px, #444CF7 40px), repeating-linear-gradient(90deg, transparent, transparent 19px, #444CF7 19px, #444CF7 20px, transparent 20px, transparent 39px, #444CF7 39px, #444CF7 40px), radial-gradient(circle at 20px 20px, #444CF7 1.6px, transparent 2.1px), radial-gradient(circle at 0px 0px, #444CF7 1.2px, transparent 1.7px), radial-gradient(circle at 40px 0px, #444CF7 1.2px, transparent 1.7px), radial-gradient(circle at 0px 40px, #444CF7 1.2px, transparent 1.7px), radial-gradient(circle at 40px 40px, #444CF7 1.2px, transparent 1.7px);
    background-size: 40px 40px;}
.process-thumb-03{width: 120px;
    height: 70px;background-color: #ffffff;
background-image: linear-gradient(135deg, #444CF7 25%, transparent 25%), linear-gradient(225deg, #444CF7 25%, transparent 25%), linear-gradient(315deg, #444CF7 25%, transparent 25%), linear-gradient(45deg, #444CF7 25%, transparent 25%);
background-size: 20px 20px;
background-position: -10px 0, -10px 0, 0 0, 0 0;}
.process-thumb-04{width: 120px;
    height: 70px;background-color: #E5E5F7;
background-image:  linear-gradient(30deg, #444CF7 12%, transparent 12.5%, transparent 87%, #444CF7 87.5%, #444CF7), linear-gradient(150deg, #444CF7 12%, transparent 12.5%, transparent 87%, #444CF7 87.5%, #444CF7), linear-gradient(30deg, #444CF7 12%, transparent 12.5%, transparent 87%, #444CF7 87.5%, #444CF7), linear-gradient(150deg, #444CF7 12%, transparent 12.5%, transparent 87%, #444CF7 87.5%, #444CF7), linear-gradient(60deg, #444CF777 25%, transparent 25.5%, transparent 75%, #444CF777 75%, #444CF777), linear-gradient(60deg, #444CF777 25%, transparent 25.5%, transparent 75%, #444CF777 75%, #444CF777);
background-size: 20px 35px;
background-position: 0 0, 0 0, 10px 18px, 10px 18px, 0 0, 10px 18px;}

.process-content-box-01 {
background-color: #E5E5F7;
    background-image: radial-gradient(#c8caff 1px, #ffffff 1px);
    background-size: 10px 10px;
    padding: 20px;
    min-height: 320px;
}
.process-content-box-02 {
background-color: #ffffff;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 19px, #f0f1ff 19px, #f0f1ff 20px, transparent 20px, transparent 39px, #f0f1ff 39px, #f0f1ff 40px), repeating-linear-gradient(90deg, transparent, transparent 19px, #f0f1ff 19px, #f0f1ff 20px, transparent 20px, transparent 39px, #f0f1ff 39px, #f0f1ff 40px), radial-gradient(circle at 20px 20px, #f0f1ff 1.6px, transparent 2.1px), radial-gradient(circle at 0px 0px, #f0f1ff 1.2px, transparent 1.7px), radial-gradient(circle at 40px 0px, #f0f1ff 1.2px, transparent 1.7px), radial-gradient(circle at 0px 40px, #f0f1ff 1.2px, transparent 1.7px), radial-gradient(circle at 40px 40px, #f0f1ff 1.2px, transparent 1.7px);
    background-size: 40px 40px;
    padding: 20px;
    min-height: 320px;
}
.process-content-box-03 {
  padding: 20px;
    min-height: 320px;
background-image: linear-gradient(135deg, #f0f1ff 25%, transparent 25%), linear-gradient(225deg, #f0f1ff 25%, transparent 25%), linear-gradient(315deg, #f0f1ff 25%, transparent 25%), linear-gradient(45deg, #f0f1ff 25%, transparent 25%);
    background-size: 20px 20px;
    background-position: -10px 0, -10px 0, 0 0, 0 0;
}
.process-content-box-04 {
  padding: 20px;
    min-height: 320px;
background-image: linear-gradient(30deg, #f0f1ff 12%, transparent 12.5%, transparent 87%, #f0f1ff 87.5%, #f0f1ff), linear-gradient(150deg, #f0f1ff 12%, transparent 12.5%, transparent 87%, #f0f1ff 87.5%, #f0f1ff), linear-gradient(30deg, #f0f1ff 12%, transparent 12.5%, transparent 87%, #f0f1ff 87.5%, #f0f1ff), linear-gradient(150deg, #f0f1ff 12%, transparent 12.5%, transparent 87%, #f0f1ff 87.5%, #f0f1ff), linear-gradient(60deg, #f0f1ff 25%, transparent 25.5%, transparent 75%, #f0f1ff 75%, #f0f1ff), linear-gradient(60deg, #f0f1ff 25%, transparent 25.5%, transparent 75%, #f0f1ff 75%, #f0f1ff);
    background-size: 20px 35px;
    background-position: 0 0, 0 0, 10px 18px, 10px 18px, 0 0, 10px 18px;
}

.process-content-box h3 {font-size: 18px;
    margin-bottom: 20px;
    color: var(--blue); }
.process-content-box p{font-size: 16px;}

.process-card:hover .process-content-box { transform: translateY(-8px); transition: .35s ease; }

/* ═══════════════════════════════════════
   HOME SERVICES LIST
═══════════════════════════════════════ */

.services-list-sec {
  background-image: linear-gradient(45deg, #000005 1%, #ffffff 5%);
    background-size: 10px 10px;
    padding-top: 60px;
}

.service-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  margin-bottom: 80px;
  align-items: center;
}

.service-image { height: 260px; overflow: hidden; border-radius: 8px; }

.service-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.service-content { width: 100%; }

.service-top {
  display: flex;
  gap: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
  margin-bottom: 25px;
}

.service-top span  { font-size: 13px; color: var(--blue); letter-spacing: 1px; font-weight: 600;}
.service-top small { color: var(--blue); font-weight: 600;}

.service-main {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
}

.service-left {
  padding-right: 40px;
  border-right: 1px solid #000;
}

.service-left h3 { font-size: clamp(28px, 3vw, 48px); line-height: 1; margin-bottom: 20px; font-weight: 500; color: #333; }
.service-left p  { margin-bottom: 25px; max-width: 500px; }

.service-left p a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: underline;
  position: relative;
}

.service-left p a::after {
  display: none;
}

.service-left a { color: #111; text-decoration: none; position: relative; }
.service-left a::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px; background: #111; }

.services-list-sec ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: flex-start;
}

.services-list-sec ul li {
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 30px;
  font-weight: 600;
}

/* ═══════════════════════════════════════
   OUR APPROACH SECTION
═══════════════════════════════════════ */
/*
.approach-sec {
  background: #f5f5f5;
  padding: 120px 0;
}

.approach-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

.approach-img img { width: 100%; height: 300px; object-fit: cover; display: block; }

.approach-content h2 { font-size: clamp(32px, 3.5vw, 52px); line-height: 1; margin-bottom: 25px; color: #111; max-width: 420px; }
.approach-content p  { color: #555; line-height: 1.8; max-width: 420px; }

.approach-list { background: #000; padding: 35px; }
.approach-list ul { margin: 0; padding: 0; list-style: none; }

.approach-list li {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
  padding-left: 20px;
  position: relative;
}

.approach-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 8px;
}

.approach-list li:last-child { margin-bottom: 0; }
*/
/* ═══════════════════════════════════════
   INDUSTRY HOVER LIST
═══════════════════════════════════════ */

/*.industry-sec {
  background: #f5f5f5;
}

.industry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.industry-header h2 { font-size: clamp(36px, 4vw, 58px); margin: 0; }

.industry-btn {
  padding: 12px 24px;
  border-radius: 50px;
  background: #ececec;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px;
}

.industry-item { border-top: 1px solid #d8d8d8; padding: 20px 0; }

.industry-title {
 font-size: 30px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    transition: .35s ease;
    cursor: pointer;
}

.industry-preview {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all .45s ease;
  background: #000;
  border-radius: 24px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: center;
}

.industry-item:hover .industry-title  { color: #111; }
.industry-item:hover .industry-preview { max-height: 500px; opacity: 1; margin-top: 25px; padding: 40px; }

.industry-content span { color: #888; display: block; margin-bottom: 20px; }
.industry-content p    { color: #fff; font-size: 16px; line-height: 1.6; max-width: 650px; }

.industry-image img { width: 100%; object-fit: cover; border-radius: 18px; display: block; }*/

/* ═══════════════════════════════════════
   EMIRATES SECTION
═══════════════════════════════════════ */

.emirates-sec {
  background-color: #e5e5f7;
    background-image: linear-gradient(45deg, #000005 1%, #ffffff 5%);
    background-size: 10px 10px;
}

.emirates-head { text-align: center; max-width: 900px; margin: 0 auto 70px; }
.emirates-head h2 { font-size: clamp(32px, 4vw, 56px); font-weight: 700; color: #000; margin-bottom: 20px; }
.emirates-head p  { font-size: 18px; }

.emirates-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.emirate-card { background: #f7f3ff; transition: .4s ease; overflow: hidden; border-right: 1px solid #fff;}
.emirate-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,.08); }

.emirate-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.emirate-content { padding: 23px 13px; }
.emirate-content h3 { font-size: 18px; line-height: 1.4; margin-bottom: 15px; color: #111; }
.emirate-content p  { color: #777; font-size: 12px; }

/* ═══════════════════════════════════════
   RESPONSIVE — 1200px
═══════════════════════════════════════ */

@media (max-width: 1200px) {
  .emirates-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid  { grid-template-columns: repeat(2, 1fr); }
  .process-heading h2 { font-size: 56px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 992px / 991px
═══════════════════════════════════════ */

@media (max-width: 992px) {
  .hero-title { font-size: 60px; margin-bottom: 30px; }

  .hero-bottom { flex-direction: column; gap: 30px; align-items: flex-start; }

  .featured-grid { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-title { font-size: 42px; }

  .home-stats-grid { grid-template-columns: repeat(2, 1fr); }

  .process-top { flex-direction: column; gap: 30px; }

  .service-row { grid-template-columns: 1fr; }
  .service-main { grid-template-columns: 1fr; }
  .service-left { border-right: none; padding-right: 0; }

  .approach-row { grid-template-columns: 1fr; gap: 30px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 768px
═══════════════════════════════════════ */

@media (max-width: 768px) {
  .home-hero { min-height: auto; padding: 80px 0; }
  .hero-title { font-size: 42px; }

  .hero-bottom { flex-direction: column; gap: 24px; align-items: flex-start; }

  .home-hero-ctas { flex-direction: column; width: 100%; }
  .home-btn-primary,
  .home-btn-secondary { width: 100%; justify-content: center; }

  .featured-grid { grid-template-columns: 1fr; }

  .about-sec { padding: 70px 0; }
  .about-title { font-size: 30px; }

  .home-stats-grid { grid-template-columns: 1fr; }
  .home-stats-card  { height: 280px; }

  .home-process-sec { padding: 70px 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-heading h2 { font-size: 40px; }

  .services-list-sec { padding: 70px 0; }
  .service-left h3 { font-size: 30px; }

  .industry-sec { padding: 70px 0; }
  .industry-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .industry-title { font-size: 30px; }
  .industry-preview { grid-template-columns: 1fr; }

  .emirates-sec { padding: 70px 0; }
  .emirates-grid { grid-template-columns: 1fr 1fr; }
  .emirates-head h2 { font-size: 32px; }
  .emirates-head p  { font-size: 17px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 480px
═══════════════════════════════════════ */

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }

  .about-title { font-size: 26px; }

  .content-card h2 { font-size: 52px; }
  .content-card p  { font-size: 15px; }

  .emirates-grid { grid-template-columns: 1fr; }
  .emirate-card img { height: 200px; }
}

/* ═══════════════════════════════════════
   PROJECT SHOWCASE CARDS
═══════════════════════════════════════ */
 
.showcase-sec {
  background: #fff;
  padding: 60px 40px;
  background-image: linear-gradient(45deg, #000005 1%, #ffffff 5%);
    background-size: 10px 10px;
}
 
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
 
.showcase-title {
  font-family: var(--font-d);
  font-size: 24px;
  font-weight: 600;
  color: #111;
  margin-bottom: 16px;
  text-transform: uppercase;
}
 
.showcase-img-wrap {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
 
.showcase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

  .showcase-header {
margin: 0 auto;
    padding: 0px 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    }

    .showcase-wrap{padding: 0px 40px !important;}
 
    .showcase-heading {
     font-family: var(--font-d);
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.15;
    max-width: 700px;
    font-weight: 600;
    }
 
    .showcase-header p {
      color: #000;
    font-size: 16px;
    max-width: 500px;
    }
 
/* Dark gradient overlay at the bottom for caption legibility */
.showcase-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px 28px 24px;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.25) 55%, transparent 100%);
}
 
.showcase-caption {
  font-size: 11px;
    font-weight: 500;
    color: #fff;
    line-height: 1.6;
    width: 480px;
    text-align: center;
    margin: 0 auto;
    display: none;
}
 
/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
 
@media (max-width: 992px) {
  .showcase-grid { grid-template-columns: 1fr; gap: 40px; }
}
 
@media (max-width: 768px) {
  .showcase-sec { padding: 40px 0; }
  .showcase-title { font-size: 20px; }
  .showcase-overlay { padding: 24px 20px 18px; }
  .showcase-caption { font-size: 14px; }
}