@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro: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&family=Open+Sans:ital,wght@0,500;1,500&display=swap');

body {
    overflow-x: hidden;
    background-color: black;
    color: white;
    width: 100%;
    max-width: 100%;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container-fluid {
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.font1 {
    font-family: "Be Vietnam Pro", "Be Vietnam Pro Placeholder", sans-serif;
    font-weight: 500;
    color: black;
}

.font2 {
    font-family: Poppins, "Poppins Placeholder", sans-serif;
    font-weight: 500;
    color: black;
}

.greenclr {
    background-color: #bdff1c;
}

.greentext {
    color: #bdff1c;
}

/*Navbar CSS Start*/
/* Custom styles to enhance Bootstrap */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: #a79e9e !important;
}


/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-brand img {
        width: 50px;
        height: 50px;
    }
    
    .navbar-collapse {
        padding: 1rem 0;
    }
    
    .navbar-nav {
        text-align: center;
    }
}

/* Testinomial CSS Start */
.testinomial-section {
    padding-top: 5vw;
    width: 100%;
    max-width: 90vw;
    margin: auto;
    overflow-x: hidden;
}
.badge-container {
    padding: 5px;
    
  }
  
  .custom-badge {
    background-color: #eaffb9;
    padding: 4px 15px;
    gap: 8px;
    width: fit-content;
    color: black;
  }
  
  .update-badge {
    background-color: #bdff1c;
    padding: 6px 12px;
    color: black;
  }
  
  @media (max-width: 400px) {
    .custom-badge {
      flex-direction: column;
      text-align: center;
      padding: 8px;
      gap: 4px;
      background-color: black;
      color: white;
      
    }
    
    .update-badge {
      margin-bottom: 4px;
     
    }
    
    .badge-text {
      padding: 4px 0;
      color: white;
      text-align: center;
    }
  }
.hero-heading {
    font-size: 70px;
    line-height: normal;
}

.subheading {
    font-size: 22px;
    color: rgb(71, 84, 102);
}

.images img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin-left: -10px;
    transition: transform 0.4s ease, z-index 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.images img:hover {
    transform: translateY(-10px);
}

.form-control {
    background-color: lab(93 0.02 0);
}

.btn {
    background-color: rgb(133, 77, 252);
}

.btn:hover {
    background-color: rgb(133, 77, 252);
}

/* Product CSS */
.small-card-img {
    background-color: #bdff1c;
    border-radius: 50%;
}

.seperatorborder {
    border-right: 1px solid #ccc;
}

/*FAQS*/

.accordion {
    max-width: 700px;
    margin: 2rem auto;
    border-radius: 12px;
    background-color: rgb(223, 250, 183);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.accordion-item {
    border: none;
    border-bottom: 1px solid #e0e9d0;
    background-color: transparent;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-button {
    background-color: transparent;
    color: #333;
    font-weight: 500;
    padding: 1.25rem 1.5rem;
    padding-right: 3rem; /* Add more padding on the right for the icon */
    box-shadow: none !important;
    position: relative;
    text-align: left;
    display: flex;
    justify-content: space-between;
}

.accordion-button span {
    display: block;
    flex: 1;
    padding-right: 10px;
    color: #333;
    font-size: 17px;


}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

/* Remove the default bootstrap arrow */
.accordion-button::after {
    display: none;
}

/* Create our custom indicator with a pseudo-element */
.accordion-button .icon-wrapper {
    position: absolute;
    right: 1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Prevent the icon from shrinking */
}

/* Horizontal line (always visible) */
.accordion-button .icon-wrapper::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 2px;
    background-color: #666;
    transition: all 0.3s ease;
}

/* Vertical line (changes with state) */
.accordion-button .icon-wrapper::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 14px;
    background-color: #666;
    transition: all 0.3s ease;
}

/* When expanded, rotate and fade the vertical line */
.accordion-button:not(.collapsed) .icon-wrapper::after {
    transform: rotate(90deg);
    opacity: 0;
}

/* When expanded, rotate the horizontal line */
.accordion-button:not(.collapsed) .icon-wrapper::before {
    transform: rotate(180deg);
}

.accordion-button:not(.collapsed) {
    background-color: transparent;

}

.accordion-body {
    padding: 0 1.5rem 1.25rem 1.5rem;
    line-height: 1.6;
    color: black;
    font-size: 17px;
    font-weight: normal;
}

/* Slider styles */
#slider-section {
    overflow-x: hidden;
    width: 100%;
}

.wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.slider-container {
    width: 100%;
    overflow-x: hidden;
}

.slider {
    display: flex;
    gap: 20px;
    transform: translateX(0);
    transition: 0.5s ease-out;
    width: 100%;
}

.slide {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
}

.slider-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.image1slider{
    height: 60vh;
}
@media (max-width: 996px) {
    .slider-image img {
        height: 50vh;
    }
}

.slider .firstcard {
    background-color: rgb(223, 250, 183);
    height: 80vh;
    width: 100%;
}

.slider .secondcard {
    background-color: rgb(223, 250, 183);
    height: 70vh;
    width: 100%;
}

.slider .thirdcard {
    background-color: rgb(223, 250, 183);
    height: 60vh;
    width: 100%;
}

/* Sections */
section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}

.productsection,
.Benefits-section,
.faqsection {
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}

/* To ensure all buttons have the same width, we can apply a fixed width */
.button-container {
    width: 10%;
    min-width: 130px;
}

/* Responsive styles */
@media (max-width: 996px) {
    .slider-container {
        height: auto;
        width: 100%;
    }

    .bg_img1 {
        display: none;
    }

    .slider .firstcard,
    .slider .secondcard,
    .slider .thirdcard {
        height: auto;
        width: 100%;
        max-width: 100%;
    }

    .slider {
        flex-direction: column;
        gap: 20px;
        transform: translateX(0) !important;
        width: 100%;
    }

    .slider-image {
        height: auto;
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .bg_img1 {
        display: none;
    }

    .testinomial-content1 .reviews,
    .testinomial-content1 .custom-badge {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
    }

   

    #navbarNav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: black;
        z-index: 4;
    }

    .hero-heading {
        text-align: center;
        font-size: 45px;
    }

    .seperatorborder {
        border-right: none;
    }

    .subheading {
        font-size: 18px;
        text-align: center;
    }
}