@font-face {
  font-family: Uni-Sans-Thin;
  src: url(../fonts/Uni\ Sans\ Thin.otf);
}

@font-face {
  font-family: Uni-Sans-Thin-Italic;
  src: url(../fonts/Uni\ Sans\ Thin\ Italic.otf);
}

@font-face {
  font-family: Uni-Sans-Thin-heavy;
  src: url(../fonts/Uni\ Sans\ Heavy.otf);
}

/* ================= COLORS ================= */

.Uni-Sans-Thin {
  font-family: Uni-Sans-Thin;
}

.Uni-Sans-Thin-Italic {
  font-family: Uni-Sans-Thin-Italic;
}

.bg-navy {
  background-color: #24395c;
}

.text-navy {
  color: #24395c;
}

.text-orange {
  color: #ef5023;
}

.text-heading-color {
  color: #f16239;
}

.custom-full-line {
  /* width: 100vw; */
  height: 15px;
  background-color: #24395c;
  margin-left: calc(-50vw + 50%);
}

.text-lite-navy {
  color: #3a4d6d;
}

.dark-black {
  color: #0f172a;
}

/* ================= TYPOGRAPHY UTILS ================= */

/* ================= FONT SIZE UTILITIES ================= */

.ft-14 {
  font-size: 14px;
}

.ft-15 {
  font-size: 15px;
}

.ft-16 {
  font-size: 16px;
}

.ft-17 {
  font-size: 17px;
}

.ft-18 {
  font-size: 18px;
}

.ft-19 {
  font-size: 19px;
}

.ft-20 {
  font-size: 20px;
}

.ft-21 {
  font-size: 21px;
}

.ft-22 {
  font-size: 22px;
}

.ft-23 {
  font-size: 23px;
}

.ft-24 {
  font-size: 24px;
}

.ft-25 {
  font-size: 25px;
}

.ft-26 {
  font-size: 26px;
}

.ft-27 {
  font-size: 27px;
}

.ft-28 {
  font-size: 28px;
}

.ft-29 {
  font-size: 29px;
}

.ft-30 {
  font-size: 30px;
}

.ft-32 {
  font-size: 32px;
}

.ft-34 {
  font-size: 34px;
}

.ft-36 {
  font-size: 36px;
}

.ft-38 {
  font-size: 38px;
}

.ft-40 {
  font-size: 40px;
}

.ft-42 {
  font-size: 42px;
}

.ft-44 {
  font-size: 44px;
}

.ft-46 {
  font-size: 46px;
}

.ft-48 {
  font-size: 48px;
}

.ft-50 {
  font-size: 50px;
}

.ft-52 {
  font-size: 52px;
}

.ft-54 {
  font-size: 54px;
}

.ft-56 {
  font-size: 56px;
}

.ft-58 {
  font-size: 58px;
}

.ft-60 {
  font-size: 60px;
}

.ft-62 {
  font-size: 62px;
}

.ft-64 {
  font-size: 64px;
}

.ft-66 {
  font-size: 66px;
}

.ft-68 {
  font-size: 68px;
}

.ft-70 {
  font-size: 70px;
}

.fw-400 {
  font-weight: 400;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

/* ================= COLORS ================= */

.bg-navy {
  background-color: #24395c;
}

.text-navy {
  color: #24395c;
}

.text-orange {
  color: #ef5023;
}

/* ================= TOP BAR ================= */

.top-bar {
  background-color: #24395c;
}

.top-social-wrap {
  /* background-color: #ef5023; */
  padding: 8px 0px;
  padding-left: 15px;
  display: flex;
  gap: 15px;
  border-radius: 0 0 0 8px;
  clip-path: polygon(15% 0, 100% 0%, 100% 100%, 0 100%);
}

/* Navy circle + white icon */

.social-circle {
  width: 34px;
  height: 34px;
  background-color: #ef5023;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  line-height: normal;
}

/* ================= HEADER ================= */

.main-header {
  background-color: #fff;
}

/* .logo-img {
    max-height: 52px;
} */

.header-phone {
  white-space: nowrap;
}

/* ================= NAV ================= */

.navbar-expand-lg .navbar-nav {
  /* flex-direction: row; */
  padding-right: 4%;
}

.navbar-nav .nav-link {
  padding: 0;
}

.navbar-nav .nav-link.active {
  color: #ef5023;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .header-phone {
    justify-content: left;
    margin-top: 12px;
  }
  .navbar-nav {
    text-align: left;
    gap: 12px;
    padding-top: 15px;
  }
  .top-social-wrap {
    border-radius: 0;
  }
}

