/* ======================================================
   About and Contact

   TABLE OF CONTENTS
   ------------------------------------------------------
      01. Pages
       .1 Index Page
       
====================================================== */


/* ---------- RESET & BASE ---------- */

* {
  margin: 0px;
  padding: 0px;
}

/* ---------- ROOT VARIABLES ---------- */

:root{
  /* Fonts */
  --font-primary: "Titillium Web", sans-serif;
  --font-secondary: "Arimo", sans-serif;

  /* ----------------------main-site-colors---------------------- */

  --bg-one: #f2f0ef;
  --bg-two: #f7F6F5;
  --bg-three: #91908F;
  --white-color: #ffffff;
  --border-col: #e8e8e8;
  --whatsapp-col: #64b161;

  /* main-root colors */

  --bg-green: #1e704b;
  --bg-light-green: #1E704B;
  --bg-white: #ffffff;
  --btn-color: #089556;
  --font-highlight: #63d3a0;

  /* Brand */
  --primary: #39ff14;
  --secondary: #1fb800;
  --theme-color: #39ff14;
  --dk-cyan-color: #06343e;
  --br-orange: #ff9b61;

  /* Backgrounds */
  --bg-main: #f8f9f7;
  --bg-card: #ffffff;
  --bg-code: #f1f3f1;

  /* Text */
  --text-main: #111111;
  --text-muted: #666666;
  --black-color: #111111;

  /* UI States */
  --success: #39ff14;
  --warning: #ffc107;
  --danger: #ff4d4d;

  /* Borders */
  --border-soft: #e6e6e6;

  /* Effects */
  --overlay-dark: rgba(255, 255, 255, 0.85);

  /* Autogenerated Color Palette */
  --primary-blue: #007bff;
  --dark-bg: #050505;
  --dark-teal: #082d2b;
  --dark-green-alt: #0d3827;
  --text-black: #111111;
  --dark-charcoal: #1a2024;
  --primary-green: #1e704b;
  --deep-green: #235c36;
  --text-dark-gray: #333333;
  --text-gray: #444444;
  --text-muted-gray: #555555;
  --success-green: #55a855;
  --text-light-gray: #666666;
  --gold-base: #dbb771;
  --light-gray-bg: #e0e0e0;
  --gold-light: #e5c77a;
  --border-soft-gray: #e6e6e6;
  --green-tint-bg: #e8f5e9;
  --gray-tint-bg: #eaeaea;
  --gray-light-tint: #eeeeee;
  --gray-pale-tint: #f0f0f0;
  --gray-ui: #f1f1f1;
  --orange-accent: #f2a632;
  --green-ultra-light: #f4faf5;
  --gold-lighter: #f7d98c;
  --off-white-bg: #f9f9f9;
  --almost-white-bg: #fbfbfb;
  --gold-pale: #fceb9c;
  --yellow-accent: #ffda79;
  --yellow-light: #ffe699;
  --white: #ffffff;
  --border-gray: #cccccc;
  --white: #ffffff;
  --text-dark-gray: #333333;
  /* ------------ */
  --bs-gray-dark: #03221B;
  --br-green: #8EC73D;
  --lg-lg-green: #a6ab9f68;
}

body {
  background-color: var(--white-color);
  color: var(--text-main);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

/* ---------- TYPOGRAPHY & TAGS ---------- */
p {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  text-transform: none;
  /* Additional layout */
  /* line-height: 1.6; */
}

a {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  color: var(--bg-green);
  text-transform: capitalize;
  /* Additional layout */
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--text-main);
}

ul,
ol {
  padding: 0 0 0 20px;
}

li {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  text-transform: none;
  /* Additional layout */
  line-height: 1.5;
  /* margin: 0 0 10px 0; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  color: var(--black-color);
  font-weight: 700;
}

.container-wrapper {
  max-width: 1260px;
  margin: 0 auto;
}

.image-sector {
  position: relative;
  z-index: 1;
}

/* Shared Classes from Inline removals */
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--black-color);
}

.user-avatar-text {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: var(--border-soft-gray);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 500;
}

/* ======================================================
   00. HEADER
====================================================== */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 0;
}

.hamburger {
  width: 28px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

/* .middile-menu{
  width: 15px!important;
} */

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--white-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar-toggler.active .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggler.active .hamburger span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.active .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hamburger span {
  animation: pulse 1.5s infinite ease-in-out;
}

.hamburger span:nth-child(2) {
  animation-delay: 0.2s;
}

.hamburger span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulse {

  0%,
  100% {
    transform: scaleX(1);
    opacity: 1;
  }

  50% {
    transform: scaleX(0.7);
    opacity: 0.6;
  }
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 25px 0;
  font-family: var(--font-primary);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  width: 180px;
}

.header-logo .logo-blue-box {
  height: 55px;
  background-color: var(--primary-blue);
  /* Blue box for logo */
  border-radius: 8px;
}

.header-nav {
  /* Semi-transparent border around the nav list */
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px;
  border-radius: 8px;
  background-color: rgb(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.nav-item {
  position: relative;
  margin: 0px;
}

.nav-item a {
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s ease;
}

.nav-item:hover>a {
  font-weight: 500;
  color: var(--bg-light-green);
}

.nav-item.active>a {
  font-weight: 500;
  font-size: 17px;
  color: var(--bg-light-green);
}

.nav-arrow {
  font-size: 9px;
  margin: 2px 0px 0px;
}

/* Dropdown Menu Styles */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 100;
  display: block;
  /* Overrides Bootstrap d-none if applied */
  border: none;
  margin: 10px 0px 0px;
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
  border-bottom: 1px solid var(--gray-ui);
}

.dropdown-menu li:last-child {
  border-bottom: 0px !important;
}

.dropdown-menu li a {
  color: var(--text-dark-gray);
  padding: 10px 20px;
  display: block;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0;
}

.dropdown-menu li.active>a,
.dropdown-menu li a:hover {
  color: var(--bg-green);
  background-color: rgba(30, 112, 75, 0.08);
}



.header-action {
  display: flex;
  align-items: center;
}

.header-action .book-now-btn {
  background-color: var(--bg-green);
  font-family: var(--font-secondary);

  /* Yellow/Golden color */
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 6px;
}

.header-action .book-now-btn:hover {
  /* background-color: var(--yellow-accent); */
}

/* ======================================================
   00.1 Sticky Top Header (JS toggled)
====================================================== */
@keyframes slideDownHeader {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.sticky-nav {
  transition: all 0.3s ease;
}

.sticky-nav.menu-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(18, 18, 18, 0.95);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
  /* Slightly smaller padding than original (25px) */
  animation: slideDownHeader 0.5s ease-out forwards;
  z-index: 1000;
}

/* Sticky Header Customization */
@keyframes slideDownHeader {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.sticky-nav.menu-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(18, 18, 18, 0.95);
  /* Better visibility on scroll */
  padding: 15px 0;
  /* Slightly smaller padding */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: slideDownHeader 0.5s ease-out forwards;
  z-index: 999;
}

/* ======================================================
   00.1 Sticky Right Sidebar
====================================================== */
.right-sidebar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: rgba(17, 17, 17, 0.9);
  /* Dark semi-transparent background */
  display: flex;
  flex-direction: column;
  padding: 20px 10px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  z-index: 1000;
  gap: 6px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.right-sidebar .social-link {
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.right-sidebar .social-link i {
  /* Some FA icons appear solid by default, but this provides a clean look */
  transition: transform 0.3s ease;
}

.right-sidebar .social-link:hover {
  color: var(--primary);
}

.right-sidebar .social-link:hover i {
  transform: scale(1.15);
}

/* ======================================================
   01. PAGE: INDEX
====================================================== */

/* ======================================================
   01. SECTION: Hero Slider
====================================================== */

.hero-slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero-slide-bg {
  background-image: url(../images/Slider/543829576.webp);
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-blue);
  transform: scale(1);
  transition: transform 6s ease-out;

}


.bg-one {
  background-image: url(../images/Slider/543829576.webp);
}

.bg-two {
  background-image: url(../images/Slider/home-slider.webp);
}

.hero-swiper .swiper-slide-active .hero-slide-bg {
  transform: scale(1.1);
}

.hero-swiper .swiper-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-family: var(--font-primary);
  color: var(--white-color);
  text-transform: capitalize;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin: 0;
  max-width: 800px;
  opacity: 0;
  transform: translateY(50px);
}

.hero-swiper .swiper-slide-active .hero-title {
  animation: slideUpHeroFade 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  animation-delay: 0.5s;
}

@keyframes slideUpHeroFade {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-next,
.hero-prev {
  color: var(--white);
}

.hero-pagination .swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.5;
  width: 10px;
  height: 10px;
}

.hero-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary);
}


