*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #500005;
  --red-dark: #3a0004;
  --red-hover: #620007;
  --green: #134241;
  --green-dark: #0d2e2d;
  --green-light: #1a5554;
  --teal: #3fc1c0;
  --white: #ffffff;
  --off-white: #f6f6f4;
  --grey-bg: #f2f2f0;
  --text: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #888;
  --border: #e0e0e0;
  --font: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: 1250px;
  margin: auto;
  left: 0px;
  right: 0px;
  width: 1250px;
}

/* ───────────── NAVBAR ───────────── */
.container {
  max-width: 1300px;
  margin: auto;
  left: 0px;
  right: 0px;
}

.navbar {
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0px;
  height: 66px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
}

.logo-box {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-text {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
}

.logo-text span {
  color: var(--red);
}

/* nav list */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* every top-level item */
.nav-links>li {
  position: relative;
}

.nav-links>li>a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 12px;
  border-radius: 5px;
  transition: color .2s, background .2s;
  white-space: nowrap;
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* 142.857% */
}

.nav-links>li>a:hover,
/* chevron arrow — only on .has-drop */
.has-drop>a .arr {
  transition: transform .25s;
}

.has-drop:hover>a .arr {
  transform: rotate(180deg);
  color: #fff;
}

.hero-eyebrow.fi.show {
  color: #4DA19F;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

/* ── DROPDOWN PANEL (Services only) ── */
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.13);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 2000;
}

.has-drop:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* caret tip */
.dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
  pointer-events: none;
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  transition: background .18s, color .18s;
}

.dropdown a:hover {
  background: rgba(80, 0, 5, 0.06);
  color: var(--red);
}

.dd-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: rgba(80, 0, 5, 0.07);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--red);
  transition: background .18s;
}

.dropdown a:hover .dd-icon {
  background: rgba(80, 0, 5, 0.14);
}

.dd-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.dd-info small {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 400;
}

/* 2-col mega layout */
.dropdown.mega {
  min-width: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.dropdown-divider {
  grid-column: 1 / -1;
  height: 1px;
  background: var(--border);
  margin: 4px 8px;
}

.dropdown-footer {
  grid-column: 1 / -1;
  padding: 8px 4px 4px;
}

.dropdown-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  width: 100%;
  transition: background .2s;
}

.dropdown-footer a:hover {
  background: var(--red-hover) !important;
  color: #fff !important;
}

.dropdown-footer a .dd-icon {
  display: none;
}

/* nav CTA */
.nav-cta {
  background: var(--red);
  color: #fff;
  padding: 9px 22px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1px;
  transition: background .2s;
  white-space: nowrap;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--red-hover);
  color: #fff;
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── MOBILE MENU ── */
.mob-menu {
  display: none;
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  padding: 12px 20px 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  gap: 0;
  max-height: calc(100vh - 66px);
  overflow-y: auto;
}

@media(max-width:991px) {
  .mob-menu.open {
    display: flex;
  }
}


/* top-level mob link */
.mob-item {
  border-bottom: 1px solid var(--border);
}

.mob-item:last-of-type {
  border-bottom: none;
}