.hero-banner-section {
  position: relative;
  height: 600px;
  overflow: hidden;
}

/* Background image must be absolute */

.hero-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.45); */
  z-index: 2;
}

/* Content must be above overlay */

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo box */

.hero-logo-box {
  background: #ffffff;
  padding: 25px 25px;
  border-radius: 95px;
  display: inline-block;
  z-index: 4;
  position: relative;
}

/* Bottom strip */

.hero-bottom-strip {
  bottom: 0;
  width: 100%;
  background: #1f3557;
  z-index: 4;
}

.hero-tagline {
  position: relative;
  z-index: 6;
  padding-bottom: 20px;
}

.strip-separator {
  margin-top: 4px;
  height: 54px;
}

/* loop */

.hero-bottom-strip {
  overflow: hidden;
  position: relative;
}

.bottom-strip-content {
  display: flex;
  flex-wrap: nowrap !important;
  width: max-content;
  animation: scrollRight 25s linear infinite;
}

.strip-item,
.strip-separator {
  white-space: nowrap;
}

@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}

/* loop end */

/* /hero section */

/* ===== ABOUT SECTION ===== */

.about-carwash-section {
  background: #f8f9fb;
}

/* Oval Left Image */

.about-static-image img {
  border-radius: 120px;
  height: 400px;
  object-fit: cover;
}

.about-row {
  margin-bottom: 40px;
}

.about-buttons {
  margin-top: 90px;
}

.section-padding {
  padding: 50px 0;
}

/* Slider */

.about-slider {
  position: relative;
}

.about-slider img {
  /* height: 320px; */
  object-fit: cover;
}

.about-list li {
  margin-bottom: 15px;
}

/* Slider Controls */

.slider-controls {
  position: absolute;
  bottom: -50px;
  right: -35px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-btn {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.slider-hover-btn {
  background-color: #3a4d6d;
}

.slider-hover-btn:hover {
  background-color: #ef5023;
  color: white;
}

.theme-btn {
  background-color: #24395c;
  line-height: normal;
  line-height: 1.2;
  padding: 8px 10px;
}

.theme-btn:hover {
  background-color: #ef5023;
}

/* About Heading Letter Spacing */

.letter-spacing-2 {
  letter-spacing: 2px;
}

/* Responsive */

@media (max-width: 991px) {
  .about-static-image img,
  .about-slider img {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .about-static-image img,
  .about-slider img {
    height: 220px;
  }
  .about-buttons {
    justify-content: center;
  }
}

/* new css */

.custom-dual-slider {
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
}

.main-img {
  flex: 2;
}

.main-img img {
  width: 100%;
  border-radius: 120px;
  height: 400px;
  object-fit: cover;
}

.side-img {
  flex: 1;
}

.side-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
}

/* ===== SECTION BACKGROUND ===== */

.solution-section {
  background: url("../media/our-solution-bg.png") center/cover no-repeat;
  position: relative;
}

.solution-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(36, 57, 92, 0.85); */
}

/* ===== HEADING ===== */

.solution-title {
  /* font-size: 40px; */
}

/* ===== CARD ===== */

.solution-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.4s ease;
  position: relative;
}

