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

a {
  text-decoration: none;
}
body {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
}
/* --------------------show alert------------------- */
.alert-box {
  display: flex;
  align-items: center;
  /* gap: 10px; */
  justify-content: center;
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(-50px);
  z-index: 999999;
  padding: 10px 25px;
  font-weight: 500;
  border-radius: 7px;
  background-color: white;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
  width: fit-content;
  max-width: 90%;
  text-align: center;
  color: black;
  font-family: "Poppins", sans-serif;
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.alert-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.alert-success .alert-icon {
  background-color: #28a745;
  content: "✔";
}

.alert-error .alert-icon {
  background-color: #dc3545;
  content: "✖";
}

.alert-text {
  font-size: 14px;
  color: black;
}

.alert-show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* <!-- =====================navbar css =======================--> */

/* ==============-----------Hero section-----------=================== */

.hero-section {
  background-color: #ffffff !important;
  padding: 3rem 1.5rem;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.main_hero {
  margin-top: 1rem;
  position: relative;
  z-index: 2;
}

/* Hero Section Background Image */
.hero-bg-image {
  min-height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(
    0,
    0,
    0,
    0.45
  ); /* stronger overlay for better text contrast */
  z-index: 1;
  pointer-events: none;
}

.hero-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #fbfbfb !important;
  text-transform: uppercase;
  line-height: 1.1;
  animation: fadeInUp 1s ease-out;
}
.hero-text {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #fff !important;
  line-height: 1.6;
  margin-top: 1rem;
  animation: fadeInUp 1s ease-out 0.3s backwards;
}
.hero-btn,
.more_services a,
.product_section .hero-btn {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  background: #ffd700;
  color: #000;
  border-color: #ffd700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  padding: 0.75rem 2rem;
  border: 2px solid #000;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-btn::before,
.more_services a::before,
.product_section .hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #fff;
  transition: all 0.3s ease;
  z-index: -1;
}

.hero-btn:hover,
.more_services a:hover,
.product_section .hero-btn:hover {
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover::before,
.more_services a:hover::before,
.product_section .hero-btn:hover::before {
  width: 100%;
}

.hero-btn .icon-circle {
  border: 1px solid white;
  color: white;
  border-radius: 50%;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-size: 12px;
  transition: all 0.3s ease;
}

.hero-btn:hover .icon-circle {
  border-color: #000;
  color: #000;
}

.hero-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-image {
  width: 100%;
  max-width: 470px;
  height: auto;
  object-fit: contain;
  margin-top: 3rem;
  animation: fadeIn 1s ease-out 0.9s backwards;
}
/* !------------- hero section end ---------------! */
/* ------- 
-----------
------------
-------------*/
/* -----------=========Service Section start ------------==================== */

.services-section {
  min-height: 205px;
  padding: 2rem 1rem;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.overlay-text {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  font-weight: 900;
  color: #f1f1f1;
  z-index: 0;
  user-select: none;
  white-space: nowrap;
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.text-overlay h5 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #2e2e2e;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out;
}

.below-text {
  position: relative;
  margin-top: 5rem;
  z-index: 2;
}

.below-text h2 {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
  color: #212529;
  margin: 0;
  padding: 0 1rem;
  text-align: center;
  animation: fadeInUp 1s ease-out 0.3s backwards;
}

/* ----------------main service section with slider ----------------- */

.main-services {
  background-color: #ffffff;
  width: 100%;
  overflow-x: hidden;
}

.main-services .see_more {
  display: flex;
  justify-content: flex-end;
  font-family: "Poppins", sans-serif;
  color: #2e2e2e;
  text-decoration-line: underline;
  margin-right: 2rem;
  padding-top: 4rem;
}

.main-services .see_more a {
  font-size: 1rem;
  font-weight: 500;
  color: rgb(46, 46, 46);
  font-style: normal;
  font-family: "Poppins", sans-serif;
}

.service_card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 12px;
  padding: 2rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  margin: 0.5rem;
  animation: scaleIn 0.5s ease-out;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
}

.service_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: #000;
}

.service_card .card-body {
  width: 100%;
  text-align: center;
}

.service_card .card-body .card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgb(33, 37, 41);
  font-style: normal;
  font-family: "Poppins", sans-serif;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.service_card:hover .card-body .card-title {
  color: #000;
}

.service_card .card-body .underline {
  background-color: #9d9d9d;
  width: 50px;
  height: 3px;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.service_card:hover .card-body .underline {
  width: 100px;
  background-color: #000;
}

.service_card .card-body .card-text {
  font-size: 1.1rem;
  line-height: 1.8rem;
  color: #7b7b7b;
  font-family: "Poppins", sans-serif;
  text-align: center;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.service_card:hover .card-body .card-text {
  color: #333;
}

.service_card img {
  width: 6rem;
  height: 6rem;
  object-fit: contain;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.service_card:hover img {
  transform: scale(1.1);
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
  margin: 0;
  padding: 0;
}

.slider-card {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  box-sizing: border-box;
  padding: 0.5rem 0.5rem;
  opacity: 1;
  transition: opacity 0.3s ease;
  margin: 0;
}

.slider-card.hidden {
  opacity: 0;
  pointer-events: none;
}

.slider-btn,
.product_slider_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.previous-btn {
  left: 0.6rem;
}

.next-btn {
  right: 1rem;
}

.more_services {
  padding: 10rem 2rem 3rem;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  flex-wrap: wrap;
  gap: 2rem;
}

.more_services h2 {
  font-size: 1.7rem;
  font-weight: 600;
  color: rgb(33, 37, 41);
  font-style: normal;
  font-family: "Poppins", sans-serif;
  margin: 0;
}

.more_services h5 {
  font-size: 1rem;
  color: #7b7b7b;
  font-style: normal;
  font-family: "Poppins", sans-serif;
  margin: 0.5rem 0 0 0;
}

.more_services a {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  background-color: #000000;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.more_services a:hover {
  background-color: #333;
  transform: translateY(-2px);
}

/* --- More Services Section Responsive --- */
.more_services {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  padding: 10rem 2rem 3rem;
  text-align: left;
}

.more_services > div {
  flex: 0 1 auto;
}

.more_services a {
  margin-left: 0;
}

/* !------------- Service section end ---------------! */
/* ------- 
-----------
------------
-------------*/

/* --------------product Section start------------------------ */
.product {
  padding: 5.5rem 1rem 3rem 1rem;
}

.product-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #212529;
  padding: 1rem 0.6rem;
}

.product-heading span {
  font-size: 1rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 2rem;
}

.product_section {
  padding: 3rem 0 0 0;
  width: 100%;
  overflow: hidden;
}

.product_section .product_banner {
  background-image: url("../../assets/images/product_image.webp");
  background-size: cover;
  background-position: center;
  height: 25rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 1rem;
  animation: fadeInUp 1s ease-out;
}

.product_section .product_banner h4 {
  font-size: 2.1rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  text-align: center;
  width: 100%;
  margin-bottom: 1rem;
}

.product_section .product_heading {
  padding: 5rem 3rem 2rem;
  font-size: 2.3rem;
  font-weight: 600;
  color: rgb(33, 37, 41);
  font-style: normal;
  font-family: "Poppins", sans-serif;
  /* text-align: center; */
  animation: fadeInUp 1s ease-out;
}

.product_section .see_more {
  display: flex;
  justify-content: flex-end;
  font-family: "Poppins", sans-serif;
  color: #2e2e2e;
  text-decoration-line: underline;
  margin-right: 2rem;
  padding: 1rem 0;
}

.product_section .see_more a {
  font-size: 1rem;
  font-weight: 500;
  color: rgb(46, 46, 46);
  font-style: normal;
  font-family: "Poppins", sans-serif;
}

.product_slider_btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.product_previous_btn {
  left: 10px;
}

.product_next_btn {
  right: 10px;
}

.product_slider_wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 0 1rem;
}

.product_slider_track {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  transition: transform 0.3s ease-in-out;
  width: 100%;
}

.product_card {
  flex: 0 0 calc(25% - 15px);
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-bottom: 1rem;
  animation: scaleIn 0.5s ease-out;
  position: relative;
}

.product_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: #000;
}

.product_card img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  transition: all 0.5s ease;
}

