

#block_1 {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("./img/landing-page1.png");
    background-size: cover;
    background-position: center;
    color: white;
    height: 100vh;
}

header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("./img/landing-page1.png");
    background-size: cover;
    background-position: center;
    color: white;
    height: 60vh;
}

header .navbar-nav .nav-link {
    color: white !important;
}

header .navbar-nav .nav-link.active{
    color: #CE7F47 !important;
    font-weight: bold;
}

#explore-more:hover{
    color: black;
}

footer{
    font-size: 90%;
}


nav .breadcrumb-item + .breadcrumb-item::before {
    color: white;
    font-weight: bold;
}

#single-nav{
    font-size: 80%;
}
#single-nav .breadcrumb-item::before{
    color: #1b222d;
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.whatsapp-icon img {
    width: 50px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}


.navbar-brand img{
    width: 120px;
}

#block_1 a{
    color: white;
}
#block_1 .dropdown-item{
    color: black;
}

.custom-btn {
    font-size: .9rem;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    background: #CE7F47;
    border: none;
    color: white;
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    color: #CE7F47;
}

.custom-btn:hover {
    background-color: #D3AE78 !important;
    transform: translateY(-2px);
}

.custom-btn:hover .icon-wrapper {
    background: #f8f9fa; /* Light grey */
    color: #CE7F47;
}
.nav-link.active{
    color: #CE7F47 !important;
    font-weight: bold;
}
.text-outline {
    color: #cea674;
    -webkit-text-stroke: 1px black;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}
#block_1 #typing{
    min-height: 96px;
}
.bg-gray{
    background: rgb(229 229 229 / 93%) !important;
}
.bg-logo{
    background-color: #cea674 !important;
}
.bg-logo-dark{
    background-color: #1b222d !important;
}
.text-logo-dark{
    color: #1b222d !important;
}
.text-logo-orange{
    color: #cea674 !important;
}

.heading{
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.heading::after {
    content: "";
    display: block;
    width: 100px;
    height: 5px;
    background-color: #cea674;
    margin: 10px auto 0;
}

#block_2 .image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Image Styling */
#block_2 .image-container img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
#block_2 .image-container:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

/* Overlay Effect */
#block_2 .image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(207, 171, 123, 0.74);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

#block_2 .image-container:hover::before {
    opacity: 1;
}

/* Logo Styling */
#block_2 .overlay-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px !important;
    height: 60px !important;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    filter: brightness(10);
}

#block_2 .image-container:hover .overlay-logo {
    opacity: 1;
}

.image-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.image-hover:hover {
    transform: scale(1.02);
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.25);
    filter: brightness(1.1);
    border-radius: 10px;
}

#category_section .image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .category-image {
    width: 100%;
    height: 250px; /* Fixed height for uniformity */
    object-fit: cover; /* Ensures images stay same size */
    transition: transform 0.3s ease-in-out;
  }

  #category_section .image-container:hover .category-image {
    transform: scale(1.05);
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(207, 171, 123, 0.74);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }

  #category_section .image-container:hover .overlay {
    opacity: 1;
  }

  .category-title {
    color: white;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
  }

  .category-link {
    text-decoration: none;
    display: block;
  }

  .faq-item {
    border-bottom: 2px solid #cea674; /* Beautiful bottom border */
    padding: 15px 0;
}
.faq-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #cea674;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    transition: transform 0.3s ease;
}
.faq-btn.collapsed::before {
    content: "+";
}
.faq-btn:not(.collapsed)::before {
    content: "-";
}
.faq-content {
    background-color: #cea674;
    padding: 15px;
    border-radius: 8px;
    color: white !important;
}
#about-trusted .center-one{
    border-right: 1px solid white;
    border-left: 1px solid white;
}

@media (max-width: 576px) {
    .center-one {
      border-right: none !important;
      border-left: none !important;
      border-bottom: 1px solid white;
      border-top: 1px solid white;
    }
  }

