/*about us page*/

@media (max-width: 768px) {
  .col-lg-6 .subtitle{
      text-align:center !important;
    font-size: 16px;

  }
  /* ===================== */
/* SUBTITLE CENTER */
/* ===================== */
.subtitle {
  text-align: center;
}

/* ===================== */
/* TITLE TOP SPACING */
/* ===================== */
h2 {
  padding-top: 10px; /* adjust value if needed */
}

  .col-lg-6 p {
    text-align:justify !important;
    font-size: 16px;
  }
    .col-lg-6{
      margin-top: 50px;
    }

  .col-lg-6 .relative {
    text-align: center !important;
  }

    section {
    padding-bottom: 20px !important;
    margin-top: ;
  }
}
@media (max-width: 767px) {
  .subtitle {
    text-align: center;
  }

  h2 {
    padding-top: 10px;
  }
  /* Force center alignment */
.subtitle {
  display: block;
  width: 100%;
  text-align: center !important;
}

/* If still not working, target inside this section */
section .subtitle {
  text-align: center !important;
padding-top: 40px;

}
}


/* ===================== */
/* TABLET (768px–1024px) */
/* ===================== */
@media (min-width: 768px) and (max-width: 1024px) {

  /* keep side-by-side */
  .row.align-items-center {
    flex-wrap: nowrap;
  }

  /* text only */
  h2 {
    font-size: 36px;
  }

  p {
    font-size: 15px;
  }
}


/* ===================== */
/* MOBILE (<768px) */
/* ===================== */
@media (max-width: 767px) {

  /* stack layout */
  .row.align-items-center {
    flex-direction: column;
  }

  /* text alignment only */
  .subtitle,
  h2 {
    text-align: center;
  }

  h2 {
    font-size: 26px;
  }

  p {
    font-size: 14px;
    text-align: justify;
  }

  /* spacing */
  .spacer-double {
    height: 40px;
  }
}


