/* Reset and Container */
.gt-services-wrapper {
  width: 100%;
  margin: 40px auto;
  padding: 20px;
}

/* Tab Styling */
.gt-tab-header-container {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.gt-nav-tab {
  padding: 14px 35px;
  border: none;
  border-radius: 20px 20px 0 0;
  background-color: #6c757d;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gt-active-tab {
  background: linear-gradient(135deg, #f05a28 0%, #f9a63e 100%);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Card Visuals */
.gt-service-main-card {
  position: relative;
  background-image: url("https://projects.synergynexa.com/hind-terminal/assets/images/depot-and-ecmnr/image_2.png");
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.gt-visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.gt-service-content-flex {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 100%;
  width: 100%;
  padding: 50px;
  gap: 40px;
}

/* Typography */
.gt-main-heading {
  color: #ffffff;
  font-size: clamp(3rem, 6vw, 5rem); /* Responsive font size */
  line-height: 0.85;
  font-weight: 900;
  margin: 0;
  letter-spacing: -2px;
}

.gt-service-details-list {
  max-width: 550px;
}

.gt-detail-row {
  border-bottom: 1px solid #fff;
  padding: 22px 0;
}

.gt-bullet-points {
  list-style: disc;
  padding-left: 20px;
  color: #ffffff;
}

.gt-bullet-points li {
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
}

/* ===============================
   LARGE TABLET (1200px ↓)
=================================*/
@media (max-width: 1200px) {
  .gt-service-content-flex {
    padding: 40px;
  }

  .gt-service-details-list {
    max-width: 480px;
  }

  .gt-bullet-points li {
    font-size: 0.95rem;
  }
}

/* ===============================
   TABLET (992px ↓)
=================================*/
@media (max-width: 992px) {
  .gt-service-main-card {
    min-height: auto;
    padding: 40px 0;
  }

  .gt-service-content-flex {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 30px;
    gap: 30px;
  }

  .gt-main-heading {
    font-size: 3rem;
  }

  .gt-service-details-list {
    max-width: 100%;
  }

  .gt-tab-header-container {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
  }

  .gt-nav-tab {
    white-space: nowrap;
  }
}

/* ===============================
   MOBILE (768px ↓)
=================================*/
@media (max-width: 768px) {
  .gt-services-wrapper {
    padding: 10px;
    margin: 0;
  }

  .gt-service-content-flex {
    padding: 25px 20px;
  }

  .gt-tab-header-container {
    flex-wrap: wrap;
    gap: 6px;
  }

  .gt-nav-tab {
    flex: 1 1 48%;
    border-radius: 12px;
  }

  .gt-main-heading {
    font-size: 2.4rem;
    line-height: 0.9;
  }

  .gt-detail-row {
    padding: 18px 0;
  }

  .gt-bullet-points li {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .gt-service-main-card {
    border-radius: 20px;
  }
}

/* ===============================
   SMALL MOBILE (480px ↓)
=================================*/
@media (max-width: 480px) {
  .gt-main-heading {
    font-size: 2rem;
    letter-spacing: -1px;
  }

  .gt-nav-tab {
    padding: 10px 20px;
    font-size: 13px;
  }

  .gt-bullet-points {
    padding-left: 16px;
  }

  .gt-bullet-points li {
    font-size: 0.85rem;
  }
}

