* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

.no-scroll {
  overflow: hidden;
}

/* Navbar */
nav {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 10px;
}

.inside-navbar {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 4rem;
}

.navbar-logo-section {
  display: flex;
  align-items: center;
  /* padding-left: 2.5rem; */
  width: 18%;
  /* border-right: 1px solid #e5e5e5; */
}

.navbar-logo-section .logo {
  width: 15rem;
}

.navbar-logo-section .logo img {
  width: 15rem;
}

.navbar-links {
  width: 48%;
}

.navbar-links ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.navbar-links ul li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #222222;
}

.navbar-links ul li a.active {
  color: #ed3237;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  visibility: hidden;
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) scaleY(0.95);
  transform-origin: top;
  width: 800px;
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
  opacity: 0;
}

.dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) scaleY(1);
}


.dropdown-arrow {
  width: 1rem;
  height: 1rem;
  margin-left: 0.25rem;
  transition: transform 0.8s ease-in-out;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.product-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background-color: white;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  text-align: center;
  color: #4b5563;
  text-decoration: none;
}

.product-cards:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.product-cards img {
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
}

.menu-toggle {
  display: none;
}

.mobile-nav-items {
  display: none;
  flex-direction: column;
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}

.mobile-nav-items li {
  margin-bottom: 1rem;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .navbar-list {
    display: none;
    /* Hide desktop menu by default on mobile */
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .navbar-container {
    width: 100%;
    padding: 1rem 0;
    box-shadow: none;
  }

  .navbar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
  }

  .nav-link {
    width: 100%;
    padding: 0.5rem 1rem;
  }

  .dropdown {
    width: 100%;
  }

  /* Show mobile toggle button */
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #4b5563;
  }

  /* The mega menu on mobile */
  .dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    margin: 0.5rem 0;
    padding: 0;
    box-shadow: none;
    border: none;
  }

  .dropdown:hover .dropdown-menu {
    transform: none;
  }

  /* The product grid on mobile */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0 1rem;
  }
}

.call-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-section h6 {
  display: flex;
  gap: 5px;
  font-size: 17px;
  font-weight: 500;
  color: #848484;
}

.call-section h6 i {
  color: #ed3237;
  font-size: 22px;
}

.hamburger-menu {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  /* padding: 5px; */
  margin-left: 1.5rem;
}

.hamburger-menu span {
  display: block;
  width: 30px;
  height: 3px;
  margin-bottom: 6px;
  background-color: #222222;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav-sidebar {
  list-style: none;
  margin: 0;
  padding: 3rem 2rem;
  background-color: #222222;
  color: #ffffff;
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85%;
  height: 100%;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.25);
  z-index: 1001;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
  overflow-y: auto;
}

.mobile-nav-sidebar li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  padding: 10px 0;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease, background-color 0.3s ease;
}

.mobile-nav-sidebar li a:hover {
  color: #ed3237;
  background-color: rgba(247, 0, 0, 0.1);
}

.mobile-nav-sidebar.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 22px;
  color: #ffffff;
  cursor: pointer;
  z-index: 1002;
}

/* hero-section */
.hero-section {
  width: 100%;
  position: relative;
}

.banner-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.banner-container img {
  width: 100%;
  display: block;
}

.banner-container .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.swipe-btn {
  width: 50px;
  height: 50px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  transform: translateY(20px);
  background: rgba(255, 255, 255, 0.15);
  transition: 0.2s ease;
  backdrop-filter: blur(10px);
}

.swipe-btn::before,
.swipe-btn::after {
  font-size: 20px;
  color: #ffffff;
}


/* about-section */
.about-section {
  width: 100%;
  padding: 3rem 4rem;
  background: #f9f9f9;
}

.about-heading {
  margin-bottom: 2rem;
  text-align: center;
  color: #222222;
}

.about-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #e63946;
  margin: 0.5rem auto 0;
}

.introduce {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  font-weight: 400;
  margin-bottom: 2rem;
}

.introduce strong {
  color: #ed3237;
}

.ins-about {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}

.left-about {
  width: 40%;
}

.left-about img {
  max-width: 100%;
  object-fit: cover;
}

.right-about {
  width: 50%;
  line-height: 25px;
  font-family: "Rajdhani", sans-serif;
}

.right-about h3 {
  margin-top: 1rem;
  margin-bottom: 15px;
  color: #ed3237;
  font-size: 20px;
}

.right-about p {
  font-size: 15px;
  color: #5a5a5a;
  font-weight: 500;
}

.feature li {
  list-style: none;
  font-weight: 500;
  font-size: 15px;
}

