/* Global variables and initial reset */
:root {
  --primary-color: #12a644;
  /* Brighter green from user image */
  --secondary-color: #0e8c38;
  --background-color: #f8fafc;
  --text-color: #0f172a;
  --font-sans: "Ubuntu", sans-serif;
  --font-heading: "Ubuntu", sans-serif;

  /* Bootstrap Overrides */
  --bs-success: #12a644;
  --bs-success-rgb: 18, 166, 68;
}

/* Force Bootstrap Success classes to use primary color */
.text-success {
  color: var(--primary-color) !important;
}

.bg-success {
  background-color: var(--primary-color) !important;
}

.btn-success {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #fff !important;
}

.btn-success:hover {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}

.btn-outline-success {
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.btn-outline-success:hover {
  background-color: var(--primary-color) !important;
  color: white !important;
}

.text-success-emphasis {
  color: var(--primary-color) !important;
}

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

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto !important;
  /* Fixes stuttering with Lenis */
}

/* Lenis Smooth Scroll Recommended CSS */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.fs-7 {
  font-size: 0.875rem;
}

.fs-8 {
  font-size: 0.75rem;
}

/* ============================================== */
/* GLOBAL ANIMATIONS & UTILITIES                  */
/* ============================================== */
.scroll-anim {
  opacity: 0;
  transition: opacity 0.4s ease-out, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: opacity, transform;
}

.scroll-anim.anim-bottom {
  transform: translateY(30px);
}

.scroll-anim.anim-left {
  transform: translateX(-30px);
}

.scroll-anim.anim-right {
  transform: translateX(30px);
}

.scroll-anim.text-up {
  transform: translateY(50px);
  opacity: 0;
}

.scroll-anim.show {
  opacity: 1;
  transform: translate(0, 0) translateZ(0);
}

.section-subtitle {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

/* ============================================== */
/* HEADER STYLES */
/* ============================================== */
.site-header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.top-bar {
  display: none;
  background-color: #000;
  color: #fff;
  padding: 0.5rem 0;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  font-family: var(--font-sans);
}

@media (min-width: 992px) {
  .top-bar {
    display: block;
  }
}

.top-bar-container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1200px) {
  .top-bar-container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-links-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.follow-text {
  font-size: 0.875rem;
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

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

.social-icons a:hover {
  opacity: 0.7;
  color: var(--primary-color) !important;
}

.contact-info-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-icon {
  font-size: 1.25rem;
}

.contact-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.35rem;
}

.contact-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.contact-value {
  font-weight: 700;
}

.top-bar-divider {
  display: inline-block;
  width: 1px;
  min-height: 1em;
  background-color: #fff;
  opacity: 0.5;
  height: 35px;
}

/* Main Navbar */
.custom-navbar {
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: transparent;
  transition: all 0.3s ease;
  z-index: 1030;
}

@media (min-width: 992px) {
  .custom-navbar {
    padding: 0.5rem 0;
  }
}


.navbar-container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1200px) {
  .navbar-container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.custom-navbar .nav-link {
  color: #fff;
  transition: color 0.3s ease;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: var(--primary-color);
}

/* Sticky Navbar Scrolled State */
.navbar-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  animation: slideDown 0.4s ease-out forwards;
  border-bottom: none;
}

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

  to {
    transform: translateY(0);
  }
}

.navbar-scrolled .nav-link {
  color: #333333 !important;
  font-weight: 600;
}

.navbar-scrolled .nav-link:hover,
.navbar-scrolled .nav-link.active {
  color: var(--primary-color) !important;
}

.navbar-scrolled .navbar-toggler {
  color: #333 !important;
}

/* Desktop Navigation Links */
.custom-nav-links {
  margin-left: auto;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.25rem;
  align-items: center;
  display: flex;
  flex-direction: column;
  list-style: none;
  padding-left: 0;
}

@media (min-width: 992px) {
  .custom-nav-links {
    flex-direction: row;
    margin-bottom: 0;
    gap: 1.5rem;
  }
}

/* Desktop Dropdown */
.custom-dropdown-menu {
  border: 0;
  border-top: 3px solid var(--primary-color);
  border-radius: 0;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  margin-top: 18px;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  display: block !important;
  /* Override bootstrap */
  visibility: hidden;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.custom-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  width: 100%;
  height: 18px;
  background: transparent;
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover .custom-dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.dropdown-item {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s ease;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #f8f9fa;
  color: var(--primary-color);
  padding-left: 1.5rem;
}

.dropdown-divider {
  margin-top: 0;
  margin-bottom: 0;
}

/* Mobile Menu Toggler */
.custom-toggler {
  border: none !important;
  box-shadow: none !important;
  color: #fff;
  display: block;
  background: transparent;
  padding: 0 !important;
  outline: none !important;
}

.custom-toggler:focus,
.custom-toggler:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

@media (min-width: 992px) {
  .custom-toggler {
    display: none;
  }
}

#mobileMenuIcon {
  transition: color 0.3s ease;
}

#mobileMenuIcon.bi-list {
  font-size: 2.5rem !important;
}

#mobileMenuIcon.bi-list::before {
  font-size: 2.5rem;
}

#mobileMenuIcon.bi-x-lg {
  font-size: 1.8rem !important;
}

#mobileMenuIcon.bi-x-lg::before {
  font-size: 1.8rem;
}

.navbar-scrolled #mobileMenuIcon {
  color: #333;
}

@media (max-width: 991px) {
  .main-navbar-collapse {
    display: none;
  }
}

@media (min-width: 992px) {
  .main-navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    flex-grow: 1;
    align-items: center;
  }
}