.mob-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.mob-top a {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.mob-top .mob-arr {
  font-size: 11px;
  color: var(--text-light);
  transition: transform .25s;
  padding: 4px 6px;
}

.mob-item.open .mob-arr {
  transform: rotate(180deg);
  color: var(--red);
}

/* mob sub */
.mob-sub {
  display: none;
  flex-direction: column;
  background: var(--off-white);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.mob-item.open .mob-sub {
  display: flex;
}

.mob-sub a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  transition: color .18s, background .18s;
}

.mob-sub a:last-child {
  border-bottom: none;
}

.mob-sub a:hover {
  color: var(--red);
  background: rgba(80, 0, 5, 0.04);
}

.mob-sub a i {
  color: var(--red);
  width: 16px;
  text-align: center;
  font-size: 12px;
}

.mob-menu .mob-cta {
  margin-top: 14px;
  display: block;
  background: var(--red);
  color: #fff;
  padding: 13px 24px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
}

.mob-menu .mob-cta:hover {
  background: var(--red-hover);
}

header {
  background: #134241;
  padding: 10px;
}

/* ───────────── HERO ───────────── */
.hero {

  height: 750px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-eyebrow span {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.hero h1 {
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 57.6px;
  /* 120% */
  letter-spacing: -0.96px;
}

.hero h1 em {
  color: var(--teal);
  font-style: normal;
  display: block;
}

.hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 70%;
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 400;
  color: #D1D5DC;
  text-align: center;
  font-family: Inter;
  font-size: 17.6px;
  font-style: normal;
  font-weight: 400;
  line-height: 29.92px;
  text-align: center;
  margin: auto;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.btn-red {
  background: var(--red);
  color: #fff;
  padding: 13px 28px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1px;
  border: 2px solid var(--red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  cursor: pointer;
}

.btn-red:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  padding: 13px 28px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  cursor: pointer;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.stats-bar {
  display: flex;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  overflow: hidden;
  max-width: 70%;
  backdrop-filter: blur(6px);
  background: #134241;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 70%;
  justify-content: center;
  left: 0px;
  right: 0px;
  margin: auto;
}

.stat-cell {
  flex: 1;
  text-align: center;
  padding: 25px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-cell:last-child {
  border-right: none;
}

.stat-num {
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
}

.stat-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 5px;
  display: block;
  font-weight: 500;
}

.hero-content {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.hero-btns {
  justify-content: center;
  margin-top: 20px;
}

/* ───────────── ABOUT ───────────── */
.about {
  padding: 96px 60px;
  background: var(--white);
}

.about-wrap {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.eyebrow {
  color: #460C0A;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  /* 142.857% */
  letter-spacing: 0.7px;
  text-transform: uppercase;
  ;
  padding-left: 40px;
  position: relative;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  bottom: 10px;
  left: 0px;
  position: absolute
}

.sec-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 18px;
  color: #111;
  font-family: Inter;
  font-size: 41.013px;
  font-style: normal;
  font-weight: 700;
  line-height: 48.267px;
}

.body-txt {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin: 24px 0 32px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
}

.check-item .ck {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 9px;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--text);
  color: #fff;
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 13.5px;
  font-weight: 600;
  transition: background .2s;
  border-radius: 4px;
  background: #460C0A;
}

.btn-dark:hover {
  background: var(--red);
  color: #fff;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 5/4;
  object-fit: cover;
  display: block;
}

.yrs-badge {
  position: absolute;
  bottom: -8px;
  left: -18px;
  background: var(--red);
  padding: 20px 24px;
  border-radius: 8px;
  color: #fff;
  text-align: center;
  box-shadow: 0 12px 32px rgba(80, 0, 5, 0.35);
  width: 190px;
}

.yrs-badge .l br {
  display: none;
}

.yrs-badge .n {
  color: #FFF;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  /* 111.111% */
  letter-spacing: -2px;
  display: block;
  line-height: 1;
}

.yrs-badge .l {
  font-size: 12px;
  font-weight: 500;
  opacity: .8;
  line-height: 1.4;
}

/* ───────────── SERVICES ───────────── */
.services {
  padding: 80px 0px;
  background: var(--off-white);
  background: #F8F9FB;
}

.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.sec-head .eyebrow {
  justify-content: center;
}

.sec-head .eyebrow::before {
  display: none;
}

.sec-head .sec-title {
  margin: 10px auto 14px;
}

.sec-sub {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.75;
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 auto;
}

.srv-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 28px 22px 22px;
  transition: all .25s;
  cursor: pointer;
}

.srv-card:hover {
  border-color: #134241;
  box-shadow: 0 10px 36px rgba(80, 0, 5, 0.1);
  transform: translateY(-4px);
}

.srv-card.dark-card {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.srv-card.dark-card:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  box-shadow: 0 10px 36px rgba(80, 0, 5, 0.3);
}

.srv-icon {
  width: 48px;
  height: 48px;
  background: #134241;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.srv-card.dark-card .srv-icon {
  background-color: transparent;
  color: #fff;
}

.srv-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 9px;
  line-height: 1.3;
}

.srv-card.dark-card h3 {
  color: #fff;
  font-size: 17px;
}

.srv-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}

.srv-card.dark-card p {
  color: rgba(255, 255, 255, 0.72);
}

.lm {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s;
}

.lm:hover {
  gap: 9px;
}

.srv-card.dark-card .lm {
  color: #fff;
}

/* ───────────── GALLERY ───────────── */
/* ───────────── GALLERY ───────────── */

.gallery {
  padding: 88px 60px;
  background: var(--white);
}

.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 32px;
}

.gallery-head .eyebrow {
  margin-bottom: 8px;
}

.gallery-head .sec-title {
  margin-bottom: 0;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  background: #fff;
  white-space: nowrap;
  transition: all .3s ease;
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.gal-grid {
  display: grid;
  grid-template-columns: 2.1fr 1fr 1fr;
  grid-template-rows: 225px 225px;
  gap: 12px;
  margin: 0 auto;
}

.gal-item {
  overflow: hidden;
  border-radius: 12px;
  background: #ccc;
  position: relative;
  display: block;
}

.gal-item:first-child {
  grid-row: 1 / 3;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.gal-item:hover img {
  transform: scale(1.08);
}

.gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}

.gal-item:hover::after {
  opacity: 1;
}

/* MOBILE RESPONSIVE */

@media (max-width: 991px) {

  .gallery {
    padding: 70px 20px;
  }

  .gallery-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .gal-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gal-item:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
    height: 280px;
  }

  .gal-item {
    height: 220px;
  }
}

@media (max-width: 575px) {

  .gallery {
    padding: 60px 15px;
  }

  .gal-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gal-item,
  .gal-item:first-child {
    grid-column: auto;
    height: 240px;
  }

  .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

/* ───────────── WHY CHOOSE US ───────────── */
.why {
  padding: 96px 60px;
  background: var(--green);
}

.why-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.why-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.why-eyebrow span {
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.why-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}

.why-sub {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
  ;
  margin: 0 auto;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-radius: 10px;
  border: 0.889px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
}

.wi-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.8);
}

.why-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 7px;
}

.why-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ───────────── CONTACT ───────────── */
.contact {
  padding: 96px 60px;
  background: var(--white);
}

.contact-wrap {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 30px;
  align-items: flex-start;
}

.contact-left .sec-title {
  margin: 12px 0 16px;
}

.contact-left .body-txt {
  margin-bottom: 32px;
}

.ci-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.ci-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: rgba(80, 0, 5, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--red);
}

.ci-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.ci-text small {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 2px;
}

.sendbox {
  border-radius: 14px;
  border: 0.889px solid #F3F4F6;
  background: #F9FAFB;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
  padding: 25px 20px;
}

.form-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 24px;
  color: var(--text);
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.f-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.f-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-mid);
}

.f-group input,
.f-group textarea {
  font-family: var(--font);
  font-size: 13.5px;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  background: var(--off-white);
  outline: none;
  transition: border .2s, background .2s;
  width: 100%;
}

.f-group input:focus,
.f-group textarea:focus {
  border-color: var(--red);
  background: #fff;
}

.f-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-send {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background .2s;
}

.btn-send:hover {
  background: var(--red-hover);
}

