:root {
  --navy: #0a1628;
  --deep-navy: #060e1c;
  --ocean: #0d2d4a;
  --sky: #4a9fd4;
  --gold: #e86a33;
  --gold-light: #ee895e;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.55);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
  background: #ffffff;
  color: var(--white);
  overflow-x: hidden;
}

.top-bar {
  width: 100%;
  background: #e86a33;
  padding: 8px 20px;
  position: absolute;
  top: 0;
  z-index: 200;
}
.header-logo {
  height: 80px;
}

.top-bar-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
}

.top-left {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-left a {
  color: #0c3b18;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
}

.top-left i {
  font-size: 14px;
}
.mob-logo {
  width: 100px;
}

nav {
  top: 35px;
}

.nav-links li {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  width: 220px;
  display: none;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  z-index: 999;
  margin-top: 10px;
}

.dropdown-menu li {
  width: 100%;
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

@media (max-width: 768px) {
  .top-left {
    gap: 12px;
    font-size: 12px;
  }

  nav {
    top: 32px;
  }
}

nav {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  transition: all 0.4s ease;
  margin: 20px 0px 0px 0px;
}

.drawer-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: none;
}

.close-btn {
  font-size: 45px;
  color: var(--white);
  cursor: pointer;
  display: none;
}

.close-btn:hover {
  color: var(--gold);
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span {
  color: var(--gold);
}

/* ========================= */
/* DESKTOP MENU */
/* ========================= */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: capitalize;
}

.nav-links a:hover {
  color: var(--gold);
}

.drawer-logo {
  display: none;
}

/* ========================= */
/* HAMBURGER */
/* ========================= */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: var(--white);
  cursor: pointer;
}

/* ========================= */
/* OVERLAY */
/* ========================= */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 90;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}
.close-dv {
  position: absolute;
  right: 20px;
}
.dropdown {
  position: relative;
}

.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px;
}

@media (max-width: 1025px) {
  .close-btn {
    display: block;
  }
  nav {
    padding: 10px 15px;
    height: 60px;
    margin: 0;
    background: #41644a;
  }
  .nav-logo {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    background: #41644a00;
    padding: 0px;
    border-radius: 6px;
  }

  .header-logo {
    height: 70px;
  }
  .top-bar {
    display: none;
  }
  .drawer-header {
    display: flex;
  }
  nav {
    padding: 1rem 1.5rem;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 15px;
    top: 18px;
    z-index: 3;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: #41644a;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 25px;
    gap: 1.5rem;

    transition: right 0.4s ease;
    z-index: 1200;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 90%;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .drawer-logo {
    display: block;
    margin-bottom: 20px;
  }

  .drawer-logo a {
    font-size: 1.2rem;
    color: var(--white);
    text-decoration: none;
  }

  .drawer-logo span {
    color: var(--gold);
  }
  nav {
    background: #41644a;
  }

  nav.scrolled {
    background: #41644a;
  }
}

@media (max-width: 768px) {
  .close-btn {
    display: block;
  }
  nav {
    padding: 10px 15px;
    height: 60px;
    margin: 0;
    background: #41644a;
  }
  .nav-logo {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    background: #41644a00;
    padding: 0px;
    border-radius: 6px;
  }

  .header-logo {
    height: 70px;
  }
  .top-bar {
    display: none;
  }
  .drawer-header {
    display: flex;
  }
  nav {
    padding: 1rem 1.5rem;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 15px;
    top: 18px;
    z-index: 3;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: #41644a;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 25px;
    gap: 1.5rem;

    transition: right 0.4s ease;
    z-index: 1200;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 90%;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .drawer-logo {
    display: block;
    margin-bottom: 20px;
  }

  .drawer-logo a {
    font-size: 1.2rem;
    color: var(--white);
    text-decoration: none;
  }

  .drawer-logo span {
    color: var(--gold);
  }
  nav {
    background: #41644a;
  }

  nav.scrolled {
    background: #41644a;
  }
}

/* HERO SECTION */
.home-hero-sec {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* VIDEO */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  object-position: top center;
}

/* DARK OVERLAY */
.home-hero-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

/* CONTENT WRAPPER */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 100%;
}

/* TEXT BOX */
.hero-text-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  max-width: 550px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

  /* 🔥 thoda niche shift */
  transform: translateY(50px);
}

/* TEXT */
.hero-text-box h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  color: #1a5c3e;
  margin-bottom: 20px;
}

.hero-text-box p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 25px;
}

/* BUTTON */
.hero-text-box .btn {
  background: #ff6b00;
  color: #fff;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-size: 1.05rem;
  cursor: pointer;
  transition: 0.3s;
}

.hero-text-box .btn:hover {
  background: #e55a00;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .home-hero-sec {
    display: block;
    min-height: auto;
    margin-top: 50px;
  }

  .hero-video-bg {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .home-hero-sec::before {
    display: none;
  }

  .hero-content {
    display: block;
    padding: 20px;
  }

  .hero-text-box {
    margin-top: 20px;
    transform: none;
    max-width: 100%;
    background: #fff;
    text-align: center;
  }

  .hero-text-box h1 {
    font-size: 1.8rem;
  }

  .hero-text-box p {
    font-size: 1rem;
  }
}

.abot-us-sec-section {
  background: #f3f3f1;
  padding: 80px 20px;
}

.abot-us-sec-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
}

.abot-us-sec-content {
  max-width: 560px;
}

.abot-us-sec-tag {
  display: inline-block;
  font-size: 16px;
  line-height: 1.4;
  color: #d67a45;
  margin-bottom: 18px;
  font-weight: 500;
}

.abot-us-sec-title {
  font-size: 40px;
  line-height: 1.05;
  font-weight: 700;
  color: #3f5f4d;
  margin: 0 0 28px;
  letter-spacing: -1px;
}

.abot-us-sec-text p {
  font-size: 18px;
  line-height: 1.5;
  color: #2f2f2f;
  margin: 0 0 15px;
}

.abot-us-sec-text strong {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.abot-us-sec-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 225px;
  min-height: 58px;
  padding: 16px 28px;
  background: #e87431;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  margin-top: 16px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.abot-us-sec-btn:hover {
  background: #cf6224;
  transform: translateY(-2px);
}

.abot-us-sec-image-wrap {
  width: 100%;
}

.abot-us-sec-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

