/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    height: 100%;
    display: flex;
    flex-direction: column;
    
}
main {
  flex: 1; /* Pushes the footer to the bottom */
}
a {
  color: #AF0F0A;
  text-decoration: none;
  transition: 0.3s;
}


/* Preloader */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #AF0F0A;
  border-radius: 50%;
  animation: spin 0.5s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #AF0F0A;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;

}

.section-title p {
  margin-bottom: 0;
}
/* NAVBAR */
.nav-body{
    background: color-mix(in srgb, #f3f9ff, transparent 5%);

}
.navbar {
    background-color: #ffffff;
    height: 70px;
    max-width: 70%;  /* Set a max-width instead of width */
    text-align: center;
    margin: 20px auto;  /* Center the navbar */
    border-radius: 40px;
    padding: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-brand{
    font-weight: 500;
    color: #AF0F0A;
    font-size: 24px;
    transition: 0.3s color;
}
.login-btn{
    background-color: #AF0F0A;
    color: #fff;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s background-color;
}
.login-btn:hover{
    background-color: #AF0F0A;
}
.navbar-toggler{
    border: none;
    font-size: 1.25rem;

}
.navbar-toggler:focus, .btn-close:focus{
    box-shadow: none;
    outline: none;
}
.nav-link{
    color: #666777;
    font-weight: 500;
    position: relative;

}
.nav-link:hover, .nav-link.active{
    color: #000;
}
@media (min-width: 991px) {
    .nav-link::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background-color: #AF0F0A;
        visibility: hidden;
        transition: width 0.3s ease-in-out;
    }
    .nav-link:hover::before, .nav-link.active::before {
        width: 100%;
        visibility: visible;
    }
}
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Transition for opacity and visibility */
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible; /* Make visible when dropdown is active */
}

