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

/* Root Variables */
:root {
  font-family: "Urbanist", sans-serif;
  line-height: 1.5;
  font-weight: 400;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --buttonColor: #2a2c30;
  --secondaryColor: #3a3e44;
  --borderColor: #e3eaf0;
  --backgroundColor: #f7f7f7;
  --backgroundSecondary: #fefefe;
  --textColor: #1e1f23;
  --anchorColor: white;
  --main-color: #535bf2;
  --supporting-color: #ebf3fe;
  --glow-color: hsl(186, 91%, 4%);
}

/* Base HTML and Body */
html {
  font-size: 0.625rem;
  color: var(--textColor);
}

body {
  margin: 0 auto;
  padding: 0 1rem;
  min-width: 320px;
  background-color: var(--backgroundColor);
  animation: fadeIn 1s ease-in;
  will-change: opacity;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
  color: var(--main-color);
  transition: transform 0.3s ease;
  font-family: "Jost", sans-serif;
  font-weight: 800;
}

h1:hover, h2:hover, h3:hover {
  transform: translateY(-3px);
}

h1 { font-size: 3.2rem; }
h2 { font-size: 3.2rem; }

/* Text Elements */
p, li, a, label {
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  color: var(--textColor);
  line-height: 1.5;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
}

li { list-style: none; }

a {
  color: var(--anchorColor);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover { color: var(--main-color); }

a:focus-visible {
  outline: 2px solid var(--main-color);
  outline-offset: 2px;
}

/* Form Placeholders */
::placeholder {
  font-family: "Urbanist", sans-serif;
  line-height: 1.5;
  font-weight: 600;
  color: var(--secondaryColor);
}

/* Container */
.container {
  max-width: 142rem;
  margin: 0 auto;
  padding: 3.2rem 2.4rem;
  animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
  0% { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Grid Layouts */
.grid { display: grid; }

.grid-two--cols { grid-template-columns: repeat(2, 1fr); }
.grid-three--cols { grid-template-columns: repeat(3, 1fr); }
.grid-four--cols { grid-template-columns: repeat(4, 1fr); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.2rem 3.2rem;
  background-color: var(--main-color);
  color: var(--backgroundSecondary);
  text-transform: capitalize;
  border-radius: 0.6rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: 700;
  font-family: "Jost", sans-serif;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  background-color: var(--buttonColor);
  cursor: pointer;
}

.btn:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--main-color);
}

/* Toast Notification */
.toast {
  position: fixed;
  top: 2rem;
  right: 1.4rem;
  background-color: var(--buttonColor);
  color: var(--backgroundSecondary);
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1.6rem;
  z-index: 1000;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  animation: toastAnimation 2.5s ease-in-out;
  box-shadow: 0 0 10px var(--glow-color);
}

@keyframes toastAnimation {
  0% { transform: translateX(100%); opacity: 0; }
  20% { transform: translateX(0); opacity: 1; }
  80% { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

/* Top Text */
.top_txt {
  background-color: var(--buttonColor);
  color: var(--backgroundSecondary);
  font-size: 1.8rem;
  padding: 1rem;
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
  animation: fadeIn 1s ease-in;
}

/* Marquee */
.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  background-color: var(--buttonColor);
  padding: 1rem 0;
}

.marquee p {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 15s linear infinite;
  color: var(--backgroundSecondary);
  font-size: 1.8rem;
  font-weight: 700;
}

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

/* Navbar */
.section-navbar {
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  background-color: var(--backgroundSecondary);
}

.section-navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem;
  position: relative;
}

.navbar-brand a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-brand img {
  max-width: 50px;
  height: auto;
  margin-right: 10px;
  border: 2px solid var(--main-color);
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.1);
}

.navbar-brand p {
  margin: 0;
  font-size: 24px;
  color: var(--textColor);
  font-family: "Jost", sans-serif;
  font-weight: 700;
}

.section-navbar .navbar ul {
  display: flex;
  gap: 3.2rem;
  text-transform: capitalize;
  align-items: center;
}

.section-navbar .navbar ul li a {
  color: var(--textColor);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.6rem;
  display: inline-block;
  position: relative;
  transition: color 0.3s ease;
  font-family: "Jost", sans-serif;
}