/* product-section */
.product-section {
  /* max-width: 1200px; */
  margin: auto;
  padding: 4rem 10rem;
  background-image: radial-gradient(#ddd 8%, #fff 9%);
  background-position: 0 0;
  background-size: 21px 21px;
}

.product-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.product-section h2 {
  font-size: 2rem;
  /* margin-bottom: 15px; */
  border-left: 4px solid #ed3237;
  padding-left: 8px;
}

.product-section a {
  text-decoration: none;
  color: #222222;
  font-size: 18px;
  font-weight: 500;
}

.product-section a:hover i {
  transform: translateX(5px);
  transition: .3s ease-in;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.product-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  opacity: 0;
  transition: 0.3s ease;
}

.product-card:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  color: #fff;
  margin: 0;
  font-size: 1.3rem;
}

.overlay p {
  color: #ddd;
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
}

#view-btn {
  color: #ffffff;
  font-weight: 500;
  margin-top: 10px;
  font-size: 16px;
}

/* why choose us */
.services {
  position: relative;
  margin: auto;
  padding: 4rem 8rem;
  align-items: center;
  background: url(/assets/img/banners/b2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 1;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  /* display: inline-block; */
  text-align: center;
  color: #f1f1f1;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #e63946;
  /* red underline */
  margin: 0.5rem auto 0;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 2rem;
}

.service-box {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  text-align: left;
  transition: all 0.3s ease;
}

.service-box:hover {
  /* background: #e95360; */
  background: linear-gradient(to bottom, rgba(255, 100, 100, 0.9), rgba(255, 0, 0, 0.9));
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.service-box:hover h3 {
  color: #f9f9f9;
}

.service-box:hover img {
  filter: brightness(0) invert(1);
  color: #fff;
}

.service-box:hover p {
  color: #f1f1f1;
}

.service-icon {
  font-size: 2rem;
  color: #e63946;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-box img {
  width: 60px;
  filter: invert(23%) sepia(96%) saturate(7482%) hue-rotate(0deg) brightness(93%) contrast(101%);
}

.service-box h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #e63946;
  text-align: center;
}

.service-box p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
}

/* testimonial-section */
.testi-section {
  width: 100%;
  padding: 4rem 6rem;
  background-image: radial-gradient(#ddd 8%, #fff 9%);
  background-position: 0 0;
  background-size: 21px 21px;
}

.ins-testi-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testi-left {
  width: 55%;
  display: inline-flex;
  align-items: center;
}

.swiper2 {
  width: 100%;
  max-width: 700px;
  padding: 40px 20px;
  overflow: hidden;
  border: 2px solid #c5c5c5;
  border-radius: 1rem;
}

.testi-in {
  background: #f1f1f1;
  padding: 40px 20px 80px 20px;
  position: relative;
  text-align: center;
  box-sizing: 0 0 25px 15px #999;
  transition: .5s ease;
  border-radius: 10px;
}

.testi-in i {
  font-size: 60px;
  position: absolute;
  color: #ccc;
  transform: rotateY(0deg);
  transition: .5s ease-in;
}

.testi-in i:nth-child(1) {
  left: 20px;
  top: -30px;
}

.testi-in i:nth-child(2) {
  right: 20px;
  bottom: -30px;
}

.testi-in p {
  font-size: 15px;
  line-height: normal;
}

.testi-image {
  width: 80px;
  height: 80px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 100px;
  box-shadow: 0 0 20px -5px #999;
}

.testi-image img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 100px;
}

.testi-btn {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -38px;
}

.testi-btn h1 {
  font-size: 15px;
  color: #222222;
  font-weight: 600;
}

.testi-btn span {
  font-size: 13px;
  color: #222222;
  font-weight: 400;
}

/* .testi-in:hover {
  transform: translateY(-10px);
  transition: .5s ease-in;
} */

.testi-in:hover i:nth-child(1) {
  color: #222222;
  transform: rotateY(360deg);
  transition: .5s ease-in;
}

.testi-in:hover i:nth-child(2) {
  color: #222222;
  transform: rotateY(360deg);
  transition: .5s ease-in;
}

.testi-right {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-right img {
  width: 85%;
  object-fit: cover;
}

/* footer */
.custom-footer {
  background: #222222;
  color: #ffffff;
  padding: 0 2rem;
}

.inside-footer {
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}


.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  padding: 2rem 0;
}

.footer-section {
  flex: 0 1 220px;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 18px;
  font-weight: 600;
}

.footer-section p {
  color: #f1f1f1;
  font-size: 14px;
  display: flex;
  margin-bottom: 15px;
  text-align: left;
}

.footer-section a {
  color: #f1f1f1;
  font-size: 14px;
}

.footer-section p i {
  font-size: 18px;
}

.footer-section ul li {
  list-style: none;
}

.footer-section ul li {
  list-style: none;
  margin: .5rem 0;
}