/* Hero Section */


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 100px; /* Added padding-bottom to increase height */
    min-height: 100vh; /* Added min-height to ensure full viewport height */
    background: linear-gradient(135deg, color-mix(in srgb, #AF0F0A, transparent 95%) 50%, color-mix(in srgb, #AF0F0A, transparent 98%) 25%, transparent 50%);
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, color-mix(in srgb, #AF0F0A, transparent 92%), transparent 40%);
    pointer-events: none;
  }
  
  .hero .hero-content {
    position: relative;
    z-index: 1;
  }
  
  .hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  .hero .hero-content h1 .accent-text {
    color: #AF0F0A;
  }
  
  @media (max-width: 992px) {
    .hero .hero-content {
      text-align: center;
      margin-bottom: 3rem;
    }
  
    .hero .hero-content h1 {
      font-size: 2.5rem;
    }
  
    .hero .hero-content .hero-buttons {
      justify-content: center;
    }
  }
  
  @media (max-width: 575px) {
    .hero .hero-content h1 {
      font-size: 2rem;
    }
  }
  
  .hero .company-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: color-mix(in srgb, #AF0F0A, transparent 92%);
    border-radius: 50px;
    color: #AF0F0A;
    font-weight: 500;
  }
  
  .hero .company-badge i {
    font-size: 1.25rem;
  }
  
  .hero .btn-primary {
    background-color: #AF0F0A;
    border-color: #AF0F0A;
    color: #ffffff;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .hero .btn-primary:hover {
    background-color: color-mix(in srgb, #AF0F0A, black 20%);
    border-color: color-mix(in srgb, #AF0F0A, black 20%);

  }
  
  .hero .btn-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .hero .btn-link:hover {
    color: #AF0F0A;
  }
  
  .hero .btn-link i {
    font-size: 1.5rem;
    vertical-align: middle;
  }
  
  .hero .hero-image {
    position: relative;
    text-align: center;
    z-index: 1;
  }
  
  .hero .hero-image img {
    max-width: 100%;
    height: auto;
  }
  
  .hero .customers-badge {
    position: absolute;
    bottom: 10px;
    right: 30px;
    background-color:  #ffffff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    animation: float-badge 3s ease-in-out infinite;
    will-change: transform;
  }
  
  .hero .customers-badge .customer-avatars {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  
  .hero .customers-badge .avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid  #ffffff;
    margin-left: -8px;
  }
  
  .hero .customers-badge .avatar:first-child {
    margin-left: 0;
  }
  
  .hero .customers-badge .avatar.more {
    background-color: #AF0F0A;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
  }
  
  .hero .customers-badge p {
    font-size: 0.875rem;
    color: color-mix(in srgb, #212529, transparent 40%);
  }
  
  @media (max-width: 992px) {
    .hero .customers-badge {
      position: static;
      margin: 1rem auto;
      max-width: 250px;
    }
  }
  
  .hero .stats-row {
    position: relative;
    z-index: 1;
    margin-top: 5rem;
    background-color:  #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding-bottom: 2rem;
  }
  
  .hero .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
  }
  
  .hero .stat-item .stat-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: color-mix(in srgb, #AF0F0A, transparent 92%);
    border-radius: 50px;
    transition: 0.3s;
  }
  
  .hero .stat-item .stat-icon i {
    font-size: 1.5rem;
    color: #AF0F0A;
  }
  
  .hero .stat-item:hover .stat-icon {
    background-color: #AF0F0A;
  }
  
  .hero .stat-item:hover .stat-icon i {
    color: #ffffff;
  }
  
  .hero .stat-item .stat-content {
    flex-grow: 1;
  }
  
  .hero .stat-item .stat-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
  }
  
  .hero .stat-item .stat-content p {
    font-size: 0.875rem;
    color: color-mix(in srgb, #212529, transparent 40%);
    margin: 0;
  }
  
  @media (max-width: 575px) {
    .hero .stat-item {
      padding: 1.5rem;
    }
  }
  
  @keyframes float-badge {
    0% {
      transform: translateY(0);
    }
  
    50% {
      transform: translateY(-10px);
    }
  
    100% {
      transform: translateY(0);
    }
  }

/* Category  */
/* category carousel */
/* Add any additional styles here */
.category-carousel {
  width: 100%;
  overflow: hidden;
  max-height: 100%;
}

.category-carousel .category-item {
  background: #FFFFFF;
  border: 1px solid #FBFBFB;
  box-shadow: 0px 5px 22px rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  text-align: center;
  padding: 60px 20px;
  margin: 20px 0;
  transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
  width: 280px; /* Fixed width */
  height: 320px; /* Fixed height */
}

.category-carousel .category-item:hover {
  transform: translate3d(0,-10px,0);
  box-shadow: 0px 21px 44px rgba(0, 0, 0, 0.08);
}

.category-carousel .category-item .category-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #222222;
  margin-top: 20px;
  /* Ensure text doesn't overflow */
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tab-content {
  max-height: 400px;
  /* overflow-y: auto; */
}

.tab-pane {
  height: 100%;
}
/* Swiper carousel */
.swiper-prev,
.swiper-next {
  width: 38px;
  height: 38px;
  line-height: 38px;
  background: #F1F1F1;
  color: #222222;
  padding: 0;
  text-align: center;
  border-radius: 10px;
}

.swiper-prev:hover,
.swiper-next:hover {
  background: #AF0F0A;
}

.btn-link {
  margin-right: 30px;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  text-align: right;
  text-transform: capitalize;
  color: #787878;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: auto; /* Ensure slides adapt to category-item height */
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #212529;
  background-color: #ffffff;
  font-size: 14px;
  position: relative;
  width: 100%;
  text-decoration: none;
  z-index: 999;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color:#AF0F0A;
  font-family: #2d465e;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: #2d465e;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  border: 1px solid color-mix(in srgb, #212529, transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, #212529, transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #AF0F0A;
  border-color: #AF0F0A;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, #212529, transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #AF0F0A;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, #212529, transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #AF0F0A;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, #AF0F0A, transparent 20%);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/* Listing Section */

/* product tabs */
.product-tabs .nav-tabs {
  justify-content: flex-end;
  border: none;
  .nav-link:hover { color: #111; }
  .nav-link { color: #555; }
  .nav-tabs .nav-link { border-color: #fff; }
  .nav-tabs .nav-link:hover { border-color: transparent; }
  .nav-tabs .nav-link.active { border-color: #fff; }
}
.product-tabs .nav-tabs .nav-link.active, 
.product-tabs .nav-tabs .nav-item.show .nav-link {
  /* border: none; */
  border-bottom: 3px solid #AF0F0A;
}

/* product-grid */
/* .product-grid {
  gap: 25px;
} */
.product-item {
  position: relative;
  padding: 16px;
  background: #FFFFFF;
  border: 1px solid #FBFBFB;
  box-shadow: 0px 5px 22px rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  margin-bottom: 30px;
  transition: box-shadow 0.3s ease-out;
}


.product-item:hover {
  box-shadow: 0px 21px 44px rgba(0, 0, 0, 0.08);
}
.product-item h3 {
  display: block;
  width: 100%;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  text-transform: capitalize;
  color: #333333;
  margin: 0;
}
.product-item h4 {
  display: block;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  text-transform: capitalize;
  color: #333333;
  margin: 0;
}
.product-item figure {
  background: #F9F9F9;
  border-radius: 12px;
  text-align: center;
}
.product-item figure img {
  max-height: 210px;
  height: auto;
  width: 100%;
}
.product-item .btn-wishlist {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #d8d8d8;
  transition: all 0.3s ease-out;
}
.product-item .btn-wishlist:hover {
  background: rgb(240, 56, 56);
  color: #fff;
}
.product-item .qty {
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #9D9D9D;
}
.product-item .rating {
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  text-transform: capitalize;
  color: #222222;
}
.product-item .rating iconify-icon {
  color: #FFC43F;
}
.product-item .price {
  display: block;
  width: 100%;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  text-transform: capitalize;
  color: #222222;
}
.product-item .product-qty {
  width: 85px;
}
.product-item .btn-link {
  text-decoration: none;
}
.product-item #quantity {
  height: auto;
  width: 28px;
  text-align: center;
  border: none;
  margin: 0;
  padding: 0;
}
.product-item .btn-number {
  width: 26px;
  height: 26px;
  line-height: 1;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  border-radius: 6px;
  color: #222;
  padding: 0;
}


/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/

.counter-wrapper{
  background: url('../Images/success.jpg'); /* Fixed path by adding ../ to go up one directory */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 1.5rem;
  padding: 5rem 9%;
  /* margin-top: 5rem; */
  position: relative;
}
.counter-wrapper::before{
  position: absolute;
  content: '';
  content: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 1;
}
.counter{
 text-align: center;   
 color: #ddd;
 z-index: 2;
 position: relative;
}
.counter::before{
  position: absolute;
  content: '';
  bottom: -2rem;
  left: 50%;
  width: 20%;
  height: .2rem;
  background: #AF0F0A;
  border-radius: .5rem;
  -webkit-border-radius: .5rem;
  -moz-border-radius: .5rem;
  -ms-border-radius: .5rem;
  -o-border-radius: .5rem;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.counter .count{
  font-size: 5rem;
  margin-bottom: 1rem;    
}
.counter p{
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}


@media (max-width: 991px) {
  html{
      font-size: 55%;
  }
}
@media (max-width: 768px) {
 .counter-wrapper{
     grid-template-columns: repeat(2, 1fr);
     grid-row-gap: 8rem;
 }
}
@media (max-width: 450px) {
  html{
      font-size: 50%;
  }
  .counter-wrapper{
      grid-template-columns: 1fr;
  }
}
/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  height: 100%;
  padding: 2rem;
  background: #F0E8E8;
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.pricing .pricing-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
  background: #AF0F0A;
  color: #fff;
}

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4 {
  color: #fff;
}

.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .period {
  color: #fff;
}

.pricing .pricing-card.popular .features-list li {
  color: #fff;
}

.pricing .pricing-card.popular .features-list li i {
  color: #fff;
}

.pricing .pricing-card.popular .btn-light {
  background: #fff;
  color: #AF0F0A;
}

.pricing .pricing-card.popular .btn-light:hover {
  background: color-mix(in srgb, #fff, transparent 10%);
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #AF0F0A;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .price {
  margin-bottom: 1.5rem;
}

.pricing .pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  line-height: 1;
}

.pricing .pricing-card .price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing .pricing-card .price .period {
  font-size: 1rem;
  color: color-mix(in srgb, black, transparent 40%);
}

.pricing .pricing-card .description {
  margin-bottom: 2rem;
  font-size: 0.975rem;
}

.pricing .pricing-card h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list li i {
  color: #AF0F0A;
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing .pricing-card .btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 50px;
}

.pricing .pricing-card .btn.btn-primary {
  background: #AF0F0A;
  border: none;
  color: #fff;
}

.pricing .pricing-card .btn.btn-primary:hover {
  background: color-mix(in srgb, #AF0F0A, transparent 15%);
}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000000;
  margin-top: 5rem;
  background-color: #F0E8E8;
}

.faq .faq-description {
  font-size: 1rem;
  color: #282929;
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: #AF0F0A;
}
.faq .faq-container .faq-item {
  background-color: #f4f4f4;
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: #AF0F0A;
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: #AF0F0A;
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: #AF0F0A;
}

.faq .faq-container .faq-active h3 {
  color: #AF0F0A;
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: #AF0F0A;
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  background-color: #AF0F0A;
  color: #fff;
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}


.contact .info-box h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1rem;
}


@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: #fff;
}


@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, #fff, transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;

}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: #fff;
}


.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, #fff, transparent 70%);
}


.contact .info-item .content h4 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}


.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: #f4f4f4;
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}


@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, #000000, transparent 25%);
  margin-bottom: 2rem;
}


.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, #000000, transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, #f4f4f4 90%, white 5%);
  color: #000000;

}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: #AF0F0A;
}


.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, #000000, transparent 50%);
}


.contact .contact-form .btn {
  background-color: #AF0F0A;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;

}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, #AF0F0A, #fff 20%);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: #F0E8E8;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #AF0F0A;
  border-top-color: #F0E8E8;
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
.product-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-item figure {
  margin: 0;
  flex: 0 0 200px; /* Fixed height for image container */
  overflow: hidden;
}

.product-item .content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-item h3 {
  font-size: 1.1rem;
  margin: 10px 0;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-item h4 {
  font-size: 0.9rem;
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}


/*-------------- POPUP--------------*/
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2em;
  color: white;
  font-size: 17px;
  font-weight: 500;
  background-color: #AF0F0A;
  border-radius: 10px;
  text-align: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s;
}

.popup.show {
  display: block;
  opacity: 1;
}

.close-btn {
  position: absolute;
  top: 7px;
  right: 10px;
  font-size: 25px;
  cursor: pointer;
}
