/* ================= COMPANY STORY ================= */

.company-story {
  background: #fff;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.content-media {
  position: relative;
}

.story-gallery {
  position: relative;
  min-height: 560px;
}

.story-gallery__large {
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.story-gallery__large img {
  width: 100%;
  height: 560px;
  display: block;
}

.content-body .section__title {
  margin: 18px 0 24px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 36px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;

  font-weight: 600;
}

.feature-item i {
  color: var(--c-primary);
  font-size: 18px;
}

.story-actions {
  display: flex;
  gap: 16px;
}

.btn--outline {
  border: 1px solid var(--c-primary);
  color: var(--c-primary);
  background: #fff;
}

.btn--outline:hover {
  background: var(--c-primary);
  color: #fff;
}

/* Responsive */

@media (max-width: 991px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .story-gallery {
    min-height: auto;
  }

  .story-gallery__large {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .feature-list {
    grid-template-columns: 1fr;
  }

  .story-actions {
    flex-direction: column;
  }
}

/* ================= MISSION & VISION ================= */

.mission-vision {
  background: #f8faf7;
  padding: 40px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.mission-card {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--c-primary);
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.mission-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(15, 77, 47, 0.08);
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.mission-card__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.mission-card h3 {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 14px;
}

.mission-card p {
  font-size: 15px;
  color: #687076;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 991px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .mission-vision {
    padding: 55px 0;
  }

  .mission-card {
    padding: 22px;
  }

  .mission-card h3 {
    font-size: 20px;
  }
}

/* ================= Why Choose ================= */
.trust-section {
  background: #708a6310;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 35px;
}

.trust-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.trust-box i {
  color: var(--c-primary);
}

.trust-box:hover {
  border-color: var(--c-primary);
  transform: translateY(-4px);
}

@media (max-width: 991px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= PRODUCTS PAGE ================= */

.products-page {
  padding-top: 20px;
}

/* ================= HEADER ================= */

.products-page__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 40px;
}

.products-page__content {
  max-width: 700px;
}

.products-page__stats {
  display: flex;
  gap: 18px;
}

.products-stat {
  min-width: 110px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 18px;
  text-align: center;
}

.products-stat strong {
  display: block;
  font-size: 32px;
  line-height: 1;
  color: var(--c-primary);
  margin-bottom: 8px;
}

.products-stat span {
  font-size: 14px;
  color: var(--c-ink-soft);
}

/* ================= TOOLBAR ================= */

.products-toolbar {
  display: grid;
  grid-template-columns: 2fr repeat(3, 200px) auto;
  gap: 16px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}

.products-search {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  border: 1px solid var(--c-border);
  border-radius: 12px;
}

.products-search i {
  color: var(--c-primary);
}

.products-search input {
  width: 100%;
  border: none;
  outline: none;
  background: none;
  font-size: 15px;
}

.products-select {
  height: 54px;
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 0 16px;
  background: #fff;
  outline: none;
  cursor: pointer;
}

.products-filter-btn {
  height: 54px;
  border: none;
  border-radius: 12px;
  background: var(--c-primary);
  color: #fff;
  padding: 0 24px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.products-filter-btn:hover {
  background: #0c5d39;
}

/* ================= Responsive (toolbar) ================= */

@media (max-width: 1199px) {
  .products-toolbar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .products-page__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .products-page__stats {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .products-toolbar {
    grid-template-columns: 1fr;
  }

  .products-page__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
  }

  .products-stat {
    min-width: auto;
    padding: 15px;
  }

  .products-stat strong {
    font-size: 24px;
  }
}

/* ================= PRODUCTS LAYOUT ================= */

.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
}

/* Sidebar */

.products-sidebar {
  position: sticky;
  top: 110px;
  height: max-content;
}

.filter-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
}

.filter-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.filter-card__head h3 {
  font-size: 18px;
  margin: 0;
}

.filter-reset {
  border: none;
  background: none;
  color: var(--c-primary);
  cursor: pointer;
  font-weight: 600;
}

.filter-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border: none;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
}

.filter-body {
  padding: 0 20px 18px;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 5px 0;
  cursor: pointer;
}

.filter-check input {
  accent-color: var(--c-primary);
}

/* Products */