/* ======================================================
   01.01 SECTION: About Us
====================================================== */

.about-paragraph-detail {
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  color: var(--text-muted);
  text-align: justify;
}

.about-section {
  padding: 60px 0px 60px 0px;
  background-color: var(--white);
  /* font-family: var(--font-primary); */
}

.ab-con {
  padding: 0px 0px 0px 30px !important;
  margin: 0px 0px 0px 0px !important;
}

.about-images-wrapper {
  position: relative;

  /* Space for the overlapping image */
  padding-right: 60px;
  padding: 0px 0px 60px;
}

.about-img-main {
  width: 100%;
  height: 450px;
  background-image: url(../images/About/about-bg.webp);
  background-size: cover;
  background-position: center;
  /* Blue box as requested */
  border-radius: 12px;
}


.about-content .title-divider {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0px 0px 20px 0px;
}

.about-content .title-divider .dot {
  width: 4px;
  height: 4px;
  background-color: var(--black-color);
  border-radius: 50%;
}

.about-content .title-divider .line {
  width: 60px;
  height: 3px;
  border-radius: 20px;
  background-color: var(--black-color);
  margin: 0px 0px 0px 8px;
}


.about-img-overlay {
  position: absolute;
  bottom: 0;
  right: -40px;
  background-color: var(--white-color);
  /* White border effect */
  padding: 15px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.about-img-sub {
  width: 250px;
  height: 280px;
  background-image: url(../images/About/about-sub-bg.webp);
  background-size: cover;
  background-position: center;
  /* Secondary blue box */
  border-radius: 12px;
}

/* 
.about-content {
  padding: 20px 0;
} */

.about-subtitle {
  color: var(--text-dark-gray);
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 600;
  display: block;
  margin: 0px 0px 15px;
}

.about-title {
  color: var(--dark-teal);
  /* Dark greenish-black from ref */
  font-size: 44px;
  font-family: var(--font-primary);
  /* Serif font for title */
  font-weight: 700 !important;
  line-height: 1.2;
  margin: 0px 0px 10px;
}

/* 
.about-title .text-green {
  color: var(--bg-green, #1E704B) !important;
} */

.about-title .highlight-text {
  color: var(--bg-green);
  font-family: var(--font-primary);
  /* Golden italic text */
  font-weight: 600;
}

.about-text {
  color: var(--black-color);
  font-size: 16px;
  line-height: 1.8;
  font-family: var(--font-secondary);
  text-transform: capitalize;
  font-weight: 400;
  margin: 0px 0px 15px;
  text-align: justify;
}

.btn-more-about {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 30px 10px 20px;
  border: 1px solid #000000;
  background: #000;
  color: #ffffff;
  border-radius: 30px;
  margin: auto;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  overflow: hidden;
}

.about-text-link {
  /* transform: translateY(10px); */
  padding: 0px 0px 0px 20px;
}

.btn-more-about::before {
  position: absolute;
  left: 15px;
  content: "";
  width: 12px;
  height: 12px;
  background: var(--white-color);
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}

.btn-more-about:hover {
  background-color: var(--gold-light);
  color: var(--text-black);
}

.about-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-pale-tint);
  padding: 35px 0px 0px;
}

.stat-item {
  text-align: left;
}

.stat-number {
  color: var(--dark-teal);
  font-size: 42px;
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 0px 8px;
}

.stat-number span {
  font-size: 60px;
  font-weight: 700;
  margin: 5px 0px 0px 2px;
}

.stat-label {
  color: var(--text-light-gray);
  font-size: 13px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background-color: var(--light-gray-bg);
}

/* ======================================================
   01.01.1 SECTION: Sustainable Place
====================================================== */

.sustainable-section {
  position: relative;
  background-color: var(--bg-green);
  overflow: hidden;
  padding: 80px 0;
  height: 100vh;
  background-image: url(../images/Home/service-banner.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.sustainable-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.sustainable-section .container-wrapper {
  z-index: 2;
  position: relative;
}

.sustainable-row {
  min-height: calc(100vh - 160px);
  /* Account for padding */
  align-items: flex-end;
  /* Push to bottom */
}

.sustainable-left-col {
  display: flex;
  align-items: flex-end;
  order: 2;
  margin-top: 50px;
}

.sustainable-right-col {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  order: 1;
  align-self: flex-start;
  /* Ensure badge stays at top */
}

/* Badge Styling */
.sustainable-badge {
  position: relative;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  margin-top: 30px;
  /* Spacing from top */
}

.badge-text-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: spinText 15s linear infinite;
}

.badge-inner-circle {
  width: 50px;
  height: 50px;
  background-color: var(--br-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.sustainable-icon {
  font-size: 24px;
  color: var(--white);
}

@keyframes spinText {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Content Styling */
.sustainable-content {
  position: relative;
  z-index: 3;
}

.sustainable-title {
  font-family: var(--font-primary);
  font-size: 50px;
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
}

.sustainable-title-top {
  font-family: var(--font-primary);
  display: block;
  font-weight: 700;
  font-size: 70px;
  color: var(--white);
}

.sustainable-title .text-transparent-outline {
  font-family: var(--font-primary);
  display: block;
  color: var(--white-color);
  -webkit-mask-image: linear-gradient(to top, transparent 0%, white 115%);
  mask-image: linear-gradient(to top, transparent 0%, white 115%);
  font-size: 70px;
}

/* ======================================================
   01.01b SECTION: Our Works
====================================================== */
.our-works-section {
  background-color: var(--bg-two);
  font-family: var(--font-primary);
  padding: 60px 0px;
}

.work-card {
  background-color: var(--white);
  padding: 40px 30px;
  text-align: center;
  height: 350px;
  border-radius: 5px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-col);
  z-index: 1;
}

.work-card-bg,
.work-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  border-radius: 5px;
}

.work-card-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-card-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 1.05s;
}

.work-card-content {
  position: relative;
  z-index: 1;
}

.work-card:hover .work-card-bg {
  transform: translateY(0);
  opacity: 1;
  transition-duration: 0.75s;
}

.work-card:hover .work-card-overlay {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  transition-duration: 0.75s, 0.75s, 0s;
  transition-delay: 0s;
}


.work-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--deep-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  margin: 0 auto 25px;
  transition: all 0.4s ease-in-out;
}

