/* Reset and Base Styles */

/* SVG Animation Styles */
/* .svg-container {
  width: 200px;
  position: relative;
  z-index: 1000;
  background-color: transparent;
  filter: opacity(0.7);
} */
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}
:root {
  --primary-color: #ff4b36;
  --secondary-color: #1a1a1a;
  --text-color: #333;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --dark-overlay: rgba(0, 0, 0, 0.7);
  --navbar-bg: #232323;
  --navbar-active: #ae2520;
  --navbar-text: #fff;
  --navbar-shadow: 0 1px 12px rgba(0,0,0,0.12);
  --logo-size: 74px;
  /*--menu-font: 'Montserrat', 'Poppins', Arial, sans-serif;*/
  --call-bg: #fff;
  --call-icon-bg: #f4e5df;
  --call-icon: #ae2520;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

section,
.container {
  overflow: hidden;
}
/* heading  */
.title11 {
  font-size: 2em; /* Same as default <h1> */
  font-weight: bold; /* Bold text */
  margin: 0.67em 0; /* Top & bottom margin */
  line-height: 1.2;
}
.title12 {
  font-size: 1.5em; /* Same as default <h2> */
  font-weight: bold; /* Bold text */
  margin: 0.83em 0; /* Top & bottom margin */
  line-height: 1.3;
}
.title13 {
  font-size: 1.25em; /* Same as default <h3> */
  font-weight: bold; /* Bold text */
  margin: 1em 0; /* Top & bottom margin */
  line-height: 1.4;
}
.title14 {
  font-size: 1.1em; /* Same as default <h4> */
  font-weight: bold; /* Bold text */
  margin: 1.33em 0; /* Top & bottom margin */
  line-height: 1.5;
}
/* Footer Styles */
.footer {
  background: var(--secondary-color);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.footer-column title13 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--white);
  position: relative;
  padding-bottom: 15px;
}

.footer-column title13::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition);
}

.footer-column:hover title13::after {
  width: 80px;
}

.footer-column ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-column ul li i {
  color: var(--primary-color);
}

.footer-map {
  grid-column: 4;
}

.map-container {
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 75, 54, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.address-info {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-top: 20px;
  transition: var(--transition);
}

.address-info:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.address-info i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 5px;
}

.address-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-map {
    grid-column: span 2;
    order: 1;
  }
}

@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-map {
    grid-column: 1;
    order: 1;
  }

  .map-container {
    height: 200px;
  }
}

.cursor-dot,
.cursor-circle {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, scale 0.2s ease;
  /* invert color */
  filter: invert(0.8);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background-color: #ff4a17;
  border-radius: 50%;
}

.cursor-circle {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: width 0.2s ease, height 0.2s ease, transform 0.2s ease;
}

/* Grow circle when hovering interactive elements */
.cursor-hover .cursor-circle {
  transform: scale(1.8);
  border-color: #ff4a17;
}

/* Click animation (shrink briefly) */
.cursor-click .cursor-circle {
  transform: scale(0.5);
  transition: transform 0.1s ease;
}