/* ───────────── CTA BANNER ───────────── */
.footer-top {
  background: var(--green);
  padding: 30px 60px;
}

.cta-bar {

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-bar .ct {}

.cta-bar h3 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}

.cta-bar p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.cta-btns {
  display: flex;
  gap: 12px;
}

.btn-white {
  background: #fff;
  color: var(--green);
  padding: 11px 24px;
  border-radius: 5px;
  font-size: 13.5px;
  font-weight: 700;
  border: 2px solid #fff;
  cursor: pointer;
  transition: all .2s;
}

.btn-white:hover {
  background: transparent;
  color: #fff;
}

.btn-gho {
  background: transparent;
  color: #fff;
  padding: 11px 24px;
  border-radius: 5px;
  font-size: 13.5px;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gho:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

/* ───────────── FOOTER ───────────── */
footer {
  background: #500005;
  ;
  padding: 64px 0px 0;
}

.footer-grid {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgb(255 255 255 / 51%);
}

.ft-brand .nav-logo {
  margin-bottom: 16px;
}

.ft-brand .logo-text {
  color: #fff;
}

.ft-brand p {
  font-size: 15px;
  color: rgb(255 255 255);
  line-height: 1.8;
}

.ft-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.ft-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: all .2s;
}

.ft-social a:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.ft-col h4 {
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 0px;
}

.ft-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--red);
}

.ft-col ul li {
  margin-bottom: 10px;
}

.ft-col ul a {
  font-size: 15px;
  color: rgb(255 255 255);
  display: inline-flex;
  align-items: center;
  gap: 0px;
  transition: color .2s;
}

.ft-col ul a:hover {
  color: rgb(64 163 161);
}

.ft-col ul a i {
  font-size: 10px;
  color: var(--red);
}

.ft-contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.ft-contact-row i {
  color: #ffffff;
  font-size: 17px;
  margin-top: 6px;
  x-shrink: 0;
}

.ft-contact-row span {
  font-size: 15px;
  color: rgb(255 255 255);
  line-height: 1.65;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 14.5px;
  color: rgb(255, 255, 255);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: rgb(255, 255, 255);
  transition: color .2s;
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* ───────────── FADE-IN ───────────── */
.fi {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.fi.show {
  opacity: 1;
  transform: none;
}


/* ─────────────────────────────────────────────
   SHARED SECTION EYEBROW / LABEL
   ab__eyebrow  — small centred label above title
───────────────────────────────────────────── */

.ab__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #460C0A;
  margin-bottom: 10px;
}

.ab__eyebrow span {
  display: block;
  width: 30px;
  height: 1px;
  background: #460C0A;
}

.inhero-eyebrow.fi.show {
  color: #ffffff;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.innersubtitle {
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 84px;
}

/* ─────────────────────────────────────────────
   SHARED SECTION HEADING
───────────────────────────────────────────── */
.ab__sec-title {
  color: #111;
  text-align: center;
  font-family: Inter;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  /* 150% */
  text-align: center;
}

/* ─────────────────────────────────────────────
   FADE-IN ANIMATION  (ab__fi)
   unique prefix — no conflict with home .fi
───────────────────────────────────────────── */
.ab__fi {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.ab__fi.show {
  opacity: 1;
  transform: none;
}


/* ═══════════════════════════════════════════
   SECTION 1 — VISION & MISSION
   Classes: ab__vm-*
═══════════════════════════════════════════ */

/* ── Section wrapper ── */
.ab__vm-section {
  padding: 96px 0 80px;
  background: #F8F9FB;
}

/* ── Section head ── */
.ab__vm-head {
  text-align: center;
  margin-bottom: 52px;
}

/* ── 3-column card grid ── */
.ab__vm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Individual card ── */
.ab__vm-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  transition: box-shadow .25s, transform .25s;
}

.ab__vm-card:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, .09);
  transform: translateY(-4px);
}

/* ── Icon badge ── */
.ab__vm-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

/* colour variants */
.ab__vm-icon.red {
  background: rgba(80, 0, 5, .09);
  color: var(--red);
}

.ab__vm-icon.green {
  background: rgba(19, 66, 65, .10);
  color: var(--green);
}

.ab__vm-icon.teal {
  background: rgba(63, 193, 192, .12);
  color: #2a9e9d;
}

/* ── Card text ── */
.ab__vm-card h3 {
  color: #111;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  /* 140% */
}

.ab__vm-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}


/* ═══════════════════════════════════════════
   SECTION 2 — WHY CHOOSE BUILDTECH
   Classes: ab__why-*
═══════════════════════════════════════════ */

/* ── Section wrapper ── */
.ab__why-section {
  padding: 88px 0 80px;
}

/* ── Section head ── */
.ab__why-head {
  text-align: center;
  margin-bottom: 52px;
}

/* ── 3-column grid (row 1) + 2-column (row 2) centred ── */
.ab__why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Row 2: 2 items centred ── */
.ab__why-grid .ab__why-item:nth-child(4),
.ab__why-grid .ab__why-item:nth-child(5) {
  /* handled by auto-placement; use justify below if needed */
}

/* center the last row when only 2 items remain */
.ab__why-row2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: calc((100% / 3) * 2 + 28px);
  margin: 28px auto 0;
}

/* ── Individual item ── */
.ab__why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
  transition: box-shadow .25s;
}

.ab__why-item:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, .11);
}

/* ── Icon ── */
.ab__why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(80, 0, 5, .08);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  color: var(--red);
}

/* ── Text ── */
.ab__why-item h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
}

.ab__why-item p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════
   SECTION 3 — INDUSTRIES SERVED
   Classes: ab__ind-*