.footer-section a {
  line-height: 28px;
  text-decoration: none;
  /* display: block; */
  margin: 0.3rem 0;
  transition: all 0.3s ease-out;
}

.footer-section a:hover {
  color: #ed3237;
  transform: translateY(-2px);
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-icons a {
    font-size: 25px;
    padding: 3px;
    background: #ed3237;
    border-radius: 10px;
}

.social-icons a:hover {
    background: #ffffff;
    color: #ed3237;
}

#facebook-icon:hover {
    background: #ffffff;
    color: #0866ff;
}

.address-info {
  display: flex;
  gap: 7px;
}



@media (max-width: 1100px) {
  .inside-navbar {
    padding: 0 3rem;
  }

  .navbar-logo-section .logo img {
    width: 13rem;
  }

  .about-section {
    padding: 3rem 2rem;
  }

  .right-about h3 {
    margin-top: 1rem;
    margin-bottom: 15px;
  }

  .product-section {
    padding: 3rem 5rem;
  }

  .product-section a {
    font-size: 16px;
  }

  .services {
    padding: 3rem 3rem;
  }

  .services-container {
    gap: 20px;
  }

  .testi-section {
    padding: 3rem 3rem;
  }

  .footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  @media (max-width: 1024px) {
    .inside-navbar {
      padding: 0 1rem;
    }

    .navbar-logo-section .logo img {
      width: 12rem;
    }

    .navbar-links {
      width: 55%;
    }
  }
}

@media (max-width: 900px) {
  .navbar-links {
    display: none;
  }

  .swipe-btn {
    width: 40px;
    height: 40px;
  }

  .ins-about {
    flex-direction: column;
  }

  .left-about {
    width: 70%;
  }

  .right-about {
    margin-top: 2rem;
    width: 90%;
  }

  .product-section {
    padding: 3rem 4rem;
  }

  .product-section h2 {
    font-size: 1.5rem;
  }

  .grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services {
    padding: 3rem 2rem;
  }

  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-box img {
    width: 55px;
  }

  .service-box h3 {
    font-size: 1rem;
  }

  .service-box p {
    font-size: 16px;
  }

  .hamburger-menu {
    display: block;
  }

  .testi-section {
    padding: 3rem 2rem;
  }

  .testi-right {
    width: 40%;
  }

  .testi-right img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .call-section h6 {
    font-size: 15px;
    margin-left: 4rem;
  }

  .call-section h6 i {
    font-size: 20px;
  }

  .introduce {
    width: 100%;
    font-size: 14px;
  }

  .left-about {
    width: 90%;
  }

  .product-section {
    padding: 3rem 3rem;
  }

  .ins-testi-section {
    flex-direction: column-reverse;
  }

  .testi-left {
    width: 100%;
  }

  .testi-right {
    width: 70%;
  }
}

@media (max-width: 650px) {

  .footer-container {
    gap: 1rem;
  }
}

@media (max-width: 600px) {

  .swipe-btn {
    display: none;
  }

  .inside-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
  }

  .call-section {
    display: none;
  }

  .left-about {
    width: 100%;
  }

  .right-about {
    width: 100%;
  }

  .product-section {
    padding: 3rem 2rem;
  }

  .services {
    padding: 3rem 1rem;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-section {
    flex: 0 1 140px;
  }
}

@media (max-width: 500px) {
  .service-box {
    padding: 1rem 20px;
  }

  .service-box img {
    width: 50px;
  }

  .swiper2 {
    padding: 20px 20px;
  }

  .testi-image {
    width: 80px;
    height: 80px;
  }

  .testi-image img {
    width: 70px;
    height: 70px;
  }

  .testi-in i {
    font-size: 50px;
  }
}

@media (max-width: 425px) {
  .inside-navbar {
    padding: 0 1rem;
  }

  .hamburger-menu span {
    width: 25px;
    height: 3px;
    margin-bottom: 5px;
  }

  .about-section {
    padding: 3rem 1.2rem;
  }

  .product-section {
    padding: 3rem 1rem;
  }

  .grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .services-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .testi-section {
    padding: 3rem 1rem;
  }

  .testi-right {
    width: 100%;
  }

  .testi-in p {
    font-size: 13px;
  }
}

@media (max-width: 375px) {
  .navbar-logo-section .logo img {
    width: 10rem;
  }

  .hamburger-menu span {
    margin-bottom: 4px;
  }

  .about-heading {
    font-size: 25px;
  }

  .custom-footer {
    padding: 0 1rem;
  }

  .footer-container {
    padding: 0 0;
  }

  .footer-section {
    flex: none;
    width: 100%;
  }

  /* .contact-form iframe {
    width: 320px;
  } */
}

@media (max-width: 320px) {
  .contact-form iframe {
    width: 290px;
  }
}