.product_card:hover img {
  transform: scale(1.05);
}

.product-body {
  padding: 1.2rem;
  background: #fff;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: capitalize;
  color: rgb(46, 46, 46);
  font-style: normal;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
}

.product_card:hover .product-title {
  color: #000;
}

.price_cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}

.price {
  font-weight: 600;
  color: #333;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.product_card:hover .price {
  color: #000;
}

.cart-icon {
  background: #f8f8f8;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #000;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-icon:hover {
  background: #ffd700;
  color: #000;
  transform: scale(1.1);
}

/* --------------product Section end------------------------ */
/* ------- 
-----------
------------
-------------*/

/* -------------====== Project Section =======--------- */

.project_section {
  padding: 4rem 0;
  background-color: #ffffff;
}

.project_section .product_heading {
  font-size: 2.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 2rem;
  padding: 3rem 3rem 2rem;
  font-style: normal;
  font-family: "Poppins", sans-serif;
  animation: fadeInUp 1s ease-out;
}

.project_section .row {
  margin-left: 0;
  margin-right: 0;
}

.project_card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
  height: 100%;
  min-height: 350px;
}

.project_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-wrapper {
  position: relative;
  overflow: hidden;
}

.project_card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.image-wrapper:hover .overlay {
  opacity: 1;
}

