@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+Devanagari:wght@100..900&display=swap");

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  color: #042045;
  background-color: #f8f6f5;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  --color-white: #fff;
  --color-dark: #000;

  --color-main-1: #e74c3c; /*? Main heading ,logo */
  --color-helping-1: #053b6b; /*? buttons */
  --color-helping-2: #cbf3f0; /*?  */
  --color-accent: #3e5f44; /*? Call-to-action, Icons, Important highlights */

  --color-section-bg: #f8f9fa; /*? Page sections background */
  --color-Surface: #f8f6f5; /*? Cards, Modals, Sections */

  --text-color: #2c3e50; /*? main text */
  --text-color-invert: #f8f6f5; /*? main text opposite color */
  --color-btn: #3e5f44; /*? buttons */
  --color-btn-hover: #6a9f73; /*? buttons hover */

  --color-header-top-bg: #092844; /*?  header top section background */
  --color-header-main-bg: #ffffff; /*?  header main section background */

  --color-footer-bg: linear-gradient(to top, #3e5f44 0%, #5a8662 100%);
  background-blend-mode: multiply, multiply;
  /*?  footer background */

  --header-height: 84px;
}

html {
  line-height: 1.4;
  scroll-behavior: smooth;
  scrollbar-width: 16px;
}

body {
  width: 100%;
  height: 100vh;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #f0f2f1;
  font-family: "Nunito", sans-serif;
  letter-spacing: 0.6px;
}
@media (max-width: 991px) {
  body {
    width: 100vw;
    overflow-x: hidden;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 90%;
  }
}

h1 {
  font-size: 3rem; /* 48px */
}
h2 {
  font-size: 1.5rem; /* 24px */
}
h3 {
  font-size: 1.175rem; /* 18px */
}
h4 {
  font-size: 0.875rem; /* 14px */
}
h5 {
  font-size: 0.75rem; /* 12px */
}
h1,
h2,
h3,
h4,
h5 {
  line-height: 1.2;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 900;
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.5rem; /* 48px */
  }
  h2 {
    font-size: 1.3rem; /* 24px */
  }
  h3 {
    font-size: 1.15rem; /* 18px */
  }
  h4 {
    font-size: 0.75rem; /* 14px */
  }
  h5 {
    font-size: 0.6rem; /* 12px */
  }
}

ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #1e1b4b;
}

li,
a,
li,
label {
  font-size: 1rem;
}
p {
  font-size: 1.1rem;
  letter-spacing: 0.6px;
  line-height: 1.4;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 24px 70px;
}

.sec-title {
  width: fit-content;
  color: var(--color-helping-1);
  padding-bottom: 6px;
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0;
  cursor: default;
  position: relative;
  margin-bottom: 24px;
}

.sec-title-left::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  content: "";
  display: block;
  width: 6rem;
  height: 4px;
  background-color: var(--color-accent);
  border-radius: 12px;
  margin-top: 6px;
  transition: all 0.8s;
}

.sec-title-center::after {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translate(-50%);
  content: "";
  display: block;
  width: 6rem;
  height: 4px;
  background-color: var(--color-accent);
  border-radius: 12px;
  margin-top: 6px;
  transition: all 0.8s;
}
.sec-title:hover::after {
  width: 8rem;
}
.highlight {
  color: var(--color-accent);
}

.sec-subTitle {
  font-size: 1.2rem;
  color: var(--color-accent);
}
.sec-subTitle::before {
  content: "❝";
}
.sec-subTitle::after {
  content: "❞";
}
/* button */
.btn-11 {
  padding: 8px 16px;
  border-radius: 50px;
  cursor: pointer;
  border: 0;
  background-color: var(--color-helping-1);
  color: var(--text-color-invert);
  box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
  text-transform: uppercase;
  font-size: 15px;
  transition: all 0.5s ease;
}

.btn-11:hover {
  letter-spacing: 1px;
  background-color: #2ec4b6;
  color: #ffffff;
  box-shadow: #2ec4b6 0px 7px 19px 0px;
}

.btn-11:active {
  background-color: hsl(24, 191, 220);
  color: #ffffff;
  box-shadow: #2ec4b6 0px 0px 0px 0px;
  transform: translateY(2px);
  transition: 100ms;
}
/* 
<button>
    <span>Button</span>
</button> */

.btn-15 {
  background: var(--color-btn);
  color: var(--text-color-invert);
  border: none;
  padding: 10px 20px;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transform: skew(-21deg);
  letter-spacing: 1px;
}

.btn-15 span {
  display: inline-block;
  transform: skew(21deg);
}

.btn-15::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  left: 0;
  background: var(--color-btn-hover);
  opacity: 0;
  z-index: -1;
  transition: all 0.5s;
}

.btn-15:hover {
  color: var(--text-color-invert);
}

.btn-15:hover::before {
  left: 0;
  right: 0;
  opacity: 1;
}