/* Tablet */
@media (max-width: 991px) {
  .abot-us-sec-section {
    padding: 60px 20px;
  }

  .abot-us-sec-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .abot-us-sec-content {
    max-width: 100%;
  }

  .abot-us-sec-title {
    font-size: 30px;
  }

  .abot-us-sec-text p {
    font-size: 17px;
    line-height: 1.7;
  }

  .abot-us-sec-image {
    height: 460px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .abot-us-sec-section {
    padding: 45px 16px;
  }

  .abot-us-sec-container {
    gap: 28px;
  }

  .abot-us-sec-tag {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .abot-us-sec-title {
    font-size: 28px;
    line-height: 1.12;
    margin-bottom: 20px;
  }

  .abot-us-sec-text p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .abot-us-sec-btn {
    width: 100%;
    min-width: 100%;
    min-height: 54px;
    font-size: 15px;
    margin-top: 10px;
  }

  .abot-us-sec-image {
    height: 320px;
  }
}

.serv-card-sec-section {
  padding: 40px 20px;
  background: #f3f3f1;
}

.serv-card-sec-container {
  max-width: 1240px;
  margin: 0 auto;
}

.serv-card-sec-heading {
  max-width: 900px;
  margin: 0 auto 55px;
  text-align: center;
}

.serv-card-sec-subtitle {
  display: block;
  font-size: 18px;
  line-height: 1.4;
  color: #444444;
  margin-bottom: 8px;
}

.serv-card-sec-title {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  color: #48624d;
  margin: 0 0 18px;
}

@media (max-width: 768px) {
  .serv-card-sec-title {
    font-size: 30px;
  }
  .serv-card-sec-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .serv-card-sec-container{
    padding: 2rem 0rem !important;
  }
}
.serv-card-sec-description {
  font-size: 18px;
  line-height: 1.8;
  color: #3f3f3f;
  max-width: 900px;
  margin: 0 auto;
}

.serv-card-sec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.serv-card-sec-card {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.serv-card-sec-image-wrap {
  width: 100%;
  overflow: hidden;
}

.serv-card-sec-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.serv-card-sec-content {
  padding: 28px 26px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.serv-card-sec-card-title {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  color: #49614d;
  margin: 0 0 18px;
}

.serv-card-sec-card-text {
  font-size: 17px;
  line-height: 1.8;
  color: #424242;
  margin: 0 0 28px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.8em * 3);
}

.serv-card-sec-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 145px;
  min-height: 48px;
  padding: 12px 22px;
  background: #e7722f;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.serv-card-sec-btn:hover {
  background: #cc5f22;
  transform: translateY(-2px);
}

.home-witgo-sec-section {
  background: #f3f3f1;
  padding: 80px 20px;
}

.home-witgo-sec-container {
  /* max-width: 1240px; */
  margin: 0 auto;
}

.home-witgo-sec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 42px;
}
@media (max-width: 768px) {
  .home-witgo-sec-grid {
    grid-template-columns: 1fr;
  }
  .home-witgo-sec-title {
    font-size: 28px !important;
  }
}
.home-witgo-sec-image-wrap {
  width: 100%;
}

.home-witgo-sec-image {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
}

.home-witgo-sec-content {
  max-width: 610px;
}

.home-witgo-sec-title {
  font-size: 35px;
  line-height: 1.08;
  font-weight: 700;
  color: #48624d;
  margin: 0 0 26px;
  letter-spacing: -0.8px;
}

.home-witgo-sec-text p {
  font-size: 16px;
  line-height: 1.75;
  color: #2f2f2f;
  margin: 0 0 20px;
}

.home-witgo-sec-highlight {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-witgo-sec-text strong {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-witgo-sec-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 56px;
  padding: 16px 28px;
  background: #e87431;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  margin-top: 14px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.home-witgo-sec-btn:hover {
  background: #cf6224;
  transform: translateY(-2px);
}

.home-de-sec-section {
  background: #f3f3f1;
  padding: 40px 20px;
}

.home-de-sec-container {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.home-de-sec-head {
  margin-bottom: 24px;
}

.home-de-sec-subtitle {
  display: block;
  font-size: 20px;
  line-height: 1.4;
  color: #d77a49;
  margin-bottom: 10px;
  font-weight: 400;
}

.home-de-sec-title {
  font-size: 40px;
  line-height: 1.08;
  font-weight: 700;
  color: #49614d;
  margin: 0;
  letter-spacing: -0.8px;
}
@media (max-width: 768px) {
  .home-de-sec-title {
    font-size: 30px !important;
  }
}

.home-de-sec-content {
  max-width: 900px;
  margin: 0 auto;
}

.home-de-sec-text {
  font-size: 18px;
  line-height: 1.8;
  color: #343434;
  margin: 0 0 22px;
}

.home-de-sec-brand {
  margin-top: 38px;
}

.home-de-sec-brand {
  margin-top: 38px;
  text-align: center;
}

.home-de-sec-brand-img {
  display: inline-block;
  max-width: 120px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.home-fixo-sec-section {
  background: #f3f3f1;
  padding: 40px 20px;
}

.home-fixo-sec-container {
  max-width: 1240px;
  margin: 0 auto;
}

.home-fixo-sec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
@media (max-width: 768px) {
  .home-fixo-sec-grid {
    grid-template-columns: 1fr;
  }
  .home-fixo-sec-title {
    font-size: 30px !important;
    text-align: center;
  }
}

.home-fixo-sec-content {
  max-width: 610px;
}

.home-fixo-sec-title {
  font-size: 40px;
  line-height: 1.08;
  font-weight: 700;
  color: #49614d;
  margin: 0 0 26px;
  letter-spacing: -0.8px;
}

.home-fixo-sec-text-wrap {
  margin-bottom: 30px;
}

.home-fixo-sec-text {
  font-size: 18px;
  line-height: 1.5;
  color: #343434;
  margin: 0 0 20px;
}

.home-fixo-sec-text strong {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-fixo-sec-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 225px;
  min-height: 56px;
  padding: 16px 28px;
  background: #e87431;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.home-fixo-sec-btn:hover {
  background: #cf6224;
  transform: translateY(-2px);
}

.home-fixo-sec-image-wrap {
  width: 100%;
}

.home-fixo-sec-image {
  width: 100%;
  height: 100%;
  max-height: 430px;
  object-fit: cover;
  display: block;
}

.home-fixologie-sec-section {
  background: #f3f3f1;
  padding: 80px 20px;
}

.home-fixologie-sec-container {
  max-width: 1240px;
  margin: 0 auto;
}

.home-fixologie-sec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 44px;
}
@media (max-width: 768px) {
  .home-fixologie-sec-grid {
    grid-template-columns: 1fr;
  }
  .home-fixologie-sec-title {
    font-size: 28px !important;
  }
}

.home-fixologie-sec-image-wrap {
  width: 100%;
}

.home-fixologie-sec-image {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.home-fixologie-sec-content {
  max-width: 640px;
}

.home-fixologie-sec-title {
  font-size: 40px;
  line-height: 1.5;
  font-weight: 700;
  color: #49614d;
  margin: 0 0 24px;
  letter-spacing: -0.8px;
}

.home-fixologie-sec-text-wrap {
  margin-bottom: 30px;
}

.home-fixologie-sec-text {
  font-size: 18px;
  line-height: 1.5;
  color: #333333;
  margin: 0 0 20px;
}

.home-fixologie-sec-text strong {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-fixologie-sec-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 224px;
  min-height: 54px;
  padding: 15px 28px;
  background: #e87431;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.home-fixologie-sec-btn:hover {
  background: #cf6224;
  transform: translateY(-2px);
}

.home-form-sec-section {
  background: #456f4b;
  padding: 70px 20px;
}

.home-form-sec-container {
  max-width: 1180px;
  margin: 0 auto;
}

.home-form-sec-grid {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 42px;
  align-items: start;
}
@media (max-width: 768px) {
  .home-form-sec-grid {
    grid-template-columns: 1fr !important;
  }
  .home-form-sec-title {
    font-size: 30px !important;
  }
}

.home-form-sec-left {
  color: #ffffff;
  padding-top: 18px;
}

.home-form-sec-title {
  font-size: 50px;
  line-height: 1.08;
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -0.8px;
}

.home-form-sec-text {
  font-size: 18px;
  line-height: 1.75;
  color: #f5f5f5;
  margin: 0 0 18px;
}

.home-form-sec-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 26px;
}

 .home-form-sec-contact-btn {
            display: inline-block;
            background-color: transparent;
            color: white;
            font-size: 1.05rem;
            font-weight: 600;
            padding: 0.9rem 2.3rem;
            text-decoration: none;
            letter-spacing: 0.3px;
            border: 2px solid #E86A33;
            cursor: pointer;
            transition: color 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            background: #E86A33;
            font-family: inherit;
            border-radius: 10px;
        }

        .home-form-sec-contact-btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background-color: #41644A;
            transition: width 0.45s cubic-bezier(0.65, 0, 0.35, 1);
            z-index: -1;
            border-radius: 8px;
        }

        .home-form-sec-contact-btn:hover::before {
            width: 100%;
        }

        .home-form-sec-contact-btn:hover {
            color: white;
            border-color: #ffffff;
        }

.home-form-sec-right {
  background: #f7f7f5;
  padding: 28px;
}

.home-form-sec-form {
  width: 100%;
}

.home-form-sec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.home-form-sec-field,
.home-form-sec-full {
  width: 100%;
}

.home-form-sec-full {
  margin-bottom: 20px;
}

.home-form-sec-label {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  color: #5d705f;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.home-form-sec-input,
.home-form-sec-textarea,
.home-form-sec-file {
  width: 100%;
  border: 1px solid #d7d7d2;
  background: #ffffff;
  padding: 14px 14px;
  font-size: 14px;
  color: #333333;
  outline: none;
}

.home-form-sec-input::placeholder,
.home-form-sec-textarea::placeholder {
  color: #8d8d8d;
}

.home-form-sec-textarea {
  min-height: 88px;
  resize: vertical;
}

.home-form-sec-textarea-large {
  min-height: 90px;
}

.home-form-sec-input:focus,
.home-form-sec-textarea:focus,
.home-form-sec-file:focus {
  border-color: #e87431;
}

.home-form-sec-input-icon-wrap {
  position: relative;
}

.home-form-sec-input-icon-wrap .home-form-sec-input {
  padding-right: 42px;
}

.home-form-sec-input-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #5d705f;
}

.home-form-sec-file-note {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: #555555;
}

.home-form-sec-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  min-height: 46px;
  padding: 12px 24px;
  background: #e87431;
  color: #ffffff;
  border: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.home-form-sec-submit-btn:hover {
  background: #cf6224;
  transform: translateY(-2px);
}
.home-form-sec-contact-btn i {
  margin-right: 8px;
  font-size: 15px;
}

.footer-sec-main {
  width: 100%;
}

.footer-sec-top {
  background: #f3f3f1;
  padding: 70px 20px 85px;
}

.footer-sec-container {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-sec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}
@media (max-width: 768px) {
  .footer-sec-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.footer-sec-column {
  display: flex;
  flex-direction: column;
}

.footer-sec-heading {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  color: #2f3c3a;
  margin: 0 0 18px;
}

.footer-sec-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin: 0 0 2px;
}

.footer-sec-link,
.footer-sec-nav-link,
.footer-sec-policy-link {
  text-decoration: none;
}

.footer-sec-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin-top: 2px;
  width: fit-content;
}

.footer-sec-link i {
  font-size: 15px;
  width: 16px;
  color: #333333;
}

.footer-sec-nav-link {
  font-size: 16px;
  line-height: 1.9;
  color: #333333;
  width: fit-content;
}

.footer-sec-nav-link:hover,
.footer-sec-link:hover,
.footer-sec-policy-link:hover {
  color: #e87431;
}

.footer-sec-bottom {
  background: #7b8480;
  padding: 22px 20px;
}

.footer-sec-bottom-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-sec-policy-link {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.5;
}

.float-cont-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-cont-icons-item {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s ease;
}

.float-cont-icons-item.email {
  background: #1e3a8a;
}

.float-cont-icons-item.whatsapp {
  background: #25d366;
}

.float-cont-icons-item.call {
  background: #0d6efd;
}

.float-cont-icons-item:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.serv-hero-sec {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.serv-hero-sec-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

.serv-hero-sec-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 25%);
  top: 0;
  left: 0;
  z-index: 1;
}