/* Hide on touch devices */
@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-circle {
    display: none !important;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.section {
  padding: 10px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header title12 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.section-header p {
  color: #666;
  font-size: 1.1rem;
}

/* Navbar Styles */
/* .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: 20px 0;
  transition: all 0.3s ease;
  transform: translateY(0);
  background: #fff7f0;
  background: linear-gradient(
    178deg,
    rgba(255, 250, 240, 1) 0%,
    rgba(252, 242, 227, 1) 50%,
    rgba(245, 232, 215, 1) 100%
  );
}

.navbar.scrolled {
  background: var(--white);

  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.hide {
  transform: translateY(-100%);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
  z-index: 1001;
}

.navbar.scrolled .logo {
  color: var(--primary-color);
}

.logo i {
  font-size: 2rem;
  margin-right: 10px;
}

.logo span {
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--secondary-color);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle {
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
}

.navbar.scrolled .nav-menu a {
  color: var(--text-color);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
} */

/* Hero Section */
.hero {
  /* height: 100vh; */
  position: relative;
  overflow: hidden;
  margin-top: 91px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.hero .swiper-slide {
  background: var(--secondary-color);
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5); /*  adjust opacity as needed */
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.slide-content .title11 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.slide-content title12 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-center {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
.primary-btn {
  background: var(--primary-color);
  color: var(--white);
}

.primary-btn:hover {
  background: #e63e2a;
  transform: translateY(-2px);
}

.secondary-btn {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}
#breadcrumb-section {
  /* background: var(--light-bg); */
  position: relative;
  padding: 50px 0;
  margin-top: 80px;
}
#breadcrumb-section::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: transparent;
  /* opacity: 0.3; */
  background: radial-gradient(
      circle,
      transparent 20%,
      #ffffff 20%,
      #ffffff 80%,
      transparent 80%,
      transparent
    ),
    radial-gradient(
        circle,
        transparent 20%,
        #ffffff 20%,
        #ffffff 80%,
        transparent 80%,
        transparent
      )
      17.5px 17.5px,
    linear-gradient(
        #fa9a00 1.4000000000000001px,
        transparent 1.4000000000000001px
      )
      0 -0.7000000000000001px,
    linear-gradient(
        90deg,
        #fa9a00 1.4000000000000001px,
        #ffffff 1.4000000000000001px
      ) -0.7000000000000001px 0;
  background-size: 35px 35px, 35px 35px, 17.5px 17.5px, 17.5px 17.5px;
}
/* Wrapper block */
.section-breadcrumb {
  text-align: left;
  margin-bottom: 10px;
}

/* The breadcrumb list */
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0;
  opacity: 1;
  color: #000000;
}



/* Breadcrumb links */
.breadcrumb-list a {
  color: var(--secondary-color); /* likely black */
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease, border-bottom 0.2s ease;
  border-bottom: 2px solid transparent;
}

.breadcrumb-list a:hover {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

/* Separator (arrow) */
.breadcrumb-separator {
  color: #000000;
  font-size: 1rem;
  font-weight: 900;
}

/* Last breadcrumb item */
.breadcrumb-current {
  color: #000000;
  font-weight: 900;
}
      .aboutp-container {
  overflow: hidden; /* contain floated image */
}

.aboutp-container img.aboutp-image {
  float: left;
  width: 40%;       /* set image width */
  margin: 0 20px 15px 0; /* gap around the image */
  border-radius: 8px;
}

.aboutp-content {
  overflow: hidden; /* ensures text clears below floated image properly */
}

@media (max-width: 768px) {
  .aboutp-container img.aboutp-image {
    float: none;
    width: 100%;
    margin: 0 0 15px 0;
  }
}

.aboutp-container ul {
  list-style: none; /* remove default bullets */
  padding-left: 1.5em; /* keep spacing */
  margin: 1em 0;
}

.aboutp-container li {
  position: relative;
  padding-left: 1.2em; /* space for custom bullet */
  margin-bottom: 8px;  /* gap between items */
}

.aboutp-container li::before {
  content: "•"; /* custom bullet character */
  color: #e60023; /* bullet color (e.g., red) */
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}
.aboutp-container p {
  font-weight: normal !important;
}


/* all product slider */
.product-swiper {
  padding: 20px 0;
  position: relative;
}

.product-swiper-slide {
  display: flex;
  justify-content: center;
}

.product-swiper-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
  max-width: 300px;
  width: 100%;
  transition: transform 0.3s;
}

.product-swiper-card:hover {
  transform: translateY(-5px);
}

.product-swiper-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-swiper-content {
  padding: 20px;
}

.product-swiper-content title13 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.product-swiper-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}
/* Navigation arrows */
.product-swiper-prev,
.product-swiper-next {
  color: #000;
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 40px;
  height: 40px;
  background-color: rgba(236, 145, 145, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.product-swiper-prev {
  left: 20px; /* Adjust as needed */
}

.product-swiper-next {
  right: 20px; /* Adjust as needed */
}

.product-swiper-prev:hover,
.product-swiper-next:hover {
  background-color: #ff4a17;
  color: #fff;
}
/* Inactive bullets */
.product-swiper .swiper-pagination-bullet {
  background-color: #ccc; /* Light grey */
  opacity: 1;
  transition: background-color 0.3s ease;
}

/* Active bullet (uses your primary color) */
.product-swiper .swiper-pagination-bullet-active {
  background-color: var(--primary-color); /* Already defined in your :root */
}

/* About Section */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 20px 0;
}

.about-content {
  padding-right: 30px;
}

.about-content title13 {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  position: relative;
}

.about-content title13::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition);
}

.about-content:hover title13::after {
  width: 100px;
}

.about-content p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border: 1px solid rgba(255, 75, 54, 0.1);
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 75, 54, 0.15);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-text {
  color: #666;
  font-size: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.feature-item span {
  color: #555;
  font-size: 1.1rem;
}

.about-image {
  position: relative;
}

.image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.image-wrap:hover img {
  transform: scale(1.1);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--primary-color);
  color: var(--white);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(255, 75, 54, 0.3);
  text-align: center;
}