.products-content {
  min-width: 0;
}

.products-content__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.products-content__top p {
  margin: 0;
  color: var(--c-ink-soft);
}

/* 3 cards per row — desktop default */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Responsive (grid) */

@media (max-width: 1199px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .products-layout {
    grid-template-columns: 1fr;
  }

  .products-sidebar {
    position: static;
  }
}

@media (max-width: 575px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= PRODUCT CARD ================= */

.product-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 18px;
  overflow: hidden;
  transition: 0.35s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/* Bigger product image inside the card:
   padding kam kiya (18px -> 10px) taaki image ka
   size card ke andar jyada bada dikhe. */
.product-card__image {
  position: relative;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 1/1;
  padding: 10px;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.35s;
}

.product-card:hover .product-card__image img {
  transform: scale(1.08);
}

.product-card__badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--c-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 30px;
  z-index: 2;
}

.product-card__body {
  padding: 22px;
}

.product-card__brand {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 30px;
  background: rgba(15, 77, 47, 0.08);
  color: var(--c-primary);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-card__category {
  display: block;
  font-size: 13px;
  color: var(--c-ink-soft);
  margin-bottom: 10px;
}

.product-card__title {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 12px;
  transition: 0.3s;
}

.product-card:hover .product-card__title {
  color: var(--c-primary);
}

.product-card__text {
  font-size: 14px;
  color: var(--c-ink-soft);
  line-height: 1.8;
  margin-bottom: 22px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid var(--c-border);
  border-radius: 12px;
  color: var(--c-primary);
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.product-card__btn:hover {
  background: var(--c-primary);
  color: #fff;
}

.product-card__btn i {
  transition: 0.3s;
}

.product-card__btn:hover i {
  transform: translateX(5px);
}

/* ================= PAGINATION ================= */

.products-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.page-btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--c-ink);
  transition: 0.3s;
  font-weight: 600;
}

.page-btn:hover {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}

.page-btn.active {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}

.page-btn.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.page-dots {
  padding: 0 8px;
}

/* ================= PRODUCT DETAILS ================= */

.product-details {
  padding-top: 10px;
}

.product-details__wrap {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 50px;
}

/* ---------- Gallery ---------- */

.product-gallery__main {
  position: relative;
  aspect-ratio: 1/1;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--c-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 30px;
  z-index: 2;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.product-gallery__thumb {
  aspect-ratio: 1/1;
  background: #fff;
  border: 1.5px solid var(--c-border);
  border-radius: 12px;
  padding: 8px;
  cursor: pointer;
  transition: 0.25s;
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery__thumb:hover,
.product-gallery__thumb.active {
  border-color: var(--c-primary);
}

/* ---------- Info ---------- */

.product-info__brand {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 30px;
  background: rgba(15, 77, 47, 0.08);
  color: var(--c-primary);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

.product-info__category {
  display: block;
  font-size: 13px;
  color: var(--c-ink-soft);
  margin-bottom: 10px;
}

.product-info__title {
  font-size: 30px;
  line-height: 1.35;
  margin: 0 0 14px;
}

.product-info__desc {
  color: var(--c-ink-soft);
  line-height: 1.8;
  margin-bottom: 22px;
}

.product-info__quicklist {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
}

.product-info__quicklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.product-info__quicklist li strong {
  color: var(--c-ink);
}

.product-info__quicklist i {
  color: var(--c-primary);
  width: 18px;
  text-align: center;
}

.product-info__actions {
  display: flex;
  gap: 14px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.product-info__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid var(--c-border);
}

.product-info__btn--primary {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}

.product-info__btn--primary:hover {
  background: #0c5d39;
}

.product-info__btn--outline {
  background: #fff;
  color: var(--c-ink);
}

.product-info__btn--outline:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}

.product-info__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--c-border);
}

.product-info__trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-ink-soft);
}

.product-info__trust i {
  color: var(--c-primary);
}

/* ================= Responsive ================= */

@media (max-width: 991px) {
  .product-details__wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .product-info__quicklist {
    grid-template-columns: 1fr;
  }

  .product-info__actions {
    flex-direction: column;
  }

  .product-info__btn {
    justify-content: center;
  }
}

/* ================= TABS ================= */