.work-card:hover .work-icon {
  background-color: var(--dark-charcoal);
  color: var(--deep-green);
}

.work-title {
  color: var(--deep-green);
  font-size: 22px;
  font-weight: 700;

  transition: all 0.4s ease-in-out;
  margin: 0px 0px 15px;
}

.work-card:hover .work-title {
  color: var(--white);
}

.work-text {
  font-family: var(--font-secondary);
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.7;
  transition: all 0.4s ease-in-out;
  text-align: center;
}

.work-card:hover .work-text {
  color: var(--light-gray-bg);
}

.our-works-image-wrapper {
  position: relative;
  z-index: 1;
}

.our-works-blue-box {
  position: absolute;
  top: 40px;
  right: -40px;
  bottom: -40px;
  left: 40px;
  background-color: var(--primary-blue);
  z-index: -1;
  border-radius: 12px;
}

.our-works-img {
  width: 80%;
  height: 470px;
  object-fit: cover;
  border-radius: 0px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ======================================================
   01.02 SECTION: Services / Features
====================================================== */
.services-section {
  background-color: var(--white);
}

.service-subtitle {
  display: inline-block;
  background-color: var(--green-tint-bg);
  /* Light green background */
  color: var(--success-green);
  /* Medium green text */
  font-size: 14px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 30px;
}

.feature-card {
  background-color: var(--white);
  border: 1px solid var(--gray-tint-bg);
  border-radius: 12px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background-color: var(--green-ultra-light);
  /* highlight greenish background */
  border-color: var(--green-ultra-light);
}

.read-more-link {
  transition: opacity 0.3s;
}

.read-more-link:hover {
  opacity: 0.8;
}

/* ======================================================
   02. SECTION: Recent Projects
====================================================== */
.recent-projects-section {
  background-color: var(--off-white-bg);
  padding: 60px 0;
  /* font-family: var(--font-primary); */
}

.project-card {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  /* padding: 10px; */
  border: 1px solid var(--border-col);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.rp-one {
  max-width: 700px !important;
}

.project-photos {
  margin: 0px 0px 30px 0px;
}

/* .project-card:hover .project-card:after{
  opacity: 0;
} */

.project-card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 0.4);
  /* Dark tint */
  /* opacity: 0; */
  transition: opacity 0.5s ease;
  z-index: 1;
}

.project-img-box {
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
}

.project-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(87, 199, 133, 0.76) 70%);
  /* Dark tint */
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.project-content {
  padding: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background: transparent;
}

.project-content h3 {
  color: var(--white);
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 3;
  transition: transform 0.4s ease;
  transform: translateY(15px);
}

.project-desc {
  position: relative;
  margin: 10px 0 0 0;
  color: var(--white-color);
  font-family: var(--font-secondary);
  font-size: 15px;
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.4s ease;
}

.read-more-btn {
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.read-more-btn i {
  transition: transform 0.3s ease;
}

.read-more-btn:hover {
  color: var(--white);
  /* Can be overridden */
}

.read-more-btn:hover i {
  transform: translateX(5px);
}

/* Hover Effects */
.project-card:hover .project-img-box img {
  transform: scale(1.08);
  /* slight zoom on image */
}

.project-card:hover .project-overlay {
  opacity: 1;
  /* fade in black overlay */
}

.project-card:hover .project-content h3 {
  transform: translateY(0);
}

.project-card:hover .project-desc {
  opacity: 1;
  transform: translateY(0);
}

.projects-swiper {
  /* space for pagination */
  padding: 0px 0px 20px;
}

.projects-pagination.swiper-pagination {
  bottom: 0 !important;
}

.projects-pagination .swiper-pagination-bullet {
  background: var(--border-gray);
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 6px !important;
}

.projects-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}


/* ======================================================
   03. SECTION: Upcoming Projects
====================================================== */
.upcoming-projects-section {
  background-color: var(--white);
  padding: 80px 0;
  font-family: var(--font-primary);
}

/* ======================================================
   04. SECTION: Testimonial
====================================================== */

.testimonial-main-img img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.testimonial-section {
  background-color: var(--bg-one);
  /* Dark green background like image */
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  font-family: var(--font-secondary), sans-serif;
}

/* Optional subtle background pattern using radial gradients to give map-like lines impression */
.testimonial-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
    radial-gradient(ellipse at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

.testimonial-img-wrapper {
  position: relative;
  z-index: 1;
}

.testimonial-main-img {
  width: 100%;
  aspect-ratio: 6 / 5;
  min-height: 320px;
  max-height: 500px;
  /* background-color: var(--primary-blue); */
  /* Blue box as requested by user */
  border-radius: 30px;
  overflow: hidden;
}

.testimonial-badge-top {
  position: absolute;
  top: 40px;
  left: 40px;
  background-color: var(--success-green);
  color: white;
  padding: 20px 25px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.badge-top-score {
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  margin: 0px 0px 5px;
}

.badge-top-stars {
  color: var(--gold-pale);
  font-size: 14px;

  letter-spacing: 2px;
  margin: 0px 0px 5px;
}

.badge-top-text {
  font-size: 15px;
  font-weight: 500;
}

.testimonial-badge-bottom {
  position: absolute;
  bottom: 30px;
  right: 40px;
  background-color: var(--success-green);
  color: white;
  padding: 12px 25px 12px 15px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.badge-bottom-avatars {
  display: flex;
}

.badge-bottom-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--success-green);

  object-fit: cover;
  margin: 0px 0px 0px -15px;
}

.badge-bottom-avatars img:first-child {

  margin: 0px 0px 0px 0;
}

.badge-bottom-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  padding: 0px 0px 0px 60px;
}

.testimonial-subtitle {
  display: inline-block;
  background-color: white;
  color: var(--success-green);
  padding: 6px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  margin: 0px 0px 25px;
}

.testimonial-title {
  color: var(--dark-teal);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0px 0px 20px;
}

.testimonial-stars {
  color: var(--orange-accent);
  font-size: 22px;

  letter-spacing: 2px;
  margin: 0px 0px 30px;
}

.testimonial-text {
  font-family: var(--font-secondary);

  color: var(--text-muted);
  font-size: 19px;
  line-height: 1.8;

  font-weight: 300;
  margin: 0px 0px 50px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.user-info-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.user-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
}

.user-avatar-text {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: var(--border-soft-gray);
  color: var(--text-dark-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 500;
}

.user-details h5 {
  color: var(--black-color);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.user-details span {
  color: var(--success-green);
  font-size: 15px;
  font-weight: 500;
}

.quote-icon {
  color: var(--success-green);
}



.testimonial-pagination {
  bottom: 0 !important;
  text-align: left;
}

.testimonial-pagination .swiper-pagination-bullet {
  background: var(--white-color);
  opacity: 0.3;
  width: 10px;
  height: 10px;
  margin: 0 5px !important;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--success-green);
}

/* ======================================================
   XX. INNER PAGE BANNER
====================================================== */

.banner-title {
  position: relative;
  z-index: 2;
}

.inner-banner-section {
  position: relative;
  width: 100%;
  height: 450px;
  min-height: 450px;
  background-image: url('../images/About/about-banner.webp');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-primary);
}