═══════════════════════════════════════════ */

/* ── Section wrapper — dark green background ── */
.ab__ind-section {
  padding: 80px 0 72px;
  background: var(--green);
  border-bottom: 1px solid #fff;
}

/* ── Section head ── */
.ab__ind-head {
  text-align: center;
  margin-bottom: 48px;
}

.ab__ind-head .ab__eyebrow {
  color: rgba(255, 255, 255, .45);
}

.ab__ind-head .ab__eyebrow span {
  background: rgba(255, 255, 255, .2);
}

.ab__ind-head .ab__sec-title {
  color: #fff;
}

/* ── 5-column grid ── */
.ab__ind-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

/* ── Individual industry card ── */
.ab__ind-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 30px 20px 28px;
  text-align: center;
  cursor: pointer;
  transition: background .25s, border-color .25s, transform .25s;
}

.ab__ind-card:hover {
  background: rgba(255, 255, 255, .11);
  border-color: rgba(255, 255, 255, .22);
  transform: translateY(-4px);
}

/* ── Industry icon container ── */
.ab__ind-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin: 0 auto 16px;
  transition: background .25s;
}

.ab__ind-card:hover .ab__ind-icon {
  background: var(--red);
}

/* ── Card label ── */
.ab__ind-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

/* ── Card description ── */
.ab__ind-card p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .62);
  line-height: 1.65;
}

.innerhero {
  padding: 200px 0px;
}

/* <-------------inner page service-------------> */
.isvc-wrap {
  font-family: var(--font);
  background: var(--grey-bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ── TOP NAV ── */
.isvc-topnav {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.isvc-topnav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.isvc-topnav-inner::-webkit-scrollbar {
  display: none;
}

.isvc-navbtn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 15px 20px;
  white-space: nowrap;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  transition: all 0.5s ease-in;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

body,
html {
  overflow-x: hidden;
}

.isvc-navbtn:hover {
  color: var(--red);
  background: #fdf5f5;
}

.isvc-navbtn.isvc-active {
  color: var(--red);
  border-bottom-color: var(--red);
  background: #fdf5f5;
}

.isvc-navbtn .isvc-ico {
  font-size: 14px;
  flex-shrink: 0;
}

/* ── TAB PANELS ── */
.isvc-panel {
  display: none;
}

.isvc-panel.isvc-active {
  display: block;
  animation: isvcFadeIn 0.28s ease;
}

@keyframes isvcFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── HERO (REPAIR TAB — 2 col) ── */
.isvc-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.isvc-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.isvc-hero h1 {
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.isvc-hero-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 32px;
  max-width: 420px;
}

.isvc-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.isvc-btn-primary {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 13px 26px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.isvc-btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(80, 0, 5, 0.3);
}

.isvc-btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
  padding: 11px 24px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.isvc-btn-outline:hover {
  background: var(--text);
  color: var(--white);
}

.isvc-hero-img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/11;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.13);
}

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

.isvc-hero-img-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── GENERIC HERO (other tabs — single col) ── */
.isvc-ghero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 24px 44px;
}

.isvc-ghero h1 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.isvc-ghero p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 28px;
}

/* ── ACCENT DIVIDER ── */
.isvc-divider {
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, transparent 100%);
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 2px;
}

/* ── CARDS SECTION ── */
.isvc-cards-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 24px 60px;
}

.isvc-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.isvc-card {
  background: var(--white);
  border-radius: 8px;
  padding: 26px 24px;
  border: 1px solid var(--border);
  transition: all 0.22s;
  position: relative;
  overflow: hidden;
}

.isvc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.isvc-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  border-color: transparent;
}

.isvc-card:hover::after {
  transform: scaleX(1);
}

.isvc-card-tick {
  width: 30px;
  height: 30px;
  background: var(--red);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.isvc-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 9px;
}

.isvc-card-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-mid);
}

.service-category-section {
  padding: 60px 20px;
  background: #f6f7f9;
}


/* Title */
.service-category-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #222;
}

/* Grid */
.service-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card */
.service-category-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  transition: 0.3s ease;
  border: 1px solid #eee;
  cursor: pointer;
}

/* Icon */
.service-category-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

/* Text */
.service-category-card h3 {
  font-size: 16px;
  margin: 0 0 5px;
  color: #222;
}

.service-category-card p {
  font-size: 13px;
  color: #777;
}

/* Hover Effect */
.service-category-card:hover {
  background: #c97f7f;
  border-color: #c97f7f;
  transform: translateY(-5px);
}

.service-category-card:hover h3,
.service-category-card:hover p {
  color: #fff;
}

/* Active (First Box Same Style) */
.service-category-card.active {
  background: #c97f7f;
  border-color: #c97f7f;
}

.service-category-card.active h3,
.service-category-card.active p {
  color: #fff;
}

/* Responsive */

/* Tablet */
@media (max-width: 992px) {
  .service-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .service-category-grid {
    grid-template-columns: 1fr;
  }

  .service-category-title {
    font-size: 22px;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .isvc-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 20px 32px;
  }

  .isvc-hero-img {
    order: -1;
    aspect-ratio: 16/9;
  }

  .isvc-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .isvc-navbtn {
    padding: 12px 13px;
    font-size: 12px;
    gap: 5px;
  }

  .isvc-hero {
    padding: 26px 16px 26px;
  }

  .isvc-ghero {
    padding: 28px 16px 24px;
  }

  .isvc-cards-wrap {
    padding: 28px 16px 44px;
  }

  .isvc-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .isvc-card {
    padding: 20px 18px;
  }

  .isvc-btn-primary,
  .isvc-btn-outline {
    padding: 11px 18px;
    font-size: 12px;
  }

  .isvc-hero h1 {
    font-size: 28px;
  }
}