/* Mobile Dropdown & Links */
.mobile-dropdown-menu {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 100%;
  left: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

.mobile-dropdown-menu.show {
  max-height: 500px;
}

.mobile-nav-container {
  padding: 0;
}

.custom-mobile-nav {
  list-style: none;
  margin-bottom: 0;
  width: 100%;
  font-weight: 700;
  padding-left: 0;
}

.custom-mobile-nav a {
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
  font-size: 15px;
  font-family: var(--font-sans);
}

.custom-mobile-nav a:active,
.custom-mobile-nav a:hover {
  color: var(--primary-color) !important;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #dee2e6;
  color: #212529;
  text-decoration: none;
}

.service-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #dee2e6;
  color: #212529;
  text-decoration: none;
}

.custom-mobile-nav a.service-link[aria-expanded="true"] {
  color: var(--primary-color) !important;
}

.accordion-icon {
  font-size: 1.25rem;
  font-weight: 700;
}

.custom-mobile-nav a[aria-expanded="true"] .accordion-icon::before {
  content: "\f2fe";
}

.mobile-sub-menu {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  background-color: #f8f9fa;
}

.mobile-sub-link {
  display: block;
  padding: 1rem 3rem;
  border-bottom: 1px solid #dee2e6;
  color: #212529;
  text-decoration: none;
  font-weight: 600;
}

.custom-mobile-nav .bg-light a {
  background-color: #f8f9fa;
  font-size: 14px;
}

.custom-mobile-nav .bg-light a:active,
.custom-mobile-nav .bg-light a:hover {
  background-color: #e9ecef;
}

/* Get In Touch Button */
.get-in-touch-wrapper {
  display: flex;
  margin-top: 1rem;
}

@media (min-width: 992px) {
  .get-in-touch-wrapper {
    margin-top: 0;
    margin-left: 1.5rem;
  }
}

.btn-get-in-touch {
  font-family: var(--font-sans);
  border-radius: 0.2rem;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #12a644;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  background: transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition:
    color 0.4s ease,
    border-color 0.4s ease,
    transform 0.3s ease;
}

.btn-get-in-touch:hover {
  background-color: #12a644;
}

.btn-get-in-touch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background-color: #000;
  transition:
    width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-get-in-touch:hover::before {
  width: 100%;
  height: 100%;
}

.btn-get-in-touch:hover {
  color: #fff;
  border-color: #000;
  border: 2px solid #ffffff;
  transform: translateY(-2px);
}

