*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Mulish", serif;    
  }
  .navbar {
    background-color:#536980;
    border-radius: 0;
}

.navbar-brand {
    color: #fff !important;
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-link {
    color: #fff !important;
    transition: color 0.3s ease;
    font-size: 18px;
}

.nav-link:hover {
    color: #ff5733 !important;
}

/* Responsive navbar toggler button */
.navbar-toggler-icon {
    background-color: #fff;
}


/* Dropdown Menu Styling */
.dropdown-menu {
    background: #fff;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 250px;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-left: -100px;
}

.dropdown-menu.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Dropdown Item Styling */
.dropdown-item {
    font-size: 1rem;
    color: #4b5563;
    padding: 10px 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #f5f7fa, #e5e7eb);
    color: #4f46e5;
    padding-left: 25px; /* Slight shift on hover */
}

/* Subtle hover effect with a sliding underline */
.dropdown-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #4f46e5, #7c3aed);
    transition: width 0.3s ease;
}

.dropdown-item:hover::before {
    width: 100%;
}

/* Active State */
.dropdown-item:active {
    background: #4f46e5;
    color: #fff;
}
@media(max-width:768px){
    .dropdown-menu{
        margin-left:0px;
    }
    
}
/* Custom styling for active links */
.nav-item.active .nav-link {
    color: #ff5733 !important;
}

/* Navbar links style for mobile */
.navbar-collapse {
    justify-content: center;
}
  .carousel {
    position: relative;
    height: 90vh; /* Full viewport height */
    overflow: hidden;
  }

  /* Ensure the image fills the carousel container */
  .carousel-item img {
    width: 100%;
    height: 100vh; /* Ensure image takes full height */
    object-fit: cover; /* Cover the space without stretching */
  }

  /* Carousel caption styling */
  .carousel-caption {
    position: absolute;
    bottom:15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent background */
    padding: 20px;
    border-radius: 10px;
    width: 75%; /* Adjust width of caption */
  }

  .carousel-caption h5 {
    font-size: 45px;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  }

  .carousel-caption p {
    font-size: 17px;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  }

/* Custom Controls */
  .carousel-control-prev-icon, .carousel-control-next-icon {
        background-color: #83aaf5;
        border-radius: 50%;
        padding: 28px;
      }
    .carousel-control-next {
      right:-40px;
    }
    .carousel-control-prev {
      left:-40px;
    }

  .carousel-indicators {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0px !important;
  }

  .carousel-indicators li {
    background-color: #83aaf5;
  }

  .carousel-indicators .active {
    background-color: #ff5733;
  }
  @media(max-width:760px){
     .carousel{
         height: 30vh;
     }
      
    .carousel-item{
      height: 30vh; 
    }
    
    .carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .carousel-caption{
      top: 52%;
      left: 50%;
      width: 84%; /* Adjust width of caption */
      height: 46%; /* Adjust width of caption */
    }
    .carousel-caption h5 {
      font-size: 15px;
    }

    .carousel-caption p {
      font-size: 12px;
    }
    .carousel-control-next {
        right:-10px;
        border-radius: 50%;
        padding: 20px
    }
    .carousel-control-prev {
      left:-10px;
      padding: 20px
    }
    /*.carousel-control-next, */
    /*.carousel-control-prev{*/
    /*    bottom: 50%;*/
    /*}*/
    .carousel-control-prev-icon,
    .carousel-control-next-icon{
        padding: 18px;
    }

  }
  .about-us {
    /* background: linear-gradient(295deg, #6f42c1, #9d9d9d); */
    background: linear-gradient(135deg, #588baf 0%, #576378 100%);
    color: white;
    padding: 20px;
    text-align: center;
  }

  .headtext {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: 20px;
    margin-bottom: 34px;
    text-transform: uppercase;
    animation: fadeIn 2s ease-out;
  }

  .about-us p{
    font-size: 17px;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeIn 3s ease-out;
    text-align: left;
  }
  .ptext {
    font-size: 17px;
    line-height: 1.5;      
    color: #000;
    animation: fadeIn 3s ease-out;
  }

  /* Button Style */
  .about-us .btn-about {
    padding: 12px 30px;
    background-color: #773bec;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .about-us .btn-about:hover {
    background-color: #d9534f;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  

  /* Fade In Animation */
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .headtext {
      font-size: 28px;
      margin-bottom: 20px;
      margin-top: 10px;
    }

    .ptext {
      font-size: 1rem;
    }
    .about-us p{
      font-size: 1rem;
    }

    .about-us .btn-about {
      font-size: 1rem;
      padding: 10px 25px;
    }
  }
    /* Container for the product cards */
    .product-section {
      padding:20px;
      /* background-color: #f9f9f9; */
    }
    /* Styling for the product card body */
.product-card-body {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.product-section {
    padding: 40px 0;
    background: #f8fafc;
}

.product-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%; /* Ensure consistent height in grid */
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Image Section */
.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* Card Body */
.product-card-body {
    padding: 20px;
    position: relative;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: #4f46e5;
}

.product-category {
    text-align: center;
    margin-bottom: 15px;
}

.category-label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    padding: 6px 15px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

/* Divider */
.product-divider {
    border: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #e5e7eb, transparent);
    margin: 15px 0;
}

/* Pricing */
.product-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.price-actual, .price-sale {
    display: flex;
    flex-direction: column;
}

.price-actual .label, .price-sale .label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6b7280;
}

.price-actual .value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ef4444;
    text-decoration: line-through;
}