/* ===================== */
/* SMALL MOBILE (<480px) */
/* ===================== */
@media (max-width: 480px) {

  h2 {
    font-size: 26px;
  }

  p {
    font-size: 13px;
  }
}
/* ===================== */
/* TABLET (768px–1024px) */
/* ===================== */
@media (min-width: 768px) and (max-width: 1024px) {

  /* 🔥 FIX: allow wrapping so content is visible */
  .row.align-items-center {
    flex-wrap: wrap !important;
  }
    .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ensure both columns take full width if needed */
  .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* subtitle center */
  .subtitle {
    text-align: center;
    padding-top: 30px;
    width: 100%;
  }

  /* title spacing */
  h2 {
    padding-top: 15px;
    text-align: center;
  }
}

     /* ════════ SECTION ════════ */
    .clients-section {
      padding: 80px 20px 60px 20px;
      text-align: center;
      background: #f9fafb;
    }
 
    .clients-label::before,
    .clients-label::after {
      content: '';
      display: block;
      width: 48px;
      height: 2.5px;
      background: var(--green);
      border-radius: 2px;
    }
 
    /* Title */

 
    /* ════════ CAROUSEL ════════ */
    .carousel-outer {
      position: relative;
      max-width: 1100px;
      margin: 0 auto 52px;
      display: flex;
      align-items: center;
    }
 
    .arrow-btn {
      flex-shrink: 0;
      width: 48px; height: 48px;
      border-radius: 50%;
      border: none;
      background: var(--green);
      color: var(--white);
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(46,125,50,.3);
      transition: background .25s, transform .2s;
      z-index: 2;
    }
    .arrow-btn:hover { background: #1e8042; transform: scale(1.08); }
    .arrow-btn svg   { width: 20px; height: 20px; }
 
    .carousel-track-wrap {
      flex: 1;
      overflow: hidden;
      margin: 0 20px;
    }
 
    .carousel-track {
      display: flex;
      align-items: center;
      transition: transform .45s cubic-bezier(.4,0,.2,1);
    }
 
    /* ════════ LOGO SLIDE ════════ */
    .logo-slide {
      flex-shrink: 0;
      padding: 10px 30px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
 
    .logo-slide img {
      max-height: 70px;
      max-width: 150px;
      width: auto;
      height: auto;
      object-fit: contain;
      display: block;
      transition: transform .3s;
    }
    .logo-slide img:hover {
      transform: scale(1.08);
    }
 
    /* ════════ VIEW MORE ════════ */
    .view-more-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 36px;
      border: 2px solid var(--green);
      border-radius: 50px;
      background: transparent;
      color: var(--green);
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      text-decoration: none;
      transition: background .3s, color .3s, transform .2s, box-shadow .3s;
    }
    .view-more-btn:hover {
      background: var(--green);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(46,125,50,.25);
    }
    .view-more-btn svg { width: 18px; height: 18px; transition: transform .3s; }
    .view-more-btn:hover svg { transform: translateX(4px); }
 
    /* ════════ RESPONSIVE ════════ */
    @media (max-width: 900px) { .logo-slide { padding: 10px 20px; } }
    @media (max-width: 650px) {
      .arrow-btn { width: 38px; height: 38px; }
      .carousel-track-wrap { margin: 0 10px; }
      .logo-slide { padding: 8px 14px; }
      .logo-slide img { max-height: 52px; max-width: 110px; }
    }

    .arrow-btn:hover svg {
  stroke: #ffffff;
}

/* ════════ RESPONSIVE ════════ */

/* Mobile Heading Font Size */
@media (max-width: 650px) {
  .clients-section h2 {
    font-size: 26px;
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  .clients-section h2 {
    font-size: 26px; /* keeping same for extra small screens */
  }
}
/* Tablet Heading Font Size */
@media (max-width: 900px) {
  .clients-section h2 {
    font-size: 36px;
  }
}

/* Mobile Heading Font Size */
@media (max-width: 650px) {
  .clients-section h2 {
    font-size: 26px;
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  .clients-section h2 {
    font-size: 26px; /* same as mobile */
  }
}
/* Tablet */
@media (max-width: 900px) {
  .carousel-outer { max-width: 100%; margin-bottom: 40px; }
  .arrow-btn { width: 42px; height: 42px; }
  .arrow-btn svg { width: 18px; height: 18px; }
  .carousel-track-wrap { margin: 0 15px; }
  .logo-slide { padding: 10px 18px; }
  .logo-slide img { max-height: 60px; max-width: 130px; }
  .view-more-btn { padding: 12px 30px; font-size: 14px; }
}

/* Mobile */
@media (max-width: 650px) {
  .arrow-btn { width: 38px; height: 38px; }
  .arrow-btn svg { width: 16px; height: 16px; }
  .carousel-track-wrap { margin: 0 10px; }
  .logo-slide { padding: 8px 12px; }
  .logo-slide img { max-height: 50px; max-width: 100px; }
  .view-more-btn { padding: 10px 24px; font-size: 13px; gap: 8px; }
}

/* Small Mobile / Extra Small Screens */
@media (max-width: 480px) {
  .clients-section { padding: 60px 10px 40px 10px; }
  .arrow-btn { width: 32px; height: 32px; }
  .arrow-btn svg { width: 14px; height: 14px; }
  .carousel-track-wrap { margin: 0 5px; }
  .logo-slide { padding: 6px 8px; }
  .logo-slide img { max-height: 40px; max-width: 80px; }
  .view-more-btn { padding: 8px 20px; font-size: 12px; gap: 6px; }
}
  
    /*why chennai*/
         /* ── INNER WRAPPER ── */
    #srvSection .sw {
      max-width: 1400px !important;
      margin: 0 auto !important;
      padding: 90px 40px !important;
    }
 
    /* ── HEADER ── */
    #srvSection .sh {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      text-align: center !important;
      margin-bottom: 56px !important;
    }
    #srvSection .sl {
      display: inline-flex !important;
      align-items: center !important;
      gap: 10px !important;
      font-size: 12px !important;
      font-weight: 700 !important;
      letter-spacing: 2.5px !important;
      text-transform: uppercase !important;
      color: #2e9e4f !important;
      margin-bottom: 16px !important;
    }
    #srvSection .sl::before,
    #srvSection .sl::after {
      content: '' !important;
      display: inline-block !important;
      width: 22px !important;
      height: 2px !important;
      background: #2e9e4f !important;
      flex-shrink: 0 !important;
    }
  
    #srvSection .stitle span {
      color: #2e9e4f !important;
    }
    #srvSection .sp {
      font-size: 16px !important;
      line-height: 1.8 !important;
      color: #6b7280 !important;
      max-width: 620px !important;
    }
 
    /* ── SLIDER ── */
    #srvSection .sslider {
      position: relative !important;
    }
    #srvSection .sovf {
      overflow: hidden !important;
      border-radius: 22px !important;
    }
    #srvSection .strk {
      display: flex !important;
      gap: 24px !important;
      transition: transform 0.55s cubic-bezier(0.4,0,0.2,1) !important;
      will-change: transform !important;
    }
 
    /* ── CARD ── */
    #srvSection .sc {
      flex: 0 0 calc((100% - 72px) / 4) !important;
      min-width: 0 !important;
      border-radius: 22px !important;
      background: #ffffff !important;
      position: relative !important;
      overflow: hidden !important;
      display: flex !important;
      flex-direction: column !important;
      cursor: pointer !important;
      min-height: 360px !important;
      box-shadow: 0 0 20px rgba(0,0,0,0.15) !important;
      transition: box-shadow 0.3s ease !important;
    }
 
    /* image bg */
    #srvSection .sci {
      position: absolute !important;
      top: 0 !important; left: 0 !important;
      right: 0 !important; bottom: 0 !important;
      background-size: cover !important;
      background-position: center !important;
      opacity: 0 !important;
      transform: scale(1.07) !important;
      transition: opacity 0.5s ease, transform 0.55s ease !important;
      z-index: 1 !important;
    }
    #srvSection .sci::after {
      content: '' !important;
      position: absolute !important;
      inset: 0 !important;
      background: linear-gradient(to bottom, rgba(8,24,14,0.25) 0%, rgba(8,24,14,0.68) 50%, rgba(8,24,14,0.93) 100%) !important;
    }
 
    /* card body (default) */
    #srvSection .scb {
      position: relative !important;
      z-index: 2 !important;
      padding: 32px 26px 24px !important;
      display: flex !important;
      flex-direction: column !important;
      gap: 14px !important;
      flex: 1 !important;
      transition: opacity 0.4s ease, transform 0.4s ease !important;
    }
 
    /* hover overlay */
    #srvSection .sco {
      position: absolute !important;
      top: 0 !important; left: 0 !important;
      right: 0 !important; bottom: 0 !important;
      z-index: 3 !important;
      padding: 28px 26px !important;
      display: flex !important;
      flex-direction: column !important;
      justify-content: flex-end !important;
      gap: 10px !important;
      opacity: 0 !important;
      transform: translateY(16px) !important;
      transition: opacity 0.45s ease, transform 0.45s ease !important;
      pointer-events: none !important;
    }
 
    /* hover state */
    #srvSection .sc:hover {
      box-shadow: 0 20px 50px rgba(0,0,0,0.22) !important;
    }
    #srvSection .sc:hover .sci {
      opacity: 1 !important;
      transform: scale(1) !important;
    }
    #srvSection .sc:hover .scb {
      opacity: 0 !important;
      transform: translateY(-10px) !important;
    }
    #srvSection .sc:hover .sco {
      opacity: 1 !important;
      transform: translateY(0) !important;
      pointer-events: auto !important;
    }
 
    /* icon box */
    #srvSection .sib {
      width: 66px !important;
      height: 66px !important;
      border-radius: 14px !important;
      border: 1.5px solid #c8e6c9 !important;
      background: #e8f5e9 !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      flex-shrink: 0 !important;
    }
    /* img inside icon box — no CSS can touch its src rendering */
    #srvSection .sib img {
      width: 30px !important;
      height: 30px !important;
      display: block !important;
      object-fit: contain !important;
      border: none !important;
      background: none !important;
      box-shadow: none !important;
    }
 
    /* card text */
    #srvSection .sct {
      font-size: 20px !important;
      font-weight: 600 !important;
      color: #111827 !important;
      line-height: 1.3 !important;
      font-family: inter tight;
    }
    #srvSection .scd {
      font-size: 16px !important;
      line-height: 1.75 !important;
      color: #6b7280 !important;
      flex: 1 !important;
    }
 
    /* green bottom bar */
    #srvSection .sbar {
      height: 3px !important;
      background: #e0ebe0 !important;
      border-radius: 0 0 22px 22px !important;
      position: relative !important;
      overflow: hidden !important;
      flex-shrink: 0 !important;
    }
    #srvSection .sbar::after {
      content: '' !important;
      position: absolute !important;
      left: 0 !important; top: 0 !important; bottom: 0 !important;
      width: 0 !important;
      background: #2e9e4f !important;
      transition: width 0.4s ease !important;
    }
    #srvSection .sc:hover .sbar::after {
      width: 100% !important;
    }
 
    /* overlay text */
    #srvSection .sotag {
      font-size: 11px !important;
      font-weight: 700 !important;
      letter-spacing: 2px !important;
      text-transform: uppercase !important;
      color: rgb(30, 128, 66) !important;
      display: block !important;
    }
    #srvSection .sot {
      font-size: 19px !important;
      font-weight: 800 !important;
      color: #ffffff !important;
      line-height: 1.25 !important;
      font: inter tight;
      display: block !important;
    }
    #srvSection .sod {
      font-size: 16px !important;
      line-height: 1.7 !important;
      color: rgba(255,255,255,0.78) !important;
      display: block !important;
    }
    #srvSection .sol {
      display: inline-flex !important;
      align-items: center !important;
      gap: 8px !important;
      font-size: 13px !important;
      font-weight: 700 !important;
      color: #4ade80 !important;
      text-decoration: none !important;
      margin-top: 4px !important;
      transition: gap 0.2s !important;
    }
    #srvSection .sol:hover {
      gap: 13px !important;
    }
    #srvSection .sol img {
      width: 14px !important;
      height: 14px !important;
      display: block !important;
      flex-shrink: 0 !important;
    }
 
    /* deco blob */
    #srvSection .sdeco {
      position: absolute !important;
      bottom: -28px !important; right: -28px !important;
      width: 100px !important; height: 100px !important;
      border-radius: 50% !important;
      background: rgba(46,158,79,0.07) !important;
      pointer-events: none !important;
      z-index: 0 !important;
    }
 
    /* ── CONTROLS ── */
    #srvSection .sctrl {
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 18px !important;
      margin-top: 40px !important;
    }
    #srvSection .sarr {
      width: 52px !important; height: 52px !important;
      border-radius: 50% !important;
      border: 2px solid #d1d5db !important;
      background: #ffffff !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      cursor: pointer !important;
      transition: background 0.25s, border-color 0.25s, transform 0.2s !important;
      flex-shrink: 0 !important;
    }
    #srvSection .sarr:hover {
      background: #2e9e4f !important;
      border-color: #2e9e4f !important;
      transform: scale(1.08) !important;
    }
    #srvSection .sarr:active {
      transform: scale(0.96) !important;
    }
    #srvSection .sarr img {
      width: 20px !important;
      height: 20px !important;
      display: block !important;
    }
    /* invert arrow icon on hover */
    #srvSection .sarr:hover img {
      filter: brightness(0) invert(1) !important;
    }
 
    /* dots */
    #srvSection .sdots {
      display: flex !important;
      gap: 7px !important;
      align-items: center !important;
    }
    #srvSection .sdot {
      width: 8px !important; height: 8px !important;
      border-radius: 50% !important;
      background: #d1d5db !important;
      cursor: pointer !important;
      border: none !important;
      padding: 0 !important;
      transition: background 0.3s, width 0.3s, border-radius 0.3s !important;
      display: block !important;
    }
    #srvSection .sdot.on {
      background: #1e8042!important;
      width: 26px !important;
      border-radius: 4px !important;
    }
 
    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      #srvSection .sc { flex: 0 0 calc((100% - 48px) / 3) !important; }
       .clients-section {
      padding: 60px 20px 60px 20px;
      text-align: center;
      background: #f9fafb;
    }
    }
    @media (max-width: 780px) {
      #srvSection .sw { padding: 60px 20px !important; }
      #srvSection .sc { flex: 0 0 calc((100% - 24px) / 2) !important; }
       .clients-section {
      padding: 60px 20px 60px 20px;
      text-align: center;
      background: #f9fafb;
    }
    }
    @media (max-width: 500px) {
      #srvSection .sw { padding: 50px 16px !important; }
      #srvSection .sc { flex: 0 0 100% !important; }
      #srvSection .sh { margin-bottom: 32px !important; }
       .clients-section {
      padding: 30px 20px 60px 20px;
      text-align: center;
      background: #f9fafb;
    }
    }

    @media (max-width: 500px) {
  #srvSection .sw { padding: 50px 16px !important; }
  #srvSection .sc { flex: 0 0 100% !important; }
  #srvSection .sh { margin-bottom: 32px !important; }

  /* ── Center card content on mobile ── */
  #srvSection .scb {
    align-items: center !important;
    text-align: center !important;
  }
  #srvSection .sct {
    text-align: center !important;
  }
  #srvSection .scd {
    text-align: center !important;
  }
}