/* .solution-card:hover {
    box-shadow: 0 20px 40px rgba(239, 80, 35, 0.35);
    
} */

/* ===== IMAGE ===== */

.solution-card-image img {
  height: 200px;
  object-fit: cover;
}

/* ===== BODY ===== */

.solution-card-body {
  padding: 30px 25px;
  position: relative;
}

/* ===== ICON ===== */

.solution-icon-wrapper {
  position: absolute;
  top: -50px;
  left: 25px;
}

.solution-icon {
  width: 100px;
  height: 100px;
  background: #24395c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid #fcdcd3;
  transition: 0.3s;
}

.solution-icon i {
  font-size: 24px;
  color: #fff;
}

.solution-icon img {
  height: 65px;
  width: 65px !important;
}

/* Hover Icon Border */

.solution-card:hover .solution-icon {
  border-color: #ef5023;
}

.solution-card:hover .solution-card-title {
  color: #ef5023;
}

/* ===== TEXT ===== */

.solution-card-title {
  margin-top: 50px;
  color: #24395c;
  margin-bottom: 15px;
}

.solution-card-text {
  max-width: 300px;
  margin-bottom: 15px;
}

/* ===== BOTTOM CONTROLS ===== */

.slider-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ef5023;
  border: none;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.slider-nav:hover {
  background: #24395c;
}

.solution-view-btn {
  background: #ef5023;
  color: #fff;
  border-radius: 30px;
  padding: 8px 25px;
}

.solution-view-btn:hover {
  background: #24395c;
  color: white;
}

/* Bottom orange curved border (hidden by default) */

/* ===== RESPONSIVE ===== */

@media (max-width: 991px) {
  .solution-title {
    /* font-size: 32px; */
  }
}

/* ===== PRODUCT CARD ===== */

.product-card {
  background: #fff;
  border: 2px solid #ef5023;
  border-radius: 24px;
  padding: 25px;
  transition: 0.4s ease;
  height: 100%;
}

.product-card:hover {
  box-shadow: 0px 10px 10px 0px #fcdcd3;
}

/* Image */

.product-image {
  text-align: center;
  margin-bottom: 20px;
}

.product-image img {
  height: 180px;
  object-fit: contain;
}

.products-bottom-controls {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Text */

.product-title {
  /* font-weight: 600; */
  color: #24395c;
  margin-bottom: 10px;
}

.product-category {
  margin-bottom: 10px;
}

.product-desc {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 10px;
}

/* Tabs */

.product-tabs .nav-link {
  color: #24395c;
  border-radius: 30px;
  padding: 8px 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-tabs .nav-link.active {
  background: #ef5023;
  color: #fff;
}

/* Bottom Controls */

.slider-circle-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #24395c;
  color: #fff;
  border: none;
  display: inline-flex;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.view-products-btn {
  background: #24395c;
  color: #fff;
  border-radius: 30px;
  padding: 5px 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* ===== PROCESS SECTION ===== */

.work-process-section {
  background: #f8f9fb;
}

/* Horizontal Line */

.process-steps-row {
  position: relative;
}

.process-steps-row::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 8%;
  width: 84%;
  height: 1px;
  background: #f1c8bb;
  z-index: 0;
}

/* Step */

.process-step {
  position: relative;
  z-index: 1;
  transition: 0.4s ease;
}

/* Icon Wrapper */

.process-icon-wrapper {
  position: relative;
  display: inline-block;
}

/* Circle Icon */

.process-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px solid #fcdcd3;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #f1c8bb;
  transition: 0.4s ease;
}

/* Number Badge */

.process-number {
  position: absolute;
  top: 34px;
  right: -19px;
  background: #ef5023;
  color: #fff;
  font-size: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Title */

.process-step-title {
  font-weight: 600;
  margin: 25px 0;
}

/* Description */

/* .process-step-desc {
  font-size: 13px;
  color: #6c757d;
  margin-top: 10px;
} */

/* Hover & Active */

.process-step:hover .process-icon,
.process-step.active .process-icon {
  border-color: #ef5023;
  color: #ef5023;
  box-shadow: 0px 0px 8px 0px #f7a791;
}

.process-step:hover .process-step-title {
  color: #ef5023;
}

/* Responsive */

@media (max-width: 991px) {
  .process-steps-row::before {
    display: none;
  }
  .process-step {
    margin-bottom: 40px;
  }
}

/* ================= LATEST PROJECTS SECTION ================= */

.latest-projects-section {
  background: url("../media/project-bg.png") center center / cover no-repeat;
  position: relative;
}

.latest-projects-section .container {
  position: relative;
  z-index: 2;
}

/* Heading */

.projects-subtitle {
  color: #ffffff;
  display: block;
  margin-bottom: 15px;
}

.projects-title {
  color: #ffffff;
  margin-bottom: 40px;
}

/* Slider Item */

.project-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
}

/* Image */

.project-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: 0.5s ease;
  /* smooth zoom */
}