/* *========================= */
/* *      pages-banner        */
/* *========================= */

.pages-banner {
  background: linear-gradient(135deg, #414141da 0%, #4b4b4bc7 100%),
    url("../assets/heroImg-4.jpg");
  color: white;
  padding: 10px 0;
  margin-top: var(--header-height);
}

/* *========================= */
/* *       header css         */
/* *========================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-header-main-bg);
  z-index: 9999;
  padding: 15px 0;
  height: var(--header-height);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo a {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-accent);
  font-family: "Nunito Sans", sans-serif;
  text-decoration: none;
  text-wrap: nowrap;
}

.logo a img {
  width: 100px;
}
/* Navigation */
.nav-bar {
  display: flex;
  align-items: center;
}
.nav-links ul {
  display: flex;
  gap: 3px;
  margin-right: 6px;
}
.nav-links li {
  position: relative;
}
.nav-link {
  color: var(--color-helping-1);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.nav-link:hover {
  color: var(--text-color-invert);
  background: var(--color-accent);
}
.nav-link.active {
  color: var(--text-color-invert);
  background: var(--color-accent);
}

/* CTA Buttons */
.nav-CTA {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-CTA-btn {
  padding: 8px 12px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.5s ease;
  color: var(--text-color-invert);
  background: linear-gradient(to top, #3e5f44, #4f7e57, #53855c);
  text-overflow: ellipsis;
  text-wrap: nowrap;
}
.nav-CTA-btn:hover {
  letter-spacing: 1px;
}
.nav-CTA-btn:active {
  transform: translateY(4px);
}
.nav-CTA-btn:last-child {
  font-size: 18px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.nav-CTA-btn:last-child:hover {
  color: var(--text-color);
  background: var(--color-white);
  border: 1px solid var(--text-color);
}

/* Mobile Menu Icon */
.open-mobile-menu-icon {
  display: none;
  color: rgb(0, 0, 0);
  font-size: 28px;
  cursor: pointer;
  margin-left: 20px;
  background: rgba(255, 255, 255, 0.1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.open-mobile-menu-icon:hover {
  background: rgba(255, 255, 255, 0.2);
}
/* Overlay */
.overly {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overly.active {
  opacity: 1;
  visibility: visible;
}
/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -70%;
  width: 70%;
  height: 100vh;
  background: linear-gradient(to bottom, #2c3e50, #1a2530);
  z-index: 10000;
  transition: all 0.4s ease;
  overflow-y: auto;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
  right: 0;
}
.mobile-menu-con {
  padding: 25px 20px;
  display: flex;
  justify-content: flex-end;
}
.close-mobile-menu-icon {
  color: white;
  font-size: 24px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.close-mobile-menu-icon:hover {
  background: rgba(255, 255, 255, 0.2);
}
.mobile-menu-links {
  padding: 24px;
}
.mobile-menu-links ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu-links li {
  position: relative;
}
.mobile-link {
  display: block;
  color: var(--text-color-invert);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-link:hover {
  color: var(--color-helping-2);
  padding-left: 32px;
  background: rgba(255, 255, 255, 0.203);
}
.mobile-menu-links .about-dropdown,
.mobile-menu-links .services-dropdown {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  background: transparent;
  box-shadow: none;
  margin: 8px 0 8px 24px;
  display: none;
}
.mobile-menu-links li.active .about-dropdown,
.mobile-menu-links li.active .services-dropdown {
  display: block;
}
.mobile-menu-links .about-dropdown a,
.mobile-menu-links .services-dropdown a {
  color: var(--text-color-invert);
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 6px;
}
.mobile-menu-links .about-dropdown a:hover,
.mobile-menu-links .services-dropdown a:hover {
  color: var(--text-color);
  background: transparent;
  padding-left: 20px;
  background: rgba(255, 255, 255, 0.203);
}
.mobile-CTA {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.mobile-CTA-btn {
  display: block;
  padding: 16px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}
.mobile-CTA-btn:first-child {
  background: linear-gradient(135deg, #4dadf7, #2c8ee0);
  color: white;
  box-shadow: 0 4px 12px rgba(44, 142, 224, 0.35);
}

.mobile-CTA-btn:last-child {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

@media screen and (max-width: 576px) {
  .mobile-menu {
    width: 85%;
    right: -85%;
  }
}

/* *=========================== */
/* *      footer                */
/* *=========================== */
.footer {
  background: var(--color-footer-bg);
  color: #fff;
  padding: 60px 0 20px;
  /* position: absolute; */
  bottom: 0;
  width: 100%;
}
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-logo a {
  font-size: 24px;
  font-weight: 900;
  color: var(--text-color-invert);
  font-family: "Nunito Sans", sans-serif;
  text-decoration: none;
  text-wrap: nowrap;
}
.footer-logo a img {
  width: 100px;
  margin-bottom: 12px;
}
.f-desc {
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--text-color-invert);
}

.f-title {
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.f-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3rem;
  height: 3px;
  border-radius: 10px;
  background: var(--text-color-invert);
  transition: all 0.3s;
}
.f-title:hover:after {
  width: 5rem;
}
.f-links {
  display: flex;
  flex-direction: column;
}

.f-link {
  color: var(--text-color-invert);
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-transform: capitalize;
}
.f-link:hover {
  color: var(--color-helping-1);
  padding-left: 5px;
}

.f-link::before {
  content: "▶ ";
  font-size: 0.85rem;
}

.f-contact-info a {
  display: flex;
  align-items: center;
  color: var(--text-color-invert);
  text-decoration: none;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.f-contact-info a:hover {
  color: var(--color-helping-1);
}

.f-contact-icon {
  margin-right: 12px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.f-social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.f-social-icons .social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color-invert);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 24px;
}

.f-social-icons .social-icon:hover {
  background: var(--color-accent);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--color-accent);
}

/* *=========================== */
/* *      hero section          */
/* *=========================== */
/* Hero Section Carousel */
.hero {
  width: 100%;
  margin-top: var(--header-height);
}

.h-container {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

.hero-form {
  position: absolute;
  max-width: 400px;
  left: 55%;
  top: 40px;
  transform: translateY(-50%);
}

@media screen and (max-width: 1080px) {
  .hero-form {
    left: 52%;
  }
}
@media screen and (max-width: 991px) {
  .hero-form-con {
    padding: 0 24px;
  }
  .hero-form {
    position: relative !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    margin: 48px auto !important;
    width: 100%;
    max-width: 500px !important;
  }
}

.hero-form {
  max-width: 450px;
  width: 100%;
  margin: 0;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  color: var(--text-color);
  overflow: hidden;
}

.hero-form h2 {
  text-align: center;
  margin-bottom: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-color-invert);
  background-color: #3e5f44;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  padding: 16px 12px;
}

.hero-form form {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.h-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.h-form-group label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-color-invert);
}

.h-form-control {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  color: var(--text-color);
  background: var(--color-Surface);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--color-helping-1);
}

.h-form-control:focus {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--color-helping-2);
  background: white;
}

.h-form-control::placeholder {
  color: #8c8c8c;
}
.hero-form form button.btn-15 {
  width: fit-content;
  margin: 0 auto;
}

/* Animation for form elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.h-form-group {
  animation: fadeInUp 0.6s ease-out;
}

.h-form-group:nth-child(1) {
  animation-delay: 0.1s;
}
.h-form-group:nth-child(2) {
  animation-delay: 0.2s;
}
.h-form-group:nth-child(3) {
  animation-delay: 0.3s;
}

/* --------- */
.h-carousel {
  position: relative;
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}

.h-slides {
  display: flex;
  transition: transform 0.8s ease-in-out;
  height: 500px;
  width: 100%;
}

.h-slide {
  min-width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.h-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.h-slide-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  padding: 32px;
  color: var(--text-color-invert);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
  transition-delay: 0.5s;
  display: flex;
  align-items: center;
  z-index: 11;
}

.h-slide.active .h-slide-content {
  transform: translateY(0);
  opacity: 1;
}

.h-actual-content {
  max-width: 500px;
  margin-left: 48px;
}

.h-slide-title {
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  text-transform: capitalize;
}

.h-slide-description {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Carousel Controls */
.h-carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(5px);
}

.h-carousel-control:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.h-carousel-control.prev {
  left: 20px;
}

.h-carousel-control.next {
  right: 20px;
}

/* Carousel Indicators */
.h-carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.h-carousel-indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.h-carousel-indicator.active {
  background: var(--color-white);
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 991px) {
  .h-actual-content {
    width: 100%;
    margin-left: 10px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .h-slide-description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .h-slide-content {
    padding: 20px;
  }

  .h-carousel-control {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  .h-slide-description {
    display: none;
  }

  .h-slide-content {
    text-align: center;
    padding: 15px;
  }

  .h-carousel-control {
    width: 35px;
    height: 35px;
  }

  .h-carousel-indicators {
    bottom: 10px;
  }
}

/* *---------------------------- */
/* *        how-it-works         */
/* *---------------------------- */
.how-it-works {
  width: 100%;
  background-color: var(--color-section-bg);
}

.hiw-card {
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  border: 1px solid #ddd;
}
.hiw-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #4e54c8, #8f94fb);
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.hiw-card:hover::before {
  transform: scaleX(1);
}

.hiw-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.hiw-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
}
.hiw-icon img {
  width: 100%;
  height: 100%;
}
.hiw-card h3 {
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-helping-1);
  text-transform: capitalize;
}
.hiw-card p {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.4;
  text-transform: capitalize;
}
/* *------------------------------- */
/* *       who-are-we               */
/* *------------------------------- */

.who-are-we {
  width: 100%;
  /* background-color: var(--color-section-bg); */
  background-color: #fff;
}

.wrw-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.wrw-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.wrw-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.wrw-image:hover img {
  transform: scale(1.03);
}
.wrw-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(37, 99, 235, 0.1) 0%,
    rgba(249, 115, 22, 0.1) 100%
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.wrw-image:hover::before {
  opacity: 1;
}
.wrw-text-content p {
  line-height: 1.4;
  margin-bottom: 20px;
  color: var(--text-color);
}
.wrw-btns {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 24px 0 0 16px;
  flex-wrap: wrap;
}
.who-are-we hr {
  width: inherit;
}
/* *--------------------------- */
/* *      what do we scrap      */
/* *--------------------------- */
what-do-we-scrap {
  width: 100%;
}
.wdws-top {
  background-color: var(--color-white);
}
.wdws-content-con {
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.8)
    ),
    url(../assets/heroImg-3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.wdws-cards {
  background: var(--color-Surface);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}
.wdws-cards:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.wdws-image {
  position: relative;
  overflow: hidden;
  /* height: 220px; */
}
.wdws-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  border: 1px solid #ddd;
  padding: 10px;
  background-color: #fff;
}
.wdws-cards:hover .wdws-image img {
  transform: scale(1.05);
}
/* .wdws-image:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  opacity: 0.7;
} */
.wdws-text-content {
  padding: 16px 12px;
}

.wdws-text-content h2 {
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-white);

  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wdws-text-content p {
  color: var(--text-color-invert);
  margin-bottom: 0;
}
.icon-wrapper {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 2;
  width: 50px;
  height: 50px;
  background: var(--color-helping-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-helping-1) !important;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* *----------------------- */
/* *    why-choose-us       */
/* *----------------------- */

.why-choose-us {
  width: 100%;
  background-color: #fff;
}
.wcu-content {
  position: relative;
  z-index: 1;
}

.wcu-card {
  background: var(--color-Surface);
  padding: 24px;
  border-radius: 12px;
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
    rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.wcu-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 123, 255, 0.05) 0%,
    rgba(0, 188, 212, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}
.wcu-card:hover {
  transform: translateY(-2px);
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
    rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.wcu-card:hover::before {
  opacity: 1;
}
.wcu-card-icon {
  margin-bottom: 16px;
  transition: all 0.3s ease;
  font-size: 3rem;
  color: var(--color-accent);
}
.wcu-card-title {
  /* font-size: 1.4rem; */
  margin-bottom: 16px;
  color: var(--color-helping-1);
  transition: color 0.3s ease;
  text-transform: uppercase;
}
.wcu-description {
  color: var(--text-color);
  line-height: 1.4;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

/* * ----------------------------- */
/* *     testimonial sec css       */
/* * ----------------------------- */

.tes-container {
  overflow: hidden;
  width: 100%;
  background-color: var(--color-section-bg);
}

.tes-header {
  width: 100%;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tes-header h3 {
  width: 100%;
  text-align: center;
}

.tes-header p {
  margin-bottom: 0;
}

.tes-carousel-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 36px;
}

.tes-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.tes-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.tes-carousel-item {
  flex: 0 0 calc(100% / 3);
  padding: 15px;
  box-sizing: border-box;
}

.tes-card {
  background: white;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  padding: 16px 12px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tes-card:hover {
  transform: translateY(-5px);
}

.tes-content {
  flex-grow: 1;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 20px;
}

.tes-author {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: auto;
}

.tes-avatar {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.tes-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tes-author-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 0;
  gap: 12px;
}
.tes-author-info h4 {
  color: var(--color-helping-1);
  font-size: 1.1rem;
  margin: 0;
}

.tes-author-info p {
  margin: 0;
  color: var(--text-color);
  font-weight: 600;
}

.tes-rating {
  color: #f1c40f;
  margin-top: 5px;
}

.tes-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}

.tes-btn {
  background: var(--color-accent);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tes-btn:hover {
  background: var(--color-accent);
  transform: scale(1.05);
}

.tes-btn:disabled {
  background: #bdc3c7;
  cursor: not-allowed;
  transform: scale(1);
}

.tes-indicators {
  display: flex;
  gap: 10px;
}

.tes-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #bdc3c7;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tes-indicator.active {
  background: var(--color-accent);
  transform: scale(1.2);
}

.tes-auto-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

.tes-toggle-label {
  font-size: 0.9rem;
  color: #7f8c8d;
}

.tes-toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.tes-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.tes-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}

.tes-toggle-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .tes-toggle-slider {
  background-color: var(--light-blue);
}

input:checked + .tes-toggle-slider:before {
  transform: translateX(26px);
}

@media (max-width: 992px) {
  .tes-carousel-item {
    flex: 0 0 50%;
  }
}

@media (max-width: 768px) {
  .tes-carousel-container {
    padding: 0 30px;
  }

  .tes-carousel-item {
    flex: 0 0 100%;
  }

  .tes-title {
    font-size: 2rem;
  }

  .tes-card {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .tes-carousel-container {
    padding: 0 15px;
  }

  .tes-controls {
    gap: 10px;
  }

  .tes-btn {
    width: 40px;
    height: 40px;
  }
}
/* *----------------------*/
/* *      contact         */
/* *---------------------*/
.contact-sec {
  width: 100%;
  background-color: var(--color-section-bg);
}
.contact-header {
  padding: 32px 32px 20px;
  text-align: center;
}

.contact-header h2 {
  margin-bottom: 12px;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  color: var(--color-helping-1);
  font-size: 2.4rem;
  text-transform: capitalize;
}

.contact-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-accent);
}

.contact-content {
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.contact-info {
  padding-right: 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 6px;
  transition: transform 0.3s ease;
  animation: slideInLeft 0.6s ease-out;
}

.contact-info-item:hover {
  transform: translateX(5px);
  background-color: var(--color-helping-2);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.contact-info-icon {
  background: var(--color-accent);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-info-content h4 {
  /* font-weight: 600; */
  margin-bottom: 2px;
  color: var(--color-helping-1);
  font-size: 1.2rem;
}

.contact-info-content p {
  margin: 0;
  color: rgba(31, 29, 29, 0.9);
}

.contact-form {
  background: var(--color-Surface);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  animation: slideInRight 0.6s ease-out;
}
.contact-form-header h2 {
  /* font-weight: 700; */
  margin-bottom: 12px;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  color: var(--color-helping-1);
  font-size: 2.4rem;
  text-transform: capitalize;
}
.contact-form .form-control {
  padding: 16px 20px;
  border-radius: 12px;
  border: none;
  margin-bottom: 22px;
  transition: all 0.3s;
  background: var(--color-white);
  border: 1px solid var(--color-helping-1);
}

.contact-form .form-control:focus {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2),
    inset 3px 3px 5px rgba(0, 0, 0, 0.05),
    inset -3px -3px 5px rgba(255, 255, 255, 0.8);
  border: none;
  transform: translateY(-2px);
}

.contact-form textarea.form-control {
  min-height: 120px;
  resize: none;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Floating animation for visual elements */
.floating {
  /* animation: floating 3s ease-in-out infinite; */
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 992px) {
  .contact-info {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .contact-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .contact-content {
    padding: 20px;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-header {
    padding: 30px 20px 10px;
  }

  .contact-header h2 {
    font-size: 1.8rem;
  }
}

.mm1 {
  /* margin-bottom: 100px; */
  padding: 50px 0;
}

.justify-content-center {
  justify-content: center !important;
  align-items: center;
}

section.faq {
  background: #fff;
}

hr {
  margin: 1rem 0;
  color: inherit;
  /* border: 1px solid; */
  border-top: 1px solid;
  opacity: 0.5;
  color: #ffffff;
}

.faq-text-content h2 {
  color: var(--color-helping-1);
}

.faq-text-content p {
  color: var(--text-color);
}
.accordion-button:not(.collapsed) {
  background-color: var(--color-accent);
  color: var(--text-color-invert);
}
.accordion-button:focus {
  box-shadow: 0px 3px 8px var(--color-accent);
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px,
    rgba(0, 0, 0, 0.09) 0px 8px 4px;
}

/* *-------------------------- */
/* *      how-MTQ-works        */
/* *-------------------------- */

.how-MTQ-works {
  width: 100%;
}
.h-MTQ-works-con {
  background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.742),
      rgba(0, 0, 0, 0.838)
    ),
    url("../assets/heroImg-4.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}

.h-MTQ-works-card {
  display: flex;
  gap: 12px;
}

.h-MTQ-works-card {
  display: flex;
  align-items: center;
  background-color: var(--color-accent);
  box-shadow: rgba(255, 255, 255, 0.16) 0px 1px 4px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s;
}

.h-MTQ-works-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(255, 255, 255, 0.1),
    0 10px 10px -5px rgba(255, 255, 255, 0.04);
}
.MTQ-works-card-icon {
  font-size: 4rem;
  padding: 8px;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--text-color-invert);
  text-align: center;
}
.MTQ-works-card-content {
  background-color: var(--color-white);
  padding: 16px 24px;
  height: 100%;
}
.MTQ-works-card-content h3 {
  color: var(--color-helping-1);
}
.MTQ-works-card-content p {
  color: var(--text-color);
}

/* *-------------------------------- */
/* *   why-recycle-your-vehicles     */
/* *-------------------------------- */
.why-recycle-your-vehicles {
  width: 100%;
}

.wryv-content-top {
  background: linear-gradient(
    135deg,
    var(--color-accent) 0%,
    var(--color-helping-1) 100%
  );
  color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  /* align-items: center; */
  justify-content: center;
  margin-bottom: 3rem !important;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.wryv-content-top::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  transform: rotate(30deg);
}

.wryv-content-top pre {
  width: 100%;
  padding: 30px;
  margin: 0 auto;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  z-index: 1;
  color: white;
  font-family: "Noto Serif Devanagari", serif;
}

.wyrv-quote {
  font-size: 2rem;
}

.wryv-content-cards {
  width: 100%;
}

.wryv-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transition: all 0.4s ease;
  padding: 24px 16px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.wryv-card-image {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-accent) 0%,
    var(--color-helping-1) 100%
  );
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  /* position: relative; */
}

.wryv-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-speed) ease;
}

.wryv-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 12px;
  text-align: center;
}

.wryv-card p {
  text-align: center;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0;
}

/* Hover Effects */
.wryv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.wryv-card:hover::before {
  transform: scaleX(1);
}

.wryv-card:hover .wryv-card-image {
  transform: scale(1.1);
  border-radius: 8px;
}

.wryv-card:hover .wryv-card-image img {
  transform: scale(1.05);
}

/* *-------------------------------- */
/* *    scrap your vehicle page      */
/* *-------------------------------- */

.syv-main {
  /* width: 100%; */
}

/* syv-widget-text */
.syv-widget-text {
  background: linear-gradient(
    135deg,
    var(--color-accent) 0%,
    var(--color-helping-1) 100%
  );
  color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  /* align-items: center; */
  justify-content: center;
  margin-bottom: 3rem !important;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.syv-widget-text::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  transform: rotate(35deg);
}

.syv-widget-text pre {
  width: 100%;
  padding: 30px;
  margin: 0 auto;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  z-index: 1;
  color: white;
  font-family: "Noto Serif Devanagari", serif;
}

.syv-quote {
  font-size: 2rem;
}

/* syv-details-content */
.syv-details-content {
}

/* syv-inquiry-form */
.syv-inquiry-form {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 30px auto;
}
.form-title {
  color: var(--color-helping-1);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.required-label:after {
  content: "*";
  color: #dc3545;
  margin-left: 4px;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.25rem #05898034;
}

.syv-form-btn {
  padding: 8px 32px;
}

/* sdd-Stats-cards Section */
.stats-box {
  background: white;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
  transition: transform 0.3s;
}

.stats-box:hover {
  transform: translateY(-5px);
}

.stats-number {
  font-weight: 700;
  color: var(--color-helping-1);
  margin: 10px 0;
}
.stats-box p {
  font-size: 0.9rem;
}

/* syv-dealer-locations */
.syv-location-details {
  & h3 {
    color: var(--color-helping-1);
    text-transform: uppercase;
  }
}

.syv-dealer-locations ul li::before {
  content: "●";
  margin-right: 8px;
  font-size: 1.2rem;
  color: var(--color-accent);
}

.syv-location-details .data-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 6px;
}

.syv-location-details .data-item {
  background: linear-gradient(135deg, #adc5b8 0%, #b7ccbf 100%);
  color: var(--text-color);
  border-radius: 18px;
  /* box-shadow: 0 4px 16px 0 rgba(62, 95, 68, 0.10), 0 1.5px 4px 0 rgba(62, 95, 68, 0.08); */
  padding: 22px 18px;
  margin: 10px 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  transition: transform 0.18s cubic-bezier(0.4, 2.3, 0.3, 1), box-shadow 0.18s;
  cursor: pointer;
  border: 1.5px solid #e0eafc;
  overflow: hidden;
  text-transform: capitalize;
}
.syv-location-details .data-item:hover {
  background: linear-gradient(135deg, #3e5f44 0%, #6a9f73 100%);
  color: #fff;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 24px 0 rgba(62, 95, 68, 0.18),
    0 2px 8px 0 rgba(62, 95, 68, 0.12);
  border-color: #3e5f44;
}

@media (max-width: 576px) {
  .syv-location-details .data-item {
    font-size: 1rem;
    padding: 16px 8px;
  }
}

@media (max-width: 576px) {
  .syv-dealer-locations .data-grid {
    display: flex;
    flex-direction: column;
  }
}

/*! syv aside css */
.syv-aside {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #2c3e50;
  height: fit-content;
}

.syv-aside-content {
  height: 100%;
}

.syv-aside-title {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e74c3c;
}

.syv-aside-title h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  color: var(--color-helping-1);
  font-weight: 900;
  text-transform: uppercase;
}

.syv-aside-title h3 span:first-child {
  flex: 1;
}

.syv-aside-title h3 i {
  color: var(--color-main-1);
  margin-left: 10px;
}

.syv-aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.syv-aside li {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ddd;
  transition: all 0.3s ease;
}

.syv-aside li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.syv-aside li:hover {
  transform: translateX(5px);
}

.syv-aside ul li a {
  display: block;
  color: var(--color-helping-1);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 6px;
  transition: color 0.3s ease;
  transition: all 0.3s ease;
}

.syv-aside a:hover {
  color: var(--color-main-1);
  text-decoration: underline;
}

.syv-aside ul li span {
  display: flex;
  align-items: center;
  color: var(--color-helping-1);
  font-size: 0.85rem;
  font-weight: 500;
}

.syv-aside span i {
  color: var(--color-main-1);
  margin-right: 8px;
  font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
  .syv-aside {
    padding: 20px;
  }

  .syv-aside-title h3 {
    font-size: 1.2rem;
  }

  .syv-aside a {
    font-size: 0.9rem;
  }
}

/* *============================ */
/* *      contact page css       */
/* *============================ */

.contact-page-form-sec {
  width: 100%;
}
.contact-page-card {
  border: none;
  background-color: var(--color-section-bg);
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  transition: transform 0.3s ease;
  height: 100%;
}

.contact-page-form-control {
  width: 100%;
  border-radius: 8px;
  padding: 12px 15px;
  border: 1px solid #e1e5eb;
  transition: all 0.3s;
  outline: none;
}

.contact-page-form-control:focus {
  border: 1px solid var(--color-accent);
  box-shadow: 0 0 0 4px #05898045;
}

/* .contact-page-newsletter {
  
} */

.contact-page-info-box {
  text-align: center;
  padding: 16px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}
.contact-page-info-box:hover {
  transform: translateY(-5px);
  background: linear-gradient(
    to top,
    var(--color-helping-1) 0%,
    var(--color-accent) 100%
  );
}
.contact-page-info-box h3 {
  color: var(--color-helping-1);
  font-weight: 700;
}
.contact-page-info-box:hover h3 {
  color: var(--text-color-invert);
}
.contact-page-info-box:hover p {
  color: var(--text-color-invert);
}

.contact-page-info-box .icon {
  font-size: 2rem;
  margin-bottom: 5px;
}

.contact-page-info-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-helping-1);
  transition: all 0.3s ease;
}

.contact-page-info-box p {
  color: var(--text-color);
  transition: all 0.3s ease;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
/* *============================= */
/* *         about page           */
/* *============================= */
.about-our-company {
  width: 100%;
  background-color: var(--color-section-bg);
}

.msd-cards {
  width: 100%;
  background-color: var(--color-section-bg);
}

.aoc-content-top {
  margin-bottom: 50px;
}

.aoc-content-top-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.aoc-content-top-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.aoc-content-top-img:hover img {
  transform: scale(1.02);
}

.aoc-content-bottom {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.aoc-content-bottom p {
  color: var(--text-color);
  margin-bottom: 25px;
}

.aoc-content-bottom p:last-child {
  margin-bottom: 0;
}

/* ------------ */
.our-story-image {
  /* width: 400px; */
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 0 auto;
}
.our-story-image img {
  width: 100%;
  height: 100%;
}

/* .our-story-text h2 {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 20px;
} */

.our-story-text h3 {
  font-weight: 700;
  margin-top: 20px;
  padding-left: 20px;
  color: var(--color-helping-1);
  border-left: 3px solid var(--color-accent);
}

.about-page-card {
  background: white;
  border-radius: 8px;
  padding: 24px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  height: 100%;
  transition: 0.3s all;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.about-page-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--color-accent) 0%,
    var(--color-helping-1) 100%
  );
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
}

.about-page-card:hover {
  transform: translateY(-10px);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  color: white;
  border-radius: 24px;
}

.about-page-card:hover::before {
  opacity: 1;
}

.about-page-card:hover .apc-icon {
  background: white;
  color: var(--color-accent);
}

.about-page-card:hover p {
  color: white;
}

.apc-icon {
  background: linear-gradient(
    135deg,
    var(--color-accent) 0%,
    var(--color-helping-1) 100%
  );
  color: white;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.apc-content p {
  margin: 0;
  line-height: 1.7;
  color: var(--text-color);
  transition: all 0.3s;
}

/* *============================ */
/* *     welcome popup css       */
/* *============================ */

/* Welcome Popup Styles */
.welcome-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow: hidden;
}

.welcome-popup.active {
  opacity: 1;
  visibility: visible;
}
/* Add this to your CSS file */
.welcome-popup.active ~ body {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}
.popup-content {
  background: linear-gradient(135deg, #053b6b 0%, #2ec4b6 100%);
  color: white;
  border-radius: 15px;
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
  padding: 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(50px);
  transition: transform 0.5s ease;
}

.welcome-popup.active .popup-content {
  transform: translateY(0);
}

.popup-close {
  position: absolute;
  top: 45px;
  right: 15px;
  background: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.4rem;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.3);
  /* transform: rotate(90deg); */
}

.popup-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #fff;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.popup-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.popup-message {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.popup-btn {
  background: #fff;
  color: #053b6b;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.popup-btn:hover {
  background: #f8f6f5;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .popup-content {
    padding: 20px;
  }

  .popup-title {
    font-size: 1.7rem;
  }

  .popup-message {
    font-size: 1rem;
  }
}

/* *============================ */
/* *   get a free quote css      */
/* *============================ */
.contact-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.contact-popup.active {
  opacity: 1;
  visibility: visible;
}

.contact-popup-content {
  background: white;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 94vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.contact-popup.active .contact-popup-content {
  transform: scale(1);
}

.contact-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.1);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.contact-popup-close:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: rotate(90deg);
}

.contact-popup-header {
  background: linear-gradient(135deg, #053b6b 0%, #2ec4b6 100%);
  color: white;
  padding: 16px 24px;
  border-radius: 12px 12px 0 0;
}

.contact-popup-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-popup-subtitle {
  font-size: 1rem;
  opacity: 0.9;
}

.contact-popup-body {
  padding: 16px 25px;
}

.contact-popup-form .form-group {
  margin-bottom: 16px;
}

.contact-popup-form label {
  font-weight: 600;
  color: var(--color-helping-1);
  margin-bottom: 8px;
  display: block;
}

.contact-popup-form .form-control {
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 100%;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-popup-form .form-control:focus {
  border-color: #2ec4b6;
  box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.2);
  outline: none;
}

.contact-popup-form textarea.form-control {
  min-height: 100px;
  resize: vertical;
}
/* 
.contact-popup-form .btn-submit {
  background: linear-gradient(135deg, #053b6b 0%, #2ec4b6 100%);
  color: white;
  border: none;
  padding: 14px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
} */

/* .contact-popup-form .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
} */

/* Responsive adjustments */
@media (max-width: 576px) {
  .contact-popup-content {
    width: 95%;
  }

  .contact-popup-title {
    font-size: 1.5rem;
  }

  .contact-popup-body {
    padding: 20px;
  }
}

/* *============================ */
/* * partners-page page css       */
/* *============================ */
.partners-page-form {
  width: 100%;
  background-color: var(--color-section-bg);
}
.partners-form-con {
  background: var(--color-section-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
.partners-form-con h3 {
  color: var(--color-helping-1);
  text-transform: uppercase;
}

/* *============================ */
/* *     sales page css          */
/* *============================ */
.vehicle-part-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}
.vehicle-part-card:hover {
  transform: translateY(-5px);
}
.vehicle-part-img {
  height: 180px;
  object-fit: cover;
  width: 100%;
}
.vehicle-part-img img {
  width: 100%;
  height: 100%;
}

.vehicle-part-body {
  padding: 16px;
  background: var(--color-accent);
  color: var(--text-color-invert);
}
/* ------------ */
.sales-details {
  width: 100%;
}

.sales-page-block {
  width: 100%;
  height: inherit;
  min-height: 400px;
  color: var(--text-color-invert);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sales-page-title {
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* *============================ */
/* *      page css       */
/* *============================ */

/* *============================ */
/* *     social-icons-strip      */
/* *============================ */

.social-icons-strip {
  width: 100%;
  background: var(--color-helping-1);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  bottom: 0;
  z-index: 1000;
}

.social-icons-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  width: 100%;
}

.social-icons {
  display: flex;
  width: 100%;
  padding: 0;
}

.social-strip-icon {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  color: var(--text-color-invert);
  font-size: 1.4rem;
}

.social-strip-icon.whatsapp {
  background: #25d366;
}
.social-strip-icon.facebook {
  background: #1877f2;
}
.social-strip-icon.twitter {
  background: rgb(0, 0, 0);
}
.social-strip-icon.instagram {
  background: linear-gradient(
    45deg,
    #833ab4,
    #5851db,
    #e1306c,
    #f77737,
    #fcaf45
  );
}

/* *============================= */
/* *      gallery page css        */
/* *============================= */

.gallery-sec {
  width: 100%;
}

.gallery-content {
  column-count: 4;
}

@media (max-width: 991px) {
  .gallery-content {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  .gallery-content {
    column-count: 2;
    column-gap: 1rem;
  }
}
@media (max-width: 576px) {
  .gallery-content {
    column-count: 1;
    column-gap: 1rem;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  display: block;
  height: auto;
  border-radius: 10px;
}
/* Image Popup Styles */
.image-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10002;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-popup.active {
  opacity: 1;
  visibility: visible;
}

.image-popup-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-popup-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.image-popup-close {
  position: absolute;
  top: 4px;
  right: 4px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.image-popup-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* Add cursor pointer to gallery images */
.gallery-item {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}
/* *============================= */
/* *      page css        */
/* *============================= */

/* *============================= */
/* *       page css        */
/* *============================= */