.inner-banner-section .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  /* Dark overlay */
  z-index: 1;
}

.inner-banner-section .container {
  position: relative;
  z-index: 2;
}

.inner-banner-section .banner-title {
  color: var(--white);
  font-size: 50px;
  font-weight: 700;
  margin: 0;
  text-transform: capitalize;
}

/* ======================================================
   XX. BLOG GRID SECTION
====================================================== */
.blog-grid-section {
  background-color: var(--white);
  font-family: var(--font-primary);
}

.blog-subtitle {
  color: var(--text-dark-gray);
  font-size: 15px;
  font-weight: 500;
  display: block;
  font-family: var(--font-secondary);
  text-transform: capitalize;
  margin: 0px 0px 8px;
}

.blog-section-title {
  color: var(--dark-teal);
  font-size: 44px;
  font-family: var(--font-primary);
  font-weight: 700;
  margin: 0px 0px 15px;
}

.blog-sub-paragraph {
  font-size: 16px;
  font-family: var(--font-secondary);
  max-width: 600px;
  color: var(--text-muted-gray);
}

.blog-section-title .highlight-text {
  color: var(--btn-color);
  font-weight: 600;
  font-family: var(--font-primary);
}

.blog-card {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Base height for normal cards */
.blog-card-normal {
  height: 280px;
}

/* Tall height calc: 2 * normal + gap (1.5rem = 24px) */
.blog-card-tall {
  height: 340px;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px 30px;
  background: linear-gradient(to top, rgba(16, 36, 30, 0.85) 0%, rgba(16, 36, 30, 0.6) 40%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}

.blog-card-tall .blog-card-overlay {
  padding: 60px 30px 40px;
  background: linear-gradient(to top, rgba(16, 36, 30, 0.85) 0%, rgba(16, 36, 30, 0.6) 30%, rgba(0, 0, 0, 0) 100%);
}

.blog-meta {
  color: var(--light-gray-bg);
  font-size: 13px;
  font-family: var(--font-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  margin: 0px 0px 10px;
}

.blog-card .blog-title {
  color: var(--white);
  font-size: 22px;
  font-family: var(--font-secondary);
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

/* ======================================================
   XX. CONTACT INFO SECTION
====================================================== */
.contact-paragraph {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-secondary);
  color: var(--text-muted);
  max-width: 600px;
}

.contact-info-section {
  background-color: var(--almost-white-bg);
  font-family: var(--font-primary);
}

.contact-subtitle {
  color: var(--text-dark-gray);
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 500;
  display: block;

  text-transform: capitalize;
  margin: 0px 0px 8px;
}

.contact-section-title {
  color: var(--dark-teal);
  font-size: 44px;
  font-family: var(--font-primary);
  font-weight: 700;
  margin: 0px 0px 15px;
}

.contact-section-title .highlight-text {
  font-family: var(--font-secondary);
  color: var(--btn-color);
  font-weight: 600;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
  font-family: var(--font-secondary);
  border: 1px solid var(--light-gray-bg);
  border-radius: 8px;
  padding: 15px 20px;
  font-size: 15px;
  color: var(--text-muted-gray);
}

.contact-form .form-control:focus {
  border-color: var(--dark-teal);
  box-shadow: none;
}

.btn-send-message {
  background-color: var(--btn-color);
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-send-message:hover {
  background-color: var(--gold-light);
}

.contact-info-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--gray-light-tint);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
  height: 100%;
  transition: all 0.3s ease;
}

.info-card-title {
  color: var(--dark-teal);
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 600;
  margin: 0px 0px 10px;
}

.info-card-text {
  font-family: var(--font-secondary);
  color: var(--text-muted-gray);
  font-size: 15px;
  margin: 0px 0px 5px 0px !important;
}

.info-card-text a {
  font-family: var(--font-secondary);
  color: var(--text-light-gray);
  font-size: 15px;
  margin: 0px 0px 0px 0px !important;
  display: inline-block;
}

.info-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0px 0px 20px 0px;
}

.info-card-icon.icon-yellow {
  background-color: var(--btn-color);
  color: var(--white-color);
}

.info-card-icon.icon-dark {
  background-color: var(--dark-teal);
  color: var(--white);
}

/* ======================================================
   XX. RECENT PROJECTS SECTION
====================================================== */
.section-bottom {
  margin: 0px 0px 30px 0px;
}

/* 
.recent-projects-section {
  background-color: var(--black-color);
  font-family: var(--font-primary);
  overflow: hidden;
} */

.recent-projects-section .recent-projects-title {
  color: var(--white-color);
  font-size: 52px;
  font-family: var(--font-primary);
  font-weight: 800;
  margin: 0px 0px 20px;
  text-transform: capitalize;
}

.recent-projects-section .recent-projects-title .highlight-text {
  color: var(--bg-green, #1E704B);
}

.recent-projects-section .title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.recent-projects-section .title-divider .dot {
  width: 5px;
  height: 5px;
  background-color: #ffffff;
  border-radius: 50%;
}

.recent-projects-section .title-divider .line {
  width: 80px;
  height: 3px;
  background-color: #ffffff;
  margin: 0px 0px 0px 8px;
  border-radius: 20px;
}

/* ======================================================
   XX. MAP SECTION
====================================================== */
.contact-map-section iframe {
  width: 100%;
  display: block;
}

/* ======================================================
   XX. OUR CLIENTS SECTION
====================================================== */
.our-clients-section {
  background-color: var(--dark-bg);
  font-family: var(--font-primary);
  overflow: hidden;
}

.our-clients-section .clients-title {
  color: var(--white);
  font-size: 44px;
  font-family: var(--font-primary);
  font-weight: 700;
  margin: 0px 0px 25px;
}

.our-clients-section .clients-title .highlight-text {
  color: var(--primary-green);
}

.our-clients-section .title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.our-clients-section .title-divider .dot {
  width: 4px;
  height: 4px;
  background-color: var(--white);
  border-radius: 50%;
}

.our-clients-section .title-divider .line {
  width: 60px;
  height: 2px;
  background-color: var(--white);
  margin: 0px 0px 0px 8px;
}

.client-logo-box {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.client-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clients-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ======================================================
   XX. OUR SERVICES SECTION
====================================================== */
.our-services-section {
  background-color: var(--dark-bg);
  font-family: var(--font-primary);
  overflow: hidden;
  padding: 60px 0px;
}

.client-slide {
  padding: 0px 0px 20px 0px;
}

.our-services-section .services-title {
  color: var(--white);
  font-size: 52px;
  font-family: var(--font-primary);
  font-weight: 700;
  margin: 0px 0px 25px;
}

.our-services-section .services-title .highlight-text {
  color: var(--primary-green);
}

.our-services-section .title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.our-services-section .title-divider .dot {
  width: 4px;
  height: 4px;
  background-color: var(--white);
  border-radius: 50%;
}

.our-services-section .title-divider .line {
  width: 60px;
  height: 2px;
  background-color: var(--white);
  margin: 0px 0px 0px 8px;
}

.service-slide-box {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-img-box {
  width: 100%;
  height: 100%;
}

.service-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-carousel .owl-stage-outer {
  transition-timing-function: linear !important;
}

/* ---------- 01.01 Zomming-Slider ---------- */

/* ======================================================
   MOBILE OFFCANVAS MENU
====================================================== */
.mobile-offcanvas {
  max-width: 320px;
  background-color: var(--bg-white, #fff);
}

.mobile-offcanvas .offcanvas-header {
  padding: 1.5rem;
  border-bottom: 1px solid #f1f1f1;
}

.offcanvas-body{
  padding: 5px 0;
}

.btn-close-custom {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #0e1b2f;
  cursor: pointer;
}

.mobile-nav {
  padding: 0;
}

.mobile-nav .nav-list {
  padding: 0;
  margin: 0;
}

.mobile-nav .nav-item {
  border-bottom: 1px solid #f9f9f9;
  padding: 0 1.5rem;
}

.mobile-nav .nav-item:last-child {
  border-bottom: none;
}

.mobile-nav .nav-item>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  color: #0e1b2f;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-primary, 'Vend Sans', sans-serif);
}

.mobile-nav .nav-item.active>a,
.mobile-nav .nav-item>a:hover {
  color: var(--bg-green);
}

.mobile-nav .nav-item .collapse a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 400;
  font-size: 0.95rem;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-nav .nav-item .collapse a:hover {
  color: var(--bg-green);
  padding-left: 5px;
}

.mobile-nav .nav-item .collapse li.active>a {
  color: var(--bg-green);
  font-weight: 600;
}

.mobile-nav .nav-arrow {
  font-size: 0.8rem;
  color: #e4a853;
  transition: transform 0.3s ease;
}

.mobile-nav .nav-item>a[aria-expanded="true"] .nav-arrow {
  transform: rotate(180deg);
}

/* ===== Offnav bottom =====*/
.off-nav-icon{
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 150px;
  margin: 0px auto;
}

.off-nav-icon i {
  color: var(--black-color);
  font-size: 24px;
  margin: 0px 5px;
  text-shadow: 3px 4px 6px #00000039;
}

.off-nav-contact{
  padding: 30px 0 0 0;
}

.off-nav-contact li{
  list-style: none;
  text-align: center;
  margin: 0 0 10px 0;
}

.off-nav-contact li a{
  color: var(--text-light-gray);
  font-size: 16px;
  font-family: var(--font-secondary);
  text-align: center;
  text-decoration: none;
  text-transform: none
}

/* ======================================================
   XX. UPCOMING PROJECTS SECTION
====================================================== */
.upcoming-projects-section {
  background-color: var(--bg-two);
  font-family: var(--font-primary);
  overflow: hidden;
  position: relative;
}

.upcoming-projects-section .upcoming-projects-title {
  color: var(--white-color);
  font-size: 52px;
  font-family: var(--font-primary);
  font-weight: 800;
  margin: 0px 0px 20px;
  text-transform: capitalize;
}

.upcoming-projects-section .upcoming-projects-title .highlight-text-light {
  color: #c0c0c0;
  /* Light grey text */
}

.upcoming-projects-section .title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.upcoming-projects-section .title-divider .dot {
  width: 5px;
  height: 5px;
  background-color: #ffffff;
  border-radius: 50%;
}

.upcoming-projects-section .title-divider .line {
  width: 80px;
  height: 3px;
  background-color: #ffffff;
  margin: 0px 0px 0px 8px;
  border-radius: 20px;
}

/* ======================================================
   XX. OUR IMAGINATION SECTION
====================================================== */
.our-imagination-section {
  position: relative;
  background-image: url('../images/Testimonials/test-home.webp');
  /* Fixed Background image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  font-family: var(--font-primary);
  padding: 60px 0px;
}

.imagination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 0;
}

.our-imagination-section .container {
  z-index: 1;
}

.imagination-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
}

.imagination-title .text-white {
  color: var(--white-color);
}

.imagination-title .text-green {
  color: var(--font-highlight);
}

.imagination-title .text-gold {
  color: #c99335;
}

.our-imagination-section .title-divider {
  display: flex;
  align-items: center;
  gap: 6px;
}

.our-imagination-section .title-divider .dot {
  width: 4px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 50%;
}

.our-imagination-section .title-divider .line {
  width: 60px;
  height: 3px;
  background-color: #ffffff;
  margin: 0px 0px 0px 8px;
  border-radius: 20px;
}

.imagination-stats-row {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.imagination-stat-item {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
}

.imagination-stats-row .border-light-subtle {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.imagination-stat-item .stat-box {
  padding: 50px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.imagination-stat-item .stat-number {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--font-highlight);
}

.imagination-stat-item .stat-text {
  font-family: var(--font-secondary);

  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--white-color);
}

/* ======================================================
   XX. ABOUT PAGE SERVICES SECTION
====================================================== */
.about-services-section {
  background-color: var(--bg-green, #1E704B);
  font-family: var(--font-primary);
}

.about-services-section .about-services-title {
  color: var(--white-color);
  font-size: 52px;
  font-family: var(--font-primary);
  font-weight: 800;
  margin: 0px 0px 20px;
  text-transform: capitalize;
}

.about-services-section .about-services-title .highlight-text-light {
  color: #c0c0c0;
  /* Light grey text */
}

.about-services-section .title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.about-services-section .title-divider .dot {
  width: 5px;
  height: 5px;
  background-color: #ffffff;
  border-radius: 50%;
}

.about-services-section .title-divider .line {
  width: 80px;
  height: 3px;
  background-color: #ffffff;
  margin: 0px 0px 0px 8px;
  border-radius: 20px;
}

.about-service-card {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.about-service-card:hover {
  transform: translateY(-5px);
}

.about-service-title {
  color: var(--bg-green, #1E704B);
  font-size: 22px;
  font-weight: 700;
}

.about-service-title.text-green {
  color: var(--bg-green, #1E704B) !important;
}

.about-service-text {
  color: #333333;
  font-size: 15px;
  line-height: 1.6;
}

/* ======================================================
   XX. OUR TEAM SECTION
====================================================== */
.our-team-section {
  background-color: var(--bg-white);
  font-family: var(--font-primary);
}

.our-team-section .team-title {
  font-size: 44px;
  font-weight: 700;
  margin: 0;
}

.our-team-section .team-title.text-dark {
  color: var(--dark-teal) !important;
}

.our-team-section .title-divider {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 6px;
}

.our-team-section .title-divider .dot {
  width: 5px;
  height: 5px;
  background-color: var(--black-color);
  border-radius: 50%;
}

.our-team-section .title-divider .line {
  width: 80px;
  height: 3px;
  background-color: var(--black-color);
  margin-left: 8px;
  border-radius: 20px;
}

.our-team-section .row.align-items-center {
  row-gap: 30px;
}

.our-team-section .team-card {
  display: flex;
  height: 100%;
  background: var(--bg-code);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.our-team-section .team-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.our-team-section .team-card.team-card-profile {
  min-height: 360px;
}

.our-team-section .team-left {
  position: relative;
  flex: 0 0 34%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 18px;
  background-image: url("../images/About/testimonial-two-shape-1.webp");
  background-size: 210px auto;
  background-position: left 0 bottom 0;
  background-repeat: no-repeat;
}

.our-team-section .team-card.team-card-profile .image-wrapper {
  position: absolute;
  top: 80px;
  left: 26px;
  z-index: 2;
  width: clamp(118px, 11vw, 160px);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid var(--bg-card);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.our-team-section .team-card.team-card-profile .image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-team-section .team-card.team-card-profile .team-right {
  flex: 1 1 auto;
  min-width: 0;
  padding: 50px 45px;
  text-align: left;
}

.our-team-section .team-card.team-card-profile::after {
  content: "\275D";
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 70px;
  color: var(--bg-three);
  transition: color 0.3s ease, transform 0.3s ease;
}

.our-team-section .team-card.team-card-profile:hover::after {
  color: var(--bg-light-green);
  transform: scale(1.1);
}

.our-team-section .team-card.team-card-profile .stars {
  display: flex;
  justify-content: flex-start;
  gap: 4px;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.our-team-section .team-card.team-card-profile .team-right h3 {
  font-size: 28px;
  margin: 0 0 6px;
  font-weight: 600;
  color: var(--black-color);
}

.our-team-section .team-card.team-card-profile .role {
  color: var(--bg-three);
  margin-bottom: 18px;
}

.our-team-section .team-card.team-card-profile .divider {
  width: 60px;
  height: 3px;
  background: var(--border-col);
  margin: 18px 0;
}

.our-team-section .team-card.team-card-profile .desc {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 0;
  text-align: justify;
}

@media (max-width: 992px) {
  .our-team-section .team-card.team-card-profile .team-right {
    padding: 38px 32px;
  }

  .our-team-section .team-left {
    flex: 0 0 46%;
  }

  .our-team-section .team-card.team-card-profile .image-wrapper {
    top: 110px;
    left: 30px;
    width: 150px;
  }

}

@media (max-width: 768px) {
  .our-team-section .team-card.team-card-profile {
    flex-direction: row;
  }

  .our-team-section .team-left {
    flex-basis: 220px;
  }

  .our-team-section .team-card.team-card-profile .image-wrapper {
    width: 155px;
    border-width: 3px;
    top: 70px;
    left: 28px;
  }

}

@media (max-width: 576px) {
  .our-team-section .team-card.team-card-profile {
    flex-direction: row;
  }

  .our-team-section .team-left {
    flex-basis: 220px;
  }

  .our-team-section .team-card.team-card-profile .image-wrapper {
    width: 155px;
    border-width: 3px;
    top: 70px;
    left: 28px;
  }
}

@media (max-width: 420px) {
  .our-team-section .team-card.team-card-profile {
    display: block;
  }

  .our-team-section .team-left {
    position: relative;
    padding: 180px 18px;
    background-size: 220px auto;
  }

  .our-team-section .team-card.team-card-profile .image-wrapper {
    width: 165px;
    border-width: 3px;
    top: 58px;
    left: 26px;
  }
}

@media (max-width: 320px) {
  .our-team-section .team-card.team-card-profile {
    display: block;
  }

  .our-team-section .team-left {
    position: relative;
    padding: 180px 18px;
    background-size: 220px auto;
  }

  .our-team-section .team-card.team-card-profile .image-wrapper {
    width: 165px;
    border-width: 3px;
    top: 58px;
    left: 26px;
  }
}

/* ======================================================
   XX. FOOTER SECTION
====================================================== */


.footer-section {
  padding: 36px 0px 60px;
  margin: 0px auto;
  /* position: relative; */
  background-color: var(--bg-two);

}

/* 
.footer-section::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 97%;
} */
/* 
.logo-side img {
  width: 230px;
} */

/* main footer container */

.footer-width {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 15px;
}

/* .main-footer-box {
  position: relative;
  z-index: 1;
  margin: 50px 0px 70px 0px;
  padding: 0px 0px 40px 0px;
  border-bottom: solid var(--lg-lg-green) 1px;
} */

.project-detail-section {
  padding: 60px 0px;
}

.element {
  position: relative;
  margin: 20px 0px 0px 0px;
}

.element::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.3), transparent);
}

/* logo */
/* 
.logo-side {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 20px 0px;
  position: relative;
  z-index: 2;
} */

/* --------------------------- */

.contact-us-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  text-decoration: none;
  color: var(--white-color) !important;
  width: fit-content;
  padding: 10px 20px;
  border-radius: 30px;
  background: var(--black-color);
  margin: 0px 0px 30px 0px;
}

.default-text {
  transition: 0.3s ease;
}

.hover-text {
  display: none;
  transition: 0.3s ease;
}

.plus-btn {
  font-weight: bold;
  font-size: 20px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff38;
  backdrop-filter: blur(3px);
  border-radius: 20px;
  transition: all 0.5s ease-in-out;
}

.contact-us-btn:hover .plus-btn {
  transform: translateX(-80px);
}

.contact-us-btn:hover .default-text {

  display: none;

}

.contact-us-btn:hover .hover-text {
  display: block;

}

.contact-us-btn:hover .hover-text {
  display: inline-block;
  transform: translateX(25px);
}


/* ------------------------ */

.footer-social-icons i {
  color: var(--black-color);
  font-size: 35px;
  margin: 0px 20px 0px 0px;
  text-shadow: 3px 4px 6px #00000039;
}

.footer-subheader h4 {
  font-family: var(--font-secondary);
  color: var(--black-color);
  font-size: 20px;
  font-weight: 600;
  margin: 0px 0px 15px 0px;
  text-transform: capitalize;
}

.footer-links-list {
  list-style: none;
  padding: 0;
}

.footer-links-list-item {
  font-family: var(--font-secondary);
  color: var(--black-color);
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 20px;
  line-height: 20px;
  margin: 0px 0px 5px 0px;
}

.footer-links-list-item span {
  display: block;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* default text */
.footer-links-list-item .defualt-text {
  transform: translateY(0);
}

/* hover text */
.footer-links-list-item .hover-text {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
  opacity: 0;
}

/* hover state */
.footer-links-list-item:hover .defualt-text {
  transform: translateY(-100%);
  opacity: 0;
}

.footer-links-list-item:hover .hover-text {
  transform: translateY(0);
  opacity: 1;
}

.footer-address-list-item {
  display: flex;
  margin: 0px 0px 10px 0px;
  align-items: start;
}

.footer-address-list-item i {
  font-size: 18px;
  margin: 0px 10px 0px 0px;
}


.footer-address-list-item p {
  font-size: 14px;
  font-family: var(--font-secondary);
  color: var(--black-color);
  font-weight: 400;
  margin: 0;
}

.footer-address-list-item p a {
  font-size: 14px;
  font-family: var(--font-secondary);
  color: var(--black-color);
  font-weight: 400;

}

/* ------------------------ */


.footer-header h3 {
  font-family: var(--font-secondary);
  color: var(--black-color);
  font-size: 48px;
  font-weight: 400;
  margin: 0px 0px 30px 0px;
}

.footer-talk-us
/* contact section */
/* 
.footer-left-side {
  position: relative;
  z-index: 2;
  padding: 20px 0px;
} */

.footer-contact {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
}

.footer-icon {
  background-color: var(--bg-one);
  box-shadow: 3px 4px 6px #00000039;
  min-width: 60px;
  min-height: 60px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px;

  position: relative;
  overflow: hidden;
}

.footer-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: var(--bg-light-green);
  border-radius: 50%;

  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease-in-out;
}

.footer-icon:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.footer-icon i {
  position: relative;
  z-index: 1;
}

.footer-logo i {
  color: var(--black-color);
  font-size: 24px;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  background-color: var(--br-green);
  border-radius: 35px;
  padding: 12px;
}

.footer-contact-h4 h5 {
  font-family: var(--font-primary);
  color: var(--black-color);
  font-size: 22px;
  font-weight: 600;
  margin: 0px 0px 15px 0px;
}

.footer-contact-p p {
  font-family: var(--font-secondary);
  color: var(--black-color);
  font-size: 16px;
  margin: 0px 0px 5px 0px;
}

.footer-contact-p:hover p {
  color: var(--br-green);
  transition: 0.3s ease-in-out;
}

/* about company */

.about-content-one {
  position: relative;
  z-index: 2;
  max-width: 400px;
  padding: 40px 0px;
  /* margin: 20px 0px 0px 0px; */
}

.about-heading h5 {
  font-family: var(--font-primary);
  color: var(--black-color);
  font-size: 22px;
  font-weight: 600;
  margin: 0px 0px 15px 0px;
}

.about-para p {
  font-family: var(--font-secondary);
  color: var(--black-color);
  font-size: 16px;
  text-align: justify;
}

.about-para {
  margin: 20px 0px 40px 0px;
}

.about-icon {
  display: flex;
  padding: 20px 0px;
}

.about-icon-div {
  box-shadow: 3px 4px 6px #00000039;
  background-color: var(--bg-one);
  margin: 0px 10px 0px 0px;
  border-radius: 40px;
  min-width: 50px;
  display: flex;
  justify-content: center;
}

.about-icon-div:hover {
  transition: 0.3s ease-in-out;
  background-color: var(--bg-light-green);
  color: var(--white-color) !important;
}

.about-icon i {
  color: var(--bs-gray-dark);
  font-size: 20px;
  padding: 15px;
  border-radius: 35px;
}

/* quick links */
.about-icon,
.about-quick-links ul,
.services-heading-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-quick-links {
  position: relative;
  z-index: 2;
  padding: 40px 0px;
  margin: 20px 0px 0px 0px;
}

.footer-ad {
  position: relative;
  z-index: 2;
  padding: 40px 0px;
  /* margin: 20px 0px 0px 0px; */
}

.about-quick-links a:hover {
  color: var(--br-green);
  transition: 0.3s ease-in-out;
}

.about-quick-links h5 {
  font-family: var(--font-primary);
  color: var(--black-color);
  font-size: 22px;
  font-weight: 600;
  margin: 0px 0px 15px 0px;
}

.about-quick-links a {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-secondary);
  color: var(--black-color);
  text-decoration: none;
  margin: 0px;
  padding: 0px;
}

.about-quick-links li {
  margin: 0px;
  padding: 0px;
}

/* services */

.about-services {
  z-index: 1;
  position: relative;
  padding: 20px 0px;
  margin: 20px 0px 0px 0px;
}

.services-heading h5 {
  font-family: var(--font-primary);
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  margin: 0px 0px 30px 0px;
}

.services-heading-links {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-primary);
  color: var(--white);
}

.services-heading-links a:hover {
  color: var(--br-green);
  transition: 0.3s ease-in-out;
}

.services-heading-links li {
  margin: 0px 0px 10px 0px;
}

.services-heading-links a {
  text-decoration: none;
  color: var(--white);
}

.about-quick-links li {
  margin: 0px 0px 10px 0px;
}

/* newsletter */

.newsletter {
  color: var(--white);
  position: relative;
  z-index: 2;
  max-width: 450px;
  padding: 40px 0px;
  margin: 20px 0px 0px 0px;
}

.newsletter h3 {
  font-family: var(--font-primary);
  color: var(--white);
  font-size: 22px;
  font-weight: 600;

}

.newsletter p {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-secondary);
  margin: 20px 0px 0px 0px;
  color: var(--white-color);
}

/* footer bottom */

.last-part {
  position: relative;
  z-index: 2;
  justify-content: space-between;
  padding: 40px 0px 0px 0px;
  /* border-top: solid 1px var(--lg-lg-green) */
}

.lp-content {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-primary);
  color: var(--white-color);
  /* margin: 0px 0px 30px 0px; */
}

.lp-content p {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-secondary);
  color: var(--black-color);
  margin: 0;
}

.lp-content a {
  font-size: 16px;
  font-family: var(--font-secondary);
  text-decoration: none;
  color: var(--black-color);

}

.lp-content a:hover {
  color: var(--br-green);
  transition: 0.3s ease-in-out;
}

/* ---- Footer Brand Watermark ---- */
.footer-paragraph {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-secondary);
  color: var(--black-color);
}

.footer-contacter h5 {
  font-size: 22px;
  font-weight: 600;
  font-family: var(--font-primary);
  color: var(--black-color);
  margin: 0px 0px 5px 0px;
}

.footer-contacter p {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-secondary);
  color: var(--black-color);
}

.footer-brand-name {
  width: 100%;
  overflow: hidden;
  text-align: left;
  padding: 0 0 0 0;
  margin-top: -10px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.footer-brand-name span {
  display: block;
  font-family: var(--font-primary);
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--black-color);
  /* opacity: 0.08; */
  line-height: 1;
  white-space: nowrap;
}


.newsletter-form {
  width: 65%;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4em;
  color: var(--white);
  background-color: transparent;
  border: 1px solid var(--lg-lg-green);
  border-right: none;
  border-radius: 10px 0 0 10px;
  outline: none;
  box-shadow: none;
  padding: 12px 20px;
}

.newsletter-button {
  width: 35%;
  background-color: var(--br-green);
  color: var(--bs-gray-dark);
  border-radius: 0 10px 10px 0;
  padding: 17px 12px;
  line-height: 1em;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 18px;

  position: relative;
  overflow: hidden;
  z-index: 1;
}

.newsletter-button::after {
  content: '';
  position: absolute;

  bottom: -10%;
  left: -30%;

  width: 0;
  height: 120%;

  background: var(--bg-light-green);

  transform: skew(-35deg);
  /* flipped direction */
  transition: all 0.4s ease-in-out;

  z-index: -1;
}

.newsletter-button:hover::after {
  width: 140%;

}

.newsletter-button:hover {
  color: var(--white-color);
  transition: all 0.4s ease-in-out;
}

.newsletter-content {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-primary);
  color: var(--white);
  margin: 0px 0px 30px 0px;
}