/* Gradient using pseudo element */

.project-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65%;
  background: linear-gradient(to top, rgba(36, 57, 92, 0.85), transparent);
  transition: 0.4s ease;
  z-index: 1;
}

/* Caption */

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
  /* keep text above gradient */
  transition:
    transform 0.4s ease,
    padding 0.4s ease;
}

.project-overlay h5 {
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
  transition: transform 0.4s ease;
}

/* Hover Effects */

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

.project-item:hover::after {
  background: linear-gradient(to top, rgba(239, 80, 35, 0.85), transparent);
}

.project-item:hover .project-overlay {
  padding-bottom: 40px;
}

.project-item:hover .project-overlay h5 {
  transform: translateY(-5px);
}

/* .portfolio-item:hover .portfolio-caption h6 {
  transform: translateY(-5px);
}

.portfolio-caption h6 {
  transition: transform 0.4s ease;
} */

/* Remove Owl Default Padding */

.latest-projects-slider .owl-stage {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Navigation */

.projects-navigation {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.projects-prev,
.projects-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #ff5e14;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.projects-prev:hover,
.projects-next:hover {
  background: #ffffff;
  color: #ff5e14;
}

.projects-view-btn {
  padding: 5px 28px;
  background: #ff5e14;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  height: 36px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.projects-view-btn:hover {
  background: #ffffff;
  color: #ff5e14;
}

.submit-btn:hover {
  background: #ff5e14 !important;
  color: white;
}

/* ================================
   CAR WASH BENEFITS SECTION
================================ */

.carwash-benefits-section {
  background: url("../media/why-choose-us.png") no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

/* Heading */

.section-subtitle {
  margin-bottom: 15px;
}

.section-title {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 25px;
}

/* Left Side */

.left-visual-wrapper {
  position: relative;
}

.feature-points {
  font-size: 16px;
  flex-wrap: wrap;
  gap: 50px;
}

/* Car */

.car-image {
  position: relative;
  z-index: 1;
  filter: blur(2px);
  opacity: 0.9;
}

/* Badge Logo */

.badge-logo {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: 450px;
  z-index: 2;
}

/* Product Cards */

.product-card {
  background: transparent;
}

.product-card img {
  max-height: 170px;
  object-fit: contain;
}

.product-name {
  background: #fff;
  border-radius: 30px;
  padding: 6px 15px;
  margin-top: 10px;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #ef5023;
  border: 1px solid #ef5023;
  box-shadow: 0px 3px 10px 0px #0000000d;
}

/* Responsive */

@media (max-width: 991px) {
  .left-visual-wrapper {
    margin-bottom: 50px;
    text-align: center;
  }
  .badge-logo {
    top: 50%;
    left: 50%;
  }
  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 24px;
  }
  .feature-points {
    justify-content: center !important;
    text-align: center;
  }
  .badge-logo {
    width: 160px;
  }
}

/* ==============================
   INSTALLATION APPOINTMENT
============================== */

.installation-appointment-section {
  background: #f2f2f2;
  /* padding: 80px 0; */
}

/* Form Styling */

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

/* .custom-input {
  border-radius: 30px;
  border: 1.5px solid #24395c;
  padding: 0 20px;
  font-size: 14px;
  background: transparent;
  background: #f2f2f2;
  box-shadow: none;
} */

.custom-input {
  border-radius: 30px;
  border: 1.5px solid #24395c;
  padding: 0 20px;
  padding-right: 45px;
  /* space for arrow */
  font-size: 14px;
  box-shadow: none;
  background-color: #f2f2f2;
  /* your background */
}

.custom-input:focus {
  box-shadow: none;
  border-color: #ef5023;
}

/* Active look for first input (as in screenshot) */

.active-input {
  border: 1.5px solid #ef5023;
}

.custom-textarea {
  border-radius: 20px;
  border: 1.5px solid #24395c;
  height: 120px;
  padding: 15px 20px;
  resize: none;
  background: transparent;
}

.custom-textarea:focus {
  border-color: #ef5023;
  box-shadow: none;
}

/* Submit Button */

.submit-btn {
  background: #2d3e5e;
  color: #fff;
  padding: 10px 40px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
}

.submit-btn:hover {
  background: #24395c;
}

/* Contact Card */

.contact-card {
  background: #ef5023;
  color: #fff;
  padding: 40px;
  border-radius: 25px;
}

.contact-card h5 {
  margin-bottom: 10px;
}

.social-icons span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #24395c;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 14px;
}

.social-icons span i {
  color: #fff;
}

/* Responsive */

@media (max-width: 991px) {
  .contact-card {
    margin-top: 40px;
  }
  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 24px;
  }
  .submit-btn {
    width: 100%;
  }
}

