.navbar-custom {
    font-weight: bold;

}

.section-1 {
    margin-bottom: 5%;
    border-radius: 6px;
    height: 700px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.section-1 .overlay {
    background-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 576px) {
    .section-1 {
        height: 450px;
    }

    .responsive-text {
        font-size: 12px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .responsive-text {
        font-size: 14px;
    }
}

@media (min-width: 769px) {
    .responsive-text {
        font-size: 16px;
    }
}

.section-2 {
    margin-bottom: 5%;
}


.product-image {
    width: 100%;
    height: auto;
}

.section-3 {
    margin-bottom: 5%;
}

.section-3 .custom-img {
    object-position: center;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
}


.section-3 .custom-div {
    height: 700px;
}

.section-3 .custom-sm-div {
    height: 280px;
}

@media (max-width: 576px) {
    .section-3 .custom-div {
        height: 400px;
    }

    .section-3 .custom-sm-div {
        height: 190px;
    }
}

.section-3 p {
    color: gray;
    font-size: 18px;

}

footer {
    padding-top: 4%;
    padding-bottom: 4%;
}

footer p {
    margin-bottom: 0%;
}

footer h6 {
    font-weight: bold;
}

footer a {
    margin-right: 3%;
    color: gray;
    text-decoration: none;
}

.fab {
    font-size: 20px;
}

@media (max-width: 576px) {
    footer {
        padding-top: 10%;
        padding-bottom: 10%;
    }

    footer .sm {
        padding-top: 5%;
    }

    footer .sm-2 {
        padding-top: 5%;
    }
}


.sidenav {
    width: 200px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -250px;
    background-color: whitesmoke;
    opacity: 90%;
    transition: 0.3s;
    z-index: 999;
    padding-top: 10%;
    padding-left: 5%;
}

.sidenav.show {
    right: 0;
}

.closebtn {
    font-size: 30px;
    color: black;
}

.sidenav .nav-item {
    font-weight: 700;
    font-size: 20px;
}

.navbar-toggler {
    border: none;
    outline: none;
}

.carousel-indicators li {
    background-color: white;
}

@media (min-width: 577px) {
    .carousel-indicators {
        position: absolute;
        margin-bottom: 100px;
    }
}

/* .......................... */
.chat-container {
    width: 80%;
    max-width: 600px;
    height: 500px !important;
    margin: 50px auto;
    background-color: #35AE8A;
    border-radius: 20px;
    padding: 30px 20px;
    position: relative;
}

.chat-modal-content {
    background-color: transparent !important;
}

.modal-content {
    background-color: transparent;
}

.close-button {
    position: absolute;
    top: 2%;
    right: 10px;
    background: none !important;
    border: none !important;
    color: #302D3C !important;
    font-size: 34px !important;
    cursor: pointer;
}

.bot-icon {
    width: 40%;
    height: 40%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    z-index: 1;
    position: relative;
    /* Ensure it respects stacking order */
}

/* .example-text p{
    color: #FFFFFF !important;
    margin-bottom: 0px;
} */

.default-Qust {
    color: white;
    border-radius: 15px;
    padding: 15px;
    margin: 0 auto;
    max-width: 80%;
    text-align: center;
    height: 250px;
}

.input-group {
    background-color: #ffffff50;
    border-radius: 30px;
    padding: 0px;
    display: flex;
    align-items: center;
    width: 95%;
    position: absolute;
    bottom: 5px;
}

.form-control {
    border: none;
    background: none;
    color: white;
    padding: 5px 20px;
    flex: 1;
    outline: none;
}

.form-control::placeholder {
    color: #08594188;
    font-weight: 500;
    font-size: 12px;
}

.arrow-button {
    background: white;
    border: none;
    width: 40px;
    /* Ensure it's square for the circular shape */
    height: 40px;
    /* Match width for perfect circle */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* Ensures the shape is circular */
    padding: 0;
    /* Remove any padding */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    /* Optional for better visuals */
}

.arrow-button svg {
    width: 20px;
    height: 20px;
    fill: #08594188;
}

.arrow-button:hover svg {
    fill: white;
}

.arrow-button:hover {
    background-color: #00a676;
}


.step1-dialog {
    max-width: 90vw !important;
    max-height: 90vh !important;
    width: 90vw;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step1-content {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: fixed; 
    /* overflow: auto; */
}

/* .step1-content::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.step1-content {
    scrollbar-width: none;
} */


#chat-box {
    display: flex;
    flex-direction: column;
    height: 390px;
    overflow-y: scroll;
}

#chat-box::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  #chat-box::-webkit-scrollbar-track {
    background: #2A9F7C; 
    border-radius: 10px;
  }
   
  /* Handle */
  #chat-box::-webkit-scrollbar-thumb {
    background:  #5ACEAC;
    border-radius: 10px; 
  }
  
  /* Handle on hover */
  #chat-box::-webkit-scrollbar-thumb:hover {
    background: #5aceaba4; 
  }  

/* #chat-box {
    -ms-overflow-style: none;
    scrollbar-width: none;
} */

.chat-para {
    background-color: #ffffff2d;
    border-radius: 15px 15px 15px 5px;
    color: #ffffffd0;
    width: fit-content;
}

.user .chat-para {
    background-color: #ffffff2d;
    border-radius: 15px 15px 5px 15px;
    margin-left: auto;
}

.bot .chat-para {
    background-color: #01664876;
    border-radius: 15px 15px 15px 5px;
    margin-right: auto;
}

.typing-indicator {
    display: flex;
    align-items: center;
    margin: 10px;
    margin-bottom: 25px;
}

.dot {
    width: 8px;
    height: 8px;
    margin: 0 2px;
    background-color: #ffffffd0;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

@keyframes typing {

    0%,
    80%,
    100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}

.chat-page {
    /* width: 25%; */
    height: 6%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    z-index: 1;
    position: relative;
}

.age-options {
    display: flex;
    gap: 10px;
}

.age-option-btn {
    background-color: #077152;
    color: rgba(255, 255, 255, 0.797);
    border: none;
    padding: 5px 10px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.age-option-btn:hover {
    background-color: #07715195;
}

.combo-suggestion {
    background-color: #01664876 !important;
    margin-bottom: 7px;
}

.product-container {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
    gap: 15px;
}

.product-item {
    text-align: center;
    background: white;
    padding: 10px;
    color: black;
    border-radius: 8px;
    width: 150px;
}

.product-image {
    width: 80px;
    height: 80px;
    border-radius: 5px;
}
.product-item p{
    text-align:left;
    font-size: small;
}
.button-container {
    margin-top: 10px;
    display: flex;
    justify-content: space-around;
}

.combo-button {
    padding: 4px 15px;
    border: none;
    background-color: #0166486c ;
    color: white;
    border-radius: 25px;
    cursor: pointer;
}

.combo-button:hover {
    padding: 4px 15px;
    border: none;
    background-color: #046246 ;
    color: white;
    border-radius: 25px;
    cursor: pointer;
}