.about-quick-links,
.about-services,
.newsletter {
  margin: 0px 0px 30px 0px;
}

/* ======================================================
   00. FAQ PAGE
====================================================== */

/* ---------- faq-wrapper ---------- */

.faq-wrapper {
  padding: 0;
  overflow: hidden;
}

/* ---------- Left image fills full column height ---------- */

.faq-image {
  height: 100%;
  min-height: 620px;
}

.faq-image img {
  width: 100%;
  height: 740px;
  object-fit: cover;
  display: block;
}

/* ---------- Right accordion panel ---------- */

.faq-accordion {
  padding: 70px 60px 70px 50px;
  background-color: var(--white);
  height: 100%;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---------- Badge + Heading ---------- */

.faq-heading-wrap {
  margin-bottom: 32px;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--black-color);
  background-color: #f0f0f0;
  border-radius: 50px;
  padding: 6px 14px 6px 10px;
  margin-bottom: 14px;
}

.faq-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--black-color);
  display: inline-block;
  flex-shrink: 0;
}

.faq-title {
  font-family: var(--font-primary);
  font-size: 44px;
  font-weight: 700;
  color: var(--dark-teal);
  line-height: 1.1;
  margin: 0;
}

/* ---------- Accordion list ---------- */

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid #e8e8e8;
  border-radius: 0px !important;
  background-color: #f8f8f8;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}