.igal-wrap {
  font-family: var(--font);
  background: var(--grey-bg);
  padding: 0 0 64px;
}

/* ── FILTER TAB BAR ── */
.igal-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  position: sticky;
  top: 0;
  /* sits under your main sticky header — adjust if needed */
  z-index: 90;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.igal-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 12px 0;
}

.igal-bar-inner::-webkit-scrollbar {
  display: none;
}

.igal-filbtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  background: transparent;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;color: #4A5565;
text-align: center;
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: 20px; /* 142.857% */
}

.igal-filbtn:hover {
  border-color: var(--red);
  color: var(--red);
  background: #fdf5f5;
}

.igal-filbtn.igal-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.igal-count-badge {
  background: rgba(255, 255, 255, 0.25);
  font-size: 11px;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 20px;
  line-height: 1.6;
}

.igal-filbtn:not(.igal-active) .igal-count-badge {
  background: var(--grey-bg);
  color: var(--text-light);
}

/* ── RESULTS HEADER ── */
.igal-results-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.igal-found {
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 500;
}

.igal-found strong {
  color: var(--text);
  font-weight: 700;
}

/* ── GRID ── */
.igal-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* ── CARD ── */
.igal-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.22s, box-shadow 0.22s;
  cursor: pointer;
}

.igal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

.igal-card[data-hidden] {
  display: none;
}

/* image wrapper */
.igal-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--grey-bg);
}

.igal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.igal-card:hover .igal-thumb img {
  transform: scale(1.06);
}

/* category badge on image */
.igal-cat-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  line-height: 1.4;
  color: #FFF;
  font-family: Inter;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  /* 133.333% */
}


.igal-overlay-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--red);
}

/* card body */
.igal-body {
  padding: 14px 16px 16px;
}

.igal-title {
  color: #111;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  /* 142.857% */
}

.igal-loc {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}


/* ── EMPTY STATE ── */
.igal-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
  color: var(--text-light);
  grid-column: 1 / -1;
}

.igal-empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.4;
}

.igal-empty p {
  font-size: 15px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .igal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .igal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 0 16px;
  }

  .igal-results-bar {
    padding: 18px 16px 12px;
  }

  .igal-bar {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .igal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 12px;
  }

  .igal-filbtn {
    font-size: 12px;
    padding: 7px 14px;
  }

  .igal-body {
    padding: 10px 12px 12px;
  }

  .igal-title {
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .igal-grid {
    grid-template-columns: 1fr;
  }
}

.client-counter {    background: var(--green);
    padding: 30px 0px;}



/* <----------------client page----------> */

/* ===== CLIENT SECTION (NO CONFLICT CLASSES) ===== */
.client-sec {
  padding: 60px 20px;
}

.client-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.client-header,
.review-header {
  text-align: center;
  margin-bottom: 30px;
}

.client-subtitle {
  font-size: 12px;
  color: #134241;
  letter-spacing: 1px;
  font-weight: 600;
}

.client-title {
  font-size: 28px;
  margin: 10px 0;
  color: #222;
}

.client-desc {
  color: #666;
  font-size: 14px;
}

/* Client Grid */
.client-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.client-box {
  border-radius: 14px;
  border: 0.889px solid #F3F4F6;
  background: #F9FAFB;
  border-radius: 10px;
  padding: 20px 10px;
  text-align: center;
  font-weight: bold;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.client-box img {
  width: 50px;
  height: 50px;
  margin: auto;
  display: block;
  margin-bottom: 10px;
}

.client-box span {
  display: block;
  color: #4A5565;
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 15px;
  /* 125% */
}

.client-box:hover {
  transform: translateY(-5px);
}

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.stars {
  color: #f4b400;
  margin-bottom: 10px;
}

.review-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-circle {
  width: 40px;
  height: 40px;
  background: #134241;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.review-user h4 {
  font-size: 14px;
  margin: 0;
}

.review-user span {
  font-size: 12px;
  color: #777;
}

.review-sec .swiper-slide {
  display: flex;
  height: auto;
  width: 100%;
}

.review-secv .swiper-horizontal>.swiper-pagination-bullets,
.review-sec .swiper-pagination-bullets.swiper-pagination-horizontal,
.review-sec .swiper-pagination-custom,
.review-sec .swiper-pagination-fraction {
  bottom: -40px;
}

.review-tag {
  display: inline-block;
  margin-top: 20px;
  font-size: 11px;
  border-radius: 4px;
  background: #C2DADA;
  color: #134241;
  padding: 5px 10px;
  border-radius: 20px;
  color: #134241;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  /* 133.333% */
}

.review-sec {
  padding: 60px 0px 80px 0px;
  background: #f5f6f7;
}

.reviewSwiper {
  margin-top: 30px;
}

.swiper-slide {
  height: auto;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #134241;
}

.review-tag {
  border-radius: 4px;
  background: #C2DADA;
}

/* Pagination */
.swiper-pagination-bullet {
  background: #134241;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
  .client-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 576px) {
  .client-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .client-title {
    font-size: 22px;
  }
}



/* ================= GLOBAL ================= */
.cp-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* ================= CONTACT SECTION ================= */
.cp-contact-section {
  padding: 60px 0;
}

.cp-contact-section .cp-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.cp-contact-info {
  flex: 1;
  min-width: 300px;
}

.cp-subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  color: #777;
}

.cp-title {
  font-size: 28px;
  margin: 2px 0;
}

.cp-desc {
  color: #555;
  margin-bottom: 20px;
}

.cp-info-box {
  background: #fff;
  padding: 15px;
  margin-bottom: 12px;
  border-radius: 8px;
}