.navbar-scrolled .btn-get-in-touch {
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.navbar-scrolled .btn-get-in-touch:hover {
  color: #ffffff !important;
  border-color: var(--primary-color) !important;
}

/* ============================================== */
/* HERO SECTION STYLES */
/* ============================================== */
.hero-section {
  position: relative;
  background-color: #212529;
  min-height: 85vh;
  overflow-x: hidden;
}

.hero-slide-bg {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

@media (min-width: 992px) {
  .hero-section {
    min-height: 110vh;
  }
}

.hero-carousel {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.carousel-inner,
.carousel-item {
  height: 100%;
}

.hero-container {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 768px) {
  .hero-container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (min-width: 992px) {
  .hero-container {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
}

@media (min-width: 1400px) {
  .hero-container {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
}

.hero-row {
  width: 100%;
  margin: 0;
}

.hero-br {
  display: none;
}

@media (min-width: 576px) {
  .hero-br {
    display: block;
  }
}

/* Hero Decorators & Overlays */
.hero-deco-top {
  position: absolute;
  z-index: 2;
  display: none;
  top: 170px;
  left: -15px;
}

.hero-deco-bottom {
  position: absolute;
  z-index: 2;
  display: none;
  bottom: 70px;
  right: -15px;
}

@media (min-width: 768px) {

  .hero-deco-top,
  .hero-deco-bottom {
    display: block;
  }
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent);
}

.hero-deco-img {
  max-width: 100%;
  height: auto;
  width: 5rem;
  filter: hue-rotate(142deg);
}

@media (min-width: 768px) {
  .hero-deco-img {
    width: 6rem;
  }
}

@media (min-width: 1024px) {
  .hero-deco-img {
    width: 7rem;
  }
}

@media (min-width: 1280px) {
  .hero-deco-img {
    width: 120px;
  }
}

/* Hero Content Wrapper */
.hero-content-wrapper {
  width: 100%;
  padding-top: 2rem;
  color: #ffffff;
}

@media (min-width: 992px) {
  .hero-content-wrapper {
    width: 79%;
    padding-top: 6rem;
  }
}

@media (min-width: 1200px) {
  .hero-content-wrapper {
    width: 63.3333%;
  }
}

/* Hero Text & Typography */
.hero-subtitle {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-subtitle-line {
  width: 2.5rem;
  height: 2px;
  background-color: var(--primary-color);
}

.hero-subtitle-text {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 14px;
  letter-spacing: 0.25em;
}

.hero-headline {
  font-family: var(--font-sans);
  font-size: 2.2rem;
  letter-spacing: -0.025em;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .hero-headline {
    font-size: 2.4rem;
  }
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 2.4rem;
  }
}

@media (min-width: 1024px) {
  .hero-headline {
    font-size: 2.8rem;
  }
}

@media (min-width: 1280px) {
  .hero-headline {
    font-size: 3rem;
  }
}

.hero-headline span {
  position: relative;
  z-index: 1;
}

.hero-underline-svg {
  position: absolute;
  color: var(--primary-color);
  z-index: -1;
  width: 110%;
  height: 32px;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-desc-text {
  opacity: 0.75;
  margin-bottom: 1.5rem;
  font-size: 15px;
  max-width: 42rem;
  line-height: 1.7;
}

@media (min-width: 992px) {
  .hero-desc-text {
    margin-bottom: 2rem;
  }
}

/* Hero Actions & Buttons */
.hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  gap: 0.75rem;
}

@media (min-width: 576px) {
  .hero-actions {
    width: auto;
    gap: 1rem;
  }
}

.hero-btn {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  border-radius: 0.25rem;
  font-weight: 700;
  white-space: nowrap;
}

@media (min-width: 576px) {
  .hero-btn {
    flex: none;
    padding: 0.75rem 2.5rem;
    font-size: 0.9rem;
  }
}


.hero-btn-primary {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #ffffff;
}

.hero-btn-outline {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.hero-btn-outline:hover {
  border-color: #ffffff;
  color: #000000;
}

.btn-hover-lift {
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.btn-hover-lift:hover {
  transform: translateY(-4px);
}

.hover-success:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Hero Animation Delays */
.anim-delay-1 {
  transition-delay: 0.1s;
}

.anim-delay-2 {
  transition-delay: 0.2s;
}

.anim-delay-3 {
  transition-delay: 0.3s;
}

.anim-delay-4 {
  transition-delay: 0.4s;
}

/* Hero Animations */
.hero-subtitle.hero-anim-text {
  transition-delay: 100ms !important;
}

.hero-headline.hero-anim-text {
  transition-delay: 200ms !important;
}

.hero-desc-text.hero-anim-text {
  transition-delay: 300ms !important;
}

.hero-actions.hero-anim-btn {
  transition-delay: 400ms !important;
}

/* Services Section */
#services .col-lg-4:nth-child(1) .service-card {
  transition-delay: 150ms !important;
}

#services .col-lg-4:nth-child(2) .service-card {
  transition-delay: 300ms !important;
}

#services .col-lg-4:nth-child(3) .service-card {
  transition-delay: 450ms !important;
}

/* Hero Carousel Controls */
.hero-nav-btn {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  opacity: 0;
  transition: all 0.3s ease;
  background: transparent;
  top: 50%;
  transform: translateY(-50%);
  justify-content: center;
  align-items: center;
  position: absolute;
  color: white;
}

@media (min-width: 576px) {
  .hero-nav-btn {
    display: flex;
  }
}

@media (min-width: 768px) {
  .hero-nav-btn {
    width: 3rem;
    height: 3rem;
  }

  .carousel-control-prev.hero-nav-btn {
    left: 2rem;
  }

  .carousel-control-next.hero-nav-btn {
    right: 2rem;
  }
}

.carousel-control-prev.hero-nav-btn {
  left: 1rem;
}

.carousel-control-next.hero-nav-btn {
  right: 1rem;
}

.hero-section:hover .hero-nav-btn {
  opacity: 1;
}

.hero-nav-btn:hover,
.hero-nav-btn:focus {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.hero-nav-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

@media (min-width: 768px) {
  .hero-nav-btn svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* Hero Animations via Bootstrap Active Class */
.carousel-item .hero-anim-text {
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.7s ease-out;
}

.carousel-item.active .hero-anim-text {
  transform: translateY(0);
  opacity: 1;
}

.carousel-item .hero-anim-btn {
  transform: translateX(-50px);
  opacity: 0;
  transition: all 0.7s ease-out;
}

.carousel-item.active .hero-anim-btn {
  transform: translateX(0);
  opacity: 1;
}

/* ============================================== */
/* SERVICES SECTION                               */
/* ============================================== */
.service-card {
  position: relative;
  border-radius: 0.375rem;
  overflow: hidden;
  cursor: pointer;
  background-color: #f3f4f6;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}


.service-card-img-wrapper {
  aspect-ratio: 4/3;
  width: 100%;
  position: relative;
}

.service-dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 15;
  pointer-events: none;
  transform-origin: center;
  transition: transform 0.5s ease-in-out;
}

.service-card:hover .service-dark-overlay {
  transform: scaleY(0);
}

.service-flip-container {
  width: 85%;
  max-width: 340px;
  position: absolute;
  bottom: 20px;
  left: 0;
  z-index: 20;
}

.service-card:hover .service-flip-container {
  bottom: 0;
  transition: all 0.2s ease-in-out;
}

.service-front {
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition:
    opacity 0.4s ease,
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-front h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

.service-back {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(22, 163, 74, 0.95);
  backdrop-filter: blur(4px);
  color: white;
  padding: 1.75rem;
  width: 100%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(100%);
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease;
}

.service-back h3 {
  font-size: 1.25rem;
}

.service-back p {
  font-size: 0.875rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.95);
}

.service-card:hover .service-front {
  opacity: 0;
  transform: translateY(10px);
}

.service-card:hover .service-back {
  opacity: 1;
  transform: translateY(0);
}

.service-read-more {
  font-weight: 700;
  font-size: 0.875rem;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
}

.service-read-more:hover {
  color: #000;
}

.service-read-more i {
  transition: transform 0.2s ease;
}

.service-read-more:hover i {
  transform: translateX(4px);
}

/* ============================================== */
/* ABOUT SECTION                                  */
/* ============================================== */
.about-deco-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  width: 80%;
  max-width: 600px;
  opacity: 0.8;
  pointer-events: none;
  animation: waveAnim 6s ease-in-out infinite;
}

@keyframes waveAnim {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-30px);
  }
}

.animate-bounce-slow {
  animation: bounceSlow 4s infinite ease-in-out;
}

@keyframes bounceSlow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.about-images-grid {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  min-height: 500px;
}

.about-img-left,
.about-img-right {
  width: 50%;
  height: 80%;
  position: relative;
}

.about-img-left {
  transform: translateY(-30px);
}

.about-img-right {
  transform: translateY(30px);
}

.btn-about-read {
  position: relative;
  overflow: hidden;
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.4s ease;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.btn-about-read::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-about-read:hover::before {
  transform: translateX(0);
}

.btn-about-read:hover {
  color: white;
}

.about-experience-badge {
  position: absolute;
  bottom: 200px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: white;
  padding: 1.25rem 2rem;
  border-radius: 0.5rem;
  text-align: center;
  z-index: 20;
  white-space: nowrap;
}

.about-highlight-text {
  color: #3b6379;
  font-size: 1rem;
  line-height: 1.7;
}

/* About Section */
#about .text-muted.lh-lg {
  font-size: 14px;
}

.feature-icon {
  width: 48px;
  height: 48px;
}

.feature-item h4 {
  font-size: 15px;
}

.feature-item p {
  font-size: 13px;
}

/* ============================================== */
/* VIDEO SECTION                                  */
/* ============================================== */
.video-section {
  min-height: 80vh;
  padding: 6rem 0;
}

.video-title {
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  font-size: 2.5rem;
}

@media (min-width: 768px) {
  .video-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .video-title {
    font-size: 4rem;
  }
}

.video-play-btn-wrapper {
  width: 100px;
  height: 100px;
}

.video-play-btn {
  width: 100%;
  height: 100%;
  font-size: 2rem;
}

.ripple-wave {
  animation: ripple 2s linear infinite;
}

.ripple-2 {
  animation-delay: 1s;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}


/* Video Section */
#video .bg-dark.opacity-50 {
  mix-blend-mode: multiply;
}

#video .video-play-btn-wrapper {
  cursor: pointer;
}

#video .video-anim-text:nth-of-type(1) {
  transition-delay: 150ms !important;
}

