 *{
   font-family: 'Poppins', sans-serif;
}
h1,h2,h3,h4,h5,h6{
   font-family: 'Poppins', sans-serif;
}
p{
   font-family: 'Poppins', sans-serif;
}
a{
   font-family: 'Poppins', sans-serif;
   text-decoration: none;
}

.top-mobile-navbar{
    border-bottom: 1px solid #ddd;
    padding: 6px 3px;
}
.top-mobile-navbar .m-links{
    margin: 0px 10px;
}
.top-mobile-navbar .m-links a{
    color: #000;
    font-size: 16px;
}
.top-mobile-navbar .m-links a i{
    color: #fc8019;
}

.underline{
    background-color: #000;
    height: 3px;
    width: 50px;
    margin-bottom: 16px;
}
.image-border{
    border-radius: 16px;
}
.bg-f2f2f2{
    background-color: #f2f2f2;
}
.bg-red{
    background-color: red;
}
.bg-orange{
    background-color: #ff003f !important;
}

.text-orange{
    /* color: #fc8019; */
    color: #ae00ff !important;
}
.bg-black{
    background-color: #05470a !important;
}


.btn-purple{
    background-color: rgb(42, 3, 104);
}

/* Navbar */
.navbar-brand .web-logo{
    width: 120px;
}
.navbar-light .navbar-nav .nav-link{
    color: #000;
    font-size: 15px;
    padding: 10px 16px;
    font-weight: 800;
}
/* //Navbar */

.bg-pink{
    background-color: #0c2a74 !important;
}

.section{
    padding: 60px 0px;
}
.main-heading{
    font-size: 30px;
    font-weight: 900;
}

.box-card-one{
    padding: 10px;
    margin: 14px 0px;
    background-color: #edd8ee78;
    border: 11px solid #de161685;
}
/* .box-card-one:hover{
    border-color: #2645de;
    box-shadow: 0 4px 7px 0 rgb(241, 119, 5);
} */

/*  custome card color background hover */
.box-card-one {
    border: 5px solid transparent;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.box-card-one:hover {
    border-color: #2645de;
    box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.2); /* Light default shadow */
}

.box-card-one:hover::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: inherit;
    z-index: -1;
    background: linear-gradient(90deg, orange, rgb(255, 255, 255), rgb(3, 96, 3)); /* Gradient shadow */
    filter: blur(8px); /* Blur effect for smooth glow */
    opacity: 0.9;
}

.box-card-one .img-box{
    background: #eef0f5;
    height: 160px;
}
.box-card-one .img-box img{
    width: 100%;
    height: 160px;
    border-radius: 16px;
}
.box-card-one .box-card-content{
    padding: 10px 0px 0px 0px;
}
.box-card-one .box-card-content .box-card-title{
    font-size: 16px;
    font-weight: 600;
    word-break: break-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000;
}
.box-card-one .box-card-content .box-card-price{
    font-size: 16px;
    margin: 14px 0px;
}
.box-card-one .box-card-content .input-group-text{
    padding: 2px 9px !important;
    border-radius: 0px;
}
.box-card-one .box-card-content .qty-input{
    padding: 0px;
    font-size: 14px;
}
.veg-non-veg-tag{
    float: right;
}
.veg-item{
    padding: 3px 0px;
    border: 2px solid green;
    color: green;
    width: 26px;
    margin-right: 4px;
    height: 26px;
    text-align: center;
}
.non-veg-item{
    padding: 3px 0px;
    border: 2px solid rgb(139, 41, 5);
    color: rgb(139, 41, 5);
    width: 26px;
    margin-right: 4px;
    height: 26px;
    text-align: center;
}