/* ── MOBILE STYLES ── */
@media (max-width: 650px) {
  #srvSection .sw {
    padding: 50px 16px !important;
  }

  #srvSection .sh {
    align-items: flex-start; /* left align */
    text-align: left;
    margin-bottom: 32px;
  }

  #srvSection .stitle {
    font-size: 26px !important;
  }

  #srvSection .sp {
    font-size: 16px !important;
    text-align: justify !important;
  }

  #srvSection .sc {
    flex: 0 0 100% !important;
  }

  #srvSection .scb {
    align-items: center;
    text-align: center;
  }
}
/* ── TABLET STYLES ── */
@media (max-width: 900px) {
  #srvSection .sw {
    padding: 60px 20px !important;
    max-width: 100%;
  }

  #srvSection .sh {
    align-items: flex-start; /* left align */
    text-align: left;
    margin-bottom: 40px;
  }


 
  #srvSection .sp {
    font-size: 16px !important;
    text-align: justify !important;
  }

 
}
/* ── TABLET CARD COMPACT ── */
@media (max-width: 900px) {
  #srvSection .sc {
    min-height: auto !important;        /* remove fixed min-height */
  }

  #srvSection .scb {
    padding: 20px 20px 12px !important; /* reduce bottom padding */
    gap: 10px !important;               /* reduce spacing between title and description */
  }

  #srvSection .scd {
    line-height: 1.5 !important;        /* reduce description line spacing */
    margin-bottom: 20px !important;
  }
}