#video .video-anim-text:nth-of-type(2) {
  transition-delay: 450ms !important;
}

#videoModal .modal-close-wrapper {
  top: 0;
  right: 0;
  pointer-events: none;
}

#videoModal .modal-close-btn {
  width: 40px;
  height: 40px;
  pointer-events: auto;
}

/* ============================================== */
/* INDUSTRY SECTION                               */
/* ============================================== */
.industry-deco-top {
  position: absolute;
  top: 0;
  left: -40px;
  width: 200px;
  height: 100%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  display: flex;
  align-items: flex-end;
}

.industry-deco-top::before {
  content: "";
  width: 100%;
  height: 50%;
  border-right: 10px solid #9ca3af;
  border-top: 10px solid #9ca3af;
  border-top-right-radius: 40px;
  margin-bottom: 5rem;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.custom-underline {
  text-decoration: underline;
  text-decoration-color: var(--primary-color);
  text-decoration-thickness: 0.10em;
  text-underline-offset: 0.1em;
  text-decoration-skip-ink: auto;
  -webkit-text-decoration-skip-ink: auto;
  text-decoration-skip: ink;
}

.industry-slider-wrapper {
  position: relative;
}

.industry-slider-container {
  overflow: hidden;
  position: relative;
}

.industry-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.industry-card-wrapper {
  flex: 0 0 100%;
}

@media (min-width: 768px) {
  .industry-card-wrapper {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (min-width: 992px) {
  .industry-card-wrapper {
    flex: 0 0 calc(25% - 1.125rem);
  }
}

.industry-card {
  position: relative;
  width: 100%;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.375rem;
  padding: 2rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-out;
  cursor: pointer;
}

.industry-card:hover {
  border-color: var(--primary-color);
  background-color: #f8fdf9;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.industry-card-hover-bg {
  position: absolute;
  top: 100%;
  left: 1.5rem;
  right: 1.5rem;
  height: 20px;
  background-color: var(--primary-color);
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
  z-index: 0;
  transition: transform 0.3s ease-out;
  transform-origin: top;
  transform: scaleY(0);
}

.industry-card:hover .industry-card-hover-bg {
  transform: scaleY(1);
}

.industry-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
}

.industry-icon-wrapper img {
  filter: hue-rotate(142deg);
  transition: transform 0.2s;
}

.industry-card:hover .industry-icon-wrapper img {
  transform: scale(1.1);
}

.industry-card:hover .industry-card-title {
  color: var(--primary-color) !important;
}

.industry-read-more {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.industry-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-out;
}

.industry-nav-btn:hover {
  background-color: black;
  transform: translateY(-50%) scale(1.05);
}

.industry-nav-btn.prev {
  left: -30px;
}

.industry-nav-btn.next {
  right: -30px;
}

/* Industry Section Animation Delays */
#industry p.scroll-anim {
  transition-delay: 100ms !important;
}

/* Choose Us Section */
.choose-us-section {
  background-color: #fcfaf5;
}

.choose-deco-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 80%;
  max-width: 600px;
  opacity: 0.8;
  pointer-events: none;
  animation: waveAnim 6s ease-in-out infinite;
}

.choose-underline {
  font-weight: 700;
}

.choose-underline::after,
.choose-underline::before {
  content: "";
  position: absolute;
  bottom: 3.5px;
  height: 3px;
  background-color: var(--primary-color);
}

.choose-underline::before {
  left: 0;
  width: 55%;
}

.choose-underline::after {
  right: 0;
  width: 36%;
}

.choose-image-wrapper {
  border-radius: 20px !important;
}