/* About Section */
/* .about-us-img img{
    width: 100%;
    border-radius: 16px;
}
.about-content{
    padding: 20px;
}
.about-content .top-label{
    background-color: #fff;
    border-radius: 20px;
    font-size: 16px;
    display: inline;
    padding: 3px 20px;
}
.about-content .heading{
    margin: 20px 0px;
    font-size: 40px;
    color: #fff;
} */
/* //About */
.about-us-img {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.about-us-img img {
    width: 100%;
    border-radius: 16px;
    transition: transform 0.5s ease-in-out;
}

.about-us-img:hover img {
    transform: scale(1.05); /* Slight zoom effect */
}

.about-content {
    padding: 20px;
    animation: fadeIn 1s ease-in-out;
}

.about-content .top-label {
    background-color: #fff;
    border-radius: 20px;
    font-size: 16px;
    display: inline;
    padding: 3px 20px;
    animation: bounce 1.5s infinite alternate ease-in-out;
}

.about-content .heading {
    margin: 20px 0px;
    font-size: 40px;
    color: #fff;
    animation: slideIn 1s ease-in-out forwards;
}

/* 🔥 Keyframe Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-3px); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Contact Section */
/* .contact-banner{
    background-image: url(../images/slider3.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.contact-banner .contact-banner-overlay{
    background-color: #0000009c;
}
.contact-content label{
    color: #fff;
}
.contact-content .form-control{
    background-color: transparent;
    color: #fff;
    border-radius: 0px;
} */
/* //Contact Section */
/* Contact Section */
.contact-banner {
    background-image: url(../images/test.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: zoomIn 2s ease-in-out forwards;
}

/* Background Zoom-In Effect */
@keyframes zoomIn {
    from {
        transform: scale(1.1);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Overlay Smooth Fade-in with Blur */
.contact-banner .contact-banner-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    animation: fadeBlur 1.5s ease-in-out;
}

@keyframes fadeBlur {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(3px);
    }
}

/* Contact Form Label Animation */
.contact-content label {
    color: #fff;
    animation: slideUp 1.5s ease-in-out;
}

/* Text Slide-Up Effect */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Fields: Cool Hover Effects */
.contact-content .form-control {
    background-color: transparent;
    color: #fff;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease-in-out;
}

/* Neon Glow Effect on Hover */
.contact-content .form-control:hover,
.contact-content .form-control:focus {
    border-color: #00ffcc;
    box-shadow: 0px 0px 12px rgba(0, 255, 204, 0.8);
    transform: scale(1.05);
}

/* 🚀 Button Animation */
.contact-content .btn {
    background-color: #00ffcc;
    color: #000;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: buttonEntry 1.8s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* Button Slide-Up Entry */
@keyframes buttonEntry {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button Hover Effect */
.contact-content .btn:hover {
    background-color: #000;
    color: #00ffcc;
    box-shadow: 0px 0px 15px rgba(0, 255, 204, 0.9);
    transform: scale(1.1);
}

/* Footer */
.footer-area{
    background-color: #000801;
    padding: 40px 0px;
}
.footer-area .footer-heading{
    color: #f47c18;
    font-size: 20px;
}
.footer-area .footer-para{
    color: #fff;
    font-size: 14px;
}
.footer-area .footer-link a{
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    line-height: 2;
}
/* Banner Section */
.banner-section{
    padding: 30px 0px;
    background-color: #171a29;
}
.banner-section .banner-heading{
    font-size: 26px;
    color: #fff;
    margin-bottom: 0px;
}
/* banner end */

/* menu-items */
.box-items{
    padding: 20px 0px;
    border-bottom: 1px solid #ddd;
}
.box-items .box-item-title{
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}
.box-items .box-item-price{
    font-size: 16px;
}
.box-items .box-item-img img{
    width: 100%;
    border-radius: 20px;
    box-shadow: 3px 3px 6px 3px #ddd;
}
.box-item-description{
    font-size: 14px;
    color: rgba(40, 44, 63, 0.45);
}
.box-item-description p{
    font-size: 14px;
    color: rgba(40, 44, 63, 0.45);
}

.box-items .cart-btn-area{
    margin: 16px 0px;
}
.cart-btn-area .input-group{
    width: 110px;
}
.cart-btn-area .input-group-text{
    padding: 2px 9px !important;
    border-radius: 0px;
}
.cart-btn-area .qty-input{
    padding: 0px;
    font-size: 14px;
}

.divider{
    height: 1px;
    width: 100%;
    background-color: #ddd;
    margin: 10px 0px;
}
.cart-page-section{
    box-shadow: 1px 2px 8px 1px #ddd;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    margin: 20px 0px;
}
.cart-page-section .cart-image{
    width: 50%;
    border-radius: 15px;
}
.checkout-img-tag{
    width: 58px;
    height: 58px;
    border-radius: 8px;
}

.btn-funda{
    color: #fff !important;
    padding: 4px 14px;
    font-size: 14px;
    border-radius: 0px;
}
.custom-sticky-top{
    position: sticky !important;
    top: 100px;
    z-index: 99;
}
.checkout-form label{
    font-size: 15px;
    font-weight: 100;
    color: #000;
}
.form-control{
    font-size: 14px;
    font-weight: 100;
    color: #000;
    padding: 8px 11px;
    border-radius: 0px;
}
.form-control:focus{
    box-shadow: none;
    border: 1px solid red;
}
.ellipse-title {
    font-size: 16px;
    font-weight: 600;
    word-break: break-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000;
}
.slider-heading2 {
    font-size: 45px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}
.navbar .nav-item .dropdown-menu {
    padding: 0;
}
.dropdown-menu .dropdown-item {
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    padding: 10px 20px !important;
}
.dropdown-item.active, .dropdown-item:active{
    background-color: #ff003f !important;
}

@media screen and (max-width: 680px) {
    .box-card-one .img-box{
        height: 200px
    }
    .box-card-one .img-box img {
        height: 200px;
    }
    .banner-section .banner-heading{
        font-size: 22px;
    }
    .main-heading {
        font-size: 22px;
    }
    .box-items .box-item-img img {
        width: 50%;
        margin-bottom: 20px;
    }
    .cart-page-section .cart-image{
        width: 100%;
    }
    .cart-list-heading{
        font-size: 14px;
    }
    .mbrdr{
        border-bottom: 1px solid #ddd;
        padding: 10px 14px;
    }
    .m-fs16{
        font-size: 16px;
    }
    .navbar-light .navbar-nav .nav-link{
        border-bottom: 1px solid #ddd;
        font-size: 14px;
    }
    .dropdown-menu .dropdown-item{
        font-size: 14px;
    }
}