.product-tabs {
  margin-top: 60px;
}

.product-tabs__nav {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.product-tabs__btn {
  padding: 14px 22px;
  border: none;
  background: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--c-ink-soft);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transform: translateY(1px);
}

.product-tabs__btn.active {
  color: var(--c-primary);
  border-color: var(--c-primary);
}

.product-tabs__panel {
  display: none;
  color: var(--c-ink-soft);
  line-height: 1.9;
}

.product-tabs__panel.active {
  display: block;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr {
  border-bottom: 1px solid var(--c-border);
}

.spec-table td {
  padding: 14px 10px;
  font-size: 14px;
}

.spec-table td:first-child {
  width: 240px;
  color: var(--c-ink-soft);
}

.spec-table td:last-child {
  color: var(--c-ink);
  font-weight: 600;
}

/* ================= RELATED PRODUCTS ================= */

.related-products {
  margin-top: 60px;
}

.related-products__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
}

.related-products__head h2 {
  font-size: 26px;
  margin: 6px 0 0;
}

/* ================= BRAND GRID (REDESIGNED) ================= */
.brand-partners {
  padding-top: 20px;
  overflow-x: hidden;
}

.brand-title-line {
  width: 55px;
  height: 3px;
  background: var(--c-primary);
  margin: 15px auto 0;
  border-radius: 50px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 45px;
  width: 100%;
}

.brand-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
  box-sizing: border-box;
  min-width: 0;
  /* prevents grid blowout */
}

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(15, 107, 51, 0.18);
}

.brand-card__logo {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.brand-card__logo img {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-card:hover .brand-card__logo img {
  transform: scale(1.06);
}

.brand-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.brand-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.brand-card__body p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--c-ink-soft);
  margin-bottom: 20px;
}

/* -------- Actions / Buttons -------- */
.brand-card__actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  flex-wrap: wrap;
}

.btn-brand {
  flex: 1 1 100px;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid var(--c-primary);
  transition: 0.25s ease;
  box-sizing: border-box;
}

.btn-brand--fill {
  background: var(--c-primary);
  color: #fff;
}

.btn-brand--fill:hover {
  background: transparent;
  color: var(--c-primary);
}

.btn-brand--outline {
  background: transparent;
  color: var(--c-primary);
}

.btn-brand--outline:hover {
  background: var(--c-primary);
  color: #fff;
}

.btn-brand i {
  font-size: 12px;
  transition: 0.25s ease;
}

.btn-brand--fill:hover i {
  transform: translateX(3px);
}

/* -------- Responsive -------- */
@media (max-width: 1199px) {
  .brand-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  }
}

@media (max-width: 767px) {
  .brand-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
  }

  .brand-card {
    padding: 22px 14px;
  }

  .btn-brand {
    font-size: 12.5px;
    padding: 10px;
  }
}

@media (max-width: 420px) {
  .brand-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 340px) {
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .brand-card__actions {
    flex-direction: column;
  }
}

/*======================================
Gallery (compact) - CSS Grid based
======================================*/

.gallery-area .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
}

.gallery-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 6px 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.gallery-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: galleryScroll 22s linear infinite;
  will-change: transform;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 260px;
  flex: 0 0 270px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
}