.serv-hero-sec-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.serv-hero-sec-content h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.serv-hero-sec-content p {
  font-size: 18px;
}

/* Tablet */
@media (max-width: 992px) {
  .serv-hero-sec {
    height: 50vh;
  }

  .serv-hero-sec-content h1 {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .serv-hero-sec {
    height: 50vh;
  }

  .serv-hero-sec-content h1 {
    font-size: 24px;
  }
}

.serv-abot-sec {
  width: 100%;
  padding: 60px 20px;
  background: #fff;
}

.serv-abot-sec-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LEFT */
.serv-abot-sec-left {
  flex: 1;
}

.serv-abot-sec-title {
  font-size: 40px;
  margin-bottom: 15px;
  color: #41644a;
}

.serv-abot-sec-text {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.5;
  color: #252525;
}

.serv-abot-sec-btn {
  display: inline-block;
  background-color: transparent;
  color: white;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.9rem 2.3rem;
  text-decoration: none;
  letter-spacing: 0.3px;
  border: 2px solid #e86a33;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 10px;
  background: #e86a33;
  font-family: inherit;
}

.serv-abot-sec-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #41644a;
  transition: width 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  border-radius: 8px;
  z-index: -1;
}

.serv-abot-sec-btn:hover::before {
  width: 100%;
}

