/* Basic styling to match the image */
.card {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 15px;
    text-align: center;
}

.card-img-top {
    max-height: 200px; /* Adjust as needed */
    object-fit: contain;
    padding: 20px;
}

.product-title {
    font-size: 1rem;
    margin-bottom: 5px;
}

.product-price {
    color: green;
    font-weight: bold;
}

#category-list a {
    display: block;
    color: #333;
    text-decoration: none;
}

#category-list a:hover {
    background-color: #f8f9fa;
}


.nav-link.active {
    border-bottom: 2px solid #fff !important;
  }
  

  .product-card{
    cursor: pointer !important;
    transition: all 0.3s ease-in-out;
    &:hover{
      transform: translateY(-5px);
    }
  }
  
  
  .category-link {
    color: black;
    text-decoration: none;
}

.category-link.active {
    color: #a90d14 !important;
    font-weight: bold;
}
  

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');


* {
  font-family: 'Poppins';
}

swiper-container {
  width: 100%;
  height: 100%;
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.underline-hover {
  position: relative;
  display: inline-block;
  transition: color 0.3s;
}

.underline-hover::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: currentColor;
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.underline-hover:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}


.carousel-control-next-icon,
carousel-control-prev-icon {
  color: black !important;
}

.redcolor {
  color: #a90d14 !important;
}

.redbg {
  background: #a90d14 !important;
  color: white  !important;
}

.whitebg {
  background: white !important;
  color: #a90d14 !important;
}


.scalebtn {
  transition: all 0.3s ease !important;
  &:hover {
    transform: scale(0.95);
  }
}

/* 
#about{
  height: 70vh !important;
} */


.fpItem{
  transition: all 0.3s ease-in-out;

  &:hover{
    transform: scale(1.05);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.438);
  }
}

.footerLinks{
  transition: all 0.3s ease-in-out !important;

  &:hover{
    color: #a90d14 !important;
    text-decoration: underline;
  }
}
.footerLink{
  transition: all 0.3s ease-in-out !important;

  &:hover{
    color: #a90d14 !important;
  }
}


.bento-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  padding: 2rem;
  background-color: #1e1e1e;
}
.bento-item {
  background-color: #2c2c2c;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Optional: make one image span multiple rows or columns like a real bento layout */
.span-row {
  grid-row: span 2;
}
.span-col {
  grid-column: span 2;
}

.navbar-toggler-icon{
  color: black !important;
}



.nav-link.active {
  border-bottom: 2px solid #fff !important;
}



.enquiryForm label {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
}

.enquiryForm .form-group {
  margin-bottom: 1rem;
  position: relative;
}

.enquiryForm input,
.enquiryForm textarea,
.enquiryForm select {
  border: none;
  border-bottom: 2px solid #ccc;
  border-radius: 0;
  width: 100%;
  padding: 8px 0;
  background-color: transparent;
  font-size: 16px;
  outline: none;
}

.enquiryForm input:focus,
.enquiryForm textarea:focus {
  border-color: #a90d14 !important; /* red underline on focus */
  box-shadow: none;
  background: transparent !important;
}

.enquiryForm .btn-danger {
  background-color: #a90d14;
  border: none;
  padding: 10px 25px;
  font-weight: bold;
  margin-top: 20px;
}

.enquiryForm .input-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  font-size: 16px;
  color: #555;
}

.enquiryForm .form-control {
  padding-left: 10px;
}








@media (min-width: 200px), (max-width: 400px) {
  .logo{
    width: 80px !important;
  }
}
@media (max-width: 600px) {
  .logo{
    width: 100px !important;
  }
 

  .fpItemMain{
    height: 12rem !important;
  }
}
@media (max-width:768px) {
  #navUl .nav-item a{
    font-size: 13px !important;
  }
}
@media (max-width: 992px) {
  .map{
    width: 100% !important;
  }
}
@media (min-width: 600px) {
  .logo{
    width: 160px !important;
  }
}