.gallery-overlay i {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transform: scale(0.7);
  transition: 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery-marquee:hover .gallery-track {
  animation-play-state: paused;
}

@keyframes galleryScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

/*======================================
Lightbox
======================================*/

.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox.active {
  display: flex;
}

.gallery-lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  z-index: 10000;
  transition: all 0.3s ease;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.lightbox-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-prev {
  left: 35px;
}

.lightbox-next {
  right: 35px;
}

.lightbox-btn:hover {
  background: #fff;
  color: var(--c-primary, #0f4d2f);
  border-color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.lightbox-btn:active {
  transform: translateY(-50%) scale(0.95);
}

@media (max-width: 768px) {
  .lightbox-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .lightbox-prev {
    left: 15px;
  }

  .lightbox-next {
    right: 15px;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
    font-size: 32px;
  }
}



/* First Gallery (Right -> Left) */
.gallery-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: galleryScroll 22s linear infinite;
  will-change: transform;
}

/* Second Gallery (Left -> Right) */
.gallery-track-reverse {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: galleryScrollReverse 22s linear infinite;
  will-change: transform;
}

/* Pause on Hover */
.gallery-marquee:hover .gallery-track,
.gallery-marquee:hover .gallery-track-reverse {
  animation-play-state: paused;
}

/* Right -> Left */
@keyframes galleryScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

/* Left -> Right */
@keyframes galleryScrollReverse {
  from {
    transform: translateX(calc(-50% - 9px));
  }

  to {
    transform: translateX(0);
  }
}



/*======================================
Responsive
======================================*/

@media (max-width: 991px) {
  .gallery-area .section-title {
    font-size: 26px;
  }

  .gallery-item {
    height: 220px;
    flex-basis: 230px;
  }
}

@media (max-width: 767px) {
  .gallery-area .section-title {
    font-size: 22px;
  }

  .gallery-item {
    height: 180px;
    flex-basis: 200px;
  }
}

@media (max-width: 480px) {
  .gallery-item {
    height: 220px;
    flex-basis: 180px;
  }
}

/*==================================
Contact Page - Premium Compact
==================================*/

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 45px;
}

.contact-card {
  position: relative;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: 0.35s ease;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--theme-color), #0a9e50);
  transition: 0.35s;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.contact-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 14px;
  background: rgba(6, 142, 64, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color);
  font-size: 22px;
  transition: 0.35s;
}

.contact-content span {
  display: block;
  color: #888;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.contact-content h4 {
  font-size: 19px;
  margin-bottom: 8px;
  color: #111;
}

.contact-content p {
  margin: 0;
  color: #666;
  line-height: 1.7;
  font-size: 14.5px;
}

.contact-content a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  font-size: 14.5px;
}

.contact-content a:hover {
  color: var(--theme-color);
}

@media (max-width: 991px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 19px;
  }

  .contact-content h4 {
    font-size: 18px;
  }
}

/*==================================
Contact Wrapper
==================================*/

.contact-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 26px;
  align-items: start;
  margin-bottom: 45px;
}

/*==================================
Contact Form — Glass + Gradient Border
==================================*/

.contact-form-box {
  position: relative;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  isolation: isolate;
}

.contact-form-box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: 20px;
  background: linear-gradient(135deg,
      var(--theme-color),
      rgba(6, 142, 64, 0),
      var(--theme-color));
  background-size: 200% 200%;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.35;
  z-index: -1;
  animation: borderFlow 6s linear infinite;
}

@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

.contact-box-title {
  margin-bottom: 22px;
}

.contact-box-title h3 {
  font-size: 26px;
  margin-bottom: 6px;
  color: #111;
}

.contact-box-title p {
  color: #777;
  margin: 0;
  line-height: 1.7;
  font-size: 14.5px;
}

/*==================================
Form Grid
==================================*/

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/*==================================
Form Group — Floating Label + Icon
==================================*/

.form-group {
  margin-bottom: 16px;
}

.form-group--icon {
  position: relative;
}

.field-icon {
  position: absolute;
  left: 18px;
  top: 22px;
  color: #aaa;
  font-size: 15px;
  transition: 0.3s;
  pointer-events: none;
  z-index: 2;
}

.form-group--textarea .field-icon {
  top: 20px;
}

.form-group--icon input,
.form-group--icon textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  border: 1.5px solid #e2e2e2;
  border-radius: 14px;
  padding: 20px 18px 8px 46px;
  font-size: 14.5px;
  color: #111;
  outline: none;
  transition: 0.3s;
  position: relative;
}

.form-group--icon input {
  height: 56px;
}

.form-group--icon textarea {
  resize: none;
  min-height: 130px;
  padding-top: 24px;
}

/* Floating label */
.form-group--icon label {
  position: absolute;
  left: 46px;
  top: 18px;
  font-size: 14.5px;
  color: #999;
  pointer-events: none;
  transition: 0.25s ease;
  background: transparent;
}

.form-group--icon input:focus+label,
.form-group--icon input:not(:placeholder-shown)+label,
.form-group--icon textarea:focus+label,
.form-group--icon textarea:not(:placeholder-shown)+label {
  top: -9px;
  left: 14px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--theme-color);
  background: #fff;
  padding: 0 6px;
  border-radius: 6px;
}