.choose-deco-box {
  position: absolute;
  top: -70px;
  right: -78px;
  width: 6rem;
  height: 7.5rem;
}

.choose-deco-box-bottom {
  position: absolute;
  bottom: -70px;
  right: -78px;
  width: 6rem;
  height: 7.5rem;
}

/* ============================================== */
/* PROJECTS SECTION                               */
/* ============================================== */
.filter-hue {
  filter: brightness(0) saturate(100%) invert(44%) sepia(50%) saturate(718%) hue-rotate(85deg) brightness(97%) contrast(89%);
}

.project-card {
  cursor: pointer;
}

.project-card .transition-transform {
  transition: transform 0.3s ease-in-out;
}

.project-card:hover .transition-transform {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  z-index: 2;
  padding: 1.5rem;
}

.project-card:hover .project-overlay {
  background: rgba(0, 0, 0, 0.75);
}

.project-text {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.project-card:hover .project-text {
  opacity: 1;
  transform: translateY(0);
}

.project-card:hover .project-text:nth-child(2) {
  transition-delay: 100ms;
}

.project-tag {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.25rem 1rem;
  border-radius: 0.375rem;
  backdrop-filter: blur(4px);
}

.h-400 {
  height: 400px;
}

.h-600 {
  height: 600px;
}

@media (max-width: 767px) {
  .h-600 {
    height: 400px;
  }
}

/* ============================================== */
/* TESTIMONIALS SECTION                           */
/* ============================================== */
.testimonial-track {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 25px;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  width: 100%;
  scroll-snap-align: start;
}

@media (min-width: 992px) {
  .testimonial-card {
    width: calc(50% - 1rem);
  }
}

.testimonial-watermark {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 5rem;
  line-height: 1;
  color: var(--primary-color);
  opacity: 0.07;
  pointer-events: none;
  transform: rotate(180deg);
}

.testimonial-dots .testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d1d5db;
  border: none;
  padding: 0;
  transition: all 0.2s ease;
}

.testimonial-dots .testimonial-dot.active {
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.2);
}

/* Testimonials Section */
.testimonial-card:nth-child(1) {
  transition-delay: 100ms !important;
}

.testimonial-card:nth-child(2) {
  transition-delay: 200ms !important;
}

.testimonial-card:nth-child(3) {
  transition-delay: 300ms !important;
}

.testimonial-card:nth-child(4) {
  transition-delay: 400ms !important;
}

.testimonial-card img.rounded-circle {
  width: 70px;
  height: 70px;
}

.quote-icon {
  font-size: 4rem;
  opacity: 0.2;
  transform: rotate(180deg);
}

/* ============================================== */
/* TEAM SECTION                                   */
/* ============================================== */
.team-underline {
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  z-index: -1;
}

.team-card {
  width: 100%;
}

.team-img-wrapper {
  height: 300px;
}

.team-img-wrapper img {
  object-position: top center;
}

.team-card:hover .team-card-details {
  background-color: #f8fdf9 !important;
}

.team-card:hover .team-name {
  color: var(--primary-color);
}

.team-card .transition-transform {
  transition: transform 0.3s ease-in-out;
}

.team-card:hover .transition-transform {
  transform: scale(1.05);
}

/* Team Slider CSS */
.team-slider-wrapper {
  position: relative;
}

.team-slider-container {
  overflow: hidden;
  position: relative;
}

.team-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.team-card-wrapper {
  flex: 0 0 100%;
}

@media (min-width: 768px) {
  .team-card-wrapper {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (min-width: 992px) {
  .team-card-wrapper {
    flex: 0 0 calc(25% - 1.125rem);
  }
}

.team-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-out;
}

.team-nav-btn:hover {
  background-color: black;
}

.team-nav-btn.prev {
  left: -20px;
}

.team-nav-btn.next {
  right: -20px;
}

/* ============================================== */
/* CONTACT SECTION                                */
/* ============================================== */
.contact-section {
  min-height: 700px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 2px var(--primary-color);
}

.submit-btn {
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: white !important;
  color: var(--primary-color) !important;
}

.submit-btn:hover i {
  transform: translateX(4px);
}

/* Choose Us Section */
.choose-image-wrapper {
  min-height: 500px;
}

.choose-item:nth-child(1) {
  transition-delay: 100ms !important;
}

.choose-item:nth-child(2) {
  transition-delay: 200ms !important;
}

.choose-item:nth-child(3) {
  transition-delay: 300ms !important;
}

/* Contact Section */
#contact .col-md-6:nth-child(1) {
  transition-delay: 100ms !important;
}

#contact .col-md-6:nth-child(2) {
  transition-delay: 200ms !important;
}

#contact .col-md-6:nth-child(3) {
  transition-delay: 300ms !important;
}

#contact .col-12:nth-child(4) {
  transition-delay: 400ms !important;
}

#contact .col-12:nth-child(5) {
  transition-delay: 500ms !important;
}

/* ============================================== */
/* FOOTER AREA                                    */
/* ============================================== */
.footer-links li a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 15.5px;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: var(--primary-color);
}

.gallery-item {
  position: relative;
  display: block;
  height: 65px;
  overflow: hidden;
}

.gallery-item img {
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: "+";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: white;
  color: var(--primary-color);
}

.footer-area p,
.footer-area li a,
.footer-area .text-light {
  font-size: 0.9rem !important;
}

.footer-area h2.display-5 {
  font-size: 2.5rem !important;
}

.footer-area h3.font-heading {
  font-size: 1.35rem !important;
}

/* Footer Section */
footer .col-xl-4:first-child {
  transition-delay: 100ms !important;
}