.experience-badge .number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 1rem;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-content {
    padding-right: 0;
  }

  .about-image {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
.features-grid2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

@media (max-width: 900px) {
  .features-grid2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid2 {
    grid-template-columns: 1fr;
  }
}



.feature-card {
  text-align: center;
  padding: 30px;
  margin-bottom: 10px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Features Section */
.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.feature-box {
  background: var(--white);
  border-radius: 15px;
  padding: 40px 30px;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 75, 54, 0.1);
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 75, 54, 0.15);
}

.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 75, 54, 0.1) 0%,
    rgba(255, 75, 54, 0) 100%
  );
  opacity: 0;
  transition: var(--transition);
}

.feature-box:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 75, 54, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: var(--transition);
}

.feature-box:hover .feature-icon {
  background: var(--primary-color);
  transform: scale(1.1);
}

.feature-icon i {
  font-size: 2rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.feature-box:hover .feature-icon i {
  color: var(--white);
  transform: rotateY(360deg);
}

.feature-content title13 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.feature-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.7;
}

.feature-list {
  margin-top: 20px;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #555;
}

.feature-list li i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 0.9rem;
}

.section-subtitle {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
  /* background-color: white; */
  /* margin-left: 10px; */
}

/* Products Section */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.product-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(255, 75, 54, 0.1);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 75, 54, 0.1) 0%,
    rgba(255, 75, 54, 0) 100%
  );
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 75, 54, 0.15);
}

.product-card:hover::before {
  opacity: 1;
}

.product-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.product-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-content {
    display: flex;
  flex-direction: column;
  padding: 25px;
  position: relative;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.95) 100%
  );
}

.product-content title13 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.product-content title13::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition);
}

.product-card:hover .product-content title13::after {
  width: 100px;
}

.product-content p {
  color: #666;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.product-card .btn {
  transform: translateY(0);
  opacity: 1;
  transition: var(--transition);
}

.product-card:hover .btn {
  transform: translateY(-5px);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-content {
  padding: 20px;
  text-align: center;
}

/* Testimonials Section */
.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rating {
  color: #ffd700;
  margin-bottom: 20px;
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.client-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

/* Testimonials Section */
.testimonial-slider {
  padding: 30px 0;
  overflow: hidden;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  margin: 20px;
  height: 479px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border: 1px solid rgba(255, 75, 54, 0.1);
}

.testimonial-card::before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: -15px;
  left: 30px;
  font-size: 2.5rem;
  color: var(--primary-color);
  opacity: 0.1;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 75, 54, 0.15);
}

.testimonial-card:hover::before {
  transform: scale(1.2);
  opacity: 0.2;
}

.rating {
  margin-bottom: 20px;
  display: flex;
  gap: 5px;
}

.rating i {
  color: #ffc107;
  font-size: 1.2rem;
  transition: var(--transition);
}

.testimonial-card:hover .rating i {
  transform: scale(1.2);
}

.testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.testimonial-card:hover .client-info img {
  transform: scale(1.1) rotate(5deg);
}

.client-info div {
  flex: 1;
}

.client-info title14 {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.client-info span {
  color: #666;
  font-size: 0.9rem;
}

/* Custom Swiper Styles */

.testimonial-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  opacity: 0.3;
  transition: var(--transition);
}

.testimonial-slider .swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
  border-radius: 6px;
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: var(--transition);
}

.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  margin-top: 30px;
}

.contact-info {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b5b 100%);
  padding: 40px;
  border-radius: 20px;
  color: var(--white);
  height: fit-content;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.info-item:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.2);
}

.info-item i {
  font-size: 2rem;
  color: var(--white);
}

.info-item div title13 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--white);
}

.info-item div p {
  font-size: 1rem;
  opacity: 0.9;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  position: absolute;
  left: 15px;
  top: 0;
  font-size: 0.9rem;
  color: #666;
  transition: var(--transition);
  background: var(--white);
  padding: 0 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition);
  background: transparent;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 75, 54, 0.1);
}

.contact-form input:focus + label,
.contact-form textarea:focus + label,
.contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:not(:placeholder-shown) + label {
  top: -10px;
  font-size: 0.8rem;
  color: var(--primary-color);
}

.contact-form textarea {
  height: 150px;
  resize: none;
}

.contact-form .btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  margin-top: 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b5b 100%);
  border: none;
  color: var(--white);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.contact-form .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 75, 54, 0.2);
}