.form-group--icon input:focus,
.form-group--icon textarea:focus {
  border-color: var(--theme-color);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(6, 142, 64, 0.1);
}

.form-group--icon input:focus~.field-icon,
.form-group--icon textarea:focus~.field-icon {
  color: var(--theme-color);
  transform: scale(1.1);
}

/* Glow underline animation on focus */
.field-glow {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--theme-color);
  transition: 0.35s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.form-group--icon input:focus~.field-glow,
.form-group--icon textarea:focus~.field-glow {
  width: 90%;
}

/*==================================
Button
==================================*/

.contact-form-box .theme-btn {
  position: relative;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 14px;
  font-weight: 600;
  border: none;
  background: linear-gradient(135deg, var(--theme-color), #0a9e50) !important;
  background-size: 150% 150%;
  color: #0f4d2f;
  cursor: pointer;
  transition: 0.35s;
  overflow: hidden;
}

.contact-form-box .theme-btn:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(6, 142, 64, 0.28);
}

.contact-form-box .theme-btn i {
  transition: 0.35s;
}

.contact-form-box .theme-btn:hover i {
  transform: translateX(5px);
}

.contact-form-box .theme-btn.is-loading .btn-text {
  opacity: 0;
}

.btn-loader {
  display: none;
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
}

.theme-btn.is-loading .btn-loader {
  display: block;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/*==================================
Success Message
==================================*/

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 20px;
  animation: popIn 0.45s ease;
}

.form-success.active {
  display: flex;
}

.contact-form-box.success-mode form {
  display: none;
}

.success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--theme-color), #0a9e50);
  color: #0f4d2f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
  animation: checkPulse 1.4s ease infinite;
}

@keyframes checkPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(6, 142, 64, 0.35);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(6, 142, 64, 0);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.form-success h4 {
  font-size: 21px;
  color: #111;
  margin-bottom: 8px;
}

.form-success p {
  color: #666;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 320px;
}

.success-close {
  background: #0c5d39;
  border: 1.5px solid var(--theme-color);
  color: #fff;
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.success-close:hover {
  background: #0c5d39;
  color: #fff;
}

@media (max-width: 991px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form-box {
    padding: 26px;
  }
}

@media (max-width: 767px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-form-box {
    padding: 20px;
    border-radius: 16px;
  }

  .contact-box-title h3 {
    font-size: 22px;
  }

  .form-group--icon input {
    height: 52px;
  }

  .form-group--icon textarea {
    min-height: 110px;
  }

  .contact-form-box .theme-btn {
    width: 100%;
  }
}

/*==================================
Contact Sidebar
==================================*/

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.support-box,
.working-hours,
.contact-action {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.35s;
}

.support-box:hover,
.working-hours:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.support-box h3 {
  font-size: 23px;
  color: #111;
  margin-bottom: 12px;
}

.support-box p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 14.5px;
}

.support-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.support-box ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: #444;
  padding: 10px 0;
  border-bottom: 1px solid #f1f1f1;
  transition: 0.3s;
}

.support-box ul li:hover {
  color: var(--theme-color);
  padding-left: 4px;
}

.support-box ul li:last-child {
  border: none;
  padding-bottom: 0;
}

.support-box ul li i {
  color: var(--theme-color);
  font-size: 16px;
}

/*==================================
Working Hours
==================================*/

.working-hours h4 {
  font-size: 20px;
  margin-bottom: 14px;
  color: #111;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.hour-row:last-child {
  border-bottom: none;
}

.hour-row span {
  color: #666;
  font-size: 14.5px;
}

.hour-row strong {
  color: #111;
  font-weight: 600;
  font-size: 14.5px;
}

/*==================================
Google Map
==================================*/

.map-box {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.map-box iframe {
  width: 100%;
  height: 380px;
  display: block;
  border: 0;
}

/*==================================
Responsive
==================================*/

@media (max-width: 767px) {

  .support-box,
  .working-hours,
  .contact-action {
    padding: 20px;
    border-radius: 14px;
  }

  .support-box h3 {
    font-size: 20px;
  }

  .working-hours h4 {
    font-size: 18px;
  }

  .hour-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .map-box iframe {
    height: 280px;
  }
}

/*==================================
Enquiry Modal
==================================*/

.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.enquiry-modal.active {
  display: flex;
}

.enquiry-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 15, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: 0.35s ease;
}