/* ---------- Accordion button ---------- */

.faq-btn {
  background-color: transparent !important;
  box-shadow: none !important;
  color: #111 !important;
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 600;
  padding: 25px 20px;
  border-radius: 0 !important;
  position: relative;
}

.faq-btn:focus {
  box-shadow: none !important;
  outline: none;
}

/* Hide the default Bootstrap arrow entirely */
.faq-btn::after {
  display: none !important;
}

/* Custom chevron using a pseudo element on the button */
.faq-btn .faq-chevron {
  display: none;
  /* handled differently below */
}

/* Use Bootstrap's data attribute approach with a clean icon */
.accordion-button.faq-btn::before {
  content: '\f078';
  /* fa-chevron-down */
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
  color: #555;
}

.accordion-button.faq-btn:not(.collapsed)::before {
  transform: translateY(-50%) rotate(180deg);
  color: #111;
}

.accordion-item {
  border-top: 1px solid #e8e8e8 !important;
}

/* ---------- Accordion body ---------- */

.faq-body {
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 400;
  color: #555;
  line-height: 1.7;
  padding: 10px 0 20px 18px;
  border-top: 1px solid #e8e8e8;
}

/* ---------- Responsive ---------- */


/* ======================================================
   CLIENTS SECTION
====================================================== */