/* FAQ Section */
.faq-item {
  background: var(--white);
  border-radius: 5px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  transition: var(--transition);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 1000px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Footer */
.footer {
  background: var(--secondary-color);
  color: var(--white);
  padding: 80px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column title13 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-column ul li {
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive Styles */
/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  max-height: 60vh;
  overflow-y: auto;
  background: var(--white);
  /* border-radius: 8px; */
  padding: 1rem 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}
.test1 {
  padding :2px;
  border-bottom : 1px solid #fff;
}
.test1:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--primary-color);
  border-bottom : 1px solid #ae2526;
}
.dropdown-menu {
  scrollbar-width: thin; /* For Firefox */
  scrollbar-color: #ccc transparent; /* For Firefox */
}

/* For WebKit browsers like Chrome, Edge, Safari */
.dropdown-menu::-webkit-scrollbar {
  width: 6px; /* Set the scrollbar width */
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background-color: #ccc; /* Color of the scroll thumb */
  border-radius: 4px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: transparent; /* Optional: background of track */
}

.dropdown.active > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  display: block;
  margin: 0;
}

.dropdown-menu a {
  padding: 8px 20px;
  display: block;
  color: var(--text-color);
  transition: var(--transition);
}

/*.dropdown-menu a:hover {*/
/*  background: rgba(0, 0, 0, 0.05);*/
/*  color: var(--primary-color);*/
/*}*/

/* .nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 0;
}

.navbar.scrolled .nav-link {
  color: var(--text-color);
}

.nav-link:hover,
.navbar.scrolled .nav-link:hover {
  color: var(--primary-color);
}

.nav-link.active,
.navbar.scrolled .nav-link.active {
  color: var(--primary-color);
} */

/* Responsive Styles */
@media (max-width: 992px) {
  /* .nav-toggle {
    display: block;
  }

  .nav-container {
    padding: 0 15px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 0 40px;
    transition: var(--transition);
    overflow-y: auto;
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-link {
    padding: 12px 20px;
    color: var(--text-color);
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    background: #f8f9fa;
    box-shadow: none;
    padding: 0;
    max-height: 0;
    opacity: 1;
    visibility: hidden;
    transform: none;
    transition: max-height 0.3s ease, padding 0.3s ease;
    overflow: hidden;
  }

  .dropdown.active > .dropdown-menu {
    max-height: 1000px;
    visibility: visible;
    padding: 10px 0;
  }

  .dropdown-menu a {
    padding: 10px 30px;
  } */

  .slide-content .title11 {
    font-size: 3rem;
  }

  .slide-content title12 {
    font-size: 2rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 10px 0;
  }

  .section-header title12 {
    font-size: 2rem;
  }

  .slide-content .title11 {
    font-size: 2.5rem;
  }

  .slide-content title12 {
    font-size: 1.8rem;
  }
}

/* Animation Classes */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Swiper Custom Styles */
.swiper-button-next,
.swiper-button-prev {
  color: var(--white);
}

.swiper-pagination-bullet {
  background: var(--white);
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
}

/* Client Brands Slider Styles */
.client-slider-section {
  padding: 40px 0;
  background-color: #f9f9f9;
}

.client-slider-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.client-slider-wrapper {
  display: flex;
  align-items: center;
}

.client-slider-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.client-slider-slide img {
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: contain;
  /*filter: grayscale(100%);*/
  /*opacity: 0.9;*/
  opacity: 0.9;
  transition: all 0.3s ease;
}

/*.client-slider-slide img:hover {*/
/*  filter: grayscale(0%);*/
/*  opacity: 1;*/
/*}*/
/* .nav-btn {
  background-color: #ff4a3d;
  color: var(--white);
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  letter-spacing: 1px;
}
.nav-btn:hover {
  background-color: #e03e30;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  color: #888888;
} */


/* Reset */
nav, ul, li { margin: 0; padding: 0; }
ul { list-style: none; }

/* --- NAVBAR CORE --- */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100vw;
  z-index: 999;
  background: var(--navbar-bg);
  color: var(--navbar-text);
  box-shadow: var(--navbar-shadow);
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.navbar.hide {
  transform: translateY(-120%);
  transition: transform .22s cubic-bezier(.9,-0.07,.52,.95);
}
.navbar.scrolled {
  box-shadow: 0 2px 22px rgba(0,0,0,0.14);
}

/* --- NAV CONTAINER --- */
.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- LOGO --- */
.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo img {
  height: var(--logo-size);
  width: auto;
  display: block;
}