.enquiry-modal.active .enquiry-modal__overlay {
  opacity: 1;
}

.enquiry-modal__box {
  position: relative;
  width: 100%;
  max-width: 780px;
  max-height: 88vh;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: scale(0.92) translateY(20px);
  opacity: 0;
  transition: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.enquiry-modal.active .enquiry-modal__box {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.enquiry-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: #222;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.enquiry-modal__close:hover {
  background: var(--theme-color);
  color: #fff;
  transform: rotate(90deg);
}

.enquiry-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  max-height: 88vh;
}

/*==================================
Left: Media
==================================*/

.enquiry-modal__media {
  position: relative;
  min-height: 100%;
}

.enquiry-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.enquiry-modal__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(6, 142, 64, 0.15) 0%,
      rgba(4, 30, 18, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 24px;
  color: #fff;
}

.enquiry-modal__media-overlay .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8ee6ac;
  margin-bottom: 8px;
}

.enquiry-modal__media-overlay h3 {
  font-size: 20px;
  line-height: 1.35;
  color: #fff;
  margin-bottom: 16px;
}

.enquiry-modal__media-overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.enquiry-modal__media-overlay ul li {
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e6f7ec;
}

.enquiry-modal__media-overlay ul li i {
  color: #4ade80;
  font-size: 13px;
}

/*==================================
Right: Form
==================================*/

.enquiry-modal__form {
  padding: 26px 28px;
  overflow-y: auto;
}

.enquiry-modal__form-head {
  margin-bottom: 16px;
}

.enquiry-modal__form-head h3 {
  font-size: 21px;
  color: #111;
  margin-bottom: 4px;
}

.enquiry-modal__form-head p {
  font-size: 13px;
  color: #777;
  margin: 0;
}

.enquiry-modal__form .form-group {
  margin-bottom: 12px;
}

.enquiry-modal__form .form-group--icon input,
.enquiry-modal__form .form-group--icon select {
  height: 48px;
  padding: 16px 16px 4px 42px;
  font-size: 13.5px;
  border-radius: 12px;
  border: 1.5px solid #e2e2e2;
  /* yeh line add karein agar missing hai */
  background: rgba(255, 255, 255, 0.8);
}

.enquiry-modal__form .form-group--textarea textarea {
  min-height: 70px;
  padding: 16px 16px 4px 42px;
  font-size: 13.5px;
  border-radius: 12px;
}

.enquiry-modal__form .field-icon {
  top: 16px;
  left: 15px;
  font-size: 13px;
}

.enquiry-modal__form .form-group--textarea .field-icon {
  top: 15px;
}

.enquiry-modal__form .form-group--icon label {
  left: 42px;
  top: 14px;
  font-size: 13px;
}

.enquiry-modal__form .form-group--icon input:focus+label,
.enquiry-modal__form .form-group--icon input:not(:placeholder-shown)+label,
.enquiry-modal__form .form-group--icon select:focus+label,
.enquiry-modal__form .form-group--icon select.has-value+label,
.enquiry-modal__form .form-group--icon textarea:focus+label,
.enquiry-modal__form .form-group--icon textarea:not(:placeholder-shown)+label {
  top: -7px;
  left: 12px;
  font-size: 10.5px;
}

.enquiry-modal__form .theme-btn.enquiry-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  padding: 13px 24px;
}

/*==================================
Select — Full Reset (fix native styling)
==================================*/

.form-group--select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  border: 1.5px solid #e2e2e2;
  border-radius: 12px;
  outline: none;
  box-shadow: none;
  font-family: inherit;
  color: #111;
}

/* Safari/Chrome par select ke andar ka default inner shadow hatana */
.form-group--select select::-ms-expand {
  display: none;
}

.form-group--select select:focus {
  border-color: var(--theme-color);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(6, 142, 64, 0.1);
}

/* Placeholder option ka color halka rakhna */
.form-group--select select option[value=""] {
  color: #999;
}

.form-group--select select option {
  color: #111;
}