.serv-abot-sec-btn:hover {
  color: white;
  border-color: #41644a;
}

/* RIGHT */
.serv-abot-sec-right {
  flex: 1;
}

.serv-abot-sec-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 992px) {
  .serv-abot-sec-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .serv-abot-sec-img {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .serv-abot-sec {
    padding: 40px 15px;
  }

  .serv-abot-sec-title {
    font-size: 30px;
  }

  .serv-abot-sec-text {
    font-size: 16px;
    text-align: justify;
  }

  .serv-abot-sec-img {
    height: 250px;
  }
}

.serv-card-sec {
  background: #e6e6e6;
}
.serv-card-sec-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.serv-card-sec__header {
  text-align: center;
  margin-bottom: 3rem;
}

.serv-card-sec__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #41644a;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.serv-card-sec__divider {
  width: 80px;
  height: 4px;
  background: #41644a;
  border-radius: 4px;
  margin: 0 auto;
  transition: width 0.3s ease;
}

.serv-card-sec__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.serv-card-sec__card {
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow:
    0 10px 25px -5px rgba(0, 0, 0, 0.05),
    0 8px 10px -6px rgba(0, 0, 0, 0.02);
  border: 1px solid #eef2f0;
  transition:
    transform 0.25s ease,
    box-shadow 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.serv-card-sec__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -12px rgba(65, 100, 74, 0.15);
  border-color: #ddebe0;
}

.serv-card-sec__content {
  padding: 1.8rem 1.6rem 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.serv-card-sec__top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}

.serv-card-sec__icon {
  font-size: 2.5rem;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f5f0;
  border-radius: 20px;
  color: #e86a33;
  transition: all 0.2s;
}

.serv-card-sec__number-flip {
  perspective: 600px;
  width: 56px;
  height: 56px;
}

.serv-card-sec__flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  border-radius: 50%;
}

.serv-card-sec__card:hover .serv-card-sec__flip-inner {
  transform: rotateY(180deg);
}

.serv-card-sec__number-front,
.serv-card-sec__number-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.6rem;
  box-shadow: 0 6px 12px rgba(65, 100, 74, 0.2);
}

.serv-card-sec__number-front {
  background: #41644a;
  color: white;
  transform: rotateY(0deg);
}

.serv-card-sec__number-back {
  background: #2c4d3a;
  color: #e86a33;
  transform: rotateY(180deg);
  font-size: 1.5rem;
  font-weight: 700;
  gap: 4px;
}

.serv-card-sec__number-back i {
  font-size: 0.9rem;
  margin-right: 3px;
  color: #e86a33;
}

.serv-card-sec__card-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: #41644a;
  margin: 0.75rem 0 0.6rem 0;
  letter-spacing: -0.2px;
}

.serv-card-sec__description {
  color: #4a5b55;
  line-height: 1.55;
  font-size: 0.95rem;
  margin-top: 0.2rem;
}

.serv-card-sec__btn-wrapper {
  text-align: center;
  margin-top: 0.5rem;
}

.serv-card-sec__button {
  display: inline-block;
  background-color: transparent;
  color: white;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.9rem 2.3rem;
  text-decoration: none;
  letter-spacing: 0.3px;
  border: 2px solid #e86a33;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 10px;
  background: #e86a33;
  font-family: inherit;
}

.serv-card-sec__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #41644a;
  transition: width 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
  border-radius: 8px;
}

.serv-card-sec__button:hover::before {
  width: 100%;
}

.serv-card-sec__button:hover {
  color: white;
  border-color: #41644a;
}