/* ── MOBILE CARD COMPACT ── */
@media (max-width: 650px) {
  #srvSection .sc {
    min-height: auto !important;        /* remove fixed min-height */
  }

  #srvSection .scb {
    padding: 16px 16px 10px !important; /* even smaller padding for mobile */
    gap: 8px !important;                /* compact gap */
  }

  #srvSection .scd {
    line-height: 1.45 !important;       /* tighter description spacing */
    margin-bottom: 20px !important;
  }
  #srvSection .stitle {
    font-size: 26px !important;
  }
}
@media (max-width: 767px) {
  #srvSection .sc {
    min-height: auto !important;        /* remove fixed min-height */
  }

  #srvSection .scb {
    padding: 16px 16px 10px !important; /* even smaller padding for mobile */
    gap: 8px !important;                /* compact gap */
  }

  #srvSection .scd {
    line-height: 1.45 !important;       /* tighter description spacing */
    margin-bottom: 20px !important;
  }
 
}
/* ── TABLET HEADING & PARAGRAPH ── */
@media (max-width: 768px) {
  #srvSection .stitle {
    font-size: 36px !important;   /* heading size for tablet */
    text-align: left !important;  /* left-align heading */
  }

  #srvSection .subtitle {
    text-align: center !important;  /* left-align subheading */
  }

  #srvSection .sp {
    font-size: 16px !important;   /* paragraph font size */
    text-align: justify !important; /* justify paragraph */
  }
}
/* ── DESKTOP DEFAULT ── */
/* desktop styles are already in your main CSS, so no change needed */

/* ── TABLET HEADING & PARAGRAPH ── */
@media (max-width: 768px) {
  #srvSection .stitle {
    font-size: 36px !important;     /* tablet heading size */
    text-align: left !important;    /* left-align heading */
  }

  #srvSection .subtitle {
    text-align: center !important;    /* left-align subtitle */
  }

  #srvSection .sp {
    font-size: 16px !important;     /* paragraph font size */
    text-align: justify !important; /* justify paragraph */
  }

  /* Reduce bottom space in cards */
  #srvSection .sc {
    min-height: auto !important;
  }

  #srvSection .scb {
    padding: 20px 20px 12px !important;
    gap: 10px !important;
  }

  #srvSection .scd {
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
  }
}