.clients-section {
  padding: 80px 0 60px;
  background-color: var(--bg-one);
  overflow: hidden;
}

/* ---------- Heading ---------- */

.clients-heading {
  /* text-align: center; */
  margin-bottom: 48px;
}

.clients-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--black-color);
  background-color: #f0f0f0;
  border: 1px solid var(--black-color);
  border-radius: 50px;
  padding: 6px 14px 6px 10px;
  margin-bottom: 14px;
}

.clients-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--black-color);
  display: inline-block;
  flex-shrink: 0;
}

.clients-title {
  font-family: var(--font-primary);
  font-size: 44px;
  font-weight: 700;
  color: var(--dark-teal);
  margin: 0;
}

/* ---------- Marquee Wrapper ---------- */

.clients-marquee-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}

/* Soft edge fade using site's white background */
.clients-marquee-wrap::before,
.clients-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.clients-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.clients-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

/* ---------- Scrolling Track ---------- */

.clients-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.track-left {
  animation-name: marquee-left;
  animation-duration: 30s;
}

.track-right {
  animation-name: marquee-right;
  animation-duration: 35s;
}

/* Pause on hover */
.clients-marquee-wrap:hover .clients-track {
  animation-play-state: paused;
}

/* ---------- Logo Cards ---------- */

.client-logo-card {
  flex-shrink: 0;
  width: 200px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f8f8;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 14px 20px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.client-logo-card:hover {
  border-color: var(--bg-green);
  background-color: var(--white);
  box-shadow: 0 6px 20px rgba(30, 112, 75, 0.12);
}

.client-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 0.3s ease, opacity 0.3s ease;
  display: block;
}