.testimonial-row {
  margin-bottom: 35px;
}

/* ===================================
   CLIENT LOGO SLIDER SECTION
=================================== */

.client-logo-slider-section {
  background: #eeeeee;
  /* exact light grey look */
  padding: 45px 0;
}

.client-logo-carousel .client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  /* keeps vertical alignment consistent */
}

.client-logo-carousel .client-logo-item img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Optional subtle hover (matches clean professional feel) */

.client-logo-carousel .client-logo-item img:hover {
  transform: scale(1.05);
}

/* =====================================
   CLIENT TESTIMONIALS SECTION
===================================== */

.client-testimonials-section {
  background: url("../media/testimonials-bg.png") no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

/* Title */

.testimonial-title {
  font-size: 42px;
  margin-bottom: 20px;
}

/* Description */

.testimonial-description {
  margin-bottom: 0px;
}

/* Button */

.view-testimonial-btn {
  background: #ef5023;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
}

.view-testimonial-btn:hover {
  background: #d8431a;
  color: #fff;
}

/* Card */

.testimonial-card {
  background: #24395c;
  border-radius: 24px;
  padding: 20px 20px;
  height: 100%;
}

.testimonial-header {
  margin-bottom: 20px;
}

/* Image */

.testimonial-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

/* Quote Icon */

.quote-icon {
  position: absolute;
  top: -5px;
  left: -5px;
  background: #ef5023;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
}

/* Stars */

.star-rating i {
  color: #ffc107;
  font-size: 14px;
}

/* Role */

.client-role {
  font-weight: 400;
  font-size: 14px;
}

/* Text */

.testimonial-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
}

/* Bottom Orange Line */

.testimonial-bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: #ef5023;
}

/* Responsive */

@media (max-width: 991px) {
  .testimonial-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .testimonial-title {
    font-size: 24px;
  }
  .testimonial-card {
    padding: 20px;
  }
  .view-testimonial-btn {
    width: 100%;
  }
}

.star-rating {
  margin-bottom: 10px;
}

/* .testimonial-owl-slider .col-lg-6 {
  width: 100%;
} */