/* ── MOBILE HEADING & PARAGRAPH ── */
@media (max-width: 500px) {
  #srvSection .stitle {
    font-size: 26px !important;     /* mobile heading size */
    text-align: center !important;  /* center heading */
  }

  #srvSection .subtitle {
    text-align: center !important;  /* center subtitle */
  }

  #srvSection .sp {
    font-size: 16px !important;     /* paragraph size */
    text-align: justify !important; /* justify paragraph */
  }

  /* Compact cards for mobile */
  #srvSection .sc {
    min-height: auto !important;
  }

  #srvSection .scb {
    padding: 16px 16px 10px !important;
    gap: 8px !important;
  }

  #srvSection .scd {
    line-height: 1.45 !important;
    margin-bottom: 0 !important;
  }
}



    /*founders*/
    @media (min-width: 768px) and (max-width: 1024px) {
  .founder-box {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center; /* ✅ THIS centers image vertically */
  }

  .founder-box.reverse {
    flex-direction: row-reverse !important;
  }

  .founder-img,
  .founder-text {
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* Optional: control image height for better centering */
  .founder-img img {
    height: auto;
    max-height: 500px; /* adjust if needed */
    object-fit: contain;
  }
}

    /* ---------------------- TABLET (768px–1024px) ---------------------- */
/* SAME AS DESKTOP → SIDE BY SIDE */
@media (min-width: 768px) and (max-width: 1024px) {
  .founder-box {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
  }

  .founder-box.reverse {
    flex-direction: row-reverse !important;
  }

  .founder-img,
  .founder-text {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .founder-text p {
    font-size: 16px;
  }
}

/* ---------------------- MOBILE (<768px) ---------------------- */
/* STACK */
@media (max-width: 767px) {
  .founder-box {
    flex-direction: column;
    gap: 30px;
  }

  .founder-box.reverse {
    flex-direction: column;
  }

  .founder-img,
  .founder-text {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .clients-title {
    font-size: 30px;
  }

  .founder-text h3 {
    font-size: 24px;
  }

  .founder-text p {
    font-size: 16px;
  }
}
 /* Section */
.founders-section {
    padding: 80px 20px;
    background: #f9fafb;
}

/* Title */
.section-title {
    text-align: center;
    font-size: clamp(26px, 4vw, 36px);
    margin-bottom: 60px;
    color: #1e3a8a;
}

/* Layout */
.founder-box {
    display: flex;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto 40px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Reverse */
.founder-box.reverse {
    flex-direction: row-reverse;
}

/* Image */
.founder-img {
    flex: 1 1 40%;
    min-height: 300px;
}

.founder-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Content */
.founder-text {
    flex: 1 1 60%;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* -------------------- */
/* 💻 TABLET (768px - 1024px) */
/* SAME AS DESKTOP ✅ */
/* -------------------- */
@media (max-width: 1024px) {
    .founder-text {
        padding: 25px;
    }
}

/* -------------------- */
/* 📱 MOBILE ONLY (<768px) */
/* STACK ONLY HERE ✅ */
/* -------------------- */
@media (max-width: 767px) {

    .founder-box,
    .founder-box.reverse {
        flex-direction: column;
    }

    .founder-img {
        width: 100%;
        height: 250px;
    }

    .founder-text {
        padding: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .founder-img {
        height: 220px;
    }

    .founder-text {
        padding: 15px;
    }
}
/* ===================== */
/* 💻 TABLET (1024px) */
/* ===================== */
@media (max-width: 1024px) {

  .founder-box {
    gap: 20px;
  }

  .founder-text {
    padding: 25px;
  }

  .founder-text h3 {
    font-size: 22px;
  }

  .founder-text p {
    font-size: 16px;
    line-height: 1.7;
  }

}


/* ===================== */
/* 📱 TABLET (768px) */
/* ===================== */
@media (max-width: 768px) {

  .founder-box,
  .founder-box.reverse {
    flex-direction: column; /* 🔥 stack */
  }

  .founder-img {
    width: 100%;
    height: 260px;
  }

  .founder-text {
    padding: 20px;
    text-align: center; /* 🔥 center content */
  }

  .founder-text h3 {
    font-size: 20px;
  }

  .founder-text p {
    font-size: 16px;
    text-align: justify;
  }
   .founders-section{
    padding: 50px 20px 100px 20px;
  }

}


/* ===================== */
/* 📱 MOBILE (425px) */
/* ===================== */
@media (max-width: 425px) {

  .founders-section {
    padding:60px 15px;
  }

  .founder-img {
    height: 220px;
  }

  .founder-text {
    padding: 18px;
  }

  .founder-text h3 {
    font-size: 18px;
  }

  .founder-text p {
    font-size: 16px;
    line-height: 1.6;
  }
 

}


/* ===================== */
/* 📱 SMALL MOBILE (375px) */
/* ===================== */
@media (max-width: 375px) {

  .founder-img {
    height: 200px;
  }

  .founder-text {
    padding: 16px;
  }
   .founders-section{
    padding: 50px 20px;
  }
   .founders-section{
    padding: 50px 20px;
  }

}


/* ===================== */
/* 📱 EXTRA SMALL (320px) */
/* ===================== */
@media (max-width: 320px) {

  .founder-img {
    height: 180px;
  }

  .founder-text h3 {
    font-size: 16px;
  }

  .founder-text p {
    font-size: 16px;
  }
  .founders-section{
    padding: 50px 20px;
  }

}



/*vision and mission*/

/* VM Zigzag Section */
.vm-zigzag {
  padding: 60px 20px;
}

.vm-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: nowrap; /* keep side by side */
}

.vm-row.reverse {
  flex-direction: row-reverse;
}

.vm-img {
  flex: 1 1 50%;
  text-align: center;
}

.vm-img img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.vm-text {
  flex: 1 1 50%;
}

.vm-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
  text-align: center; /* heading centered */
}

.vm-text p {
  font-size: 18px;
  line-height: 1.6;
  text-align: justify;
}

.mission-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.mission-item span {
  font-size: 24px;
  font-weight: bold;
  color: #ff9900;
  flex-shrink: 0;
}

.mission-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

/* ---------------------- Responsive ---------------------- */

/* Tablet (≥768px and ≤1024px): side by side same as desktop */
@media (max-width: 1024px) and (min-width: 768px) {
  .vm-row {
    flex-direction: row; /* always side by side */
    flex-wrap: nowrap; /* no stacking */
  }

  .vm-img,
  .vm-text {
    flex: 1 1 50%; /* half width each */
  }

  .vm-text p {
    font-size: 16px; /* paragraph smaller on tablet */
  }
}

/* Mobile (<768px): stack vertically */
@media (max-width: 767px) {
  .vm-row {
    flex-direction: column;
    gap: 30px;
  }

  .vm-row.reverse {
    flex-direction: column;
  }

  .vm-text h2 {
    font-size: 32px;
    text-align: center;
  }

  .vm-text p {
    font-size: 16px;
    text-align: justify;
  }

  .mission-item span {
    font-size: 20px;
  }

  .mission-item p {
    font-size: 16px;
  }
}
/* VM Zigzag Section */
.vm-zigzag {
  padding: 60px 20px;
}

.vm-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap; /* ensures responsiveness */
}

.vm-row.reverse {
  flex-direction: row-reverse;
}

.vm-img {
  flex: 1 1 400px;
  text-align: center;
}

.vm-img img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.vm-text {
  flex: 1 1 400px;
}

.vm-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
  text-align: left;
}

.vm-text p {
  font-size: 18px;
  line-height: 1.6;
  text-align: justify;
}

.mission-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.mission-item span {
  font-size: 24px;
  font-weight: bold;
  color: #ff9900;
  flex-shrink: 0;
}

.mission-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

/* ---------------------- Responsive ---------------------- */

/* Tablets: keep side by side like desktop */
@media (max-width: 1024px) {
  .vm-row {
    flex-wrap: nowrap;
  }

  .vm-img,
  .vm-text {
    flex: 1 1 50%;
  }
}
/* Center headings */
.vm-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
  text-align: center; /* changed from left to center */
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
  .vm-row {
    flex-direction: column;
    gap: 30px;
  }
  

  .vm-row.reverse {
    flex-direction: column;
  }

  .vm-text h2 {
    font-size: 32px;
  }

  .vm-text p {
    font-size: 16px;
  }

  .mission-item span {
    font-size: 20px;
  }

  .mission-item p {
    font-size: 15px;
  }
}
/* Tablets & Mobile: adjust paragraph size */
@media (max-width: 768px) {
  .vm-row {
    flex-direction: column;
    gap: 30px;
  }

  .vm-row.reverse {
    flex-direction: column;
  }

  .vm-text h2 {
    font-size: 32px;
    text-align: center; /* keep heading centered */
  }

  .vm-text p {
    font-size: 16px; /* paragraph content for tablet/mobile */
    text-align: justify;
  }

  .mission-item span {
    font-size: 20px;
  }

  .mission-item p {
    font-size: 16px; /* ensure mission points match paragraph */
  }
}

.vm-zigzag {
    padding: 100px 20px  70px 20px;
    background: #f9fafb;
}

/* ROW */
.vm-row {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

/* REVERSE */
.vm-row.reverse {
    flex-direction: row-reverse;
}

/* IMAGE */
.vm-img {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
      height: auto;
}

.vm-img img {
    width: 100%;
height: auto; /* 🔥 important */
display: block;
    object-fit: contain;
    transition: 0.5s;
}

/* IMAGE HOVER */
.vm-img:hover img {
    transform: scale(1.08);
}

/* TEXT */
.vm-text {
    flex: 1;
}

.vm-text h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: black;
}

.vm-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom:0;
}

