@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body{
    font-family: "Lato", sans-serif;
    font-weight: 500;
    background-color: #ffffff;
}
h1{
    font-family: "Montserrat", sans-serif;
}
h2, h3{
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

.btn-custom {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-brown {
    background-color: #956428;
    border: none;
    color: white;
}
.btn-brown:hover{
    background-color: #956428;
    color: #fff;
}
.btn-custom.btn-brown:active,
.btn-custom.btn-brown:focus {
  background-color: #956428; 
  color: #ffffff; 
  outline: none; 
  box-shadow: none; 
}


.btn-outline-chocolate{
    color: white;
    border: 1px solid #956428;
}
.btn-gold{
    background-color: #956428;
    color: #fff;
}
.btn-gold:hover{
    background-color: #956428;
    color: #fff;
}
.btn-outline-gold:hover {
    background-color: #956428;
    color: black;
}
.text-brown{
    color: #956428;
}
.text-chocolate{
    color: #956428;
}

.bg-lightbrown{
    background-color: #956428;
}


/* Add this to your CSS file */
.navbar{
    
   height: 80px;
   padding: 0px;
}
.navbar-scrolled {
    background-color: #F5F6FB;
    border-bottom: 1px solid #1d1d1d51;
}
.navbar-brand{
    font-size: 25px;
    margin: 0px;
}

.navbar-nav{
    display: flex;
    gap: 25px;
}
.navbar-nav .nav-item .nav-link {
    color: rgb(19, 18, 18) !important;
    transition: color 0.3s;
    font-size: 17px;
   
}


.navbar-nav .nav-item .nav-link:hover {
    color: #151515 !important;
}
.navbar-toggler-icon {
    color: blue;
}
.navbar-nav .nav-item.active .nav-link {
    color: #956428 !important;
}
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
  }

  /* New Hero Section */
  .floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-green);
    animation: float 6s infinite ease-in-out;
}

.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: float 8s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.stat-card {
    padding: 30px;
    border-radius: 20px;
    height: 400px;
    transition: transform 0.3s;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.stat-image {
    height: 460px;
    object-fit: cover;
    border-radius: 20px;
}
.banner-first-img{
    margin-top: -90px;
}


.banner-text{
    height: 95vh;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    z-index: 1;
}

.banner-content, .banner-image {
    position: relative;
    z-index: 2;
}
.bannerheading{
    font-size:4rem;
}

@keyframes slide-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-content {
    text-align: center;
}

.banner-image img {
    width: 100%;
    height: auto;
}

/* cateories */


  .category-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }


  .card-title{
    color: white;
  }
  .card-text{
    color: white;
  }
  .testimonial {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
  }
  .testimonial p {
    font-style: italic;
  }

  /* procucts */
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu{
    width: 200px;
}
.dropdown-item{
    padding: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.158);
}

/* Product detail */
.service-list {
    list-style: none;
    padding: 0;
  }
  
  .service-item {
    position: relative;
    padding: 15px;
   color: #000;
    border-left: 5px solid #956428; /* Left red border */
    background-color: #fff;
    font-weight: bold;
    
    transition: background-color 0.3s ease;
  }
  
  .service-item:hover {
    background-color: #eee;
    background-color: #956428cd;
  }

  .bg-contact {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),url('../images/products/thrids.jpg');
    background-size: cover;
    color: white;
    padding: 20px;
    height: 40vh;
    text-align: center;
    border-radius: 10px;
  }
/* Footer */
.footer-links{
    text-decoration: none;
    color: #393939;
    font-size: 15px;
}


.phone-icon:hover {
    background-color: #956428 !important;
}

.contact_us_button{
    display: none ;
  }
  .whatsapp_icon{
    display: none;
  }
  .sms_icon{
    display: none;
  }
/* Mobile Phones */
@media (max-width: 767px) {
    .mobilenav{
        display: block !important;
        display: flex !important;
        justify-content: space-between !important;
    }
    .navbar-nav{
        margin-top: 20px;
        display: flex;
        gap: 8px;
    }
    .navbar-collapse {
        height: 100vh;
        background-color: #000000da;
        backdrop-filter: blur(20px);
        padding: 20px;
    }
    .preloader1{
        position: fixed;
        background-color: #fff;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
         
        }
        .rounded-circle{
            display: flex !important;
            justify-content: center;
            align-items: center;
        }
    .navbar-brand{
        font-size: 20px;
    }
    .bannerheading{
        font-size:1.6rem;
    }
    .banner-head {
        font-size: 1.9rem;
    }
    .bannerPara{
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .bannerdesc{
      padding: 10px;
      width: 100% !important;
    }
    .project-img{
        width: 100%;
        height: 210px;
        object-fit: cover;
        border-radius: 20px;
    }
    .banner{
        height: 60vh;
    }
    .banner-text{
        height: 70vh;
    }
    .testimonial-content{
        width: 100% !important;
    }
    .aboutbanner{
        height: 30vh !important;
    }
    .stat-card {
        padding: 30px;
        border-radius: 20px;
        height: 200px;
        margin-top: 0px;
        transition: transform 0.3s;
        border: none;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }
    
    .stat-image {
        height: 200px;
        object-fit: cover;
        border-radius: 20px;
    }
    .floating-icon{
        display: none !important;
    }
    .banner-second-img{
        margin-bottom: 5rem;
    }
    .contact_us_button{
        display: block;
        background-color: #956428;
        position: fixed;
        bottom: 0;
        z-index: 9999;
        width: 100%;
        padding: 10px;
        text-decoration: none;
       
      }
      .sms_icon{
        display: block;
        position: fixed;
        bottom: 190px;
        z-index: 9999;
        background-color: #956428;
         border-radius: 50%; 
         width: 14.5%;
         display: flex;
         justify-content: center;
        padding: 9px;
      }
      .whatsapp_icon{
        display: block;
        position: fixed;
        bottom: 130px;
        z-index: 9999;
        background-color: #25D366;
         border-radius: 50%; 
         width: 14.5%;
         display: flex;
         justify-content: center;
        padding: 9px;
      }
    
}

/* Tab Phones */
@media (max-width: 992px) {
    .mobilenav{
        display: block !important;
        display: flex !important;
        justify-content: space-between !important;
    }
    .navbar-collapse {
        height: 100vh;
        background-color: #000000da;
        backdrop-filter: blur(20px);
        padding: 20px;
    }
    .preloader1{
        position: fixed;
        background-color: #fff;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
         
        }
        .rounded-circle{
            display: flex !important;
            justify-content: center;
            align-items: center;
        }
        .stat-card {
            padding: 30px;
            border-radius: 20px;
            height: 270px;
            transition: transform 0.3s;
            border: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        
        .stat-image {
            height: 270px;
            object-fit: cover;
            border-radius: 20px;
        }
        .aboutbanner{
            height: 30vh !important;
        }
    }

/* About html */
.aboutbanner {
    position: relative;
    background-color: #F5F6FB;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 40vh; /* Adjust the height as needed */
  
}


.bg-custom-green {
    background-color: #00c853;
}
.text-custom-green {
    color: #00c853;
}
.btn-custom-green {
    background-color: #00c853;
    border-color: #00c853;
}
.btn-custom-green:hover {
    background-color: #00a844;
    border-color: #00a844;
}