.section-navbar .navbar ul li a:after {
  content: "";
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  width: 0%;
  border-bottom: 0.2rem solid var(--main-color);
  transition: width 0.3s ease;
}

.section-navbar .navbar ul li a:hover,
.section-navbar .navbar ul li a:focus-visible {
  color: var(--main-color);
}

.section-navbar .navbar ul li a:hover:after {
  width: 100%;
}

/* Main Content */
main {
  height: auto;
  position: relative;
  animation: pulse 10s ease-in-out infinite;
  will-change: opacity;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.95; }
}

/* Shape Divider */
.custom-shape-divider-bottom-1696038172 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 2;
}

.custom-shape-divider-bottom-1696038172 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 12rem;
}

.custom-shape-divider-bottom-1696038172 .shape-fill {
  fill: var(--backgroundSecondary);
}

/* Hero Section */
.section-hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.slideshow-container-fullscreen {
  position: relative;
  width: 100%;
  min-height: 50vh;
  overflow: hidden;
  z-index: 1;
}

.mySlides {
  display: none;
  width: 100%;
  height: auto;
}

.mySlides img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: brightness(0.7) contrast(1.05);
  transition: opacity 1.5s ease-in-out;
  display: block;
}

.fade {
  animation-name: fade;
  animation-duration: 2s;
}

@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* Action Buttons Section */
.section-action-buttons {
  padding: 4.8rem 2rem;
  background-color: var(--backgroundColor);
}

.section-action-buttons .container {
  gap: 3.2rem;
}

.action-card {
  background-color: var(--backgroundSecondary);
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 25rem;
  position: relative;
  overflow: hidden;
}

.action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.action-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.1) 50%);
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity 0.3s ease, background-position 0.3s ease;
  z-index: 0;
}

.action-card:hover::before {
  opacity: 1;
  background-position: -100% 0;
}

.action-content {
  z-index: 1;
}

.action-card h3 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--textColor);
}

.action-card p {
  font-size: 1.7rem;
  color: var(--secondaryColor);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3.5rem;
  font-size: 1.9rem;
  font-weight: 700;
  border-radius: 0.8rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.btn-book-now {
  background-color: #e74c3c;
}

.btn-book-now:hover {
  background-color: #c0392b;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-whatsapp-chat {
  background-color: #28a745;
}

.btn-whatsapp-chat:hover {
  background-color: #218838;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.action-btn i {
  font-size: 2.2rem;
}

/* Extra Section */
.div-extra {
  padding: 3.2rem 2.4rem;
  background-color: var(--backgroundSecondary);
  position: relative;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease-in;
}

.div-extra::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 15rem;
  height: 15rem;
  border-radius: 100% 0% 0% 100% / 100% 0% 100% 0%;
  background-color: var(--borderColor);
  z-index: 1;
  opacity: 0.3;
}

.div-extra p {
  text-transform: uppercase;
  font-size: 1.4rem;
  color: var(--main-color);
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
}

.div-extra h3 {
  font-size: 2.4rem;
  text-transform: capitalize;
  margin: 0.6rem 0 1.6rem 0;
  color: var(--main-color);
  font-weight: 800;
  font-family: "Jost", sans-serif;
}

.div-extra a {
  text-transform: uppercase;
  color: var(--buttonColor);
  border-bottom: 0.1rem solid var(--secondaryColor);
  transition: color 0.3s ease;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
}

.div-extra a:hover {
  color: var(--main-color);
}