.price-sale .value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #10b981;
}

/* Features */
.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.product-features li {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4f46e5;
    font-weight: bold;
}

.feature-label {
    font-weight: 600;
    color: #1f2937;
}

/* Button */
.product-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
}

.product-btn:hover {
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .product-image {
        height: 200px;
    }
    
    .product-title {
        font-size: 1.3rem;
    }
    
    .product-btn {
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .product-image {
        height: 180px;
    }
    
    .product-title {
        font-size: 1.2rem;
    }
}

/* Title styling */
/*.product-card-body h5 {*/
/*    font-size: 1.8rem;*/
/*    font-weight: 600;*/
/*    color: #333;*/
/*    margin-bottom: 20px;*/
/*}*/

/* Metal Pallets heading styling */
/*.product-card-body .text-primary h6 {*/
/*    font-size: 17px;*/
/*    font-weight: 500;*/
/*    color: #007bff;*/
/*}*/

/* Price Section styling */
/*.product-card-body .d-flex {*/
/*    margin-bottom: 20px;*/
/*}*/

/*.product-card-body .text-danger {*/
/*    font-size: 16px;*/
/*    font-weight: 600;*/
/*}*/

/*.product-card-body .text-success {*/
/*    font-size: 16px;*/
/*    font-weight: 600;*/
/*}*/

/* Features list styling */
/*.product-card-body .product-features li {*/
/*    font-size: 16px;*/
/*    color: #555;*/
/*    margin-bottom: 10px;*/
/*}*/

/*.product-card-body .product-features li span {*/
/*    font-weight: 600;*/
/*    color: #333;*/
/*}*/

/* Button Styling */
/*.product-btn {*/
/*    padding: 12px;*/
/*    background-color: #dda3f1;*/
/*    border: none;*/
/*    color: white;*/
/*    font-size: 14px;*/
/*    font-weight: 600;*/
/*    border-radius: 30px;*/
/*    text-transform: uppercase;*/
/*    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.product-btn:hover {*/
/*    background-color: #c74e3e;*/
/*    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);*/
/*    transform: scale(1.05);*/
/*}*/

/* Ensure button takes full width */
/*.product-btn.w-100 {*/
/*    width: 100%;*/
/*}*/

/* Responsive design */
@media (max-width: 768px) {
    .product-card-body {
        padding: 15px;
    }

    .product-card-body h5 {
        font-size: 1.5rem;
    }

    .product-card-body .text-primary h6 {
        font-size: 1.2rem;
    }

    .product-card-body .product-features li {
        font-size: 0.9rem;
    }

    .product-card-body .text-danger,
    .product-card-body .text-success {
        font-size: 1rem;
    }
}


    /*.product-card {*/
    /*  position: relative;*/
    /*  border: none;*/
    /*  border-radius: 10px;*/
    /*  overflow: hidden;*/
    /*  transition: transform 0.3s ease, box-shadow 0.3s ease;*/
    /*  background-color: #fff;*/
    /*  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);*/
    /*}*/

    /* Hover effect for the product card */
    /*.product-card:hover {*/
    /*  transform: translateY(-10px);*/
    /*  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);*/
    /*}*/

    .product-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    /*.product-card-body {*/
    /*  padding: 20px;*/
    /*  text-align: center;*/
    /*}*/

    /*.product-card-body h5 {*/
    /*  font-size: 1.5rem;*/
    /*  font-weight: bold;*/
    /*  color: #333;*/
    /*  margin-bottom: 15px;*/
    /*}*/

    /*.product-card-body p {*/
    /*  color: #777;*/
    /*  margin-bottom: 20px;*/
    /*  font-size: 1rem;*/
    /*}*/

    /*.product-btn {*/
    /*  padding: 14px 28px;*/
    /*  background-color: #ff5733;*/
    /*  border: none;*/
    /*  color: white;*/
    /*  font-size:13px;*/
    /*  font-weight: bold;*/
    /*  border-radius: 50px;*/
    /*  text-transform: uppercase;*/
    /*  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);*/
    /*  transition: all 0.3s ease;*/
     
    /*}*/

    /*.product-btn:hover {*/
    /*  background-color: #5c443e;*/
    /*  cursor: pointer;*/
    /*}*/

    /* Responsive design */
    /*@media (max-width: 768px) {*/
    /*  .product-card {*/
    /*    margin-bottom: 20px;*/
    /*  }*/
    /*}*/
    

    .info-card{
      position: relative;
      box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
      border: 1px solid #6b8391;
  }
  
  .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    overflow: hidden;
    width: 100%;
    height: 100%;
    -ms-transform: scale(0);
    transform: scale(0);
    transition: .6s ease;
    }
  
    .info-card:hover .overlay {
      /* -webkit-transform: scale(1); */
      -ms-transform: scale(1);
      transform: scale(1);
      
    }
  
    .text {
      color: #00111b;
      /* font-size: 20px; */
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      padding: 30px;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      text-align: center;
    }
  .bg-white.text-center.h-100.p-4.info-card {
  }
  .counter-section {
    background: #c7ccf7;
    color: white;
    padding: 20px;
    text-align: center;
  }

  .counter-item {
    display: inline-block;   
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    position: relative;
  }

  .counter-item h3 {
    font-size: 60px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  }

  .counter-item p {
    font-size: 17px;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  }

  .counter-item .number {
    color: #ff5733;
  }
  @media(max-width:768px){
    .counter-item h3{
      font-size:44px; 
      margin-bottom: 6px;
    }
   
  }

  /* Add animation */
  @keyframes counterAnimation {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Apply animation to each counter */
  .counter-item {
    animation: counterAnimation 1s ease-out;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .counter-item {
      font-size: 1.5rem;
    }
  }
  .breadcrumb-container {
    position: relative;
    background-image: url('https://img.freepik.com/premium-photo/abstract-background-with-pattern-hexagons-shades-gray_1045163-20.jpg?ga=GA1.1.832365889.1723266883&semt=ais_hybrid'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .breadcrumb {
    background: rgba(255, 255, 255, 0.7); /* Slight white background for readability */
    border-radius: 5px;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .breadcrumb a {
    text-decoration: none;
    color: #000;
    font-size:20px;
  }

  .breadcrumb a:hover {
    color: #007bff;
  }

  @media(max-width:768px){
    .breadcrumb-container {
      height: 120px;
    }
  }
  .about-us-section {
    padding: 20px;
    background-color: #f8f9fa;
  }

  .about-us-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }

 
  .about-us-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .about-us-section .row {
    display: flex;
    align-items: center;
  }

  @media (max-width: 768px) {
    .about-us-text {
      text-align: center;
      margin-top: 20px;
    }

    .about-us-image img {
      margin-bottom: 20px;
    }
  }
 
  /* Custom Styling for Mission & Vision Section */
  .mission-vision-section {
    padding: 20px;
    color: white;
    background: linear-gradient(135deg, violet, blue);
  }

  .mission-vision-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .mission-vision-title {
    text-align: center;
    margin-bottom: 40px;
  }

  .mission-vision-title h2 {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .mission-vision-row {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .mission-vision-item {
    background-color: white;
    color: black;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
  }

  .mission-vision-item:hover {
    transform: translateY(-10px);
  }

  .mission-vision-item h3 {
    font-size: 2rem;
    color: #83aaf5;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .mission-vision-item p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .mission-vision-row {
      flex-direction: column;
      gap: 20px;
    }

    .mission-vision-item {
      padding: 20px;
    }
  }
  /* Custom Styles for Why Choose Us Section */
  .why-choose-us-section {
    padding: 20px;
    background-color: #aabded;
  }

  .why-choose-us-title {
    text-align: center;
    margin-bottom: 40px;
  }

  .why-choose-us-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
  }

  .why-choose-us-card:hover {
    transform: translateY(-10px);
  }

  .why-choose-us-card i {
    font-size: 3rem;
    color: #83aaf5;
    margin-bottom: 20px;
  }

  .why-choose-us-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
  }

  .why-choose-us-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }

  /* Responsive design */
  @media (max-width: 768px) {
    .why-choose-us-card {
      margin-bottom: 20px;
    }
  }
  .testimonial-section {
    padding: 20px ;
    background-color: #f8f9fa;
  }

  .testimonial-title {
    text-align: center;
    margin-bottom: 40px;
  }


  .testimonial-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
  }

  .testimonial-item:hover {
    transform: translateY(-10px);
  }

  .testimonial-item img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 20px;
  }

  .testimonial-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
  }

  .testimonial-item p {
    font-size: 1rem;
    color: #333;
    font-style: italic;
  }

  /* Customize Owl Carousel navigation buttons */
  .owl-nav button.owl-prev, .owl-nav button.owl-next {
    background-color: #6f42c1;
    border: none;
    padding: 10px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
  }

  .owl-nav button.owl-prev:hover, .owl-nav button.owl-next:hover {
    background-color: #5a34a1;
  }
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
background:#000;
color:#fff;
border-radius:100%;
padding:10px !important;
font:inherit;
font-size: 17px;
}
.testimonial-item img {
width: 100px !important; /* Set a fixed width for the image */
height: 100px; /* Set a fixed height to maintain aspect ratio */
object-fit: cover; /* Ensure the image fills the circle without distortion */
margin-bottom: 20px; /* Space between the image and text */
border: 2px solid #fff; /* White border around the image */
border-radius: 50%; /* Make the image circular */
display: block; /* Center the image horizontally */
margin-left: auto; 
margin-right: auto;
}
.product-detail-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
}