/* MISSION ITEMS */
.mission-item {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    transition: 0.3s;
}

/* HOVER */
.mission-item:hover {
    transform: translateX(8px);
    border-color: #28a745;
}

/* NUMBER */
.mission-item span {
    background: #28a745;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-item span {
    width: 40px;
    height: 40px;
    min-width: 40px; /* important for flex */
    
    display: flex;
    align-items: center;
    justify-content: center;

    background: #28a745;
    color: #fff;
    font-size: 14px;
    font-weight: bold;

    border-radius: 50%; /* makes it circle */
}

/* ---------------- */
/* RESPONSIVE */
/* ---------------- */

/* Tablet */
@media (max-width: 1024px) {
    .vm-row {
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .vm-row,
    .vm-row.reverse {
        flex-direction: column;
    }

    .vm-img {
        height: 250px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .vm-zigzag {
        padding: 70px 15px;
    }
}

/* ===================== */
/* TABLET (1024px) */
/* ===================== */
@media (max-width: 1024px) {

  .vm-row {
    gap: 30px;
  }

  .vm-text h2 {
    font-size: 36px;
  }

  .vm-text p {
    font-size: 15px;
  }
}


/* ===================== */
/* MOBILE + TABLET (768px) */
/* ===================== */
@media (max-width: 768px) {

  .vm-row,
  .vm-row.reverse {
    flex-direction: column;
    text-align: center; /* 🔥 center all text */
  }

  .vm-text {
    text-align: center;
  }

  .vm-text h2 {
    font-size:36px;
  }

  .vm-text p {
    font-size: 16px;
  }

  .vm-img {
    width: 100%;
  }

  .vm-img img {
    width: 100%;
    height: auto;
  }

  /* mission items center */
  .mission-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .mission-item span {
    margin-bottom: 8px;
  }
}


/* ===================== */
/* SMALL MOBILE (480px) */
/* ===================== */
@media (max-width: 480px) {

  .vm-zigzag {
    padding: 70px 15px;
  }

  .vm-text h2 {
    font-size: 26px;
  }

  .vm-text p {
    font-size: 16px;
    text-align: justify;
  }

  .mission-item {
    padding: 12px;
  }
}



/*tab section*/


 /* ─── Section Header ─── */
  .section-header {
    text-align: center;
    margin-bottom: 52px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.7s ease forwards 0.1s;
  }

 
  /* ─── Tab Strip ─── */
  .tabs-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding:90px 20px;
  }
 
  .tab-strip {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 44px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s ease forwards 0.3s;
  }
 
  .tab-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 50px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: black;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    overflow: hidden;
  }
  .tab-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 50px;
  }
 .tab-btn:hover{
  border:2px solid  rgb(30, 128, 66);
 }

  .tab-btn .tab-icon {
    position: relative;
    z-index: 1;
    font-size: 18px;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  }
  .tab-btn .tab-label {
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
 
  .tab-btn:hover {
    transform: translateY(-3px);
    border-color: rgb(30, 128, 66);
   
  }
  .tab-btn:hover .tab-icon { transform: scale(1.3) rotate(-8deg); }
 
  .tab-btn.active::before { opacity: 1; }
  .tab-btn.active .tab-label,
  .tab-btn.active .tab-icon { color: var(--white); }
  .tab-btn.active {
    border-color: transparent;
 
    transform: translateY(-3px) scale(1.03);
  }
 
  /* ─── Tab Panels ─── */
  .tab-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    animation: panelIn 0.55s cubic-bezier(0.22,1,0.36,1) forwards;
  }
  .tab-panel.active {
    display: grid;
  }
 
  @keyframes panelIn {
    from { opacity: 0; transform: translateY(24px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0)   scale(1); }
  }
 
  /* ─── Service Card ─── */
  .service-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--card-shadow);
    cursor: pointer;
    transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.45s ease;
    border: 2px solid #1e8042;  
    border-radius: 10px;        
  }
  .service-card:hover {
  
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.084);
  }
 
  /* image area */
  .card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
  }
  .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .service-card:hover .card-img img {
    transform: scale(1.1);
  }
  /* diagonal overlay */
  .card-img::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    height: 70px;
    background: var(--white);
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
  }
 
  /* icon badge */
  .card-badge {
    position: absolute;
    bottom: 18px;
    left: 28px;
    width: 64px;
    height: 64px;
    background: #1e8042;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(45,138,62,0.4);
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
                background 0.3s;
  }
  .service-card:hover .card-badge {
  
    background: rgb(30, 58, 138)
    ;
  
  }
 
  /* body */
  .card-body {
    padding: 20px 28px 32px;
  }
  .card-body h3 {
  color:#1e8042;
    font-size: 20px;
  
   
   
    margin-bottom: 10px;
    transition: color 0.3s;
  }
  .service-card:hover .card-body h3 { color:#1e8042; }
 
  .card-body p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 20px;
  }
 
  /* read more */
  .card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: gap 0.3s, border-color 0.3s;
  }
  .service-card:hover .card-link {
    gap: 14px;
    border-color: var(--green);
  }
  .card-link .arrow {
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  }
  .service-card:hover .card-link .arrow { transform: translateX(5px) rotate(-45deg); }
 
  /* accent stripe */
  .card-accent {
    position: absolute;
    top: 0; left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--green), var(--green-light));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
  }
  .service-card:hover .card-accent { transform: scaleY(1); }
 
  /* ─── Keyframes ─── */
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
 
  /* ─── Responsive ─── */
  @media (max-width: 720px) {
    .tab-panel.active { grid-template-columns: 1fr; }
    .tab-btn { padding: 11px 18px; font-size: 13px; }
  }

  /* ===================== */
