:root {
    --blue: rgb(4, 113, 255);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: 'Noto Sans Adlam Unjoined', sans-serif;
}


.head-con{
    display: block;
}

.navbar {
    z-index: 5;
}

.navbar-logo-txt {
    font-weight: 450;
    color: #3E3E3E;
    font-size: 30px;
    text-decoration: underline;
}

.navbar-nav>li>a {
    display: block;
    color: gray;
    text-decoration: none;
    transition: .4s;
    padding: 0.5rem 1rem;
}

.navbar-nav>li>a:hover {
    color: black;
}

.white-btn {
    display: inline-block;
    text-decoration: none;
    color: var(--blue);
    background-color: white;
    font-weight: bold;
    border-radius: 5px;
    transition: .4s;
    padding: .5rem 1rem; /* Ensure padding for all screen sizes */
}

.white-btn:hover {
    color: white;
    background-color: var(--blue);
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.black-btn {
    display: inline-block;
    text-decoration: none;
    color: white;
    background-color: var(--blue);
    border: 2px solid transparent;
    padding: .5rem 1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: .4s;
}

.black-btn:hover {
    background-color: transparent;
    border: 2px solid var(--blue);
    color: var(--blue);
}

.toast {
    z-index: 5;
}

.toast-border {
    border-left: 7px solid var(--blue);
    position: fixed;
    right: 0;
    bottom: 4%;
}

.footer {
    background-color: black;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: 30px;
}

.pink-btn {
    display: inline-block;
    text-decoration: none;
    color: white;
    background-color: black;
    border: 2px solid transparent;
    padding: .5rem 1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: .4s;
}

.pink-btn:hover {
    background-color: transparent;
    border: 2px solid black;
    color: black;
}

.choose-btn:hover {
    color: white;
    background-color: black;
}

.contact-info {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-details {
    padding: 20px;
}

.contact-item {
    margin-bottom: 15px;
}

.contact-label {
    font-weight: bold;
    color: #333;
}

.contact-value {
    color: #666;
}

.gallery-container {
    width: 100%;
    overflow: hidden;
}

.gallery-row {
    display: flex;
    animation: scrollGallery 10s linear infinite;
}

.col {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex: 0 0 auto;
}

.banner {
    width: 100%;
    height: 700px;
}

img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}


#title {
    font-size: 30px;
    text-align: center; /* Center-align title for better visibility */
}

.w-100 {
    height: 50%;
}

/* Media queries for responsive design */

@media (max-width: 768px) {
    .navbar-logo-txt {
        font-size: 24px;
    }

    .navbar-nav>li>a {
        padding: 0.5rem;
    }

    .footer {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .banner {
        height: 50vh; /* Adjust banner height for smaller screens */
    }

    #title {
        font-size: 24px; /* Smaller font size for mobile */

    }
    .head-con{
        display: block;
    }
}

@media (max-width: 400px) {
    .carousel-item {
        height: 40vh;
    }

    .carousel-item img {
        height: 100%;
    }

    .white-btn,
    .black-btn,
    .pink-btn {
        padding: .5rem; /* Adjust padding for smaller buttons on mobile */
        font-size: 14px; /* Smaller font size for buttons on mobile */
    }
    .head-con{
        display: block;
    }
}

@media (min-width: 1024px) {
    .img-fluid {
        max-width: 80%; /* Adjust image size for larger screens */
    }

    .banner {
        height: 700px; /* Keep banner height larger for desktop */
    }
}