.client-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ---------- Responsive ---------- */


/* ======================================================
   RECENT PROJECTS SECTION ??? Rebuilt
====================================================== */
/* 
.recent-projects-section {
  padding: 80px 0;
  background-color: var(--bg-two);
} */

/* ---------- Heading Row ---------- */

.rp-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 20px;
}

.rp-heading-left {
  max-width: 540px;
}

.rp-btn {
  background-color: var(--btn-color);
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  padding: 15px 45px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rp-btn:hover {
  background-color: var(--gold-light);
}

.rp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--black-color);
  background-color: #e8e8e8;
  border-radius: 50px;
  padding: 6px 14px 6px 10px;
  margin-bottom: 16px;
}

.rp-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--black-color);
  display: inline-block;
  flex-shrink: 0;
}

.rp-title {
  font-family: var(--font-primary);
  font-size: 44px;
  font-weight: 600;
  color: var(--dark-teal);
  line-height: 1.2;
  margin: 0;
}

/* ---------- Cards ---------- */

.rp-cards-row {
  margin-top: 0;
}

.rp-card {
  background-color: var(--white);
  position: relative;
  /* border-radius: 14px; */
  overflow: hidden;
  border: 1px solid var(--border-col);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.rp-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(26, 25, 25, 0.34) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  transform: translateY(100%);
}

.rp-card:hover .rp-overlay {
  opacity: 1;
  transform: translateY(0);
}

.rp-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13);
  transform: translateY(-5px);
}

/* Image */
.rp-card-img {
  width: 100%;
  height: 420px;
  overflow: hidden;
  padding: 10px;
}

.rp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.rp-card:hover .rp-card-img img {
  transform: scale(1.06);
}

/* Card body */
.rp-card-body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Title */
.rp-card-title {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
  color: var(--black-color);
  text-transform: none;
  letter-spacing: -0.2px;
  margin: 0 0 12px;
  line-height: 1.3;
}

/* Description */
.rp-card-desc {
  font-family: var(--font-secondary);
  font-size: 14.5px;
  color: #666;
  line-height: 1.7;
  margin: 0 0 24px;
  flex: 1;
}

/* View Project Button */
.rp-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--black-color);
  color: var(--white) !important;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none !important;
  padding: 12px 22px;
  border-radius: 50px;
  margin-top: auto;
  align-self: flex-start;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.rp-view-btn:hover {
  background-color: var(--bg-green);
  transform: translateX(4px);
}

.rp-btn-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--white);
  display: inline-block;
  flex-shrink: 0;
}

/* ========== Project Showcase Block ========== */

.project-showcase-block {
  margin: 0 0 30px 0;
  padding: 30px 0 0 0;
}

.project-showcase-block:last-child {
  margin-bottom: 0;
}

.project-showcase-block+.project-showcase-block {
  border-top: 1px solid rgba(18, 37, 26, 0.12);
}

/* GRID */
.project-preview-grid {
  --bs-gutter-x: 2px;
  --bs-gutter-y: 2px;
  row-gap: 2px;
}

/* CARD */
.project-preview-card {
  margin-bottom: 0;
  border: 0;
  box-shadow: none;
  border-radius: 5px;
  overflow: hidden;
}

.project-preview-card::after {
  display: none;
}

/* IMAGE */
.project-preview-card .project-img-box {
  height: 320px;
}

.project-preview-card .project-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ACTIONS */
.project-detail-actions {
  margin-top: 20px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991.98px) {
  .project-showcase-block {
    margin-bottom: 30px;
  }

  .project-preview-card .project-img-box {
    height: 280px;
  }
}

@media (max-width: 575.98px) {
  .project-preview-card .project-img-box {
    height: 240px;
  }
}

/* -------------floating-whatsapp-button------------ */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 20px;
  background-color: var(--whatsapp-col);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  z-index: 100;
  display: inline-block;
  /* ensures transform behaves properly */
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.service-boxes {
  margin: 0px 0px 23px 0px;
}

