body {
    font-family: 'Poppins', 'Courier New', Courier, monospace;
    background-color: #ffffff;

}

.top-bar {
    background: #f0d157 !important;
}

.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-sm-square {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    /* keep square look */
    transition: all 0.3s ease;
}

.btn-sm-square:hover {
    background-color: #4a4e51 !important;
    color: #f6e071 !important;
}

.text-primary {
    color: #4a4e51 !important;
}

.swiper-button-prev {
    color: #f0d157 !important;
}

.swiper-button-next {
    color: #f0d157 !important;
}

.btn-sm-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-weight: normal;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #f0d157;

}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: black;
    font-weight: 500;
    background: #fff;
    padding: 10px 5px 5px 11px;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/* crausal css*/


.swiper {
    width: 100%;
    height: 600px;
}

.swiper-slide {
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    max-width: 500px;
}

.slide-content h2 {
    color: #f4dd6b;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

.slide-content p {
    color: white;
    font-size: 18px;
}

.slide-content a {
    margin-top: 10px;
}

.swiper-pagination-bullet {
    background: #f0d157;
    ;
}

.button-style-1 {
    display: inline-block;
    padding: 12px 28px !important;
    font-size: 16px;
    font-weight: bold;
    color: #4a4e51;
    background: #f0d157;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.button-style-1:hover {
    background: #4a4e51;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    color: #f5df70;
    ;
}

.button-style-1:active {
    transform: scale(0.97);
}

.button-style-1::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transition: all 0.4s ease;
}

.button-style-1:hover::after {
    left: 100%;
}

.img-nav {
    height: -webkit-fill-available !important;
}

/*add new css*/

.dropdown-item:hover {
    color: #f0d157;
    background-color: var(--bs-dropdown-link-hover-bg);
}

@media (max-width: 368px) {
    img.img-nav {
        width: 250px !important;
        /* chhoti screen ke liye kam width */
    }
}

.img-nav {
    height: auto !important;
    /* fix for responsive */
    max-height: 75px;
    /* navbar ke andar fit ho jaye */
    width: auto;
}

@media (max-width: 768px) {
    .img-nav {
        max-height: 55px;
        /* tablet + mobile ke liye thoda chhota */
        width: auto;
    }
}

@media (max-width: 368px) {
    .img-nav {
        max-height: 45px;
        /* very small mobile ke liye aur chhota */
        width: auto;
    }
}