footer .col-xl-2:nth-child(2) {
  transition-delay: 200ms !important;
}

footer .col-xl-2:nth-child(3) {
  transition-delay: 300ms !important;
}

footer .col-xl-4:last-child {
  transition-delay: 400ms !important;
}


/* ============================================== */
/* SCROLL TO TOP BUTTON                           */
/* ============================================== */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transform: translateY(3rem) scale(0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.scroll-top-btn.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background-color: black;
  color: white;
}

/* ============================================== */
/* GLOBAL HORIZONTAL PADDING                      */
/* ============================================== */
.global-px {
  padding-left: 1.5rem !important;
  /* Mobile padding */
  padding-right: 1.5rem !important;
}

@media (min-width: 992px) {
  .global-px {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
}

/* ============================================== */
/* SHARED BUTTON HOVER EFFECT */
/* ============================================== */
.btn-get-in-touch,
.hero-btn,
.btn-about-read,
.submit-btn,
.btn-success {
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
  transition:
    color 0.4s ease,
    border-color 0.4s ease,
    background-color 0.2s ease,
    transform 0.3s ease !important;
}

.btn-get-in-touch::before,
.hero-btn::before,
.btn-about-read::before,
.submit-btn::before,
.btn-success::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 0 !important;
  background-color: #000 !important;
  transition:
    width 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    height 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  z-index: -1 !important;
  transform: none !important;
  border-radius: 0 !important;
}

.btn-get-in-touch:hover::before,
.hero-btn:hover::before,
.btn-about-read:hover::before,
.submit-btn:hover::before,
.btn-success:hover::before {
  width: 100% !important;
  height: 100% !important;
  transition-delay: 0.15s !important;
}

.hero-btn:hover,
.btn-get-in-touch:hover,
.btn-about-read:hover,
.submit-btn:hover,
.btn-success:hover {
  color: white;
}


/* ============================================== */
/* CONTACT US PAGE STYLES                         */
/* ============================================== */

.contact-page-main {
  background-color: var(--background-color);
}

.contact-page-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  margin-top: 0;
  /* Removed offset for transparent header */
}

@media (min-width: 992px) {
  .contact-page-banner {
    min-height: 450px;
    margin-top: 0;
  }
}

.contact-banner-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.contact-banner-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  width: 100%;
}