.cp-info-box h4 {
color: #6A7282;
font-family: Inter;
font-size: 12px;
font-style: normal;
font-weight: 600;
line-height: 16px; /* 133.333% */
letter-spacing: 0.6px;
text-transform: uppercase;
}

.cp-whatsapp-btn {
  display: block;
  background: #25D366;
  color: #fff;
  padding: 12px;
  text-align: center;
  border-radius: 6px;
  margin-top: 15px;
  text-decoration: none;    display: flex;
    align-items: center;
}
.cp-info-box a{color: #4A5565;
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 20px; /* 142.857% */}
/* RIGHT FORM */
.cp-contact-form {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 25px;
  border-radius: 10px;border-radius: 16px;
border: 0.889px solid #F3F4F6;
background: #F9FAFB;
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
}

.cp-contact-form h3 {
  margin-bottom: 15px;
}

.cp-contact-form input,
.cp-contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.cp-form-row {
  display: flex;
  gap: 10px;
}

.cp-form-row input {
  flex: 1;
}

.cp-contact-form textarea {
  height: 120px;
}

.cp-submit-btn {
  width: 100%;
  background: #6d0000;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;    cursor: pointer;
    margin-top: 10px;
}

/* ================= MAP ================= */
.cp-map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
}
.cp-card-icon i{color: #6d0000;font-size: 25px;    margin-bottom: 10px;
}
/* ================= CARDS ================= */
.cp-contact-cards {
  background: #6d0000;
  padding: 40px 0;
}

.cp-contact-cards .cp-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cp-card {
  flex: 1;
  background: #fff;
  padding: 35px 20px;
  text-align: center;
  border-radius: 10px;
}

.cp-card a {
  display: inline-block;
  margin-top: 10px;
  background: #6d0000;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;color: #FFF;
text-align: center;
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 20px;}
.cp-field {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.cp-field label {
 color: #4A5565;
font-family: Inter;
font-size: 12px;
font-style: normal;
font-weight: 600;
line-height: 16px; /* 133.333% */
letter-spacing: 0.6px;
text-transform: uppercase;
}
.maptitl{color: #111;
font-family: Inter;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 28px; /* 155.556% */}
/* ================= INFO BOX WITH ICON ================= */
.cp-info-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;border-radius: 14px;
border: 0.889px solid #F3F4F6;
background: #F9FAFB;
}
.chtcolor span{color: #FFF;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 24px; 
}
.chtcolor p{color: #DCFCE7;
font-family: Inter;
font-size: 12px;
font-style: normal;
font-weight: 600;
line-height: 16px; 
}
.cp-info-icon {
  min-width: 40px;
  height: 40px;
  background: var(--green-light);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 16px;
}

/* WhatsApp icon spacing */
.cp-whatsapp-btn i {
  margin-right: 8px;
    font-size: 30px;width: 40px;
}
.chtcolor {
    width: 50%;
    text-align: left;
}
.breadcrumb{
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #fff;
}

.breadcrumb a{
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.breadcrumb a:hover{
  color: #c59d5f;
}

.breadcrumb span{
  opacity: 0.8;
}
.client-counter .stat-cell,.client-counter .stats-bar {border: 0px solid transparent;}
/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .cp-form-row {
    flex-direction: column;
  }

  .cp-contact-section .cp-container {
    flex-direction: column;
  }

  .cp-contact-cards .cp-container {
    flex-direction: column;
  }
}








/* ───────────── RESPONSIVE ───────────── */
/* FIXED HEADER */
header {
  background: #134241;
  padding: 10px;
  width: 100%;
  z-index: 9999;
  transition: all .3s ease;
}

/* SCROLL FIXED */
header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  animation: slideDown .4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {

  /* Vision & Mission: 2 cols */
  .ab__vm-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Why: 2 cols, cancel special row-2 */
  .ab__why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab__why-row2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    margin: 0;
  }

  /* merge both rows into one grid visually */
  .ab__why-grid,
  .ab__why-row2 {
    gap: 22px;
  }

  /* Industries: 3 cols */
  .ab__ind-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:991px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mob-item {
    border-bottom: 1px solid var(--border);
    padding: 10px;
  }

  .mob-cta.active,
  .mob-cta,
  .mob-menu .mob-cta {
    display: none;
  }

  .mob-menu {
    height: 100vh;
  }

  .mob-top a {
    flex: 1;
    font-size: 16px;
    font-weight: 400;
    padding: 0px;
    color: var(--text);
  }

  .mob-top {
    padding: 0px;
  }

  .mob-menu {
    top: 86px;
  }
}

@media (max-width:1300px) {
  .container {
    max-width: 90%;
    width: 90%;
  }

  .hero-content {
    max-width: 100%;
  }
  .innerhero {
    padding: 150px 0px;
}
}

@media (max-width: 1100px) {
  .cta-bar {
    justify-content: center;
  }

  .navbar {
    padding: 0 32px;
  }

  .hero {
    padding: 64px 32px;
  }

  .about,
  .services,
  .gallery,
  .why,
  .contact {
    padding: 72px 0px;
  }

  .cta-bar {
    padding: 28px 32px;
  }

  footer {
    padding: 56px 32px 0;
  }

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

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

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

  .gal-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gal-item:first-child {
    grid-row: auto;
  }

  .gal-item {
    height: 220px;
  }

  .sec-head {
    max-width: 100%;
    margin: 0px auto 32px;
  }
  .innerhero {
    padding: 120px 0px;
}
.footer-grid {
    gap: 28px;}
    .cp-map-section iframe {
    height: 330px;}
}