/* TABLET (1024px) */
/* ===================== */
@media (max-width: 1024px) {

  .tabs-wrapper {
    padding: 60px 20px;
  }

  .tab-panel {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .card-img {
    height: 200px;
  }

  .card-body h3 {
    font-size: 18px;
  }

  .card-body p {
    font-size: 15px;
  }
}


/* ===================== */
/* TABLET ONLY (426px to 768px) */
/* ===================== */
@media (min-width: 426px) and (max-width: 768px) {

  .tab-panel,
  .tab-panel.active {
    grid-template-columns: repeat(2, 1fr); /* 🔥 2 columns */
    gap: 15px;
  }

}


/* ===================== */
/* MOBILE ONLY (0px to 425px) */
/* ===================== */
@media (max-width: 425px) {

  .tab-panel,
  .tab-panel.active {
    grid-template-columns: 1fr; /* 🔥 1 column */
  }

}



/* ===================== */
/* MOBILE (425px) */
/* ===================== */
@media (max-width: 425px) {

  .tabs-wrapper {
    padding: 60px 15px;
  }

  .section-header h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .tab-strip {
    flex-direction: column; /* 🔥 stack buttons */
    align-items: stretch;
  }

  .tab-btn {
    width: 100%;
    justify-content: center;
    font-size: 14px;
  }

  .card-img {
    height: 170px;
  }

  .card-body h3 {
    font-size: 20px;
  }

  .card-body p {
    font-size: 14px;
  }

  .card-badge {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}


/* ===================== */
/* SMALL MOBILE (375px) */
/* ===================== */
@media (max-width: 375px) {

  .section-header h2 {
    font-size: 26px;
  }

  .tab-btn {
    font-size: 13px;
    padding: 10px;
  }

  .card-body {
    padding: 15px;
  }

  .card-img {
    height: 160px;
  }
}


/* ===================== */
/* EXTRA SMALL (320px) */
/* ===================== */
@media (max-width: 320px) {

  .section-header h2 {
    font-size: 26px;
  }

  .tab-btn {
    font-size: 12px;
  }

  .card-img {
    height: 150px;
  }

  .card-body h3 {
    font-size: 20px;
  }

  .card-body p {
    font-size: 16px;
  }
}

/* ===================== */
/* TABLET (768px–1024px) */
/* ===================== */
@media (min-width: 768px) and (max-width: 1024px) {

  .tab-panel,
  .tab-panel.active {
    grid-template-columns: repeat(2, 1fr); /* keep side-by-side */
    gap: 20px;
  }

  .tabs-wrapper {
    padding: 50px 20px;
  }

  .card-img {
    height: 200px;
  }

  .card-body h3 {
    font-size: 20px;
  }

  .card-body p {
    font-size: 16px;
  }

  .tab-btn {
    font-size: 15px;
    padding: 12px 20px;
  }
}


/* ===================== */
/* MOBILE (<768px) */
/* ===================== */
@media (max-width: 767px) {

  .tab-panel,
  .tab-panel.active {
    grid-template-columns: 1fr; /* stack */
  }

  .tab-strip {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .tab-btn {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 12px;
  }

  .tabs-wrapper {
    padding: 70px 15px;
  }

  .card-img {
    height: 180px;
  }

  .card-body h3 {
    font-size: 20px;
  }

  .card-body p {
    font-size: 16px;
  }
}


/* ===================== */
/* SMALL MOBILE (<480px) */
/* ===================== */
@media (max-width: 480px) {

  .section-header h2 {
    font-size: 26px;
  }

  .card-img {
    height: 160px;
  }
}



.icon-style {
  font-size: 25px;
  color: #2e9e4f; /* your green theme */
  
 

  border-radius: 10px;
  
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
  transition: all 0.3s ease;
}



.solar-icon {
  font-size: 18px;
  color: #2e9e4f;

  background: #e8f5ec;
  padding: 10px;
  border-radius: 10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
}




/* ===================== */
/* TABLET (768px–1024px) */
/* ===================== */
@media (min-width: 768px) and (max-width: 1024px) {

  /* spacing */
  .contact-color {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* center content properly */
  .grid-divider .d-flex {
    justify-content: flex-start !important;
  }

  /* icon size adjust */
  .fs-60 {
    font-size: 45px;
  }

  /* text spacing */
  .grid-divider h4 {
    font-size: 18px;
  }

  .grid-divider p {
    font-size: 14px;
    text-align: left;
  }
}


/* ===================== */
/* MOBILE (<768px) */
/* ===================== */
@media (max-width: 767px) {

  /* show stacked layout */
  .grid-divider {
    display: block !important;
  }

  .contact-color {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* center each item */
  .grid-divider .d-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .grid-divider .ms-3 {
    margin-left: 0 !important;
    margin-top: 10px;
  }

  /* icon */
  .fs-60 {
    font-size: 40px;
  }

  /* spacing between items */
  .mb-sm-30 {
    margin-bottom: 20px;
  }

  .grid-divider h4 {
    font-size: 16px;
  }

  .grid-divider p {
    font-size: 14px;
  }
}


/* ===================== */
/* SMALL MOBILE (<480px) */
/* ===================== */
@media (max-width: 480px) {

  .fs-60 {
    font-size: 35px;
  }

  .grid-divider h4 {
    font-size: 15px;
  }

  .grid-divider p {
    font-size: 13px;
    text-align: center;
  }
}

/* MOBILE + TABLET */
@media (max-width: 1024px) {

  /* remove left border */
  .grid-divider > div {
    border-left: none !important;
  }

  /* add bottom border */
  .grid-divider > div {
    border-bottom: 1px solid rgba(255,255,255,0.2); /* adjust color if needed */
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  /* remove border from last item */
  .grid-divider > div:last-child {
    border-bottom: none;
  }
}
/* MOBILE + TABLET */
@media (max-width: 1024px) {

  /* remove any left border */
  .grid-divider > div,
  .grid-divider > div * {
    border-left: none !important;
  }

  /* 🔥 kill vertical divider (pseudo elements) */
  .grid-divider::before,
  .grid-divider::after,
  .grid-divider > div::before,
  .grid-divider > div::after {
    display: none !important;
    content: none !important;
    border: none !important;
    background: none !important;
  }

  /* add bottom divider */
  .grid-divider > div {
    border-bottom: 1px solid rgba(255,255,255,0.3) !important;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  /* remove last one */
  .grid-divider > div:last-child {
    border-bottom: none !important;
  }
}
/* ===================== */
/* TABLET (768px–1024px) */
/* ===================== */
@media (min-width: 768px) and (max-width: 1024px) {

  /* 🔥 force show */
  .sm-hide {
    display: block !important;
    visibility: visible !important;
  }

}
/* ===================== */
/* TABLET (768px–1024px) */
/* ===================== */
@media (min-width: 768px) and (max-width: 1024px) {

  /* show section */
  .grid-divider.sm-hide {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: left;
  }

  /* default: 2 columns */
  .grid-divider > div {
    width: 50%;
    border-left: none !important;
  }

  /* center content inside */
  .grid-divider .d-flex {
    justify-content: center;
    text-align: left;
  }

  /* 🔥 last item full width + centered */
  .grid-divider > div:last-child {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  /* optional: control inner width so it doesn't stretch too much */
  .grid-divider > div:last-child .d-flex {
    max-width: 300px;
    width: 100%;
  }

  /* bottom borders */
  .grid-divider > div {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  /* remove last border */
  .grid-divider > div:last-child {
    border-bottom: none;
  }
}
