:root {
  --primary-color: #01af53;
  --secondary-color: #000;
  --light-gray: #f5f5f5;
  --gradient: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  --white: #fff;
}

/* Base styles */
html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: var(--white);
}

a,
a:hover {
  text-decoration: none !important;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.c-brand {
  color: var(--primary-color) !important;
}
.c-brand1 {
  color: var(--secondary-color) !important;
}
h1,
h2 {
  font-size: 50px;
  color: var(--white);
}

.c-brand {
  color: var(--primary-color) !important;
}
/* Responsive padding and margin */
.cmpad {
  padding-left: 80px;
  padding-right: 80px;
}

.cmmt {
  margin-top: 70px;
}

@media (min-width: 1366px) {
  .cmpad {
    max-width: 1526.4px;
    margin: 0 auto;
  }
}

@media (max-width: 1366px) {
  .cmmt {
    margin-top: 60px;
  }
}

@media (max-width: 991px) {
  .cmpad {
    padding: 0 40px;
  }

  .cmmt {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .cmpad {
    padding: 0 15px;
  }

  .cmmt {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  html {
    font-size: 90%;
  }
}

/* Custom Scrollbar */
@media (min-width: 768px) {
  ::-webkit-scrollbar {
    width: 10px;
    height: 6px;
  }

  ::-webkit-scrollbar-track {
    background-color: #eee;
  }

  ::-webkit-scrollbar-thumb {
    background-color: #3a3a3a;
  }

  ::-webkit-scrollbar-thumb:hover {
    background-color: #444;
  }
}

/* Buttons */
.main-btn,
.comn-btn {
  background: var(--gradient);
  padding: 10px 20px;
  border-radius: 30px;
  color: var(--white);
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  width: fit-content;
}
.comn1-btn {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  width: fit-content;
  border-radius: 30px;
}
.main-btn:hover,
.comn1-btn {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.about-main-content-box .comn1-btn:hover {
  background: var(--gradient);
  color: var(--white);
  border: 1px solid var(--primary-color);
}
.service-slide-content-box .comn-btn:hover {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.comn1-btn:hover {
  background: var(--gradient);
  border: 1px solid var(--primary-color);
}

.sub-btn {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  display: flex;
  align-items: center;
  border-radius: 30px;
  padding: 10px 20px;
  gap: 10px;
  transition: all 0.3s ease;
}

.sub-btn:hover {
  color: var(--white);
  border: 1px solid var(--primary-color);
  background: var(--gradient);
}

.main-head {
  color: var(--primary-color);
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
  width: fit-content;
  margin-bottom: 20px;
}

.main-head::after {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  left: 0;
  border-radius: 10px;
}

.sub-head {
  color: var(--secondary-color);
  font-size: 27px;
  font-weight: 700;
}

.text {
  font-size: 15px;
  color: var(--secondary-color);
  text-align: justify;
}

/* Header */
.nav-item.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border: 1px solid var(--primary-color);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-item {
  padding: 10px 15px;
  display: block;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-item:hover {
  background-color: #01af531c;
  color: var(--secondary-color);
  border-radius: 3px;
}

.nav-item.dropdown:hover > .dropdown-menu {
  display: block;
  padding: 10px;
}

.menu-bar {
  background-color: transparent;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 10px 50px;
  transition: background-color 0.3s ease;
}

/*.menubg {*/
/*  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));*/
/*  border-radius: 50px;*/
/*  padding: 0px 6px;*/
/*}*/

.menubg {
  background: linear-gradient(to right, #ffffff, rgb(255 255 255 / 41%));
  border-radius: 50px;
  padding: 0px 6px;
}


.menu-bar.scrolled {
  background-color: var(--white);
}

.menu-bar.scrolled .logo {
  width: 150px;
}

.menu-bar.scrolled .menu-link {
  color: var(--secondary-color);
}

.menu-bar.scrolled .menu-link:hover {
  color: var(--primary-color);
}

.menu-bar.scrolled .main-btn:hover {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.menu-link {
  color: var(--secondary-color);
  margin: 0 20px;
  position: relative;
  transition: color 0.3s ease;
  cursor: pointer;
}

.menu-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--gradient);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-link:hover::after,
.menu-link.active::after {
  opacity: 1;
}

.menu-link.active {
  color: var(--secondary-color) !important;
}

/* Hamburger */
.hamburger {
  cursor: pointer;
  display: inline-block;
}

.hamburger svg {
  height: 2em;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
  fill: none;
  stroke: var(--primary-color, #000);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  transition: stroke-dasharray 600ms, stroke-dashoffset 600ms;
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

#menu-toggle:checked + .navbar-toggler .hamburger svg {
  transform: rotate(-45deg);
}

#menu-toggle:checked + .navbar-toggler .hamburger svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}
.navbar-toggler {
  padding: 0px;
  border: 0px;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0;
}
/* Banner */
.banner-box {
  height: 100vh;
  width: 100%;
  border-radius: 0 0 30px 30px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  background-position: center;
}

.banner-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0), rgb(0, 0, 0));
  border-radius: 0 0 30px 30px;
  z-index: 1;
}

.banner-box-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  position: relative;
  z-index: 2;
}

.banner-box-content p {
  font-size: 20px;
  color: var(--white);
}

/* Owl Dots for Banner */
.banner .owl-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 5;
}

.banner .owl-dots .owl-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: var(--white);
  border-radius: 50%;
  transition: background 0.3s ease;
}

.banner .owl-dots .owl-dot.active {
  background: var(--primary-color);
}

/* About Section */
.about-main-content-box .text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.about-main-point-box {
  background-color: #01af5321;
  padding: 30px;
  border-radius: 10px;
}

.about-main-point-box span {
  color: var(--primary-color);
}

.about-main-img {
  width: 100%;
  height: 500px;
  object-fit: contain;
}

/* Services */
.service-slide-box {
  width: 100%;
}

.service-slide-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.service-slide-content-box {
  background-color: var(--light-gray);
  margin: 10px;
  padding: 40px 20px 30px;
  position: relative;
  top: -100px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.service-slide-content-box h5 {
  font-size: 18px;
  color: var(--secondary-color);
}

.service-slide-content-box .text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.service-slide-icon-box {
  width: 55px;
  height: 55px;
  background-color: var(--white);
  position: relative;
  top: -65px;
  left: 75%;
  z-index: 2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-slide-icon-box img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* Why Choose Us */
.why-choose-box {
  width: 100%;
  padding: 50px 20px 20px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  border-left: 1px solid var(--primary-color);
  border-top: 1px solid var(--primary-color);
  border-radius: 3px 0 0 0;
  position: relative;
}

.why-choose-box-count {
  position: absolute;
  width: 50px;
  height: 50px;
  top: -25px;
  left: 10%;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-box-count span {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.why-choose-box h3 {
  font-size: 16px;
  font-weight: 600;
}

.why-choose-box p {
  font-size: 13px;
  font-weight: 400;
  text-align: justify;
}

.why-choose-bg {
  position: relative;
}

.shape1 {
  position: absolute;
  bottom: -70px;
  left: 0;
  z-index: -1;
  opacity: 20%;
}

/* Testimonials */
.testimonial-bg {
  background-color: var(--light-gray);
  padding: 50px 0;
}

.testimonial-icon {
  font-size: 60px;
  color: var(--primary-color);
}

.testimonial-bg h6 {
  font-size: 25px;
  font-weight: 400;
}

.testimonials-content-box {
  background-color: var(--white);
  padding: 20px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 81%, 33px 82%, 0 95%, 10px 0%, 0 100%);
  min-height: 200px;
}

.testimonials-content-box .text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stars {
  margin-bottom: 30px;
  color: var(--primary-color);
}

.author {
  display: flex;
  align-items: center;
  margin-top: -20px;
  margin-left: 23px;
  gap: 10px;
}

.author img {
  width: 40px !important;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 11px;
  color: var(--secondary-color);
  font-weight: 400;
}

.testimonials .owl-nav {
  left: -20%;
  position: absolute;
  display: flex;
  gap: 40px;
  color: var(--primary-color);
  font-size: 20px;
  bottom: -4px;
}

.testimonials .owl-next {
  color: var(--secondary-color) !important;
  transition: all 0.3s ease;
}

.testimonials .owl-next:hover {
  color: var(--primary-color) !important;
}

.testimonials .owl-dots {
  margin-top: 20px;
}

/* Gallery */
.gallery-tab-link {
  padding: 7px 20px;
  background: var(--gradient);
  border-radius: 20px;
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  transition: background 0.4s ease, color 0.4s ease;
  display: flex;
  align-items: center;
}

.gallery-tab-link:hover {
  color: var(--white);
  background: linear-gradient(
    to right,
    var(--secondary-color),
    var(--primary-color)
  );
}

.gallery-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.gallery-tab-content {
  width: 100%;
  background-color: var(--light-gray);
  margin-top: 10px;
  border-radius: 6px;
  padding: 20px;
}

.gallery-item {
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.gallery-image-wrapper {
  position: relative;
  display: inline-block;
  height: 300px;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.6);
}

.icon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 26px;
  color: var(--white);
  background-color: #01af536e;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  animation: blinkShadow 1.2s infinite ease-in-out;
}

@keyframes blinkShadow {
  0%,
  100% {
    box-shadow: 0 0 0px rgba(1, 175, 83, 0.6);
  }
  50% {
    box-shadow: 0 0 12px rgba(1, 175, 83, 0.9);
  }
}

.gallery-tab-content h5 {
  font-size: 20px;
  font-weight: 400;
  color: var(--secondary-color);
}

/* Brands */
.brands-box img {
  height: 70px;
  width: 100%;
  object-fit: contain;
}

/* Newsletter */
.newsletter-bg {
  background: linear-gradient(to right, #2f4f4f, #1d2c3e);
  padding: 40px 0;
}

.newsletter-box {
  background-color: var(--white);
  border-radius: 50px;
  display: flex;
  overflow: hidden;
}

.newsletter-box input {
  width: 100%;
  outline: none;
  border: 0;
  padding: 0 20px;
  border-radius: 50px;
}

.newsletter-box .nl-btn {
  color: var(--white);
  background-color: var(--primary-color);
  padding: 10px 20px;
  border: 0;
  border-radius: 50px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.newsletter-box .nl-btn:hover {
  background: var(--gradient);
}

.nl-mail {
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
}

/* Footer */
.f-bg {
  background-image: linear-gradient(to right, #2f4f4fab, #1d2c3eb5),
    url(../img/images/footer-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
}

.footer-text {
  font-size: 14px;
  color: var(--white);
  font-weight: 400;
}

.social-icons {
  width: 30px;
  height: 30px;
  border-radius: 40px;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.social-icons:hover {
  color: var(--primary-color);
}

.footer-head {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
}

.footer-links {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  transition: all 0.3s ease;
  line-height: 35px;
}

.footer-links:hover {
  color: var(--primary-color);
}

.footer-icons {
  font-size: 16px;
  color: var(--white);
}

.copy {
  width: 100%;
  padding: 10px 20px;
  margin-top: 30px;
  border-top: 1px solid #ffffff3b;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brak {
  display: none;
}