.div-extra .extra-img {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.div-extra .extra-img img,
.div-extra .extra-laptop img {
  width: 100%;
  max-width: 16rem;
  max-height: 16rem;
  object-fit: cover;
  border: 2px solid var(--main-color);
  filter: brightness(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.div-extra .extra-img img:hover,
.div-extra .extra-laptop img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.div-extra:last-child img {
  transform: none;
}

.grid-three--cols {
  gap: 6.4rem;
}

/* Policy Section */
.section-policy .container {
  padding: 3.2rem 0;
  background-color: var(--backgroundSecondary);
  border-radius: 0.5rem;
  animation: fadeIn 1s ease-in;
}

.div-policy {
  padding: 3.2rem;
  display: flex;
  align-items: center;
  gap: 3.2rem;
  border-right: 0.1rem solid var(--borderColor);
  transition: transform 0.3s ease;
}

.div-policy:hover {
  transform: translateY(-5px);
}

.div-policy:last-child {
  border-right: none;
}

.div-policy .icons {
  font-size: 4rem;
  color: var(--main-color);
  animation: pulse 2s ease-in-out infinite;
}

.div-policy p {
  text-transform: capitalize;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
}

.div-policy p:last-child {
  font-size: 1.4rem;
}

/* Why Choose Section */
.section-why--choose .grid {
  gap: 9.6rem;
  align-items: center;
}

.why-choose--div {
  margin-bottom: 3.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose--div:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-why--choose .text-align--right .why-choose--div {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.section-why--choose .text-align--left .why-choose--div {
  align-items: start;
}

.common-text--highlight {
  color: var(--backgroundSecondary);
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: var(--main-color);
  border-radius: 50%;
  font-size: 1.6rem;
  display: inline-block;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
  font-family: "Jost", sans-serif;
}

.common-text--highlight:hover {
  transform: scale(1.1);
}

.section-common--title {
  margin: 0;
  font-size: 2.5rem;
  color: var(--main-color);
  font-family: "Jost", sans-serif;
}

.choose-center-div, .choose-center-div figure {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transform-origin: center;
}

.choose-center-div figure::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45rem;
  height: 45rem;
  border-radius: 50%;
  background-color: var(--main-color);
  z-index: -1;
  animation: circle 5s linear infinite alternate;
}

@keyframes circle {
  0% { background-color: #b3d0ff; }
  25% { background-color: #80b1ff; }
  50% { background-color: #4d91ff; }
  75% { background-color: #99c0ff; }
  100% { background-color: #3381ff; }
}

.choose-center-div figure::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50rem;
  height: 50rem;
  border-radius: 50%;
  background-color: transparent;
  border: 0.5rem solid var(--supporting-color);
  z-index: -1;
}

.choose-center-div img {
  width: 90%;
  max-width: 32rem;
  max-height: 32rem;
  object-fit: cover;
  border: 2px solid var(--main-color);
  filter: brightness(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.choose-center-div img:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

/* Locations Section */
.section-locations {
  padding-top: 0;
}

.section-locations .section-common--heading {
  text-align: left;
  margin-bottom: 4rem;
}

.locations-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 2.4rem;
}

.location-card {
  background-color: var(--backgroundSecondary);
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.location-card.coming-soon {
  cursor: not-allowed;
}

.location-card.coming-soon .location-icon-img,
.location-card.coming-soon .location-name {
  opacity: 0.4;
  filter: grayscale(80%);
}

.location-card.coming-soon:hover {
  transform: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.location-icon-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.location-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--textColor);
  margin: 0;
  text-align: center;
}

.status-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--main-color);
  color: var(--backgroundSecondary);
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* Contact Section */
.section-contact .grid {
  gap: 6.4rem;
}

.mb-3 { margin-bottom: 3.2rem; }

.contact-content .grid { gap: 6.4rem; }

label {
  text-transform: capitalize;
  display: block;
  color: var(--textColor);
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
}

input, textarea {
  width: 100%;
  padding: 1.4rem 2.4rem;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  border-radius: 0.5rem;
  transition: box-shadow 0.3s ease;
  font-weight: 600;
  background-color: var(--backgroundSecondary);
  border: 1px solid var(--borderColor);
  font-family: "Urbanist", sans-serif;
}

input:hover, textarea:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-submit {
  font-size: 1.8rem;
  border: none;
  font-weight: 700;
  background-color: var(--main-color);
  font-family: "Jost", sans-serif;
}

.btn-submit:hover {
  background-color: var(--buttonColor);
}

/* Footer */
footer {
  width: 100%;
  background: var(--buttonColor);
  color: var(--backgroundSecondary);
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  margin-top: 6.4rem;
  animation: fadeIn 1s ease-in;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  padding: 6rem 0;
}

.footer-container h4 {
  color: var(--backgroundSecondary);
  font-weight: 700;
  letter-spacing: 0.1rem;
  margin-bottom: 2.5rem;
  font-size: 1.8rem;
  font-family: "Jost", sans-serif;
}

.footer-container a {
  display: block;
  color: var(--borderColor);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  transition: color 0.3s ease;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
}

.footer-container a:hover {
  color: var(--backgroundSecondary);
}

.footer-container .content_1 p, .footer-container .content_4 p {
  color: var(--borderColor);
  margin: 2.5rem 0;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
}

.footer-container .content_4 input[type="email"] {
  background-color: var(--buttonColor);
  border: none;
  color: var(--backgroundSecondary);
  outline: none;
  padding: 1.4rem 0.8rem;
  width: 100%;
  border-radius: 0.5rem;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
}

.footer-container .content_4 .f-mail {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-container .content_4 .bx {
  color: var(--backgroundSecondary);
}

.f-design {
  width: 100%;
  color: var(--backgroundSecondary);
  text-align: center;
}

.f-design .f-design-txt {
  border-top: 1px solid var(--secondaryColor);
  padding: 1.6rem 0;
  color: var(--secondaryColor);
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
}

/* Product Containers */
#productContainer, #pestControlContainer, #trendingProductContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3.2rem;
  padding: 2rem 0;
}

.cards {
  background-color: var(--backgroundSecondary);
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cards:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.information.card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex-grow: 1;
}

.category {
  background-color: var(--main-color);
  color: var(--backgroundSecondary);
  padding: 0.5rem 1.5rem;
  font-size: 1.4rem;
  border-radius: 2rem;
  align-self: flex-start;
  font-weight: 600;
}

.imageContainer {
  width: 100%;
  height: 20rem;
  overflow: hidden;
  border-radius: 0.8rem;
}

.productImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid var(--main-color);
  transition: transform 0.3s ease;
}

.productImage:hover {
  transform: scale(1.05);
}

.productName {
  font-size: 2.2rem;
  color: var(--textColor);
  margin: 0.8rem 0;
  font-family: "Jost", sans-serif;
}

.productRating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #FFC107;
  font-size: 1.6rem;
}

.customerNumber {
  font-size: 1.6rem;
  color: var(--secondaryColor);
}

.productDescription {
  font-size: 1.6rem;
  color: var(--secondaryColor);
  line-height: 1.6;
  flex-grow: 1;
}

.productStock {
  font-size: 1.6rem;
  color: var(--textColor);
}

.productPriceElement {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 1rem 0;
}

.productPrice {
  font-size: 2rem;
  color: var(--textColor);
  font-weight: 700;
}

.productActualPrice {
  font-size: 1.6rem;
  color: var(--secondaryColor);
  text-decoration: line-through;
}

.more-details-btn {
  align-self: stretch;
  text-align: center;
  font-size: 1.6rem;
  padding: 1rem;
  background-color: var(--main-color);
  color: var(--backgroundSecondary);
  border-radius: 0.6rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.more-details-btn:hover {
  background-color: var(--buttonColor);
  transform: translateY(-2px);
}

.productQuantityElement, .productStockElement {
  display: flex;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.stockElement {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border: 0.2rem solid var(--borderColor);
  border-radius: 0.8rem;
  margin: 0.8rem 0;
}

.stockElement button {
  background-color: transparent;
  color: var(--buttonColor);
  font-size: 2rem;
  padding: 0.6rem 2rem;
  font-weight: 700;
  border: none;
  transition: background-color 0.3s ease;
  font-family: "Jost", sans-serif;
}

.stockElement button:hover {
  background-color: var(--main-color);
  color: var(--backgroundSecondary);
  cursor: pointer;
}

.stockElement button:focus-visible {
  outline: 2px solid var(--main-color);
  outline-offset: 2px;
}

.stockElement button:first-child {
  border-right: 0.1rem solid var(--borderColor);
}

.stockElement button:last-child {
  border-left: 0.1rem solid var(--borderColor);
}

.productQuantity {
  padding: 0rem 3rem;
  margin: 0;
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
}

#cartValue {
  background-color: var(--buttonColor);
  color: var(--backgroundSecondary);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
}

.add-to-cart-button, .contact-btn, .hero-btn a {
  font-weight: 700;
  font-size: 1.6rem;
  font-family: "Jost", sans-serif;
  border-radius: 6px;
  border: 0;
  padding: 1rem 2.8rem;
  background-color: var(--main-color);
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.add-to-cart-button:hover, .contact-btn:hover, .hero-btn a:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  background-color: var(--buttonColor);
  color: var(--backgroundSecondary);
  animation: bounce 0.3s ease;
}

@keyframes bounce {
  0%, 100% { transform: scale(1.1); }
  50% { transform: scale(1.15); }
}

.add-to-cart-button .fa-cart-shopping {
  padding-right: 1rem;
}

#productCartContainer {
  display: flex;
  flex-direction: column;
}

#productCartContainer .cards {
  width: 100%;
  max-width: 100%;
  margin: 0;
  box-shadow: none;
  border-top: 0.1rem solid var(--borderColor);
  border-right: 0.1rem solid var(--borderColor);
  border-left: 0.1rem solid var(--borderColor);
  border-radius: 0;
  background-color: var(--backgroundSecondary);
}

#productCartContainer .cards:last-child {
  border-bottom: 0.1rem solid var(--borderColor);
}

#productCartContainer .card {
  width: 100%;
  display: grid;
  grid-template-columns: 0.5fr 0.5fr 1fr 0.5fr 1fr 1fr;
  align-items: center;
  gap: 3.2rem;
}

#productCartContainer .productImage {
  width: 100%;
  max-width: 16rem;
  max-height: 16rem;
  object-fit: cover;
  border: 2px solid var(--main-color);
  filter: brightness(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#productCartContainer .productName {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Jost", sans-serif;
}

#productCartContainer .productPrice, #productCartContainer .productActualPrice {
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
}

.productCartTotalElem {
  display: flex;
  justify-content: end;
  width: 100%;
  margin-top: 3.2rem;
}

.productCartTotalElement {
  padding: 2.4rem;
  background-color: var(--backgroundSecondary);
  height: auto;
  width: 32rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
}

.productOrderTotal {
  max-width: 30rem;
}

.productOrderTotal div {
  display: flex;
  justify-content: space-between;
  margin-top: 3.2rem;
}

.productOrderTotal p {
  color: var(--secondaryColor);
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
}

.productOrderTotal .productSubTotal, .productOrderTotal .productFinalTotal, .productOrderTotal .productTax {
  color: var(--textColor);
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
}

/* Contact Page */
.contact-action-panel {
  background-color: var(--backgroundSecondary);
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-action-panel h3 {
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  color: var(--main-color);
  margin-bottom: 3rem;
}

.promise-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.promise-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.promise-icon {
  flex-shrink: 0;
  width: 4.5rem;
  height: 4.5rem;
  background-color: var(--supporting-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: var(--main-color);
}

.promise-text h4 {
  font-size: 1.8rem;
  color: var(--textColor);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.promise-text p {
  font-size: 1.5rem;
  color: var(--secondaryColor);
  line-height: 1.6;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid var(--borderColor);
  padding-top: 2rem;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  border-radius: 0.8rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn i {
  font-size: 2rem;
}

.btn-call {
  background-color: var(--main-color);
}

.btn-whatsapp {
  background-color: #25D366;
}

.section-contact {
  padding-bottom: 6rem;
}

.section-common--heading {
  font-size: 4rem;
  font-weight: 800;
  text-align: left;
  color: var(--main-color);
  margin-bottom: 1rem;
}

.section-common--subheading {
  font-size: 1.8rem;
  color: var(--secondaryColor);
  text-align: left;
  max-width: 70rem;
  margin: 0 0 5rem 0;
}

.contact-container {
  align-items: flex-start;
  gap: 4.8rem;
}

.contact-container:has(.contact-form:not(*)) {
  justify-content: center;
}

.contact-form {
  padding: 3rem;
  background-color: var(--backgroundSecondary);
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  animation: slideIn 1s ease-out;
}

.form-group {
  margin-bottom: 2.4rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--textColor);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid var(--borderColor);
  border-radius: 0.5rem;
  font-size: 1.6rem;
  font-family: 'Urbanist', sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--main-color);
  box-shadow: 0 0 0 3px hsla(237, 82%, 62%, 0.3);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
  gap: 2.4rem;
  width: 100%;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem;
  background-color: var(--backgroundSecondary);
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.info-card .icon-bg {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  background-color: var(--supporting-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.info-card .icon-bg i {
  font-size: 2rem;
  color: var(--main-color);
}

.info-text h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: var(--main-color);
}

.info-text p,
.info-text a {
  font-size: 1.6rem;
  color: var(--secondaryColor);
  line-height: 1.6;
}

.info-text a {
  color: var(--main-color);
  font-weight: 700;
  text-decoration: none;
  position: relative;
}

.info-text a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--main-color);
  transition: width 0.3s ease;
}

.info-text a:hover::after {
  width: 100%;
}

.address-group {
  margin-bottom: 1.5rem;
}

.address-group:last-child {
  margin-bottom: 0;
}

.address-group strong {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--textColor);
  display: block;
  margin-bottom: 0.5rem;
}

/* Client Logos Section */
.section-client-logos {
  padding: 4rem 0;
  background-color: var(--backgroundColor);
  overflow: hidden;
  white-space: nowrap;
  margin-top: 4.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.section-client-logos .section-common--heading {
  text-align: left;
  margin-bottom: 3rem;
  color: var(--main-color);
  font-size: 4rem;
}

.client-logo-slideshow {
  display: flex;
  align-items: center;
  animation: scrollLogos 25s linear infinite;
}

/************ CORRECTED CODE STARTS HERE ************/
.client-logo-slideshow img {
  height: 80px;
  margin: 0 2rem;
  object-fit: contain;
  filter: none; /* Ensures no grayscale or other filters are applied */
  mix-blend-mode: normal; /* Ensures correct color blending */
  transition: transform 0.3s ease;
}

.client-logo-slideshow img:hover {
  transform: scale(1.05); /* Optional: Adds a nice hover effect */
}
/************ CORRECTED CODE ENDS HERE ************/

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

/* Testimonials Section */
.section-testimonials {
  padding: 6.4rem 0;
  background-color: var(--backgroundColor);
}

.section-testimonials .container {
  text-align: center;
}

.section-testimonials .section-common--heading {
  margin-bottom: 1.5rem;
}

.section-testimonials .section-common--subheading {
  max-width: 100rem;
}

.testimonials-slideshow {
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
}

.testimonials-slideshow-inner {
  display: inline-flex;
  align-items: center;
  animation: scrollTestimonials 20s linear infinite;
}

.testimonials-slideshow-inner img {
  width: 18%;
  height: auto;
  margin: 0 10px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--main-color);
  box-sizing: border-box;
  object-fit: cover;
}

.testimonials-slideshow-inner:hover {
  animation-play-state: paused;
}

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

/* Modal Styles for Service Details */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.modal-content {
  background-color: var(--backgroundSecondary);
  margin: auto;
  padding: 2.5rem;
  border-radius: 1rem;
  width: 100%;
  max-width: 50rem;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease-in;
}

.close-modal-btn {
  position: absolute;
  top: 1rem; /* Adjusted to move up */
  right: 2.5rem; /* Moved further right to avoid image overlap */
  font-size: 3rem; /* Slightly larger for prominence */
  color: #e74c3c; /* Brighter red for better visibility */
  font-weight: 700; /* Bold */
  cursor: pointer;
  background-color: var(--backgroundSecondary); /* White background */
  border-radius: 50%; /* Circular shape */
  width: 4rem; /* Fixed width */
  height: 4rem; /* Fixed height */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  transition: color 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.close-modal-btn:hover {
  color: #c0392b; /* Darker red on hover */
  background-color: #f4f4f4; /* Slightly darker background on hover */
  transform: scale(1.1); /* Scale up on hover */
}

.modal-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.modal-img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  border-radius: 0.8rem;
  border: 2px solid var(--main-color);
}

.modal-header-text h2 {
  font-size: 2.4rem;
  color: var(--textColor);
  margin: 0;
}

.modal-header-text p {
  font-size: 1.6rem;
  color: var(--secondaryColor);
}

.modal-body h3 {
  font-size: 2rem;
  color: var(--main-color);
  margin-bottom: 1rem;
}

.modal-body p {
  font-size: 1.6rem;
  color: var(--secondaryColor);
  line-height: 1.6;
}

.modal-price-stock {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.modal-price-stock p {
  font-size: 1.6rem;
  color: var(--textColor);
}

.modal-footer {
  text-align: right;
}

.modal-footer .btn {
  font-size: 1.6rem;
  padding: 1rem 2rem;
  background-color: #28a745;
}

.modal-footer .btn:hover {
  background-color: #218838;
}

/* Responsive adjustments for testimonials slideshow */
@media (max-width: 1024px) {
  .testimonials-slideshow-inner img {
    width: 28%;
  }
}

@media (max-width: 768px) {
  .testimonials-slideshow-inner img {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .testimonials-slideshow-inner img {
    width: 80%;
  }
}

.more-reviews-btn-container {
  margin-bottom: 4.8rem;
  text-align: center;
}

.btn-more-reviews {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 3.2rem;
  background-color: var(--main-color);
  color: var(--backgroundSecondary);
  border-radius: 0.6rem;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn-more-reviews:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  background-color: var(--buttonColor);
}

.btn-more-reviews i {
  font-size: 1.8rem;
}

/* Reduced Motion Optimization */
@media (prefers-reduced-motion: reduce) {
  main,
  .marquee p,
  .choose-center-div figure::before,
  .toast,
  .div-policy .icons,
  .testimonials-slideshow-inner {
    animation: none;
  }
}

/* Media Queries */
@media (max-width: 1380px) {
  html {
    font-size: 0.5625rem;
  }
}

@media (max-width: 1220px) {
  html {
    font-size: 0.54rem;
  }
  .section-why--choose .grid,
  .section-contact .grid {
    gap: 6.4rem;
  }
  .choose-center-div figure::after {
    width: 46rem;
    height: 46rem;
  }
}

@media (min-width: 769px) {
  .section-navbar .navbar {
    display: flex !important;
    position: static;
    flex-direction: row;
    box-shadow: none;
    padding: 0;
    transform: translateX(0) !important;
  }
  .section-navbar .navbar ul {
    flex-direction: row;
    align-items: center;
  }
  .menu-toggle {
    display: none !important;
  }
  .close-menu {
    display: none !important;
  }
  .slideshow-container-fullscreen {
    min-height: 60vh;
    max-height: 100vh;
  }
}

@media (max-width: 1100px) {
  .grid-four--cols {
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
  }
  .custom-shape-divider-bottom-1696038172 svg {
    height: 8rem;
  }
  .section-why--choose {
    & .choose-left-div {
      order: 2;
    }
    & .choose-center-div {
      order: 1;
      & figure::before, & figure::after {
        width: 0;
        height: 0;
        background-color: transparent;
        display: none;
      }
    }
    & .choose-right-div {
      order: 3;
    }
  }
  .section-contact .grid-two--cols {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
}

@media (max-width: 980px) {
  body {
    padding: 0 0.6rem;
  }
  .slideshow-container-fullscreen {
    min-height: 40vh;
  }
  footer {
    padding: 0 1.6rem;
  }
  .footer-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(33%, 1fr));
    & .content_1 {
      grid-column: 1 / -1;
      margin-bottom: 3.2rem;
    }
    & .content_4 {
      margin-top: 3.2rem;
    }
  }
  .contact-container.grid-two--cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .grid-two--cols,
  .section-contact .grid-two--cols,
  .grid-three--cols {
    grid-template-columns: 1fr;
  }
  .slideshow-container-fullscreen {
    min-height: 35vh;
  }
  #productContainer, #pestControlContainer, #trendingProductContainer {
    grid-template-columns: 1fr;
  }
  #productCartContainer .card {
    grid-template-columns: 0.5fr 0.1fr repeat(2, 1fr);
    gap: 3.2rem;
  }
  .productQuantity {
    text-align: center;
  }
  .stockElement {
    grid-column: 1 / 4;
  }
  .remove-to-cart-button {
    grid-column: 4 / -1;
  }
  .section-navbar .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .section-navbar .navbar {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background-color: var(--backgroundSecondary);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 16px 0px;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    padding-top: 6rem;
  }
  .section-navbar .navbar.active {
    transform: translateX(0);
  }
  .section-navbar .navbar ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: flex-start;
    padding: 0;
  }
  .section-navbar .navbar ul li {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid var(--borderColor);
  }
  .section-navbar .navbar ul li:last-child {
    border-bottom: none;
  }
  .section-navbar .navbar ul li a {
    padding: 1.5rem 2.4rem;
    display: block;
    width: 100%;
    color: var(--textColor);
    font-size: 1.8rem;
  }
  .section-navbar .navbar ul li a:hover {
    background-color: var(--supporting-color);
  }
  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 2.8rem;
    color: var(--textColor);
    position: static;
    margin-left: auto;
  }
  .close-menu {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 2.4rem;
    font-size: 3.5rem;
    color: var(--textColor);
    cursor: pointer;
    z-index: 101;
    transition: color 0.3s ease;
  }
  .close-menu:hover {
    color: var(--main-color);
  }
  .section-why--choose {
    & img {
      width: 30%;
    }
    & .grid {
      gap: 1.4rem;
    }
    & .text-align--right .why-choose--div {
      align-items: flex-start;
    }
    & .choose-left-div {
      text-align: left;
    }
  }
  .section-contact--homepage .btn {
    display: block;
    text-align: center;
  }
  .section-contact--homepage .container:first-child {
    padding: 6.4rem 0rem 2.4rem 0rem;
  }
  .footer-container .content_2 {
    display: block;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 0.52rem;
  }
  .slideshow-container-fullscreen {
    min-height: 30vh;
  }
  .section-hero .hero-heading {
    font-size: 3.2rem;
  }
  .section-hero .hero-subheading {
    font-size: 1.4rem;
  }
  .btn {
    padding: 1rem 2rem;
    font-size: 1.4rem;
  }
  .section-hero img {
    width: 100%;
  }
  .navbar-brand p {
    font-size: 2rem;
  }
  .navbar-brand img {
    max-width: 40px;
  }
  .menu-toggle {
    font-size: 2.4rem;
  }
  .close-menu {
    font-size: 3rem;
    right: 1.8rem;
  }
  .footer-container .content_1 img {
    max-width: 14rem;
  }
  .client-logo-slideshow img {
    height: 50px;
    margin: 0 1rem;
  }
  .section-client-logos .section-common--heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  .modal-content {
    max-width: 90%;
    padding: 2rem;
  }
  .modal-img {
    height: 15rem;
  }
}