.project_card .product-body {
  padding: 1rem;
  background: #fff;
}

.project_title {
  font-size: 1rem;
  color: #2e2e2e;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.project-btn {
  background: #000;
  color: #fff;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid #000;
  text-decoration: none;
  display: inline-block;
}

.project-btn:hover {
  background: transparent;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.show_gallery {
  text-align: center;
  margin-top: 2rem;
}

.show_gallery .project-btn {
  background: #000;
  color: #fff;
  padding: 12px 30px;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid #000;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.show_gallery .project-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #fff;
  transition: all 0.3s ease;
  z-index: -1;
}

.show_gallery .project-btn:hover {
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.show_gallery .project-btn:hover::before {
  width: 100%;
}

/* -------------====== Project Section end --------- */
/* ------- 
-----------
------------
-------------*/

/* --------------Logo Section Styling ----------------*/

/* --------------------------Animation ----------------*/
/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Apply animations to elements */
.hero-heading {
  animation: fadeInUp 1s ease-out;
}

.hero-text {
  animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-btn {
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-image {
  animation: fadeIn 1s ease-out 0.9s backwards;
}

.services-section .text-overlay h5 {
  animation: fadeInUp 1s ease-out;
}

.services-section .below-text h2 {
  animation: fadeInUp 1s ease-out 0.3s backwards;
}

.service_card {
  animation: scaleIn 0.5s ease-out;
}

.product_section .product_banner h4 {
  animation: fadeInUp 1s ease-out;
}

.product_section .product_heading {
  animation: fadeInUp 1s ease-out;
}

.product_card {
  animation: scaleIn 0.5s ease-out;
}

.project_section .product_heading {
  animation: fadeInUp 1s ease-out;
}

/* --------------Logo Section Styling ----------------*/

/* ---------------- Add smooth transitions ----------------*/
.service_card,
.product_card,
.project_card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service_card:hover,
.product_card:hover,
.project_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Add animation to slider buttons */
.slider-btn,
.product_slider_btn {
  transition: all 0.3s ease;
}

.slider-btn:hover,
.product_slider_btn:hover {
  transform: scale(1.1);
}

/* Add animation to cart icon */
.cart-icon {
  transition: all 0.3s ease;
}

.cart-icon:hover {
  transform: scale(1.1);
}

/* Add animation to project button */
.project-btn {
  transition: all 0.3s ease;
}

.project-btn:hover {
  transform: translateY(-2px);
}

/* Scroll Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Apply reveal classes to elements */
.hero-heading {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.hero-text {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.2s;
}

.hero-btn {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.4s;
}

.hero-image {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.6s;
}

.services-section .text-overlay h5 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.services-section .below-text h2 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.2s;
}

.service_card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.product_section .product_banner h4 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.product_section .product_heading {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.product_card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.project_section .product_heading {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.logo-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

/* Active state for elements in viewport */
.hero-heading.active,
.hero-text.active,
.hero-btn.active,
.hero-image.active,
.services-section .text-overlay h5.active,
.services-section .below-text h2.active,
.service_card.active,
.product_section .product_banner h4.active,
.product_section .product_heading.active,
.product_card.active,
.project_section .product_heading.active,
.logo-wrapper.active {
  opacity: 1;
  transform: translateY(0);
}

/* Button Styles */
.hero-btn,
.slider-btn,
.product_slider_btn,
.project-btn {
  background-color: #ffd700;
  color: #000;
  border-color: #ffd700;
  transition: all 0.3s ease;
}

.hero-btn:hover,
.slider-btn:hover,
.product_slider_btn:hover,
.project-btn:hover {
  background-color: #000;
  color: #ffd700;
  border-color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn .icon-circle,
.project-btn .icon-circle {
  border-color: #000;
  color: #000;
}

.hero-btn:hover .icon-circle,
.project-btn:hover .icon-circle {
  border-color: #ffd700;
  color: #ffd700;
}

.slider-btn,
.product_slider_btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover,
.product_slider_btn:hover {
  transform: translateY(-50%) scale(1.1);
}

.previous-btn,
.product_previous_btn {
  left: 10px;
}

.next-btn,
.product_next_btn {
  right: 10px;
}

/* See More Link */
.see_more a {
  font-size: 1rem;
  font-weight: 500;
  color: #2e2e2e;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}

.see_more a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #000;
  transition: all 0.3s ease;
}

.see_more a:hover {
  color: #000;
}

.see_more a:hover::after {
  width: 100%;
}

.product_section .hero-btn {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  background-color: #000000;
  padding: 12px 30px;
  border: 2px solid #000;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.product_section .hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #fff;
  transition: all 0.3s ease;
  z-index: -1;
}

.product_section .hero-btn:hover {
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product_section .hero-btn:hover::before {
  width: 100%;
}

.product_section .hero-btn .icon-circle {
  border: 1px solid white;
  color: white;
  border-radius: 50%;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-size: 12px;
  transition: all 0.3s ease;
}

.product_section .hero-btn:hover .icon-circle {
  border-color: #000;
  color: #000;
}

/* Service Icon Boxes */
.service-icon-box {
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-icon-box:hover {
  transform: translateY(-10px);
}

.service-icon-box h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1rem 0;
  color: #000;
}

.service-icon-box p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.service-icon-box:hover .icon-wrapper {
  background: #ffd700;
}

.service-icon-box:hover .icon-wrapper i {
  color: #000;
}

/* !-------------why chose me start ---------------- */

/* Why Choose Us Section */
.why-choose-us {
  position: relative;
  background-color: #ffffff !important;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 3rem;
}

.feature-item {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateX(10px);
}

.feature-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: #666;
  margin: 0;
}

/* Why Choose Us Section Styles */
.why-choose-heading {
  color: #1c1c1c;
  font-size: 2.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-title {
  font-weight: 700;
  font-size: 1.4rem;
  color: #000;
  margin-bottom: 0.8rem;
}

.main_hero {
  width: 100%;
  max-width: 100%;
}

/* !-------------why chose me end ---------------- */
/* ------------
----------------
-----------------
------------------ */

/* Product Card Cart Styles */
.product_card {
  position: relative;
  display: block;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  text-decoration: none;
  margin-bottom: 1rem;
  height: 100%;
  transition: all 0.3s ease;
}

.product_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: #ffd700;
}

.product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product_card:hover img {
  transform: scale(1.05);
}

.product-body {
  padding: 1.2rem;
  background: #fff;
  transition: all 0.3s ease;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgb(46, 46, 46);
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.product_card:hover .product-title {
  color: #000;
}

.price-cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.price {
  font-weight: 600;
  color: #333;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.product_card:hover .price {
  color: #000;
}

.cart-icon {
  background: #f8f8f8;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #000;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-icon:hover {
  background: #ffd700;
  color: #000;
  transform: scale(1.1);
}

/* Alert Box Styles */
.alert-box {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-50px);
  z-index: 999999;
  padding: 12px 24px;
  font-weight: 500;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 90%;
  color: white;
  font-family: "Poppins", sans-serif;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  font-size: 0.9rem;
}

.alert-show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.alert-success {
  background-color: #28a745;
  border-left: 4px solid #1e7e34;
}

.alert-error {
  background-color: #dc3545;
  border-left: 4px solid #c82333;
}

.alert-warning {
  background-color: #ffc107;
  border-left: 4px solid #e0a800;
  color: #000;
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 2.5rem;
  }
  .stat-label {
    font-size: 1rem;
  }
}

/* Product Card Subtitle (Product Title) */
.product-subtitle {
  font-size: 1rem;
  color: #888;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-bottom: 0.5rem;
  margin-top: -0.3rem;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.product_card .product-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.home-product-slider .price_cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.home-product-slider .cart-icon {
  position: relative;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.custom-slider-btn {
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
  border: 2px solid #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  opacity: 0.85;
}
.custom-slider-btn:hover {
  background: rgba(0, 0, 0, 0.35);
  color: #ffd700;
  border-color: #ffd700;
  opacity: 1;
}