/*==================================
Responsive
==================================*/

@media (max-width: 767px) {
  .enquiry-modal {
    padding: 0;
  }

  .enquiry-modal__box {
    max-width: 90%;
    max-height: 100vh;
    height: 90%;
    border-radius: 10px;
  }

  .enquiry-modal__grid {
    grid-template-columns: 1fr;
    max-height: 100vh;
    overflow-y: auto;
  }

  .enquiry-modal__media {
    display: none;
  }

  .enquiry-modal__form {
    padding: 20px;
    overflow-y: visible;
  }
}

/*==================================
Prevent body scroll when modal open
==================================*/

body.modal-open {
  overflow: hidden;
}

/* ===============================
   POLICY PAGES
   Terms | Privacy | Refund
==================================*/

/* .policy-section {
  background: #f8fafc;
} */

.policy-wrapper {
  /* background: #fff; */
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.policy-header {
  text-align: center;
  margin-bottom: 45px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e8edf2;
}

.policy-title {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.policy-updated {
  color: #64748b;
  font-size: 15px;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.policy-block h2 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.policy-block p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 18px;
  text-align: justify;
}

.policy-block ol {
  padding-left: 22px;
}

.policy-block ol li {
  color: #475569;
  margin-bottom: 8px;
  line-height: 1.7;
}

.policy-block strong {
  color: #0f172a;
}

@media (max-width: 991px) {
  .policy-wrapper {
    padding: 35px;
  }

  .policy-title {
    font-size: 34px;
  }

  .policy-block h2 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .policy-wrapper {
    padding: 25px;
  }

  .policy-title {
    font-size: 28px;
  }

  .policy-block h2 {
    font-size: 22px;
  }

  .policy-block p,
  .policy-block ol li {
    font-size: 15px;
  }
}



.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
  color: #f5b301;
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-text {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-img img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ff6600;
}

.testimonial-info h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.testimonial-info span {
  color: #777;
  font-size: 14px;
}



.service-card {
  position: relative;
  background: #fff;
  border: 1px solid #e8ece8;
  border-radius: 22px;
  padding: 30px;
  height: 100%;
  overflow: hidden;
  transition: all .45s ease;
  cursor: pointer;
}

/* Top Gradient Line */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0e8f66, #22c55e, #f59e0b);
  transition: .5s;
}

.service-card:hover::before {
  left: 0;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .15);
  border-color: #0e8f66;
}

/* Number */
.service-card__num {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff3eb;
  color: #d46a1f;
  font-weight: 700;
  transition: .4s;
}

.service-card:hover .service-card__num {
  background: #0e8f66;
  color: #fff;
  transform: rotate(10deg) scale(1.08);
}

/* Icon Box */
.service-card__icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff5ef;
  border-radius: 18px;
  margin: 25px 0;
  color: #d46a1f;
  transition: .45s;
}

/* Bigger Icons */
.service-card__icon svg {
  width: 36px;
  height: 36px;
  transition: .45s;
}

.service-card:hover .service-card__icon {
  background: #0e8f66;
  color: #fff;
  transform: rotate(-8deg) scale(1.08);
}

.service-card:hover .service-card__icon svg {
  transform: scale(1.2);
}

/* Title */
.service-card__title {
  transition: .35s;
}

.service-card:hover .service-card__title {
  color: #0e8f66;
}

/* Description */
.service-card__desc {
  transition: .35s;
  color: #6b7280;
}

.service-card:hover .service-card__desc {
  color: #444;
}

/* Soft Background Glow */
.service-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(14, 143, 102, .08);
  border-radius: 50%;
  top: -120px;
  right: -120px;
  transition: .45s;
}

.service-card:hover::after {
  transform: scale(1.5);
}



.filter-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.selected-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 5px;
  width: 100%;
  cursor: pointer;
}

.selected-filter-tag {
  display: inline-flex;
  align-items: center;
  background: #f3f4f6;
  border: 1px solid #ddd;
  color: #333;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 3px;
  line-height: 18px;
  margin: 0;
}

.selected-filter-tag::before {
  content: "✕";
  margin-right: 5px;
  font-size: 10px;
  color: #666;
  cursor: pointer;
}