/* --- NAV MENU --- */
.nav-menu {
  display: flex;
  gap: 42px;
}
.nav-menu li { 
  position: relative;
   border-left: #fff 1px solid;
   display: flex;
   align-items: center;
  justify-content: space-between;

 }
.nav-link {
  font-family: var(--menu-font);
  font-size: 12.4px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--navbar-text);
  text-decoration: none;
  padding: 3px 0px 3px 18px ;
  transition: color 0.18s;
  position: relative;
}
.nav-link.active,
.nav-link:hover {
  color: var(--navbar-active);
}

/* --- RIGHT ICONS + CALL --- */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.text-clamp1 {
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    display: block !important;
    display: -webkit-box !important;
    overflow: hidden !important;
}

.text-clamp2 {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical !important;
    display: block !important;
    display: -webkit-box !important;
    overflow: hidden !important;
    margin-bottom : 14px;
}

.text-clamp3 {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical !important;
    display: block !important;
    display: -webkit-box !important;
    overflow: hidden !important;
}

.text-clamp4 {
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical !important;
    display: block !important;
    display: -webkit-box !important;
    overflow: hidden !important;
}



/* --- CALL BOX --- */
.call-box {
  background: var(--call-bg);
  border-radius: 0 0 1.4em 1.4em;
  display: flex;
  flex-direction: column;
  min-width: 168px;
  box-shadow: 0 2px 8px rgba(49, 49, 49, 0.11);
  padding: 6px 21px 6px 11px;
  margin-left: 6px;
}
.call-label {
  font-size: 13px;
  color: #7d7d7d;
  text-align: right;
  line-height: 1.1;
  font-family: var(--menu-font);
}
.call-number {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 18px;
  font-weight: 700;
  color: #343232;
  text-decoration: none;
  margin-top: 0px;
  font-family: var(--menu-font);
}
.call-number i {
  background: var(--call-icon-bg);
  color: var(--call-icon);
  border-radius: 50%;
  padding: 7px;
  font-size: 14px;
  margin-right: 2px;
}

/* --- HAMBURGER --- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navbar-text);
  font-size: 2rem;
  margin-left: 18px;
  cursor: pointer;
  z-index: 1200;
  outline: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
  .nav-container { padding: 0 13px; }
  .nav-menu { gap: 19px;}
  .call-box { min-width: 120px; padding: 4px 10px 4px 8px; }
}
@media (max-width: 992px) {
  .nav-toggle { display: block; }
  .nav-menu {
    flex-direction: column;
    position: fixed;
    left: -110vw; top: 0;
    width: 80vw; max-width: 310px;
    height: 100vh;
    background: var(--navbar-bg);
    z-index: 1200;
    gap: 0;
    align-items: flex-end;
    padding: 100px 0 20px 26px;
    transition: left 0.33s cubic-bezier(.32,0,.67,0.98);
  }
  .nav-menu.active { left: 0; }
  .nav-menu li {
    width: 100%;
    margin-bottom: 7px;
  }
  .nav-link {
    font-size: 12px;
    padding: 13px 0;
    width: 100%;
    letter-spacing: 0;
    padding-left: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
  }
  .nav-right { display: none; }
}
@media (max-width: 600px) {
  .logo img { height: 58px; padding-left: 5px;}
  .nav-container { padding: 0 5px; }
  .nav-menu {
    width: 100vw; max-width: 100vw; padding-left: 9px;
  }
  .nav-link { font-size: 16px; }
}

/* --- SHOW CALL BOX in mobile menu if wanted --- */
@media (max-width: 992px) {
  .nav-menu:after {
    content: '';
    display: block;
    margin-top: 22px;
  }
  /* Show call box at bottom of menu on small screens:
  .nav-menu::after {
    content: "";
    display: block;
    height: 60px;
  }
  .nav-menu .call-box {
    display: flex;
    margin: 18px 0 0 4px;
  }
  */
}

/* --- SCROLLBAR REMOVAL for nav-menu (side menu) --- */
.nav-menu { scrollbar-width: none; }
.nav-menu::-webkit-scrollbar { display: none; }

/* --- FONTS --- */
body, .nav-link, .call-box, .call-number, .call-label {
  font-family: var(--menu-font);
}

.what-app {
    position: fixed;
    z-index: 99;
}

.btn-whatsapp-pulse-border {
    bottom: 30px;
    left: 20px;
    animation-play-state: paused;
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 30px;
    right: 20px;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 34px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 25px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.what-app i {
    font-size: 54px;
    color: #fff;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