.headtext {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    position: relative;
    margin-bottom: 20px;
}

.headtext::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #4f46e5, #7c3aed);
    border-radius: 2px;
}

/* Product Detail Card */
.product-detail-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-detail-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-detail-card:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-detail-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 30px;
}

.product-category {
    text-align: center;
    margin-bottom: 20px;
}

.category-label {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    padding: 8px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.product-description {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.product-features li {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4f46e5;
    font-weight: bold;
}

.feature-label {
    font-weight: 600;
    color: #1f2937;
    margin-right: 8px;
}

.additional-features {
    margin-top: 20px;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

/* Contact Form Card */
.contact-form-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-form-card h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    margin: 0;
}

.contact-form {
    padding: 30px;
}

.form-control {
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 8px rgba(79, 70, 229, 0.3);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: #1f2937;
}

.contact-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .product-image-wrapper {
        height: 300px;
    }
    
    .headtext {
        font-size: 2rem;
    }
    
    .contact-form-card h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .product-image-wrapper {
        height: 250px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
}
/* Image gallery for variations */
.image-gallery {
display: flex;
gap: 15px;
}

.image-gallery img {
width: 80px;
height: 80px;
object-fit: cover;
border-radius: 10px;
cursor: pointer;
transition: transform 0.3s ease;
}

.image-gallery img:hover {
transform: scale(1.1);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-detail-section {
        padding:0px;
    }
.product-container {
  flex-direction: column;
  align-items: center;
}

.product-info {
  max-width: 100%;
  margin-top: 20px;
}

.product-image-wrapper {
  max-width: 100%;
}

.image-gallery {
  justify-content: center;
  margin-top: 20px;
}
}
.gallery-section {
padding: 20px;
background-color: #f4f4f4;
}

.gallery-container {
display: grid;
grid-template-columns:repeat(auto-fill, minmax(280px, 1fr));
grid-gap: 20px;
margin-top: 20px;
}

.gallery-item {
position: relative;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}

.gallery-item:hover {
transform: scale(1.05);
}

.gallery-item img {
width: 100%;
height: auto;
object-fit: cover;
border-radius: 15px;
}

/* Caption for images */
.gallery-item .caption {
position: absolute;
bottom: 10px;
left: 0;
right: 0;
padding: 10px;
background: rgba(0, 0, 0, 0.5);
color: #fff;
text-align: center;
font-size: 1.2rem;
opacity: 0;
transition: opacity 0.3s ease;
}

.gallery-item:hover .caption {
opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
.gallery-container {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
}
.contact-section {
padding: 80px 0;
background: linear-gradient(45deg, #6f42c1, #007bff);
color: #fff;
border-radius: 20px;
}

.contact-section h2 {
text-align: center;
font-size: 3rem;
font-weight: bold;
margin-bottom: 30px;
text-transform: uppercase;
}

.contact-form {
background-color: #fff;
padding: 40px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form input, .contact-form textarea {
width: 100%;
padding: 15px;
margin-bottom: 20px;
border-radius: 8px;
border: 1px solid #ddd;
font-size: 1rem;
transition: border-color 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
border-color: #007bff;
outline: none;
}

.contact-btn {
  background-color: #064bd0;
  color: #fff;
  padding: 10px 17px;
  font-size: 17px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
background-color: #5a34a1;
}

.contact-details {
/*margin-top: 50px;*/
text-align: left;
}

.contact-details h4 {
font-size: 2rem;
font-weight: bold;
margin-bottom: 20px;
}

.contact-details p {
font-size: 18px;
margin-bottom: 17px;
}

.contact-details i {
font-size: 25px;
color: #064bd0;
margin-right: 16px;
}

.contact-details .social-icons i {
font-size: 1.5rem;
color: #064bd0;
margin-right: 15px;
transition: color 0.3s;
}

.contact-details .social-icons i:hover {
color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
.contact-section {
  padding: 40px 0;
}

.contact-form {
  padding: 30px;
}
}
.image-galleryhome {
    padding: 20px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
    overflow: hidden;
}

.gallery-item {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Overlay effect */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}
@media (max-width: 768px) {
    .gallery-item {
        height: 350px;
    }
    
    
   
}

@media (max-width: 480px) {
    .gallery-item {
        height: 300px;
    }
    
   
}



#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
}
/* Footer Container */
.footer {
  background: #576a7e;  /* Silver to light blue gradient */
  color: white;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

/* Footer Sections */


.footer-section h3 {
  font-size: 35px;
  color: #333;  /* Darker color for headings */
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-section p {
  font-size: 16px;
  line-height: 1.5;
}

.footer-link ul {
  list-style-type: none;
  padding: 0;
}

.footer-link ul li {
  margin: 10px 0;
  color: #fff;
}

.footer-link ul li a {
  color: #fff;  /* Light blue links */
  text-decoration: none;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
  background-color: black;
  color: white;
  padding: 10px 0;
  margin-top: 30px;
  font-size: 14px;
}
.footer-bottom p {
  font-size: 17px;
}
/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-bottom p {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------<Product> CSS</product>--------------------------------------------------------------------------*/

a{ text-decoration: none; }
ul{ list-style-type: none; margin-bottom: 0; }
.asp-title { font-size: 30px; font-weight: 600; font-family: Red Hat Display; }
.border-red{ border-bottom : 3px solid #1f4f60; padding-bottom: 7px; }

.products-single { overflow: hidden; position: relative;  margin-bottom: 30px; }
.products-single .box-img-hover{ overflow: hidden; position: relative; }
.box-img-hover img{ margin: 0 auto; text-align: center; display: block }
.type-lb{ position: absolute; top: 0px; right: 0px; z-index:8; }
.type-lb .sale{ background: #1f4f60; color: #ffffff;  padding: 2px 10px; font-weight: 700; text-transform: uppercase; }
.type-lb .new{ background: #000000; color: #ffffff; padding: 2px 10px; font-weight: 700; text-transform: uppercase; }
.why-text{ background: #f5f5f5; padding: 15px; margin-top: -80px; text-align: center; }
.why-text h4{ font-size: 16px; font-weight: 700; padding-bottom: 15px; color: #1f4f60; }
.why-text .price{ background-color: #1f4f60; }
.why-text h5{ font-size: 18px; font-family: 'Poppins', sans-serif; padding: 4px; display: inline-block; /*background: #1f4f60;*/ color: #ffffff; font-weight: 600; }
.mask-icon{ width: 100%; height: 100%; position: absolute; overflow: hidden; top: 0; left: 0; }
.mask-icon ul{ display: inline-block; position: absolute; bottom: 0; right: 0; }
.mask-icon ul li{  background: #1f4f60; }
.mask-icon ul li a{ color: #ffffff;  padding: 5px 5px; display: block; }
.mask-icon a.cart{ background: #1f4f60; position: absolute; bottom: 0;  left: 0px; padding: 10px 20px; font-weight: 700; color: #ffffff; }
.mask-icon a.cart:hover{  background: #000000; color: #ffffff; }
.mask-icon ul li a:hover{ background: #000000; color: #ffffff; }
.products-single .mask-icon{ background: rgba(1,1,1, 0.5); top: -100%; -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0);  opacity: 0; -webkit-transition: all 0.3s ease-out 0.5s; -moz-transition: all 0.3s ease-out 0.5s; -o-transition: all 0.3s ease-out 0.5s; -ms-transition: all 0.3s ease-out 0.5s; transition: all 0.3s ease-out 0.5s; }
.products-single:hover .mask-icon{ -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter: alpha(opacity=100); opacity: 1; top: 0px; -webkit-transition-delay: 0s;  -moz-transition-delay: 0s; -o-transition-delay: 0s; -ms-transition-delay: 0s; transition-delay: 0s; -webkit-animation: bounceY 0.9s linear;  -moz-animation: bounceY 0.9s linear; -ms-animation: bounceY 0.9s linear; animation: bounceY 0.9s linear; }
@keyframes bounceY { 0% { transform: translateY(-205px); } 40% { transform: translateY(-100px); } 65% { transform: translateY(-52px); } 82% { transform: translateY(-25px); } 92% { transform: translateY(-12px); } 55%, 75%, 87%, 97%, 100% { transform: translateY(0px); } }
@-moz-keyframes bounceY {  0% { -moz-transform: translateY(-205px); } 40% { -moz-transform: translateY(-100px); } 65% { -moz-transform: translateY(-52px); } 82% { -moz-transform: translateY(-25px); } 92% { -moz-transform: translateY(-12px); } 55%, 75%, 87%, 97%, 100% { -moz-transform: translateY(0px); }  }
@-webkit-keyframes bounceY { 0% { -webkit-transform: translateY(-205px); } 40% { -webkit-transform: translateY(-100px); } 65% { -webkit-transform: translateY(-52px); } 82% { -webkit-transform: translateY(-25px);  } 92% { -webkit-transform: translateY(-12px); }  55%, 75%, 87%, 97%, 100% { -webkit-transform: translateY(0px); } }

.asp-navigation{ padding: 10px; }
.swiper-navigation { display: flex; gap: 10px; }
.swiper-button-prev, .swiper-button-next {  width: 50px; height: 50px; background-color: #1f4f60; color: white; display: flex; justify-content: center; align-items: center; top: 33%; }
.swiper-button-prev::after, .swiper-button-next::after { font-size: 16px; color: #fff; }