.contact-banner-title {
  color: #ffffff;
  font-size: clamp(2.2rem, 8vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 0;
}

.contact-breadcrumb {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

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

.contact-breadcrumb a:hover {
  color: var(--primary-color);
}

.contact-breadcrumb .divider {
  margin: 0 0.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.contact-breadcrumb .current {
  color: #ffffff;
}

.contact-page-content {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafbfc;
  overflow: hidden;
}

.contact-details-wrapper {
  z-index: 2;
}

.contact-details-title {
  font-size: 2.5rem;
}

.bg-envelope-icon {
  font-size: 20rem;
  color: rgba(0, 0, 0, 0.03);
  right: -10%;
  bottom: -15%;
  line-height: 1;
  pointer-events: none;
  z-index: -1;
}

@keyframes waveEnvelope {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(-2deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.wave-anim {
  animation: waveEnvelope 4s infinite ease-in-out;
}

.contact-form-wrapper-v2 {
  position: relative;
  z-index: 2;
}

.custom-input-v2 {
  background-color: #f4f5f7;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 1rem 1.25rem;
  padding-right: 3rem;
  font-size: 0.95rem;
  color: #495057;
  width: 100%;
  transition: all 0.3s ease;
}

.custom-input-v2::placeholder {
  color: #aeb4be;
}

.custom-input-v2:focus {
  background-color: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  outline: none;
}

.input-icon-right {
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  color: #aeb4be;
  font-size: 1.1rem;
  pointer-events: none;
}

.input-icon-right-top {
  top: 1rem;
  right: 1.25rem;
  color: #aeb4be;
  font-size: 1.1rem;
  pointer-events: none;
}

.custom-submit-btn-v2 {
  background-color: var(--primary-color);
  color: #ffffff;
  transition: all 0.3s ease;
}

.custom-submit-btn-v2:hover {
  background-color: #0e8f39;
  /* Darker primary color */
  color: #ffffff;
  transform: translateY(-2px);
}

/* ========================================== */
/* SEMANTIC FLEX UTILITIES ADDED              */
/* ========================================== */
.submit-btn,
.video-play-btn,
.modal-close-btn {
  align-items: center !important;
  display: flex !important;
  justify-content: center !important;
}

.footer-links {
  display: flex !important;
}

.about-features-box {
  display: flex !important;
}

.feature-item {
  display: flex !important;
}

.feature-icon {
  align-items: center !important;
  display: flex !important;
  justify-content: center !important;
}

.video-section {
  align-items: center !important;
  display: flex !important;
  justify-content: center !important;
}

.video-play-btn {
  align-items: center !important;
  display: flex !important;
  justify-content: center !important;
}

.modal-close-wrapper {
  justify-content: flex-end !important;
}

.project-overlay {
  display: flex !important;
}

.project-text {
  display: flex !important;
}

.testimonial-track {
  display: flex !important;
}

.testimonial-card {
  display: flex !important;
}

.testimonial-dots {
  display: flex !important;
  justify-content: center !important;
}

.team-card {
  display: flex !important;
}

.team-card-details {
  display: flex !important;
}

.contact-section {
  align-items: center !important;
  display: flex !important;
}

/* ============================================== */
/* ASSET RECOVERY PAGE                            */
/* ============================================== */

.asset-recovery-section {
  background-color: #fafbfc;
}

.assistance-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  margin-top: 40px;
  max-width: 400px;
}

.assistance-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(var(--bs-success-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.assistance-text .assistance-label {
  display: block;
  color: #6c757d;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.assistance-text .assistance-number {
  margin: 0;
  font-weight: 700;
  color: #212529;
}

/* Asset Form Card */
.asset-form-card {
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.asset-form-header {
  margin-bottom: 30px;
}

.asset-form-title {
  font-weight: 800;
  color: #212529;
  margin-bottom: 8px;
  font-size: 1.75rem;
}

.asset-form-subtitle {
  color: #6c757d;
  font-size: 0.95rem;
}

/* Form Styles */
.asset-equipment-form .form-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #495057;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.asset-equipment-form .form-control {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.asset-equipment-form .form-control:focus {
  background-color: #fff;
  border-color: var(--bs-success);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

.asset-equipment-form .form-control::placeholder {
  color: #adb5bd;
}

/* File Upload Zone */
.file-upload-zone {
  position: relative;
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
  cursor: pointer;
}

.file-upload-zone:hover {
  border-color: var(--bs-success);
  background-color: rgba(var(--bs-success-rgb), 0.02);
}

.file-upload-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-content {
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.file-upload-icon {
  font-size: 2rem;
  color: #6c757d;
  margin-bottom: 10px;
  display: inline-block;
}

.file-upload-text {
  font-weight: 600;
  color: #495057;
  margin-bottom: 5px;
}

.file-upload-limit {
  font-size: 0.8rem;
  color: #adb5bd;
}

.submit-equipment-btn {
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 6px;
}

/* ============================================== */
/* EQUIPMENT INVENTORY PAGE                       */
/* ============================================== */
 
.equipment-inventory-section {
  background-color: #fcfaf5;
}
 
.equipment-card {
  border: none;
  border-radius: 4px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-out;
  display: flex;
  flex-direction: column;
  max-width: 98%;
  margin: 0 auto;
}
 
.equipment-card-content {
  height: 155px;
  margin: 0 auto;
  align-items: center;
  /* Upar aur niche barabar space dene ke liye (Vertical Center) */
}
 
.equipment-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
 
.equipment-img-wrapper {
  height: 300px;
  width: 100%;
}
 
.equipment-img-wrapper img {
  width: 100%;
  height: 100%;
  /* Image ko poora dikhane ke liye 100% rakhein */
  object-fit: cover;
  /* Taki image height badhne par stretch na ho */
}
 
.equipment-card-content {
  flex-grow: 1;
  /* Taki bachi hui height me white background poora fill ho jaye */
}
 
.equipment-icon {
  width: 40px;
}
 
.equipment-icon img {
  max-width: 100%;
  height: auto;
}
 
.equipment-card:hover .equipment-title {
  color: var(--primary-color) !important;
}
 
/* Delay animations cleanly for each column without inline styles */
.equipment-col:nth-child(2) .equipment-card {
  transition-delay: 100ms;
}
 
.equipment-col:nth-child(3) .equipment-card {
  transition-delay: 200ms;
}
 
.equipment-col:nth-child(4) .equipment-card {
  transition-delay: 300ms;
}
 
/* Utility to convert red icons to theme green */
/* Utility to convert red icons to theme green */
.icon-green {
  filter: hue-rotate(142deg);
}
 

/* ============================================== */
/* LOGISTICS & RIGGING PAGE                       */
/* ============================================== */
.logistics-section {
  background-color: #fff;
}

.logistics-badge {
  display: inline-block;
  background-color: rgba(var(--bs-success-rgb), 0.1);
  color: var(--bs-success);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.expertise-block {
  position: relative;
  margin-bottom: 20px;
}

.expertise-number {
  position: absolute;
  top: -60px;
  left: -30px;
  font-size: 8rem;
  font-weight: 900;
  color: #f8f9fa;
  z-index: 0;
  line-height: 1;
  user-select: none;
}

.expertise-content {
  position: relative;
  z-index: 1;
}

.expertise-title {
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.expertise-check-list {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
}

.expertise-check-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #495057;
  font-size: 0.95rem;
}

.expertise-check-list li::before {
  content: "\F26A";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--bs-success);
  font-size: 1.2rem;
}

.expertise-img-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.expertise-box {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  height: 100%;
}

.expertise-box-title {
  color: var(--bs-success);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.stats-banner {
  background-color: #0b111e;
  padding: 60px 0;
}

.stat-item {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number {
  color: var(--bs-success);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  color: #6c757d;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
  }

  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ============================================== */
/* LOGISTICS TIMELINE                             */
/* ============================================== */
.logistics-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.logistics-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: #e9ecef;
  z-index: 0;
}

.timeline-item {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
  width: 50%;
}

.timeline-item.left {
  left: 0;
  padding-right: 40px;
}

.timeline-item.right {
  left: 50%;
  padding-left: 40px;
}

.timeline-circle {
  position: absolute;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: var(--bs-success);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 0 0 8px #fff;
}

.timeline-item.left .timeline-circle {
  right: -20px;
}

.timeline-item.right .timeline-circle {
  left: -20px;
}

.timeline-text h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #212529;
}

.timeline-text p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .logistics-timeline::before {
    left: 20px;
    transform: none;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 60px !important;
    padding-right: 0 !important;
  }

  .timeline-item .timeline-circle {
    left: 0 !important;
    right: auto !important;
  }

  .timeline-item .timeline-text {
    text-align: left !important;
  }
}

/* ============================================== */
/* FAQ ACCORDION                                  */
/* ============================================== */
.custom-faq-accordion .accordion-button::after {
  content: '\f4fa';
  font-family: 'bootstrap-icons' !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  background-image: none !important;
  font-size: 1.25rem;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-faq-accordion .accordion-button:not(.collapsed)::after {
  content: '\f2e6';
  background-image: none !important;
  transform: none;
}

.custom-faq-accordion .accordion-button {
  background-color: #fafbfc !important;
  color: #212529 !important;
  font-weight: 700;
  padding: 1.25rem;
  box-shadow: none !important;
}

.custom-faq-accordion .accordion-item {
  border: 1px solid #f0f0f0 !important;
  border-radius: 8px !important;
  overflow: hidden;
  margin-bottom: 12px;
}

.custom-faq-accordion .accordion-body {
  background-color: #fafbfc !important;
  padding-top: 0;
  padding-bottom: 1.25rem;
}

/* ============================================== */
/* SCRAP SERVICES                                 */
/* ============================================== */
.scrap-card {
  border: 1px solid #e9ecef;
  box-shadow: none !important;
}

.scrap-card:hover {
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.experience-box {
  bottom: -20px;
  right: 20px;
  border: 8px solid #fff;
  width: 200px;
}

/* ============================================== */
/* WHAT WE BUY SPLIT SECTION                      */
/* ============================================== */
.wwb-content {
  width: 100%;
}

@media (min-width: 992px) {
  .wwb-half.dark-half {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .wwb-half.green-half {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
}

@media (min-width: 1200px) {
  .wwb-half.dark-half {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .wwb-half.green-half {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
}

/* ============================================== */
/* SCRAP SERVICES SEMANTIC CLASSES                */
/* ============================================== */
.scrap-hero-img {
  height: 500px;
  object-fit: cover;
}

.experience-text {
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.processing-badge {
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.scrap-contact-btn {
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.call-info-wrapper {
  border-left: 2px solid #e9ecef;
  padding-left: 20px;
}

.call-icon-circle {
  width: 50px;
  height: 50px;
  background-color: #e8f5e9 !important;
  /* explicit light green */
  color: #198754 !important;
  /* explicit green */
}

.call-label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.anim-delay-0 {
  transition-delay: 0ms;
}

.anim-delay-100 {
  transition-delay: 100ms;
}

.anim-delay-200 {
  transition-delay: 200ms;
}

.anim-delay-300 {
  transition-delay: 300ms;
}

.anim-delay-400 {
  transition-delay: 400ms;
}

.anim-delay-500 {
  transition-delay: 500ms;
}

.wwb-dark-bg {
  background-color: #0b111e;
}

.wwb-inner-content {
  max-width: 600px;
}

.wwb-badge-dark {
  background-color: rgba(25, 135, 84, 0.1);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.wwb-check-dark {
  width: 30px;
  height: 30px;
  background-color: rgba(25, 135, 84, 0.15);
  color: #198754;
}

.wwb-badge-light {
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.wwb-check-light {
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ============================================== */
/* ADDITIONAL SEMANTIC CLASSES                    */
/* ============================================== */
.map-iframe {
  border: 0 !important;
}

.bg-cta-img {
  background-size: cover;
  background-position: center;
}

.bg-search-img {
  background-size: cover;
  background-position: center;
}

.expertise-img {
  height: 450px;
  object-fit: cover;
}

.expertise-num-left {
  left: -40px;
}

.faq-accordion-container {
  max-width: 800px;
}

/* ============================================== */
/* ABOUT US VIDEO SECTION                         */
/* ============================================== */
.about-video-container {
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-about-video {
  background-size: cover;
  background-position: center;
}

/* ============================================== */
/* CLIENT LOGOS SECTION                           */
/* ============================================== */
.client-logo-section {
  padding: 40px 0 60px 0;
}

.logo-row-container {
  overflow-x: auto;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

.logo-row-container::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.brand-logo-text {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  color: #000;
  margin: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  letter-spacing: 1px;
}

.brand-logo-text:hover {
  opacity: 0.7;
  transform: scale(1.05);
}

.font-serif {
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.fw-black {
  font-weight: 900;
}

.about-video-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.about-video-text {
  max-width: 800px;
  line-height: 1.8;
  font-size: 1.1rem;
}

.about-play-wrapper {
  width: 90px;
  height: 90px;
}

.about-play-btn {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-play-icon {
  font-size: 2.5rem;
  margin-left: 5px;
}

.bg-cta-img {
  background-size: cover;
  background-position: center;
}

.bg-search-img {
  background-size: cover;
  background-position: center;
}

.bg-about-video {
  background-size: cover;
  background-position: center;
}

.footer-input {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

.footer-input::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

.phone-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.industry-card {
  position: relative;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.wwb-half {
  display: flex;
  align-items: center;
  justify-content: end;
  position: relative;
}

.list-unstyled .rounded-circle {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.equipment-img-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.equipment-img-wrapper:hover img {
  transform: scale(1.05);
}



/* ============================================== */
/* CLIENTS MARQUEE SECTION */
/* ============================================== */
.clients-section {
  background-color: #ffffff;
  padding: 0rem 0;
}
 
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: transparent;
  padding: 1rem 15px;
}
 
@media (min-width: 992px) {
  .marquee-wrapper {
    padding: 1rem 80px;
  }
}
 
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
 
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}
 
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}
 
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-marquee 20s linear infinite;
}
 
.marquee-track:hover {
  animation-play-state: paused;
}
 
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 220px;
  height: 120px;
  margin: 0 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
 
.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}
 
.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 15px;
}


@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

#wa-btn {
  animation: pulse 2s infinite;
}





 
@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}