/* ===================================
   FOOTER SECTION
=================================== */

.site-footer-section {
  background: #2f4467;
  /* Dark navy */
  padding: 60px 0 40px;
  position: relative;
}

/* Orange top line */

.footer-top-line {
  height: 6px;
  width: 100%;
  background: #ef5023;
  position: absolute;
  top: 0;
  left: 0;
}

.vertical-divider {
  display: inline-block;
  width: 1px;
  height: 14px;
  background-color: #fff;
  margin: 0 5px;
  vertical-align: middle;
}

/* Logo */

.footer-logo-wrapper {
  margin-bottom: 25px;
}

.footer-main-logo {
  max-width: 320px;
  height: auto;
}

/* Primary Menu */

.footer-primary-menu {
  margin: 25px 0 20px;
  padding: 0;
}

.footer-primary-menu li {
  margin: 0 18px;
}

.footer-primary-menu a {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-primary-menu a.active-link {
  color: #ef5023;
}

.footer-primary-menu a:hover {
  color: #ef5023;
}

/* Secondary Menu */

.footer-secondary-menu {
  margin-bottom: 25px;
}

.footer-secondary-menu li {
  margin: 0 16px;
}

.footer-secondary-menu a {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-secondary-menu a:hover {
  color: #ef5023;
}

/* Bottom Text */

.footer-bottom-text {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}

.footer-bottom-text a {
  color: #d9d9d9;
  text-decoration: none;
}

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

/* Responsive */

@media (max-width: 991px) {
  .footer-primary-menu li,
  .footer-secondary-menu li {
    /* display: block; */
    margin: 8px 0;
  }
  .footer-main-logo {
    max-width: 260px;
  }
}

@media (max-width: 576px) {
  .footer-main-logo {
    max-width: 220px;
  }
  .footer-bottom-text {
    font-size: 12px;
    line-height: 1.6;
  }
}

.solution-card-wrapper {
  padding-bottom: 25px;
  /* space for orange base */
  position: relative;
}

.solution-card-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 100%;
  height: 30px;
  background: #ef5023;
  border-radius: 0 0 24px 24px;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.4s ease;
  z-index: -5;
}

/* Show base on hover */

.solution-card-wrapper:hover::after {
  transform: scaleY(1);
}

.product-card-wrapper {
  padding-bottom: 25px;
  /* space for orange base */
  position: relative;
}

.product-card-wrapper:hover .product-card {
  box-shadow: 0px 10px 10px 0px #fcdcd3;
}

/* Custom Select Styling */

.custom-input {
  padding: 10px 14px;
}

/* Dropdown hover effect */

select.custom-input option:hover {
  background-color: #ef5023 !important;
  color: #ffffff !important;
}

/* Focus border color */

.custom-input:focus {
  border-color: #ef5023;
}

/* ===== WRAPPER ===== */

/* ===== WRAPPER ===== */

.carwash-owl-wrapper {
  position: relative;
}

/* Owl stage alignment */

.carwash-owl-slider .owl-stage {
  display: flex;
  align-items: center;
}

.carwash-owl-slider .owl-item.active {
  width: 200px !important;
}

.carwash-owl-slider .owl-item.active .carwash-slide-img {
  border-radius: 150px !important;
  height: 400px !important;
  width: 200px !important;
}

/* Image wrapper */

.carwash-slide-img {
  overflow: hidden;
  transition:
    transform 0.4s ease,
    width 0.4s ease;
}

/* Base image */

.carwash-slide-img img {
  width: 400px !important;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  /* default big */
  transition:
    border-radius 0.4s ease,
    transform 0.4s ease;
}

/* ===== LEFT IMAGE = PILL ===== */

.carwash-owl-slider .owl-item.thumb-item .carwash-slide-img img {
  border-radius: 200px;
  transform: scale(0.6);
  opacity: 0.8;
}

/* ===== RIGHT IMAGE = MAIN ===== */

.carwash-owl-slider .owl-item.main-item .carwash-slide-img img {
  border-radius: 20px;
  transform: scale(1);
  opacity: 1;
}

/* Adjust item widths */

.carwash-owl-slider .owl-item.thumb-item {
  width: 35%;
}

.carwash-owl-slider .owl-item.main-item {
  width: 65%;
}

/* ===== NAVIGATION ===== */

.carwash-owl-wrapper .owl-navigation {
  position: absolute;
  bottom: -50px;
  right: 40px;
  display: flex;
  gap: 10px;
}

.carwash-owl-wrapper .owl-navigation button {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  background: #3a4d6d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.carwash-owl-wrapper .owl-navigation button:hover {
  background: #ef5023;
}

.page-banner {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 550px;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(36, 57, 92, 0.6);
  z-index: 1;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.banner-title {
  /* font-size: 48px; */
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* ================= PAGE BANNER ================= */

/* .page-banner-section {
  position: relative;
  height: 450px;
  overflow: hidden;
}



.page-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 24, 48, 0.75);
}



.page-banner-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
} */

/* solution page start */

/* ================= SOLUTION PAGE SECTION ================= */

/* ================= SECTION ================= */

.solution-page-section {
  background: #ffffff;
  position: relative;
}

/* ================= HEADING ================= */

.solution-page-title {
  color: #24395c;
}

.solution-page-subtitle {
  color: #ef5023;
}

/* ================= CARD WRAPPER (IMPORTANT) ================= */

.solution-page-card-wrapper {
  padding-bottom: 25px;
  /* space for orange base */
  position: relative;
  z-index: 1;
}

/* ORANGE BASE */

.solution-page-card-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 100%;
  height: 30px;
  background: #ef5023;
  border-radius: 0 0 24px 24px;
  /* Animation */
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
  z-index: -1;
}

.solution-page-card-wrapper:hover::after {
  transform: scaleY(1);
}

/* ================= CARD ================= */

.solution-page-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.4s ease;
  position: relative;
  z-index: 2;
  /* keeps card above orange base */
  border: 1px solid #e9ecef;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

/* .solution-page-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
} */

/* ================= IMAGE ================= */

.solution-page-card-image img {
  height: 200px;
  object-fit: cover;
}

/* ================= BODY ================= */

.solution-page-card-body {
  padding: 30px 25px;
  position: relative;
}

/* ================= ICON ================= */

.solution-page-icon-wrapper {
  position: absolute;
  top: -50px;
  left: 25px;
}

.solution-page-icon {
  width: 100px;
  height: 100px;
  background: #24395c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid #fcdcd3;
  transition: 0.3s ease;
}

.solution-page-icon img {
  height: 65px;
  width: 65px !important;
}

/* ================= HOVER EFFECTS ================= */

.solution-page-card:hover .solution-page-icon {
  border-color: #ef5023;
}

.solution-page-card:hover .solution-page-card-title {
  color: #ef5023;
}

/* ================= TEXT ================= */

.solution-page-card-title {
  margin-top: 50px;
  color: #24395c;
  margin-bottom: 15px;
  transition: 0.3s ease;
}

.solution-page-card-text {
  max-width: 300px;
  margin-bottom: 15px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .solution-page-title {
    font-size: 32px;
  }
}

/* solution page end */

/* About page start */

/* ================= ABOUT INTRO ================= */

.about-intro-section {
  background: #ffffff;
}

/* .about-main-img {
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
} */

/* ================= ABOUT INTRO OVERLAP ================= */

.about-image-wrapper {
  position: relative;
  max-width: 520px;
}

/* Main Image */

.about-img-main img {
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Overlapping Image */

.about-img-overlap {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
}

.about-img-overlap img {
  border-radius: 20px;
  border: 6px solid #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Experience Badge */

.experience-badge {
  position: absolute;
  top: -30px;
  left: -30px;
  padding: 20px 25px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .about-image-wrapper {
    margin: auto;
  }
  .about-img-overlap {
    right: 0;
    bottom: -30px;
    width: 180px;
  }
  .experience-badge {
    top: -20px;
    left: 0;
  }
}

@media (max-width: 576px) {
  .about-img-overlap {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 20px;
    width: 100%;
  }
  .experience-badge {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 20px;
    display: inline-block;
  }
}

/* ================= WHY CHOOSE ================= */

.why-card {
  background: #ffffff;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.why-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: auto;
}

/* ================= EXPERIENCE ================= */

.experience-section {
  position: relative;
}

/* ================= STATS ================= */

.stats-section {
  background: #f8f9fb;
  /* background-image: url(../media/our-solution-bg.png); */
}

/* Smooth transition */

.experience-badge,
.experience-badge h4,
.experience-badge span {
  transition: all 0.4s ease;
}

/* HOVER ON WHOLE IMAGE WRAPPER */

.about-image-wrapper:hover .experience-badge {
  background: #ef5023;
  /* your orange */
}

/* Change text color to white */

.about-image-wrapper:hover .experience-badge h4,
.about-image-wrapper:hover .experience-badge span {
  color: #ffffff !important;
}

/* Smooth transition */

.why-card h5,
.why-icon,
.why-icon i {
  transition: all 0.4s ease;
}

/* Hover on card */

.why-card:hover .why-icon {
  background-color: #ef5023 !important;
  transform: scale(1.1);
}

.why-card:hover .why-icon i {
  color: #ffffff !important;
}

/* Change heading color on hover */

.why-card:hover h5 {
  color: #ef5023 !important;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .about-intro-section h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .experience-section h2 {
    font-size: 22px;
  }
}

/* About page end */

/* project page start */

/* ================= PORTFOLIO ITEM ================= */

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

/* Image */

.portfolio-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Bottom Gradient Overlay */

.portfolio-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65%;
  background: linear-gradient(to top, rgba(36, 57, 92, 0.85), transparent);
  transition: background 0.4s ease;
  z-index: 1;
}

/* Caption */

.portfolio-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  transition: transform 0.4s ease;
  /* smooth text movement */
}

/* Hover Effects */

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

.portfolio-item:hover::after {
  background: linear-gradient(to top, rgba(239, 80, 35, 0.85), transparent);
}

.portfolio-item:hover .portfolio-caption {
  transform: translateY(-10px);
  /* TEXT MOVES UP SMOOTHLY */
}

/* ================= MODAL ================= */

.modal-content {
  border-radius: 20px;
}

.carousel-item img {
  height: 500px;
  object-fit: cover;
}

/* .portfolio-item:hover .portfolio-caption {
    background: linear-gradient( to top, rgba(36, 57, 92, 1), rgba(36, 57, 92, 0.2));
} */

/* project page end */

/* Modal styling */

.modal-content {
  border-radius: 15px;
  border: none;
}

/* White Close Button */

.custom-close {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: #ffffff;
  opacity: 1;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Testimonials Page – Remove background */

.testimonials-page {
  background: none !important;
}

/* Remove bottom orange line */

.testimonials-page .testimonial-bottom-line {
  display: none;
}

/* Ensure slider styles don't interfere */

.testimonials-page .custom-testimonial-slider {
  display: block;
}

/* Prevent wrapping */

.product-tabs {
  flex-wrap: nowrap;
}

/* Enable horizontal scroll */

.tabs-scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  margin-bottom: 15px;
}

/* Ensure items don't shrink */

.product-tabs .nav-item {
  flex: 0 0 auto;
}

.map-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 500px;
}
/* Urna - 21.02 */
.place-zip p, .date-contact p {
    margin-bottom: 0;
}
.nav-item a{
	font-weight: 600;
}
.nav-item.active-link a {
    color: #ef5023;
}