@media (max-width:1000px) {
  .sec-title {
    font-size: 32.013px;
    line-height: 37.267px;
  }

  .why-head {
    max-width: 100%;
    margin: 0 auto 30px;
  }

}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 52px 20px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .stats-bar {
    flex-wrap: wrap;
    max-width: 100%;
  }

  .stat-cell {
    min-width: 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stat-cell:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stat-cell:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .about {
    padding: 60px 20px;
  }

  .about-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .yrs-badge {
    left: 12px;
    bottom: -12px;
  }

  .services {
    padding: 60px 20px;
  }

  .srv-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .gallery {
    padding: 60px 20px;
  }

  .gallery-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
  }

  .gal-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }

  .gal-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .gal-item {
    height: auto;
  }

  .why {
    padding: 60px 0px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact {
    padding: 60px 0px;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .f-row {
    grid-template-columns: 1fr;
  }

  .cta-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 20px;
  }

  .cta-btns {
    width: 100%;
  }

  .btn-white,
  .btn-gho {
    flex: 1;
    justify-content: center;
    text-align: center;
  }

  footer {
    padding: 52px 0px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .hero-btns {
    margin-bottom: 201px;
  }

  .eyebrow {
    font-size: 14px;
    line-height: 0px;
    padding-left: 0px;
  }

  /* ── Section padding ── */
  .ab__vm-section,
  .ab__why-section,
  .ab__ind-section {
    padding: 64px 0 56px;
  }

  /* ── Section title size ── */
  .ab__sec-title {
    font-size: 26px;
  }

  /* Vision & Mission: 1 col */
  .ab__vm-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* Why: 1 col */
  .ab__why-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ab__why-row2 {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0;
    gap: 18px;
  }

  /* Industries: 2 cols */
  .ab__ind-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* Why item: stack icon on top */
  .ab__why-item {
    flex-direction: column;
    gap: 14px;
  }
  .innerhero {
    padding: 50px 0px;
}
.innersubtitle {
    font-size: 46px;
    font-weight: 700;
    line-height: 58px;
}
.cp-title {
    font-size: 23px;
    margin: 7px 0 2px 0px;
}
.cp-contact-section {
    padding: 40px 0;
}
.cp-contact-form {
    padding: 15px;}
    .cp-map-section {
    padding: 40px 2%;
}
.cp-map-section iframe {
    
    height: 280px;}

    .innersubtitle {
    font-size: 32px;
    font-weight: 600;
    line-height: 43px;
}
    .hero-content {
        max-width: 100%;
        padding: 0px 10px;
    }  
   .hero-desc {
    margin-bottom: 16px;
    font-family: Inter;
    font-size: 16.6px;
    line-height: 22.92px;
    padding-top: 10px;
}
.review-sec {
    padding: 50px 0px 50px 0px;}
}

@media (max-width: 600px) {
  .hero h1 {
    letter-spacing: -0.8px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn-red,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

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

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

  .gal-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gal-item:first-child {
    grid-column: 1;
  }

  .gal-item {
    height: 200px;
  }

  .why-grid {
    gap: 22px;
  }

  .cta-btns {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 35px;
    line-height: 40px;
  }

  .footer-bottom-links {
    gap: 14px;
  }

  .hero h1 br {
    display: none;
  }

  .hero-desc {
    max-width: 100%;
  }

  .sec-title {
    font-size: 30.013px;
    line-height: 37px;
    padding-top: 10px;
  }

  .sec-title br {
    display: none;
  }

  .footer-top {
    padding: 30px 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid {
    padding-bottom: 28px;
  }

  .stats-bar {
    width: 100%;
  }

  .stat-num {
    font-size: 24px;
    line-height: 32px;
  }

  .yrs-badge .n {
    font-size: 30px;
  }

  header {
    padding: 10px 0px;
  }

  .ab__sec-title {
    font-size: 22px;
    letter-spacing: -.4px;
  }

  .ab__eyebrow {
    font-size: 10px;
  }

  /* Industries: 1 col on very small screens */
  .ab__ind-grid {
    grid-template-columns: 1fr;
  }

  .ab__vm-head,
  .ab__why-head,
  .ab__ind-head {
    margin-bottom: 32px;
  }
}

@media (max-width:400px) {
  .hero h1 {
    font-size: 25px;
    line-height: 31px;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 36px;
    font-size: 15.6px;
    line-height: 24.92px;
    padding-top: 10px;
  }

  .yrs-badge {
    padding: 20px 10px;
    width: 150px;
  }

  .sec-title {
    font-size: 25.013px;
    line-height: 22.267px;
    padding-top: 26px;
  }

  .cta-bar {
    padding: 18px 0px;
  }
}



/* <---------------add css-----------> */
.inhero-eyebrow{color:#fff;}
/* <---------------blog--------------> */
section.inblog.featureprdct {
    padding: 80px 0px;
}
.inblog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}
.blog-box {
    box-shadow: 0px 0px 10px #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s ease-in;
    background-color: transparent;
    margin-bottom: 15px;
    border: 1px solid transparent;
       box-shadow: 0px 09px 20px #ddd;
  border-radius: 10px;
}
.blog-img{overflow: hidden;height: 250px;display: block;transition: all 0.5s ease-in;}
.blog-box img {
    transition: all 0.5s ease-in;    
}
.blog-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.blog-box:hover {
    border: 1px solid #500005;
    color: #fff;
    transform: translateY(5px);
}
.blog-box:hover img {
    transform: scale(1.1);
}
.st-blog-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: #bbb;
    margin-top: 15px;
    margin-bottom: 10px;
    justify-content: space-between;
}
.blogtitl {
    color: #494949;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    text-transform: capitalize;
    margin-bottom: 10px;
    display: block;
}
.blog-btn {
    border-radius: 5px;
    background: #500005;
    padding: 7px 15px;
    display: inline-block;
    margin-top: 18px;
    color: #fff;
    border: 1px solid transparent;
    transition: all 0.4s ease-in;
}
.blog-cont {
    color: #494949;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    margin-bottom: 10px;padding: 20px;
}
.blog-cont p{  
  display: -webkit-box;
  -webkit-line-clamp: 2;     
  -webkit-box-orient: vertical;
  overflow: hidden;

}
.blog-btn:hover {
    border: 1px solid#500005;
    background-color: transparent;
    color:#500005;
    border-radius: 30px;
}
.blog-bannertitle{
    font-size: 50px;
    color: #fff;
    text-align: center;
    z-index: 1;
    position: relative;
}
@media (max-width: 991px) {
    .inblog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
        .ip-wc-hero.ip-wc-blog {
        min-height: 400px !important;
    }
    .blog-bannertitle {
    font-size: 40px;}
}
@media (max-width: 600px) {
    .inblog-grid {
        grid-template-columns: 1fr;
    }
}

/* <----------blog detail---------> */
.inner-blog-listing {
    display: flex;
    gap: 30px;
}

.blog-cardsx-inn {
    flex: 2;
    padding-right: 20px;
}
.inner-blog-listing img {
    width: 100%;
    border-radius: 10px;
}
.blog-card-content.blog-in-cnt {
    padding: 5px 20px;
}
.blog-card-full-description p {
    margin: 10px 0px 20px 0px;
}
.blog-details-section {
    border: 1px solid #ccc;
    box-shadow: 0px 0px 3px #ccc;
	border-radius:10px;
}
ul.recommended-posts {
    margin-top: 22px;
}
@media (min-width: 993px) {
    .blog-sidebar {
        position: sticky;
        top: 100px;
        height: fit-content;
    }
}
.blog-sidebar {
    flex: 1;
}
.recommended-post {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    list-style-type: none;
}
a.recommended-post-link {
    display: flex;
}
.recommended-post-avatar {
    margin-right: 15px;
    flex-shrink: 0;
    width: 98px;
    height: 81px;
    aspect-ratio: 188 / 81;    height: 70px;
}
.recommended-post-avatar img{height: 70px;}
.inner-blog-listing img {
    width: 100%;
    border-radius: 10px;
}
.recommended-post-content {
    flex: 1;
}
.recommended-post-title {
    color: #4A4240;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
}
.recommended-post-date {
    color: #494949;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
    padding: 10px 0px 5px 0px;
}

.recommended-post {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    list-style-type: none;
}

.blg-details-img img{
	height:450px;
	width:100%;
	object-fit:cover;
}
@media (max-width: 992px) {
    .inner-blog-listing {
        flex-direction: column;
    }
    .inner-blog-listing img {
    width: 100%;
    border-radius: 10px;
    height: 320px;
    object-fit: cover;
}
.blog-cardsx-inn {
    flex: 2;
    padding-right: 0px;
}
   .recommended-post-avatar img {
        width: 100%;
        border-radius: 10px;
        height: 70px;}
}

@media (max-width:600px) {
    .inner-blog-listing img {
        height: 200px;
    }
      .recommended-post-avatar img {
        height: 70px;}
           .ip-wc-hero.ip-wc-blog {
        min-height: 350px !important;
    }
    .ip-wc-hero.ip-wc-blog {
        min-height: 260px !important;
    }
        .blog-bannertitle {
        font-size: 25px;
    }
	section.inblog.featureprdct {
    padding: 18px 0px;
}
	.container {
    max-width: 95%;
    width: 95%;
}
}



.ab__team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;    margin-bottom: 50px;
}

.ab__team-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(19, 66, 65, 0.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ab__team-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #500005, #134241);
}

.ab__team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.ab__team-avatar {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: linear-gradient(135deg, #134241, #500005);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ab__team-avatar i {
    color: #fff;
    font-size: 34px;
}

.ab__team-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #134241;
    margin-bottom: 10px;
    line-height: 1.3;
}

.ab__team-role {
    display: inline-block;
    color: #500005;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(80, 0, 5, 0.1);
}

.ab__team-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .ab__team-grid {
        grid-template-columns: 1fr;
    }
    
    .ab__team-card {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .ab__team-card {
        padding: 25px;
    }

    .ab__team-card h4 {
        font-size: 20px;
    }

    .ab__team-avatar {
        width: 70px;
        height: 70px;
    }

    .ab__team-avatar i {
        font-size: 28px;
    }
}


.before-after{
    padding:80px 0;
    background:#f8f8f8;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span{
    color:#b78b45;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-title h2{
    margin:12px 0;
    font-size:42px;
    color:#222;
}

.section-title p{
    color:#666;
    max-width:650px;
    margin:auto;
}

.ba-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.ba-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.ba-images{
    display:grid;
    grid-template-columns:1fr 1fr;
}

.ba-img{
    position:relative;
    overflow:hidden;
}

.ba-img img{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.ba-card:hover img{
    transform:scale(1.05);
}

.ba-img span{
    position:absolute;
    left:15px;
    bottom:15px;
    background:#000;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.ba-img span.after{
    background:#b78b45;
}

@media(max-width:991px){

    .section-title h2{
        font-size:34px;
    }

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

    .ba-img img{
        height:350px;
    }

}

@media(max-width:575px){

    .before-after{
        padding:60px 0;
    }

    .section-title h2{
        font-size:28px;
    }

    .ba-images{
        grid-template-columns:1fr;
    }

    .ba-img img{
        height:280px;
    }

    .ba-img:first-child{
        border-bottom:1px solid #eee;
    }

}