.fapico-scroll-container {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  padding: 20px 0 20px 20px; /* top right bottom left */
}

.fapico-scroll-container::-webkit-scrollbar {
  display: none;
}

.fapico-video-wrapper {
  position: relative;
  flex: 0 0 auto;
  width: 250px;
  height: 420px;
  scroll-snap-align: center;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  margin: 0 auto;
}

.fapico-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fapico-mute-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
}

/* Mobile View Optimization (max-width: 768px) */
@media (max-width: 768px) {
  .fapico-scroll-container {
    padding: 15px 0 15px 10px; /* Reduced padding for tighter layout */
    gap: 10px; /* Reduced gap between videos */
    justify-content: flex-start; /* Allow horizontal scroll with centered items */
  }

  .fapico-video-wrapper {
    width: 180px; /* Further reduced width for mobile */
    height: 300px; /* Adjusted height to maintain aspect ratio */
    border-radius: 8px; /* Slightly smaller radius for mobile */
    margin: 0 5px; /* Small margin for spacing */
  }

  .fapico-video-wrapper video {
    object-fit: contain; /* Switch to contain to avoid cropping on small screens */
  }

  .fapico-mute-btn {
    bottom: 8px; /* Reduced bottom padding */
    right: 8px; /* Reduced right padding */
    padding: 6px 10px; /* Smaller padding for button */
    font-size: 12px; /* Smaller font size */
    border-radius: 15px; /* Adjusted radius */
  }
}

/* Extra Small Devices (max-width: 480px) */
@media (max-width: 480px) {
  .fapico-video-wrapper {
    width: 150px; /* Even smaller for very small screens */
    height: 250px; /* Adjusted height */
  }

  .fapico-mute-btn {
    padding: 5px 8px; /* Further reduced padding */
    font-size: 10px; /* Smaller font */
    border-radius: 12px; /* Adjusted radius */
  }
}