@media screen and (max-width: 1024px) {
  .serv-card-sec {
    padding: 2rem 1.5rem;
  }
  .serv-card-sec__title {
    font-size: 2.2rem;
  }
  .serv-card-sec__grid {
    gap: 1.5rem;
  }
  .serv-card-sec__card-title {
    font-size: 1.4rem;
  }
  .serv-card-sec__icon {
    width: 56px;
    height: 56px;
    font-size: 2.2rem;
  }
  .serv-card-sec__number-flip {
    width: 52px;
    height: 52px;
  }
  .serv-card-sec__number-front,
  .serv-card-sec__number-back {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  .serv-card-sec {
    padding: 1.8rem 1.2rem;
  }
  .serv-card-sec__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .serv-card-sec__title {
    font-size: 1.9rem;
  }
  .serv-card-sec__button {
    padding: 0.7rem 1.8rem;
    font-size: 1rem;
  }
  .serv-card-sec__content {
    padding: 1.5rem;
  }
  .serv-card-sec__icon {
    width: 52px;
    height: 52px;
    font-size: 2rem;
  }
  .serv-card-sec__number-flip {
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 480px) {
  .serv-card-sec {
    padding: 1.5rem 1rem;
  }
  .serv-card-sec__title {
    font-size: 1.7rem;
  }
  .serv-card-sec__card-title {
    font-size: 1.3rem;
  }
}


    .serv-accr-sec-wrapper {
      max-width: 1280px;
      margin: 0 auto;
      background: #ffffff;
      padding: 2.5rem 1.8rem;
      transition: all 0.2s ease;
    }

   
    .serv-accr-sec-heading {
      font-size: 40px;
      font-weight: 700;
      background: linear-gradient(135deg, #41644A, #41644A);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      text-align: center;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }


    .serv-accr-sec-description {
      text-align: center;
      margin: 0 auto 2.5rem auto;
      font-size: 1.1rem;
      color: #474747;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .serv-accr-sec-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.8rem;
      margin-bottom: 2.8rem;
        align-items: start;
    }

    .serv-accr-sec-accordion-item {
      background: #ffffff;
      border-radius: 1.25rem;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.05);
      transition: all 0.25s ease;
      border: 1px solid #a2c7ace6;
      overflow: hidden;
    }

    .serv-accr-sec-accordion-item:hover {
      box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
      transform: translateY(-3px);
      border-color: #cddfe7;
    }

    
    .serv-accr-sec-acc-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem 1.3rem;
      background: #fefefe;
      cursor: pointer;
      font-weight: 600;
      font-size: 1.05rem;
      color: #41644A;
      transition: background 0.2s;
      border-bottom: 1px solid transparent;
    }
    .serv-accr-sec-acc-header:hover {
      background: #f1f5f9;
    }
    .serv-accr-sec-acc-header h3 {
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: -0.2px;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .serv-accr-sec-acc-header h3 i {
      color: #41644A;
      font-size: 1.2rem;
      width: 1.4rem;
    }
  
    .serv-accr-sec-icon {
      font-size: 1.3rem;
      font-weight: 400;
      transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      color: #41644A;
      width: 28px;
      text-align: center;
    }

    
    .serv-accr-sec-panel {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out, padding 0.2s;
      background: #fafdff;
      border-top: 0px solid #eef2f8;
    }
    .serv-accr-sec-panel.show {
      max-height: 280px;
      padding: 0 1.3rem 1.2rem 1.3rem;
      border-top: 1px solid #eef2f8;
    }
    .serv-accr-sec-panel p {
      font-size: 0.9rem;
      color: #3d3d3d;
      margin-top: 0.8rem;
      line-height: 1.45;
    }

    
    @media (max-width: 900px) {
      .serv-accr-sec-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }
    }
  
    @media (max-width: 600px) {
      .serv-accr-sec-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
      }
      .serv-accr-sec-wrapper {
        padding: 1.5rem;
      }
      .serv-accr-sec-heading {
        font-size: 28px;
      }
      .serv-accr-sec-heading i {
        font-size: 1.5rem;
      }
      .serv-accr-sec-description{
        text-align: justify;
    font-size: 16px;
      }
    }

 
    .serv-accr-sec-footer-para {
      text-align: center;
      font-size: 1rem;
      color: #4c4c4d;
      background: #f1f6fa;
      padding: 1.2rem 1.5rem;
      border-radius: 2rem;
      margin: 1rem 0 1.8rem 0;
      border-left: 4px solid #E86A33;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .serv-accr-sec-footer-para i {
      color: #E86A33;
      font-size: 1.25rem;
    }

   
    .serv-accr-sec-button {
      text-align: center;
      margin-top: 0.5rem;
    }
     .serv-accr-sec-btn {
            display: inline-block;
            background-color: transparent;
            color: white;
            font-size: 1.05rem;
            font-weight: 600;
            padding: 0.9rem 2.3rem;
            text-decoration: none;
            letter-spacing: 0.3px;
            border: 2px solid #E86A33;
            cursor: pointer;
            transition: color 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            background: #E86A33;
            font-family: inherit;
            border-radius: 10px;
        }

        .serv-accr-sec-btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background-color: #41644A;
            transition: width 0.45s cubic-bezier(0.65, 0, 0.35, 1);
            z-index: -1;
            border-radius: 8px;
        }

        .serv-accr-sec-btn:hover::before {
            width: 100%;
        }

        .serv-accr-sec-btn:hover {
            color: white;
            border-color: #41644A;
        }


   .serv-img-crd-sec {
    width: 100%;
    margin: 0 auto;
    background: #efeded;
    overflow: hidden;
    transition: all 0.2s;
    }

 
    .serv-img-crd-sec-heading-wrapper {
      text-align: center;
      padding: 2.2rem 1.5rem 1rem 1.5rem;
    }

    .serv-img-crd-sec-main-title {
      font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: #41644A;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
    padding-bottom: 0.5rem;
    }

   
    .serv-img-crd-sec-two-col {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      padding: 1.2rem 2rem 2.8rem 2rem;
    }

   
    .serv-img-crd-sec-left-img {
      flex: 1.2;
      min-width: 240px;
      border-radius: 1.5rem;
      overflow: hidden;
      box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.18);
      background: #d9e3e8;
      transition: transform 0.2s ease;
    }

    .serv-img-crd-sec-left-img:hover {
      transform: scale(0.99);
    }

    .serv-img-crd-sec-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .serv-img-crd-sec-left-img:hover .serv-img-crd-sec-img {
      transform: scale(1.02);
    }

    
    .serv-img-crd-sec-right-cards {
      flex: 2;
      min-width: 260px;
    }

   
    .serv-img-crd-sec-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.6rem;
      align-items: stretch;
    }

   
    .serv-img-crd-sec-card {
      background: #ffffff;
      border-radius: 1.25rem;
      box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.06);
      overflow: hidden;
      transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
      display: flex;
      flex-direction: column;
      height: 100%;
      border: 1px solid #ecf3e9;
    }

    .serv-img-crd-sec-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 36px -14px rgba(0, 0, 0, 0.12);
      border-color: #c8e0c5;
    }


    .serv-img-crd-sec-card-head {
      background-color: #41644A;
    padding: 1rem 1.2rem;
    text-align: center;
    }

    .serv-img-crd-sec-card-title {
      font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.2px;
    word-break: break-word;
    }

  
    .serv-img-crd-sec-card-desc {
      padding: 1.4rem 1.2rem 1.7rem 1.2rem;
      flex: 1;
      display: flex;
      align-items: flex-start;
    }

    .serv-img-crd-sec-desc-text {
      font-size: 1rem;
      line-height: 1.5;
      color: #1f2f3a;
      margin: 0;
    }

    /* ----- RESPONSIVE: TABLET + MOBILE (height same rahegi automatically because of flex) ----- */
    @media screen and (max-width: 992px) {
      .serv-img-crd-sec-two-col {
        gap: 1.8rem;
        padding: 1rem 1.5rem 2.2rem 1.5rem;
      }
      .serv-img-crd-sec-main-title {
        font-size: 2rem;
      }
      .serv-img-crd-sec-card-title {
        font-size: 1.3rem;
      }
      .serv-img-crd-sec-desc-text {
        font-size: 0.95rem;
      }
    }

    @media screen and (max-width: 768px) {
      
      .serv-img-crd-sec-two-col {
        flex-direction: column;
        gap: 2rem;
        padding: 0.8rem 1.5rem 2rem 1.5rem;
      }

      .serv-img-crd-sec-left-img {
        width: 100%;
        max-height: 320px;
        min-height: 240px;
      }

     
      .serv-img-crd-sec-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.2rem;
      }

      .serv-img-crd-sec-heading-wrapper {
        padding: 1.5rem 1rem 0.5rem 1rem;
      }
    }

 
    @media screen and (max-width: 580px) {
      .serv-img-crd-sec-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
      }
      .serv-img-crd-sec-card-title {
        font-size: 1.1rem;
      }
      .serv-img-crd-sec-card-desc {
        padding: 1rem 0.9rem 1.3rem 0.9rem;
      }
      .serv-img-crd-sec-desc-text {
        font-size: 0.85rem;
        line-height: 1.4;
      }
      .serv-img-crd-sec-main-title {
        font-size: 1.7rem;
      }
      .serv-img-crd-sec-two-col {
        padding: 0 1rem 1.6rem 1rem;
      }
    }

 
    @media screen and (max-width: 480px) {
      .serv-img-crd-sec-grid {
        gap: 0.8rem;
      }
      .serv-img-crd-sec-card-head {
        padding: 0.7rem 0.6rem;
      }
      .serv-img-crd-sec-card-title {
        font-size: 1rem;
      }
      .serv-img-crd-sec-card-desc {
        padding: 0.75rem 0.7rem 1rem 0.7rem;
      }
      .serv-img-crd-sec-desc-text {
        font-size: 0.8rem;
      }
    }

   
    .serv-img-crd-sec-left-img {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    img {
      max-width: 100%;
      vertical-align: middle;
    }

            .testi-slide-sec-wrapper {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
        }

        .testi-slide-sec {
            background: #ffffff;
            padding: 2rem 1.5rem 2.5rem 1.5rem;
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        /* Top heading style */
        .testi-slide-sec__heading {
            text-align: center;
            font-size: 40px;
            font-weight: 700;
            background:#41644A;
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 0.75rem;
            letter-spacing: -0.3px;
        }

      
        .testi-slide-sec__description {
            text-align: center;
            font-size: 1.1rem;
            color: #475569;
            max-width: 620px;
            margin: 0 auto 2rem auto;
            line-height: 1.5;
        }

        
        .testi-slide-sec .swiper {
            width: 100%;
            padding: 0.75rem 0.25rem 2rem 0.25rem;
            overflow: visible;
            position: relative;
        }

        
        .testi-slide-sec .swiper-wrapper {
            display: flex;
            width: 100%;
        }

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

        
        .testimonial-card {
            background: #ffffff;
            border-radius: 1.5rem;
            box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.08);
            padding: 1.5rem;
            width: 100%;
            display: flex;
            flex-direction: column;
            transition: transform 0.2s ease, box-shadow 0.2s;
            border: 1px solid #d4d4d4;
            height: 100%;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
        }

        /* Star rating row */
        .card-stars {
            display: flex;
            gap: 0.3rem;
            margin-bottom: 1rem;
            color: #fbbf24;
            font-size: 1rem;
        }

        .card-stars i {
            font-size: 1.1rem;
        }

        .card-stars .far {
            color: #cbd5e1;
        }

       
        .card-comment {
            font-size: 1rem;
            line-height: 1.5;
            color: #1e293b;
            margin-bottom: 1.5rem;
            flex-grow: 1;
            font-weight: 450;
        }

    
        .card-profile {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            margin-top: 0.25rem;
        }

        .profile-img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            background-color: #e2e8f0;
            border: 2px solid white;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        }

        .profile-name {
            font-weight: 600;
            font-size: 1.05rem;
            color: #41644A;
        }

      
        .profile-name span {
            display: block;
            font-size: 0.75rem;
            font-weight: 400;
            color: #5b6e8c;
            margin-top: 0.2rem;
        }

       
        .testi-slide-sec .swiper-pagination {
            bottom: 0px !important;
            position: absolute;
            width: 100%;
            text-align: center;
        }

        .testi-slide-sec .swiper-pagination-bullet {
            background: #cbd5e1;
            opacity: 0.7;
            width: 8px;
            height: 8px;
            transition: all 0.2s;
            display: inline-block;
            margin: 0 4px;
        }

        .testi-slide-sec .swiper-pagination-bullet-active {
            background: #41644A;
            width: 24px;
            border-radius: 8px;
            opacity: 1;
        }

        /* Responsive: mobile & tablet */
        @media (max-width: 768px) {
            .testi-slide-sec {
                padding: 1.5rem 1rem 2rem 1rem;
            }
            .testi-slide-sec__heading {
                font-size: 1.6rem;
            }
            .testi-slide-sec__description {
                font-size: 0.95rem;
                margin-bottom: 1.25rem;
            }
            .testimonial-card {
                padding: 1.2rem;
            }
            .card-comment {
                font-size: 0.9rem;
            }
            .profile-img {
                width: 42px;
                height: 42px;
            }
            .profile-name {
                font-size: 0.95rem;
            }
            .card-stars i {
                font-size: 0.9rem;
            }
        }

        /* For extra small devices */
        @media (max-width: 640px) {
            .testimonial-card {
                padding: 1rem;
            }
            .card-stars {
                margin-bottom: 0.7rem;
            }
            .card-comment {
                margin-bottom: 1rem;
            }
        }

       
        @media (min-width: 769px) and (max-width: 1024px) {
            .testi-slide-sec {
                padding: 1.8rem;
            }
        }

            .serv-faq-sec {
            max-width: 880px;
            width: 100%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.96);
            overflow: hidden;
            transition: all 0.2s ease;
            padding: 30px 10px;
        }

    
        .serv-faq-sec__header {
            text-align: center;
            padding: 2rem 1.5rem 1rem 1.5rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .serv-faq-sec__heading {
            font-size: 40px;
            font-weight: 700;
            background: #456F4B;
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.02em;
            display: inline-block;
            margin-bottom: 0.5rem;
        }

        .serv-faq-sec__sub {
            color: #3a3a3a;
            font-weight: 500;
            font-size: 1rem;
            margin-top: 0.4rem;
            opacity: 0.8;
        }

       
        .serv-faq-sec__accordion {
            padding: 1.8rem 1.8rem 2.2rem 1.8rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

       
        .serv-faq-sec__item {
            background: #ffffff;
            border-radius: 1.25rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.05);
            transition: all 0.2s;
            border: 1px solid #e9edf2;
        }

        .serv-faq-sec__item:hover {
            border-color: #cddfe7;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        }

      
        .serv-faq-sec__question {
            width: 100%;
            background: transparent;
            border: none;
            padding: 1.2rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.05rem;
            text-align: left;
            color: #181818;
            transition: all 0.2s;
            border-radius: 1.25rem;
            font-family: inherit;
        }

        .serv-faq-sec__question span:first-child {
            flex: 1;
            padding-right: 1rem;
            line-height: 1.4;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        
        .serv-faq-sec__question i:first-child {
            font-size: 1.3rem;
            color: #456F4B;
            width: 1.6rem;
            text-align: center;
        }

       
        .serv-faq-sec__toggle-icon {
            font-size: 1.35rem;
            color: #456F4B;
            transition: transform 0.25s ease, color 0.2s;
            width: 1.6rem;
            text-align: center;
            font-weight: 400;
        }

   
        .serv-faq-sec__item--open .serv-faq-sec__toggle-icon {
            transform: rotate(180deg);
            color: #456F4B;
        }

      
        .serv-faq-sec__answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.2, 0.88, 0.42, 1);
            padding: 0 1.5rem;
            background: #fefefe;
            border-radius: 0 0 1rem 1rem;
        }

        .serv-faq-sec__answer-inner {
            padding: 0.2rem 0 1.4rem 0;
            color: #3b3b3b;
            font-size: 0.95rem;
            line-height: 1.55;
            border-top: 1px solid #9ed3a6;
            margin-top: 0rem;
        }

        
        .serv-faq-sec__item--open .serv-faq-sec__answer {
            max-height: 350px;  
        }

     
        @media (max-width: 768px) {
           
            .serv-faq-sec {
                border-radius: 1.5rem;
            }
            .serv-faq-sec__header {
                padding: 1.5rem 1rem 0.8rem 1rem;
            }
            .serv-faq-sec__heading {
                font-size: 1.7rem;
            }
            .serv-faq-sec__sub {
                font-size: 0.85rem;
            }
            .serv-faq-sec__accordion {
                padding: 1.2rem 1.2rem 1.8rem 1.2rem;
                gap: 0.85rem;
            }
            .serv-faq-sec__question {
                padding: 1rem 1.2rem;
                font-size: 0.95rem;
            }
            .serv-faq-sec__question span:first-child {
                gap: 0.6rem;
            }
            .serv-faq-sec__question i:first-child {
                font-size: 1.2rem;
                width: 1.4rem;
            }
            .serv-faq-sec__toggle-icon {
                font-size: 1.2rem;
                width: 1.4rem;
            }
            .serv-faq-sec__answer-inner {
                font-size: 0.88rem;
                padding-bottom: 1.2rem;
            }
        }

       
        @media (max-width: 480px) {
            .serv-faq-sec__heading {
                font-size: 1.5rem;
            }
            .serv-faq-sec__question {
                padding: 0.9rem 1rem;
                font-size: 0.9rem;
            }
            .serv-faq-sec__accordion {
                padding: 1rem 1rem 1.5rem 1rem;
                gap: 0.75rem;
            }
            .serv-faq-sec__answer-inner {
                font-size: 0.85rem;
                line-height: 1.5;
            }
            .serv-faq-sec__toggle-icon {
                font-size: 1.1rem;
            }
            .serv-faq-sec__question i:first-child {
                font-size: 1.1rem;
            }
        }

       
        @media (min-width: 769px) and (max-width: 1024px) {
            .serv-faq-sec {
                max-width: 780px;
            }
            .serv-faq-sec__question {
                font-size: 1rem;
            }
        }

       
        .serv-faq-sec__question:focus-visible {
            outline: 2px solid #456F4B;
            outline-offset: 2px;
            border-radius: 1rem;
        }

        
        .serv-faq-sec__question:hover .serv-faq-sec__toggle-icon {
            color: #456F4B;
        }

        /* FIX SWIPER LAYOUT */
.serv-slider-cards-sec__swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.swiper-slide {
    height: auto;
    display: flex;
}

/* SECTION */
.serv-slider-cards-sec {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    padding: 2rem  1rem;
}

/* HEADER */
.serv-slider-cards-sec__header {
    text-align: center;
    margin-bottom: 3rem;
}

.serv-slider-cards-sec__title {
    font-size: 40px;
    font-weight: 700;
    color: #456F4B;
    margin-bottom: 0.85rem;
}

.serv-slider-cards-sec__sub {
    max-width: 720px;
    margin: auto;
}

/* CARD */
.serv-slider-cards-sec__card {
    background: white;
    border-radius: 28px;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* IMAGE */
.serv-slider-cards-sec__card-img {
    height: 200px;
    overflow: hidden;
}

.serv-slider-cards-sec__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.serv-slider-cards-sec__card-content {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* TITLE */
.serv-slider-cards-sec__card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c4d3a;
}

/* DESCRIPTION FIX (3 lines) */
.serv-slider-cards-sec__card-desc {
    font-size: 0.9rem;
    margin: 1rem 0;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* LINK BOTTOM */
.serv-slider-cards-sec__card-link {
    margin-top: auto;
    color:#456F4B ;
    font-weight: 600;
    text-decoration: none;
}

/* ARROWS FIX (NO FONT AWESOME DEPENDENCY) */
.serv-slider-cards-sec__button-prev,
.serv-slider-cards-sec__button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #456F4B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
}

/* LEFT RIGHT POSITION */
.serv-slider-cards-sec__button-prev { left: 0px; }
.serv-slider-cards-sec__button-next { right: 0px; }

/* ARROW SYMBOLS FIX */
/* .serv-slider-cards-sec__button-prev::after {
    content: "<";
    font-size: 18px;
} */

/* .serv-slider-cards-sec__button-next::after {
    content: ">";
    font-size: 18px;
} */

/* PAGINATION CENTER FIX */
.serv-slider-cards-sec__pagination {
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .serv-slider-cards-sec__button-prev,
    .serv-slider-cards-sec__button-next {
        width: 38px;
        height: 38px;
    }
}

@media(max-width:480px){
    .serv-slider-cards-sec__button-prev,
    .serv-slider-cards-sec__button-next {
        display: none;
    }
}

.loc-abt-sec{
  padding: 50px 20px;
    background: #41644a;
}

.loc-abt-sec-container{
  max-width:900px;
  margin:auto;
  text-align:center;
}

.loc-abt-sec-heading{
  font-size:40px;
  line-height:1.2;
  font-weight:700;
  color:#fff;
  margin-bottom:20px;
}

.loc-abt-sec-text{
      font-size: 16px;
    line-height: 1.5;
    color: #dedede;
    /* max-width: 700px; */
    margin: 0 auto 15px;
}

.loc-abt-sec-btn {
            display: inline-block;
            background-color: transparent;
            color: white;
            font-size: 1.05rem;
            font-weight: 600;
            padding: 0.9rem 2.3rem;
            text-decoration: none;
            letter-spacing: 0.3px;
            border: 2px solid #E86A33;
            cursor: pointer;
            transition: color 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            background: #E86A33;
            font-family: inherit;
            border-radius: 10px;
        }

        .loc-abt-sec-btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background-color: #41644A;
            transition: width 0.45s cubic-bezier(0.65, 0, 0.35, 1);
            z-index: -1;
            border-radius: 8px;
        }

        .loc-abt-sec-btn:hover::before {
            width: 100%;
        }

        .loc-abt-sec-btn:hover {
            color: white;
            border-color: #ffffff;
        }



@media(max-width:768px){

  .loc-abt-sec{
    padding:60px 15px;
  }

  .loc-abt-sec-heading{
    font-size:30px;
  }

  .loc-abt-sec-text{
    font-size:16px;
    line-height:1.7;
  }

  .loc-abt-sec-btn{
    padding:12px 28px;
    font-size:15px;
  }

}

    .loc-cards-sec {
      padding: 80px 20px;
      background-color: #f8fafc;
    }

    .loc-cards-sec .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .loc-cards-sec .heading {
      text-align: center;
      margin-bottom: 12px;
    }

    .loc-cards-sec .heading h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #49614d;
    }

    .loc-cards-sec .description {
      text-align: center;
      /* max-width: 700px; */
      margin: 0 auto 50px;
      font-size: 1.1rem;
      color: #4b5563;
      line-height: 1.6;
    }

    .loc-cards-sec .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 25px;
    }

    .loc-cards-sec-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: all 0.3s ease;
    }

    .loc-cards-sec-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    }

    .loc-cards-sec-card .card-header {
      background-color: #456f4b;
      color: white;
      padding: 18px 0;
      text-align: center;
      font-size: 1.35rem;
      font-weight: 600;
    }

    .loc-cards-sec-card .card-body {
      padding: 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .loc-cards-sec-card .card-body p {
      color: #4b5563;
      line-height: 1.6;
      margin-bottom: 24px;
      flex: 1;
    }
    .card-btn-dv{
      display: flex;
      justify-content: center;
    }

    .card-button {
            display: inline-block;
            background-color: transparent;
            color: white;
            font-size: 1.05rem;
            font-weight: 600;
            padding: 10px 20px;
            text-decoration: none;
            letter-spacing: 0.3px;
            border: 2px solid #E86A33;
            cursor: pointer;
            transition: color 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            background: #E86A33;
            font-family: inherit;
            border-radius: 10px;
            width: 250px;
        }

        .card-button::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background-color: #41644A;
            transition: width 0.45s cubic-bezier(0.65, 0, 0.35, 1);
            z-index: -1;
            border-radius: 8px;
        }

        .card-button:hover::before {
            width: 100%;
        }

        .card-button:hover {
            color: white;
            border-color: #41644A;
        }



    /* Mobile Responsive */
    @media (max-width: 576px) {
      .loc-cards-sec .heading h2 {
        font-size: 2rem;
      }
      
      .loc-cards-sec-card .card-header {
        font-size: 1.2rem;
        padding: 16px 0;
      }
    }


        .loc-img-card-sec {
      padding: 80px 20px;
      background-color: #ecf6ee;
    }

    .loc-img-card-sec .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .loc-img-card-sec-heading {
      text-align: left;
      margin-bottom: 12px;
    }

    .loc-img-card-sec-heading h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #456f4b;
    }

    .loc-img-card-sec-description {
      text-align: left;
      max-width: 700px;
      margin: 0 auto 20px;
    }

    .loc-img-card-sec-description p {
      font-size: 16px;
      color: #475569;
      line-height: 1.6;
    }

    .loc-img-card-sec-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: center;
    }

   
    @media (min-width: 992px) {
      .loc-img-card-sec-content {
        grid-template-columns: 5fr 7fr;
        gap: 60px;
      }
    }

    
    .loc-img-card-sec-image {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .loc-img-card-sec-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

   
    .loc-img-card-sec-cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: 15px;
    }

    @media (min-width: 768px) {
      .loc-img-card-sec-cards {
        grid-template-columns: repeat(1, 1fr);   
      }
     
    }

   
    .loc-img-card-sec-card {
      background: white;
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .loc-img-card-sec-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

   
    .loc-img-card-sec-icon-wrapper {
      position: relative;
      flex-shrink: 0;
    }

    .loc-img-card-sec-icon {
      width: 75px;
    height: 75px;
    background: #e3ffe7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #456f4b;
    }

    .loc-img-card-sec-icon-outer {
      position: absolute;
      top: -6px;
      left: -6px;
      width: 87px;
      height: 87px;
      border: 2px solid #456f4b;
      border-radius: 50%;
    }

    
    .loc-img-card-sec-card-content {
      flex: 1;
    }

    .loc-img-card-sec-card h3 {
      font-size: 1.35rem;
      font-weight: 600;
      color: #1e2937;
      margin: 0 0 12px 0;
    }

    .loc-img-card-sec-card p {
      color: #64748b;
      line-height: 1.6;
      margin: 0;
    }

  
    @media (max-width: 576px) {
      .loc-img-card-sec {
        padding: 60px 15px;
      }
      .loc-img-card-sec-heading h2 {
        font-size: 2rem;
      }
      .loc-img-card-sec-card {
        padding: 15px;
        gap: 25px;
      }
      .loc-img-card-sec-icon {
        width: 50px;
        height: 50px;
        font-size: 25px;
      }
      .loc-img-card-sec-icon-outer{
      width: 60px;
      height: 60px;
      }
       .loc-img-card-sec-image img{
        height: 400px !important;
       object-position: top center;
      }
    }

        .loc-ban-sec {
      padding: 80px 20px;
      background-color: #ffffff;
    }

    .loc-ban-sec .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .loc-ban-sec-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: center;
    }

    /* Desktop Layout: Left Text, Right Image */
    @media (min-width: 992px) {
      .loc-ban-sec-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
      }
    }

    /* Mobile: Image comes first, then text */
    @media (max-width: 991px) {
      .loc-ban-sec-content {
        grid-template-columns: 1fr;
      }
    }

    /* Left Side - Text Content */
    .loc-ban-sec-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .loc-ban-sec-heading h2 {
      font-size: 40px;
      font-weight: 700;
      color: #49614d;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .loc-ban-sec-description p {
      font-size: 16px;
      color: #475569;
      line-height: 1.7;
      margin-bottom: 30px;
    }

   .loc-ban-sec-button {
            display: inline-block;
            background-color: transparent;
            color: white;
            font-size: 1.05rem;
            font-weight: 600;
            padding: 0.9rem 2.3rem;
            text-decoration: none;
            letter-spacing: 0.3px;
            border: 2px solid #E86A33;
            cursor: pointer;
            transition: color 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            background: #E86A33;
            font-family: inherit;
            border-radius: 10px;
        }

       .loc-ban-sec-button::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background-color: #41644A;
            transition: width 0.45s cubic-bezier(0.65, 0, 0.35, 1);
            z-index: -1;
            border-radius: 8px;
        }

       .loc-ban-sec-button:hover::before {
            width: 100%;
        }

       .loc-ban-sec-button:hover {
            color: white;
            border-color: #41644A;
        }



    /* Right Side - Image */
    .loc-ban-sec-right {
      text-align: center;
    }

    .loc-ban-sec-image {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .loc-ban-sec-image img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    /* Responsive */
    @media (max-width: 576px) {
      .loc-ban-sec {
        padding: 60px 15px;
      }
      
      .loc-ban-sec-heading h2 {
        font-size: 2.2rem;
      }
      
      .loc-ban-sec-description p {
        font-size: 1.05rem;
        text-align: justify;
      }
    }

    @media (min-width: 768px) and (max-width: 991px) {
      .loc-ban-sec-heading h2 {
        font-size: 2.5rem;
      }
    }