/* Image Box */
#category-products .image-box {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
}

/* Image stays normal */
#category-products .product-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease-in-out;
}

/* Overlay Effect */
#category-products .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(206, 166, 116, 0.7); /* Goldish overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Logo inside overlay */
#category-products .overlay-logo {
    width: 70px; /* Adjust size */
    height: 50px;
    filter: brightness(10); /* Black logo */
}

/* Show overlay on hover */
#category-products .card:hover .product-overlay {
    opacity: 1;
}


/* Card Body and Title Styles */
#category-products .card-body {
    padding: 20px;
    background-color: #f8f9fa;
}

#category-products .card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
}

#category-products .card-text {
    font-size: 0.875rem;
    color: #666;
}

#category-products .card-footer {
    padding: 15px;
    background-color: #f1f1f1;
    font-size: 0.875rem;
}

/* Button Styling (Optional) */
#category-products .card-footer p {
    font-weight: bold;
    color: #333;
}

#category-products .card-footer span {
    color: #cea674;
    font-weight: bold;
}

@media (max-width: 576px) {
    #category-products .image-box {
        height: 300px;
    }
}

.custom-card-border{
    border: 1px solid #cea674;
}

.pagination{
    --bs-pagination-active-bg: #cea674;
    --bs-pagination-active-color: #1b222d;
    --bs-pagination-active-border-color: #cea674;
    --bs-pagination-hover-color: #cea674;
    --bs-pagination-color: #1b222d;
}

/* Product Image Styling */
#single-products .product-image-box {
    text-align: center;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}
#single-products .product-main-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}
#single-products .thumbnail-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 2px solid transparent;
    transition: 0.3s;
    cursor: pointer;
}
#single-products .thumbnail-img:hover {
    border: 2px solid #cea674;
    transform: scale(1.05);
}

.nav-tabs .nav-link.active{
    color: #cea674 !important;
    font-weight: bold !important;
    --bs-nav-pills-link-active-bg: none;
}

.nav-tabs .nav-link{
    color: #1b222d !important;
}

.tab-content {
    display: flex;
}

.tab-pane {
    width: 100%;
}

    #blog-products .card:hover {
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
    }

  #blog-products .card{
    cursor: pointer !important;
  }

  /* #blog-products .card:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
  } */

  /* Styling for the image container */
  #blog-products .image-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* Image stays normal (No scaling) */
#blog-products .image-box img {
    width: 100%;
    border-radius: 10px;
    transition: opacity 0.3s ease-in-out;
}

/* Overlay effect */
#blog-products .blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(206, 166, 116, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Logo inside overlay */
#blog-products .blog-overlay .overlay-logo {
    width: 90px;
    height: 70px;
    filter: brightness(10);
}

/* Show overlay and logo on hover */
#blog-products .card:hover .blog-overlay {
    opacity: 1;
}


  #blog-products .custom-card-border {
    border-radius: 15px;
    overflow: hidden;
  }

  #blog-products .heading {
    font-size: 36px;
    color: #333;
  }

  #blog-products .card-title {
    font-size: 22px;
    font-weight: bold;
  }

  #blog-products .card-text {
    font-size: 14px;
  }

  #blog-products .card-footer {
    background-color: #fff;
    border-top: 1px solid #eee;
  }

  #blog-products .text-logo-orange {
    color: #f77f00; /* Replace this with the actual color code for text-logo-orange */
  }

  #blog-products .fa-clock {
    font-size: 1.2rem;
  }

  #recent-blogs .border-bottom{
    border-bottom: 2px solid #cea674 !important;
  }

  #recent-blogs .text-decoration-none:hover img{
    transform: scale(1.04);
  }

  #contact-us-btn a{
    padding: 5px 25px !important;
    text-align: center !important;
}

  @media (max-width: 991px){
    #contact-us-btn{
        margin: 0px auto;
        width: 50%;
    }
  }