/*start of home*/
html,
body, h2, p, ul, li {
    height: 100%;
    margin: 0;
    font-family: 'Muli', 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

h2,h3,h4,h5,h6 {
    font-size: 20px;
    font-family: 'Lato', -apple-system, 'Muli', sans-serif;
    font-weight: 700;
}


/*Login, register and forget password page css start from here...................................................*/



.login {
    margin: 8% 30% 3% 20%;
    position: relative;
    width: 60%;
    padding: 4% 1%;
    box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.1), inset -5px -5px 10px rgba(255, 255, 255, 0.7), 5px 5px 10px rgba(0, 0, 0, 0.1), -5px -5px 10px rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    gap: 20px;
    background: white;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

    .login h2 {
        font-size: 2em;
        text-align: center;
        line-height: 0.9em;
    }

    .login .inputBox {
        position: relative;
        display: flex;
        align-items: center;
    }

        .login .inputBox input {
            border: none;
            outline: none;
            padding-right: 2.5rem;
            background: transparent;
            border-radius: 10px;
            font-size: 1em;
        }

            .login .inputBox input[type="password"] {
                padding: 15px 60px !important;
            }

            .login .inputBox input[type="text"],
            .login .inputBox input[type="password"] {
                width: 90%;
                padding: 15px 40px;
                margin-right: 20px;
                margin-bottom: 20px;
                margin-left: 20px;
                box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.1), inset -5px -5px 10px rgba(255, 255, 255, 0.7), 5px 5px 10px rgba(0, 0, 0, 0.1), -5px -5px 10px rgba(255, 255, 255, 0.7);
            }

        .login .inputBox .fa-user {
            position: absolute;
            left: 40px;
            top: 25%;
        }

        .login .inputBox .fa-lock {
            position: absolute;
            left: 40px;
            top: 25%;
        }

        .login .inputBox .fa-envelope {
            position: absolute;
            left: 40px;
            top: 25%;
        }

        .login .inputBox .fa-building {
            position: absolute;
            left: 40px;
            top: 25%;
        }

        .login .inputBox .fa-mobile {
            position: absolute;
            left: 40px;
            top: 25%;
        }

        .login .inputBox .fa-eye {
            position: absolute;
            right: 50px;
            top: 25%;
            cursor: pointer;
        }

        .login .inputBox .fa-eye-slash {
            position: absolute;
            right: 50px;
            top: 25%;
            cursor: pointer;
        }

    .login h6 {
        display: flex;
        align-items: center;
        margin-left: 20px;
        cursor: pointer;
        font-weight: 600;
    }

        .login h6 a {
            text-decoration: none;
            color: inherit;
            /* Ensure the link inherits the text color */
        }

        .login h6:hover {
            color: blue;
        }

        .login h6:active {
            color: darkred;
        }

    .login .error {
        margin-left: 25px;
    }
.e-btn {
    all: unset;
}

.login .inputBox button[type="submit"],
.login .inputBox button[type="button"] {
    margin: 20px 0px 0px 20px;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.1), -5px -5px 10px #fff;
    width: 90%;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    background-color: white;
    color: black;
    text-align: center;
}

    .login .inputBox button[type="submit"]:focus,
    .login .inputBox button[type="button"]:focus {
        box-shadow: inset 5px 5px 10px rgba(0,0,0,0.1), inset -5px -5px 10px #fff;
    }

    .login .inputBox button[type="submit"]:hover,
    .login .inputBox button[type="button"]:hover {
        color: blue;
    }

    .login .inputBox button[type="submit"]:active,
    .login .inputBox button[type="button"]:active {
        color: darkred;
    }



.inputBox {
    position: relative;
    display: flex;
}

    .inputBox input {
        border: none;
        outline: none;
        background: transparent;
        border-radius: 10px;
        font-size: 1em;
    }
/* Responsive adjustments */


@media (max-width: 768px) {
    .image-section {
        display: none;
    }

    .login {
        width: 80%;
        max-width: 400px;
        margin: 60px auto auto 30px;
    }

        .login .inputBox input[type="text"],
        .login .inputBox input[type="password"] {
            width: 90%;
            padding: 15px 60px;
            margin-bottom: 20px;
            margin-left: 20px;
            box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.1), inset -5px -5px 10px rgba(255, 255, 255, 0.7), 5px 5px 10px rgba(0, 0, 0, 0.1), -5px -5px 10px rgba(255, 255, 255, 0.7);
        }
}

@media (max-width: 576px) {
    .login {
        width: 90%;
        margin: 60px auto auto 30px;
    }

        .login .inputBox input[type="text"],
        .login .inputBox input[type="password"] {
            width: 90%;
            padding: 15px 60px;
            margin-bottom: 20px;
            margin-left: 20px;
            box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.1), inset -5px -5px 10px rgba(255, 255, 255, 0.7), 5px 5px 10px rgba(0, 0, 0, 0.1), -5px -5px 10px rgba(255, 255, 255, 0.7);
        }
}

/*Login page css End  here...................................................*/
a {
    font: 16px;
}

p {
    font: 14px;
}


.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/*@media (max-width: 575px) {
    .caroimg {
        padding-top: 30px;
    }
}*/

.header h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    font: bolder;
    padding: 5px;
}

.days {
    font-style: italic;
    display: flex;
    justify-content: center;
    align-items: center;
    font: bold;
}

.sectiondivider {
    display: flex;
    justify-content: center;
    align-items: center;
}

.categories .card {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(255, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) inset;
    transition: all 0.3s;
    border-radius: 10px;
}

    .categories .card:hover {
        transform: scale(1.15)
    }

.card-img-top {
    width: calc(100% - 40px);
    height: 100%;
    object-fit: cover;
}

.categories .card-img-top {
    border-radius: 15px;
    padding: 20px;
}

.categories p {
    padding: 20px;
    height: 50%;
    text-align: justify;
}

.categories h5 {
    text-align: center;
    font-family: 'Great Vibes', cursive;
    font-size: 22px;
    font-weight: 600;
    color: #333;
}


.categories .btn.btn-primary {
    width: 70%;
    margin: 50px auto;
}

.categories .card-img-top {
    border-radius: 15px;
    padding: 20px;
    width: auto;
    height: 200px;
    object-fit: cover;
}

.categories .cardimg {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 200px;
}

.categories .cardimg {
    position: relative;
    overflow: hidden;
}

    .categories .cardimg img {
        transition: 0.4s ease-in-out;
    }

/* Darken image on hover */
.categories .card:hover .cardimg img {
    filter: brightness(60%);
}

/* Explore Button Styling */
.categories .cardimg .explore-btn {
    position: absolute;
    bottom: 85px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.4s ease-in-out;
}

/* Show button on hover */
.categories .card:hover .cardimg .explore-btn {
    opacity: 1;
}

.categories .card-text {
    font-family: 'Playfair Display', serif !important;
    font-size: 19px;
    font-weight: 500;
    color: #222;
}

.SIAU {
    margin: 5% 0px;
}

.hero-section {
    background: url('/img/home image.jpg') no-repeat center center/cover;
    height: 100vh;
    color: rgb(255, 255, 255);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#hero-text {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

    #hero-text::after {
        content: "";
        display: inline-block;
        width: 8px;
        background-color: white;
        animation: blink 0.7s infinite;
    }

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.hero-section .lead {
    font-family: 'Merriweather', serif;
    letter-spacing: 1px;
    color: #f8f9fa;
}

.custom-btn {
    background-color: #cc2342;
    color: white;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease-in-out;
}

.button-group {
    margin-top: 20px;
}

.btn {
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease-in-out;
    border: 2px solid transparent;
}

.book-now-btn {
    background-color: red;
    color: white;
    border-color: red;
}

    .book-now-btn:hover {
        background-color: darkred;
        border-color: darkred;
    }

.contact-btn {
    color: white;
    border: 2px solid red;
    margin-left: 10px;
}

    .contact-btn:hover {
        background-color: red;
        color: white;
    }

.about-us-section {
    opacity: 0;
    background: #f9f9f9;
    transform: translateY(50px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

    .about-us-section.show {
        opacity: 1;
        transform: translateY(0);
    }

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: bold;
}

    .section-title span {
        font-family: 'Dancing Script', cursive;
        font-size: 40px;
        color: red;
    }

    .section-title.show {
        opacity: 1;
        transform: translateX(0);
    }

.lead {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    line-height: 1.6;
}

.about-us-img {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

    .about-us-img.show {
        opacity: 1;
        transform: translateX(0);
    }

.read-more-link {
    color: #d32f2f;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

    .read-more-link:hover {
        color: #ff6600;
        text-decoration: underline;
    }

.background-section {
    position: relative;
    width: 100%;
    height: 60vh;
    background: url('../img/home background.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    overflow: hidden;
}

.content-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    max-width: 1200px;
    position: relative;
}

    .content-box p {
        width: 30%;
        background: rgba(0, 0, 0, 0.6);
        padding: 15px;
        border-radius: 10px;
        font-size: 20px;
        font-weight: 500;
        line-height: 1.8;
        opacity: 0;
        transition: all 0.8s ease-in-out;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        border: 2px solid rgba(255, 255, 255, 0.2);
    }

        .content-box p:nth-child(1) {
            transform: translateX(-80px) scale(0.9);
        }

        .content-box p:nth-child(2) {
            transform: translateY(50px) scale(0.9);
        }

        .content-box p:nth-child(3) {
            transform: translateX(80px) scale(0.9);
        }

        .content-box p.active {
            opacity: 1;
            transform: translateX(0) translateY(0) scale(1);
        }


@media (max-width: 768px) {
    .content-box {
        flex-direction: column;
        width: 100%;
    }

        .content-box p {
            width: 90%;
            margin-bottom: 20px;
            transform: translateX(0) translateY(20px) scale(0.95);
            opacity: 1;
        }

            .content-box p:nth-child(1),
            .content-box p:nth-child(2),
            .content-box p:nth-child(3) {
                transform: translateY(20px) scale(0.95);
            }

            .content-box p.active {
                transform: translateY(0) scale(1);
            }
}



/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .categories .card:hover {
        transform: scale(1.05);
    }

    /* .categories .btn.btn-primary {
        width: 30%;
    }*/
    .categories p {
        padding: 20px;
        height: 38%;
        text-align: justify;
    }

    .catering h5 {
        font-size: 18px;
    }

    .catering p {
        font-size: 14px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .categories .card:hover {
        transform: scale(1.1);
    }

    .categories p {
        padding: 20px;
        font-size: 14px;
        height: 50%;
        text-align: justify;
    }

    .content-box p {
        width: 90%;
        font-size: 16px;
        text-align: center;
        padding: 10px;
    }

    .content-box {
        flex-direction: column;
        text-align: center;
    }

    .col-md-4 home {
        flex: 1 0 100% !important;
        max-width: 100% !important;
    }

    .d-flex {
        flex-direction: column;
        text-align: center;
    }

    .icon {
        margin-bottom: 10px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .categories .card:hover {
        transform: scale(1.05);
    }

    .categories .btn.btn-primary {
        width: 50%;
        margin: 90px 0px;
    }

    .categories p {
        text-align: left;
    }
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .categories .card {
        transition: transform 0.3s ease-in-out;
        padding: 12px;
    }

    .categories .card:hover {
        transform: scale(1.03);
    }

    .categories .cardimg img {
        max-height: 180px;
        object-fit: cover;
    }

    .categories .card-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .categories .card-text {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 12px;
        text-align: left;
    }

    .categories .btn.btn-primary {
        width: 100%;
        margin-top: 8px;
        margin-bottom: 0;
        padding: 8px 16px;
        font-size: 0.95rem;
    }

    .categories p {
        text-align: left;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
/*@media (max-width: 575px) {
    .categories .card:hover {
        transform: scale(1.05);
    }

    .categories .btn.btn-primary {
        width: 60%;
        margin: 90px 0px !important;
    }

    .categories .card-img-top {
        width: auto;
        padding: 10px;
        height: 150px;
    }

    .categories p {
        padding: 10px;
        height: 25%;
        font: 14px;
        text-align: left;
    }

}*/
@media (max-width: 575px) {
    .categories .card:hover {
        transform: scale(1.05);
    }

    .categories .btn.btn-primary {
        width: 60%;
        margin: 12px 0px !important;
        padding: 6px 12px; 
        font-size: 14px; 
    }

    .categories .card-img-top {
        width: auto;
        margin-top: 8px;
        height: 150px;
    }

    .card-title {
        margin-top: -30px;  
    }

    .categories p {
        padding: 8px;  
        font-size: 14px;
        text-align: left;
        margin-bottom: 8px;  
    }

    .row.pt-5 {
        padding-top: 1rem !important;  
    }

    .row.g-3 {
        --bs-gutter-x: 0.75rem;  
        --bs-gutter-y: 0.75rem;  
    }

    .col-md-4 {
        margin-bottom: 1rem;  
    }
}



.backgroundimage {
    background-image: url('../img/blackboard-bg-free-img.png');
    background-attachment: scroll;
    background-color: transparent;
}

.why-choose-us {
    background-color: #fff;
    padding: 50px 0;
    margin-bottom: 50px;
    overflow: hidden;
}

.section-title {
    color: darkred;
    font-weight: bold;
    font-size: 28px;
    animation: fadeInDown 1s ease-in-out;
}

.underline {
    width: 60px;
    height: 4px;
    background-color: gold;
    margin: 8px auto;
    animation: zoomIn 0.8s ease-in-out;
}

.feature-title {
    color: currentColor;
    font-size: 24px;
    animation: fadeInUp 1s ease-in-out;
}

.iconhome {
    width: 200px;
    height: 175px;
    margin: 10px;
    transition: transform 0.3s ease-in-out;
}

    .iconhome:hover {
        transform: scale(1.1);
    }

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.opening-hours {
    padding: 92px 0 100px;
    background: url('../img/home timings back.jpg') no-repeat center top;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    min-height: 400px;
}

    .opening-hours:after {
        background: rgba(0, 0, 0, 0.7);
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        z-index: 1;
    }

    .opening-hours .container {
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .opening-hours .inner {
        max-width: 745px;
        background: #fff;
        overflow: hidden;
        text-align: center;
        padding: 40px 60px 65px 60px;
        position: relative;
        z-index: 3;
        border-radius: 10px;
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
        animation: fadeInUp 1.2s ease-in-out;
        min-height: 350px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .opening-hours .row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

.sec-title {
    font-size: 48px;
    color: #f10909;
    font-family: 'CookieRegular';
    text-align: center;
    font-weight: normal;
    animation: slideInLeft 1.2s ease-in-out;
}

.clock-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 13px;
}

.timing-container {
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.timings, .holiday {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .timings h4, .holiday h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .timings span, .holiday span {
        font-size: 16px;
        color: #333;
    }

@media (max-width: 768px) {
    .opening-hours {
        padding: 60px 20px;
        background-attachment: scroll;
        min-height: 600px;
    }

        .opening-hours .row {
            flex-direction: column;
            text-align: center;
        }

        .opening-hours .inner {
            padding: 20px;
            min-height: auto;
            width: 100%;
            margin-bottom: 20px;
        }

    .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .sec-title {
        font-size: 32px;
    }

    .clock-icon {
        width: 60px;
        height: 60px;
    }

    .timing-container {
        flex-direction: column;
        gap: 20px;
    }

    .timings, .holiday {
        text-align: center;
    }
}

.scroll-animation {
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 1s ease-in-out;
}

    .scroll-animation.left {
        transform: translateX(-50px);
    }

    .scroll-animation.right {
        transform: translateX(50px);
    }

    .scroll-animation.active {
        opacity: 1;
        transform: translateX(0);
    }

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/*end of home*/

/*About us Page CSS*/
/*.aboutusheading {
    padding-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
}*/

.inneraboutus {
    position: relative;
    animation: fadeIn 1.5s ease-in-out;
}

    .inneraboutus img {
        width: 100%;
        height: 380px;
        object-fit: cover;
        filter: brightness(50%);
    }

    .inneraboutus .aboutustitle {
        position: absolute;
        top: 48.5%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 100%;
        text-align: center;
        z-index: 999;
    }

        .inneraboutus .aboutustitle h1 {
            margin: 0 0 5px;
            padding: 0;
            color: #fff;
            font-family: 'CookieRegular';
            font-size: 60px;
            font-weight: normal;
            line-height: 70px;
        }

        .inneraboutus .aboutustitle span {
            position: relative;
            z-index: 99;
            color: #fff;
            font-weight: 500;
            color: #ccc;
        }

        .inneraboutus .aboutustitle a {
            color: #fff;
        }

        .inneraboutus .aboutustitle span .aboutuslast {
            color: #f10909;
        }

    .inneraboutus:after {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.55);
    }

    .inneraboutus .aboutustitle a,
    .inneraboutus .aboutustitle .aboutuslast {
        text-decoration: none;
        position: relative;
    }

        .inneraboutus .aboutustitle a::after,
        .inneraboutus .aboutustitle .aboutuslast::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -3px;
            width: 0%;
            height: 2px;
            background-color: #f10909;
            transition: width 0.3s ease-in-out;
        }

        .inneraboutus .aboutustitle a:hover::after,
        .inneraboutus .aboutustitle .aboutuslast:hover::after {
            width: 100%;
        }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.aboutus grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.aboutus image-container {
    text-align: center;
}

    .aboutus image-container img {
        max-width: 80%;
        max-height: 500px;
        object-fit: cover;
        display: block;
        margin: 0 auto;
    }

.about-text h3 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

@keyframes fadeZoom {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.aboutus .col-md-6:first-child img {
    animation: fadeZoom 1.5s ease-in-out;
}

.aboutus .col-md-6:last-child {
    animation: fadeUp 1.5s ease-in-out;
}

.our-story, .our-specialty, .commitment-quality, .join-community, .contact-us about {
    text-align: center;
    padding: 50px 0;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}

.story-heading, .specialty-heading, .quality-heading, .community-heading, .contact-heading about {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    animation: slideDown 1.5s ease-in-out forwards;
}

.story-content, .specialty-content, .quality-content, .community-content, .contact-content about {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.story-image img, .specialty-image img, .quality-image img, .community-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    opacity: 0;
    animation: zoomIn 1.5s ease-in-out forwards 0.5s;
}

.story-text, .specialty-text, .quality-text, .community-text, .contact-text about {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    text-align: justify;
    padding: 20px;
    opacity: 0;
    animation: slideUp 1.5s ease-in-out forwards 0.7s;
}

.our-story h2, .our-specialty h2, .commitment-quality h2, .join-community h2, .contact-us about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    color: #c0392b;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

    .our-story h2::after, .our-specialty h2::after, .commitment-quality h2::after, .join-community h2::after, .contact-us about h2::after {
        content: "";
        width: 50px;
        height: 3px;
        background-color: #c0392b;
        display: block;
        margin: 8px auto 0;
    }

.our-story h2, .our-specialty h2, .commitment-quality h2, .join-community h2, .contact-us about h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-padding {
    padding: 60px 0;
    margin-bottom: 30px;
    background-color: #f8f9fa;
}

h2.h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.paragraph {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

    .card:hover {
        transform: translateY(-5px);
    }

.card-body {
    padding: 20px;
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.card p {
    font-size: 1rem;
    color: #555;
}

.image-container chef {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    padding: 10px;
}

    .image-container chef img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

@media (max-width: 768px) {
    .card h3 {
        font-size: 1.1rem;
    }

    .card p {
        font-size: 0.9rem;
    }

    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .inneraboutus {
        height: 250px;
    }

        .inneraboutus img {
            height: 250px;
        }

        .inneraboutus .aboutustitle h1 {
            font-size: 32px;
            line-height: 40px;
        }

    .aboutus .row {
        flex-direction: column;
    }

    .col-md-6 {
        margin-bottom: 30px;
    }

    .aboutus image-container img {
        margin: 0 auto;
    }

    .section-padding .row {
        flex-direction: column;
    }

    .col-sm-6, .col-md-3 {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-us.about ul.about {
        padding-left: 20px;
    }

    .contact-us.about li {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .our-story, .our-specialty, .commitment-quality, .join-community,
    .story-heading, .specialty-heading, .quality-heading, .community-heading,
    .story-text, .specialty-text, .quality-text, .community-text,
    .story-image img, .specialty-image img, .quality-image img, .community-image img {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}


/*aboutus page End*/


/* Contact Us start from here--------------------------------------------------------------*/
/* Add this to your existing CSS */
@media (max-width: 768px) {
    /* For mobile devices */
    .contact .info i {
        float: none;
        margin-bottom: 10px;
    }

    .contact .info h4,
    .contact .info p {
        padding-left: 0;
        text-align: center;
    }

    .contact .info > div {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }

    /* Adjust the iframe size on mobile */
    .contact .info iframe {
        height: 300px;
    }

    /* Center the contact form elements */
    .contact .php-email-form {
        text-align: center;
    }

    /* Adjust recaptcha container for mobile */
    .recaptcha-container {
        margin-left: 0;
        justify-content: center;
    }
}

/* Optional: Add some animation to icons on hover */
.contact .info i {
    transition: all 0.3s ease;
}

.contact .info div:hover i {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    #contactFormContainer {
        margin-top: 30px;
    }

    .contact .php-email-form .form-group {
        text-align: left; /* Keep form labels left-aligned */
    }
}

.contact .info > div {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

    .contact .info > div:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

@media (max-width: 768px) {
    .contact .info {
        padding: 20px;
    }

        .contact .info > div {
            padding-bottom: 15px;
            border-bottom: 1px solid #f0f0f0;
        }

            .contact .info > div:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }
    .contact-content.about,
    .contact-text.about {
        text-align: left !important;
    }
}

/* Contact Us End from here--------------------------------------------------------------*/

/*Delivery page CSS
  --------------------------------------------------------------*/
.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.swiper-container {
    max-height: 500px;
    max-width: 300px;
}

.delcontainer {
    display: grid;
}

.location-picker {
    margin-top: 10px;
}

.location-main {
    font-size: 24px;
    margin: 10px 0px;
    line-height: 36px;
}

.white-text {
    color: white;
}

.grey-text {
    color: grey;
}

.delivery, .pickup {
    cursor: pointer;
    margin-right: 5px;
    font-size: 14px;
    padding: 15px;
    border-radius: 6px;
    padding: 10px 0px 8px;
    width: 80px;
    margin-left: 10px;
}

.pickup {
    font-weight: bold;
}

.menu-stack-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 300px;
}

/* Container for the images */
.menu-images {
    display: flex;
    justify-content: center; /* Horizontally center images */
    align-items: center; /* Vertically center images */
    position: relative;
    width: 100%;
    height: 300px; /* Adjust height as needed */
    overflow: hidden; /* Hide overflow for a cleaner effect */
}

    /* Styling each image for better display */
    .menu-images img {
        display: block; /* Display images as block to remove any unwanted space below */
        max-width: 300px; /* Max width for each image */
        object-fit: contain; /* Maintain image aspect ratio */
        cursor: pointer;
        width: 100%;
        position: absolute; /* Positioning images absolutely for the stacking effect */
        left: 50%; /* Center horizontally */
        transform: translateX(-50%); /* Offset by 50% to truly center the image */
        opacity: 0.8; /* Slight opacity for a subtle effect */
        transition: all 0.5s ease-in-out; /* Smooth transition for positioning and opacity */
    }

        /* Stacking effect */
        .menu-images img:nth-child(1) {
            z-index: 7;
            top: -60px; /* First image stays on top */
        }

        .menu-images img:nth-child(2) {
            z-index: 6;
            top: -70px; /* Second image slightly moves up */
        }

        .menu-images img:nth-child(3) {
            z-index: 5;
            top: -80px; /* Third image further moved upwards */
        }

        .menu-images img:nth-child(4) {
            z-index: 4;
            top: -90px; /* Fourth image further moved upwards */
        }

        .menu-images img:nth-child(5) {
            z-index: 3;
            top: -100px; /* Fifth image further moved upwards */
        }

        .menu-images img:nth-child(6) {
            z-index: 2;
            top: -110px; /* Sixth image further moved upwards */
        }

        .menu-images img:nth-child(7) {
            z-index: 1;
            top: -120px; /* Seventh image further moved upwards */
        }

        /* Optional: Hover effect for images */
        .menu-images img:hover {
            transform: translateX(-50%) scale(1.05); /* Slightly zoom in on hover */
            opacity: 1; /* Fully visible on hover */
            transition: all 0.3s ease-in-out; /* Smooth transition */
        }

    /* Add shadow and border radius to each image for a modern look */
    .menu-images img {
        border-radius: 10px; /* Rounded corners for images */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow effect */
    }

.fullscreen-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

    .fullscreen-container img {
        max-width: 80%;
        max-height: 80%;
        object-fit: contain;
        position: relative;
        z-index: 1; /* Ensure image stays below arrows */
    }

.arrow {
    position: fixed; /* Changed from absolute to fixed */
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    color: #000;
    border: none;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000; /* Higher than container */
    opacity: 1 !important;
    visibility: visible !important;
}

    .arrow:hover {
        transform: translateY(-50%) scale(1.1);
    }

.left-arrow {
    left: 30px;
}

.right-arrow {
    right: 30px;
}

@media (max-width: 576px) {
    .pickup {
        margin-left: 30px;
    }

    .order-now {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .banner-img {
        margin-top: 30px;
    }
}

@media(max-width: 768px) {
    .pickup {
        margin-left: 30px;
    }

    .order-now {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .banner-img {
        margin-top: 30px;
    }
}

@media (max-width: 400px) {
    .pickup {
        margin-left: 30px;
    }

    .order-now {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .banner-img {
        margin-top: 30px;
    }
}

.selected {
    background-color: darkred;
}

.other-main {
    font-weight: 700;
    padding-bottom: 10px;
    font-size: 18px;
}

.user-address {
    font-size: 14px !important;
    padding-left: 5px;
}

.change-location {
    font-size: 14px;
    font-weight: 700;
    margin-top: 15px;
    cursor: pointer;
    padding-left: 5px;
    color: darkred;
}

.order-now {
    cursor: pointer;
}

.Order_n {
    color: white;
    font-size: 14px;
    font-weight: bold;
    background-color: darkred;
    padding: 15px;
    border-radius: 6px;
    border: none;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

    .Order_n:hover {
        background-color: darkred;
        color: whitesmoke;
    }

/*cart css start*/
.cartitem {
    text-align: left;
    margin-bottom: 20px;
}

    .cartitem .btn.btn-primary {
        margin: 10px;
    }

    .cartitem form-control {
        max-width: 50px;
    }

    .cartitem img {
        width: 110px;
        height: 100px;
    }

.Back .back-to-home {
    color: black;
    font-size: 14px;
}

    .Back .back-to-home:hover {
        color: blue
    }

.cartitem .me-5 {
    margin-right: 20px;
}

.cartitem .form-control {
    max-width: 50px;
}

.custom-clear-btn{
    background-color: #dc3545;  
    color: white;
    font-size: 14px;
    padding: 4px 12px;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}




/*cart css start*/
/* For Mobile view */
@media (max-width: 767px) {
    .cartitem {
        text-align: center;
    }

        .cartitem .img-container, .cartitem .details-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .cartitem img {
            margin-bottom: 10px;
        }

        .cartitem .details-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: row;
        }

            .cartitem .details-container .product-name {
                margin-right: 10px;
            }

        .cartitem .form-control {
            max-width: 50px;
            display: inline-block;
        }
}

/* For Tablet screen and up */
@media (min-width: 768px) {
    .cartitem {
        text-align: left;
        margin-bottom: 40px;
    }

        .cartitem img {
            width: 150px;
            height: 130px;
        }

        .cartitem .me-5 {
            margin-right: 30px;
        }

        .cartitem .form-control {
            max-width: 70px;
        }
}

/* For pc screen and up */
@media (min-width: 992px) {
    .cartitem {
        text-align: left;
        margin-bottom: 60px;
    }

    .row .cartitem {
        max-height: 60px;
    }

    .cartitem img {
        width: 110px;
        height: 90px;
    }

    .cartitem .me-5 {
        margin-right: 40px;
    }

    .cartitem .form-control {
        max-width: 100px;
    }
}
/* Extra large screen and up */
@media (min-width: 1200px) {
    .cartitem {
        margin-bottom: 80px;
    }

    .row .cartitem {
        max-height: 60px;
    }

    .cartitem img {
        width: 110px;
        height: 90px;
    }

    .cartitem .me-5 {
        margin-right: 50px;
    }

    .cartitem .form-control {
        max-width: 130px;
    }
}

.nonveg {
    background: #fff;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #954324;
    border-radius: 0 !important;
}

.veg {
    border-radius: 50%;
    background: #4caf50;
    width: 10px;
    height: 10px;
}

.highlight-box {
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 25px;
    background-color: #EEEDE7;
    margin-right: 12px;
    transition: background-color 0.3s, color 0.3s;
}


.icon {
    margin-bottom: 5px;
    color: darkred;
    height: 16px;
    width: 16px;
    transition: color 0.3s;
}


.highlight-box:hover {
    background-color: darkred;
}

    .highlight-box:hover .icon {
        color: white;
    }

.add-instruction-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
    border: 1px solid #ededed;
    background-color: #fff;
    padding: 12px 16px;
    width: 100%;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.add-instruction {
    line-height: 20px;
    color: #b2b5ba;
    font-size: small;
    margin-left: 5px;
}

.cart-regular-type {
    color: #919191;
    font-weight: 400;
    font-size: 14px;
    display: block !important;
    letter-spacing: -.2px;
    text-overflow: ellipsis;
}

/*.partyinfo {
    border-top: 3px solid darkred;
    border-bottom: 3px solid darkred;
    padding: 30px;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
    display: block;
}*/

.cart-bold-type {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -.2px;
    margin-bottom: 2px;
}

.change-phone-btn {
    margin-left: auto;
    color: red;
}


.checkout {
    display: flex;
    justify-content: center;
    width: 90%;
    font-size: 14px;
    margin: 30px auto;
}


.custom-font {
    font-family: 'Poppins', sans-serif;
}


.custom-input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    padding-top: 9px;
    padding-bottom: 9px;
}



/* Privacy Policy start */

h2 {
    font-family: 'Lato', -apple-system, 'Muli', sans-serif;
    font-weight: 700;
    font-size: 20px;
}

ul.payment-options {
    list-style: none;
    padding-left: 0;
}

    ul.payment-options li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 10px; /* Adjust spacing as needed */
    }

        ul.payment-options li::before {
            content: '\25B6'; /* Unicode for right-pointing triangle (arrow) */
            position: absolute;
            left: 0;
            color: darkred; /* Adjust color to match your design */
            font-size: 14px; /* Adjust size as needed */
        }
/* styles.css */
p {
    font-family: 'Poppins', sans-serif;
}

.page-heading-text {
    text-decoration: underline;
}
/* Privacy Policy End */

/*Partyorder start*/
.input-group {
    height: calc(1.5em + 0.75rem + 2px); /* Exact Bootstrap input height */
}

.input-group-text {
    padding: 0.375rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff6b6b !important;
    color: white !important;
    border-color: #ff6b6b !important;
}

.input-group .form-control {
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
}

.party-orders-page {
    background-color: #f8f9fa;
    min-height: 100vh;
    overflow-x: hidden;
}

.party-hero-image img {
    margin-top: 80px;
    object-fit: cover;
    width: 100%;
}

.party-info-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.party-info-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.party-form-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .party-info-card:hover,
    .party-form-card:hover {
        transform: translateY(-5px);
    }

.party-info-card h2 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.party-info-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-info {
    margin-top: auto;
}

.btn-outline-light {
    border-color: #fff;
    color: #fff;
    transition: all 0.3s;
}

    .btn-outline-light:hover {
        background-color: #fff;
        color: #000;
    }

.btn-submit {
    background-color: #ff6b6b;
    border: none;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
    max-width: 200px;
}

    .btn-submit:hover {
        background-color: #ff5252;
        transform: translateY(-2px);
    }

.form-control {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    padding: 12px 15px;
    border-radius: 5px;
    width: 100%;
}

    .form-control:focus {
        box-shadow: 0 0 0 0.25rem rgba(255, 107, 107, 0.25);
        border-color: #ff6b6b;
    }

.input-group-text {
    background-color: #ff6b6b;
    color: white;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .party-hero-image img {
        margin-top: 120px;
        max-height: 250px;
    }

    .party-info-card,
    .party-form-card {
        padding: 15px;
    }

    .btn-submit {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .party-info-content,
    .party-form-card {
        padding: 15px;
    }

    .party-info-card h2 {
        font-size: 1.5rem;
    }
}

.form-section-with-bg {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Background image styling */
.section-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /*   opacity: 0.5;Adjust opacity as needed */
    z-index: 0;
}

/* Content container */
.form-section-with-bg .container {
    z-index: 1; /* Bring content above background */
}

/* Card styling */
.party-info-card {
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent dark background */
    color: white;
    border-radius: 10px;
}

.party-form-card .form-control {
    background: rgba(255, 255, 255, 0.8);
}
/*Partyorders end*/
.legalDocuments h2 {
    color: #213554;
    font-size: 20px !important;
    font-family: "Poppins, sans-serif;"
}

.legalDocuments h1 {
    color: #213554;
    font-size: 25px !important;
    font-family: "Poppins, sans-serif;"
}

.legalDocuments p {
    color: #515978;
    font-size: 14px !important;
    font-family: "Poppins, sans-serif;"
}

.legalDocuments ul li {
    color: #515978;
    font-size: 14px !important;
    font-family: "Poppins, sans-serif;";
    list-style: disc !important;
}

.legalDocuments strong {
    color: #213554;
    font-family: "Poppins, sans-serif;";
    font-size: 16px !important;
}


/*legalDocuments End*/


/*Layout page*/

.footerlogo {
    width: 75px
}

.headertitle {
    text-align: center;
    font-size: 25px;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 2px;
    margin-top: 10px;
    font-family: 'Cinzel', serif;
    margin-left: 10px;
    transition: all 0.3s ease-in-out;
    color: #1a1a4b;
    font-weight: normal;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-link {
    color: #333 !important;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .nav-link:hover {
        color: #b22222 !important;
    }

.dropdown-menu .dropdown-item {
    color: #333 !important;
    font-size: 18px;
}

    .dropdown-menu .dropdown-item:hover {
        background-color: #f8f8f8;
    }

@media(max-width:800px) {
    .headertitle {
        font-size: 20px !important;
    }

    .footertitle {
        font-size: 14px;
    }

    .footerlogo {
        width: 120px;
    }

    .copyright {
        text-align: center;
    }
}

@media(min-width:336px) and (max-width:700px) {
    .footertitle {
        font-size: 14px !important;
    }

    .footerlogo {
        width: 80px;
    }
}

@media(max-width:335px) {
    .headertitle {
        font-size: 20px !important;
    }

    .footertitle {
        font-size: 14px;
    }

    .copyright {
        text-align: center;
    }

    .footerlogo {
        width: 158px;
        align-items: center;
    }
}

@media(max-width:700px) {
    .headertitle {
        font-size: 14px !important;
    }

    .footertitle {
        font-size: 14px;
    }

    .copyright {
        text-align: center;
    }
}
/***************************************Category page**************/

.Categorywrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    width: 80vw;
    row-gap: 50px;
    margin: 10px auto;
}

@@media(max-width:450px) {
    margin-top: 300px;
}
/*@media(max-width:560px){
    .Categorywrap .card-title{
        font-size:14px;
    }
}*/

/*CSS for note ------Cartpage*/






/* Modal Styles */
.custom-modals {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 120%;
    height: 100%;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-left: -50px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.4); /* Light background */
}

.custom-modal-dialogs {
    width: 50%;
    max-width: 600px;
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    z-index: 1000;
}

.custom-modal-contents {
    position: relative;
    background-color: #fefefe;
    padding: 0;
    border: 1px solid #888;
    width: 100%;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    animation-name: animatetop;
    animation-duration: 0.4s;
}

.custom-modal-headers {
    padding: 10px 16px;
    background-color: darkred;
    color: white;
}

.custom-modal-bodys {
    padding: 10px 16px;
}

.custom-modal-footers {
    padding: 10px 16px;
    background-color: darkred;
    color: white;
    display: flex;
    justify-content: flex-end;
    margin: 5px;
}

.note-display {
    margin-left: 20px;
    margin-bottom: 10px;
    margin-top: -24px;
    color: #9D9D9D;
}

.note {
    color: #9D9D9D;
    margin-right: 10px;
}
/* Prevent background from scrolling */
body.modal-open {
    overflow: hidden;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .custom-modal-dialogas {
        width: 90%;
        max-width: 90%;
    }
}


/* Order Page Starts */
.status-completed {
    color: green;
}

.status-other {
    color: red;
}

.custom-modal-width .modal-dialog {
    max-width: 500px; /* Adjust this value as needed */
}

.container-margin-top {
    margin-top: 100px;
}

.card-img {
    height: 40px;
    width: 40px;
    margin-right: 10px;
}
/*Orders Page End*/

/*ResetPassword Page Start*/

.image-section img {
    width: 600px;
    height: auto;
    margin-left: 30px;
}

.login-section {
    margin-left: -15px;
    margin-top: 40px;
}
/*ResetPassword Page End*/
/* start anchor tag download bill  */
.generate-bill-link {
    display: inline-block;
    margin-bottom: 1rem;
    color: red;
    text-decoration: none;
}

    .generate-bill-link:hover {
        color: red;
        text-decoration: none;
    }

    .generate-bill-link i {
        margin-left: 5px;
        color: red;
        font-weight: bolder;
        font-size: 16px; /* Adjust the size as needed */
    }

        .generate-bill-link i:hover {
            color: red;
            text-decoration: none;
        }
/* End anchor tag download bill  */

/*profile page start from here*/
.pro {
    margin: 10% 30% 3% 15%;
    position: relative;
    width: 80%;
    padding: 8% 1%;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    gap: 20px;
    background: white;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.1), inset -5px -5px 10px rgba(255, 255, 255, 0.7), 5px 5px 10px rgba(0, 0, 0, 0.1), -5px -5px 10px rgba(255, 255, 255, 0.7);
}

    .pro h2 {
        font-size: 2em;
        text-align: center;
        line-height: 0.9em;
    }

    .pro .inputBox input[type="text"] {
        width: 70%;
        padding: 15px 40px;
        margin-right: 20px;
        margin-bottom: 20px;
        margin-left: 20px;
        background-color: white;
        box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.1), inset -5px -5px 10px rgba(255, 255, 255, 0.7), 5px 5px 10px rgba(0, 0, 0, 0.1), -5px -5px 10px rgba(255, 255, 255, 0.7);
    }

    .pro .inputBox .fa-user,
    .pro .inputBox .fa-envelope,
    .pro .inputBox .fa-mobile {
        position: absolute;
        left: 40px;
        top: 25%;
    }

    .pro .inputBox button[type="button"] {
        margin: 0px 0px 20px 0px;
        box-shadow: 5px 5px 10px rgba(0,0,0,0.1), -5px -5px 10px #fff;
        width: 20%;
        cursor: pointer;
        font-weight: 600;
        border: none;
        border-radius: 10px;
        background-color: white;
        color: black;
        text-align: center;
    }

        .pro .inputBox button[type="button"]:focus {
            box-shadow: inset 5px 5px 10px rgba(0,0,0,0.1), inset -5px -5px 10px #fff;
        }

        .pro .inputBox button[type="button"]:hover {
            color: blue;
        }

        .pro .inputBox button[type="button"]:active {
            color: darkred;
        }


@media (max-width: 768px) {
    .pro {
        width: 90%;
        margin: 8% auto;
        padding: 4% 2%;
    }

        .pro .inputBox input[type="text"] {
            width: 65%;
            margin-right: 10px;
            margin-left: 10px;
            padding: 15px 40px;
        }

        .pro .inputBox button[type="button"] {
            width: 30%;
        }
}

@media (max-width: 576px) {
    .pro {
        width: 95%;
        margin: 8% 5.5%;
        padding: 16% 2%;
    }

        .pro .inputBox input[type="text"] {
            width: 65%;
            margin-right: 10px;
            margin-left: 10px;
            padding: 15px 40px;
        }

        .pro .inputBox button[type="button"] {
            width: 30%;
        }

        .pro .inputBox .fa-user,
        .pro .inputBox .fa-envelope,
        .pro .inputBox .fa-mobile {
            left: 30px;
            top: 25%;
        }
}

/*profile page end here*/

/*Mealselection page start here*/
/*.meal-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-left: 0px;
}

.Mealhead, .date-container {
    margin-top: 120px;
    text-align: center;
    margin-bottom: 20px;
}

.meal-option, date-container {
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 150px;
    cursor: pointer;
    transition: 0.3s;
    align-items: center;*/ /* Center content horizontally */
/*justify-content: center;*/ /* Center content vertically */
/*}

    .meal-option:hover {
        border-color: #007bff;
    }

    .meal-option img {
        width: 50px;
        height: 50px;
    }

    .meal-option p {
        margin: 10px 0 0;
        font-weight: bold;
    }

.continue-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    align-content: center;
    margin: 20px auto;*/ /* Center horizontally */
/*display: block;*/ /* Ensures it takes up full width to center */
/*text-align: center;
    margin-top: 20px;
}

    .continue-btn:hover {
        background-color: #0056b3;
    }

.date-container {
    font-weight: bold;
    font-size: 16px;
    display: flex;
    flex-direction: column;*/ /* Keep items in a vertical stack */
/*align-items: center;*/ /* Center horizontally */
/*justify-content: center;*/ /* Center vertically */
/*margin-top: 40px;*/ /* Space from the meal options */
/*width: 100%;*/ /* Ensure full-width to center properly */
/*}

#orderDate {
    padding: 10px;
    border: 2px solid #ddd;
    margin-top: 10px;*/ /* Reduce space between label and input */
/*border-radius: 8px;
    font-size: 16px;
    width: 28%;*/ /* Set input width to match the heading */
/*max-width: 600px;*/ /* Limit maximum width for better responsiveness */
/*}*/
/*Mealselection page End here*/

/*Preference page start here*/

.container preference {
    margin-top: 110px;
    text-align: center; /* Center inline elements */
}

.PreferenceHead {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.preference-container {
    display: flex;
    margin-top: 130px;
    gap: 20px;
    justify-content: center; /* Center horizontally */
}

.preference-option {
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: border-color 0.3s ease;
    text-align: center;
    width: 150px;
}

    .preference-option img {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
    }

    .preference-option p {
        margin: 0;
        font-weight: bold;
    }

    .preference-option:hover {
        border-color: #007bff;
    }

    .preference-option.disabled {
        opacity: 0.6;
        cursor: not-allowed;
        position: relative;
    }

        .preference-option.disabled::after {
            content: "Available only on Wednesdays";
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #333;
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .preference-option.disabled:hover::after {
            opacity: 1;
        }

.wednesday-only {
    font-size: 12px;
    color: #ff6b6b;
    margin-top: 5px;
}
/*Preference page End here*/

/*Corporateuser page start*/
.corporatebody {
    margin: 0;
    padding-top: 80px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f8f8;
}

.corporateh1 {
    text-align: center;
    font-size: 3rem;
    color: #b22222;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.intro-text {
    text-align: center;
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 50px;
    padding: 0 20px;
    font-style: italic;
}

.section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

    .section.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.text-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

    .text-content h2 {
        font-size: 2rem;
        color: #b22222;
        margin-bottom: 15px;
        text-transform: capitalize;
    }

    .text-content p {
        font-size: 1.1rem;
        color: #666;
        line-height: 1.7;
    }

.section.reverse {
    direction: rtl;
}

    .section.reverse .text-content {
        direction: ltr;
    }

.menu-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

.images-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
/*
.menu-item special {
    position: relative;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    overflow: hidden;
}
*/
/*.menu-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}
*/
/*.menu-item:hover img {
    transform: scale(1.05);
}*/

/*.menu-item:hover .search-icon {
    background-color: white;
    color: #b22222;
    font-size: 1.2rem;
}

.hover-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
}*/

.text-center {
    color: #b22222;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 26px;
    margin-top: 6px;
}

/* Fix for the menu item hover effect */
.menu-item.special {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .menu-item.special img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .menu-item.special:hover img {
        transform: scale(1.05);
    }

    .menu-item.special .hover-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .menu-item.special:hover .hover-overlay {
        opacity: 1;
    }

.search-icon {
    display: block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    background-image: url('../img/search.png');
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);       
}

.menu-item.special:hover .search-icon {
    background-color: white;
    transform: scale(1.1);
}

/*.menu-item:hover .hover-overlay {
    opacity: 1;
}*/

/*.search-icon {
    width: 20px;
    height: 20px;
    background-image: url('../img/search.png');
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    cursor: pointer;
    font-size: 1.2rem;
    color: #b22222;
    transition: background-color 0.3s ease-in-out;
}*/

.container specialmenu {
    margin-top: 30px;
}

.specialmenu {
    background-color: #f0f0f0;
}

.left-arrow, .right-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #ffffff;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    display: none;
    transition: color 0.3s ease-in-out;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

    .left-arrow:hover, .right-arrow:hover {
        color: #b22222;
    }

#fullscreen-view.active .left-arrow,
#fullscreen-view.active .right-arrow {
    display: block;
}

.fullscreen-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
}

.fullscreen-image {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.view-menu-button {
    padding: 12px 30px;
    font-size: 1.2rem;
    color: #fff;
    background-color: #b22222;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


.menu-options {
    padding: -3px 20px;
    background-color: #e6f7ff;
    margin: 50px 100px;
    border-radius: 10px;
}

    .menu-options h2 {
        text-align: center;
        font-size: 2.5rem;
        color: #b22222;
        margin-bottom: 40px;
    }

.menu-combo {
    display: inline-block;
    width: 30%;
    vertical-align: top;
    margin: 0 1%;
    padding: 20px;
}

    .menu-combo h3 {
        font-size: 1.5rem;
        color: #b22222;
        margin-bottom: 10px;
        border-bottom: 2px solid #b22222;
        padding-bottom: 5px;
    }

    .menu-combo ul {
        list-style: none;
        padding: 0;
    }

    .menu-combo li {
        font-size: 1.1rem;
        color: #444;
        margin-bottom: 8px;
    }

.daywise-menu-container {
    width: 100%;
    padding: 20px;
    margin: 0 auto;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 24px;
    background-color: #fff7e6;
}

.text-center daywise {
    color: #b22222;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.daywise-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    margin: 0 auto;
    max-width: 1200px;
}

.daywise-card {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.2s ease;
}

    .daywise-card h3 {
        color: #b22222;
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 8px;
        text-decoration: underline;
    }

    .daywise-card p {
        font-size: 1rem;
        margin: 4px 0;
        color: #555;
    }

.order-form {
    width: 100%;
    max-width: 400px;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8edeb;
}

    .order-form h2 {
        color: #b22222;
        margin-bottom: 20px;
        font-size: 1.8rem;
    }

    .order-form label {
        display: block;
        text-align: left;
        color: #333;
        margin-bottom: 5px;
        font-size: 0.95rem;
    }

    .order-form input,
    .order-form select {
        width: 100%;
        padding: 7px;
        margin-bottom: 8px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 1rem;
        outline: none;
        transition: all 0.3s ease-in-out;
    }

        .order-form input:focus,
        .order-form select:focus {
            border-color: #b22222;
            box-shadow: 0 0 5px rgba(178, 34, 34, 0.5);
        }

.meal-box {
    background: #f9f9f9;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

    .meal-box label {
        font-size: 1rem;
    }

.meal-options {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .meal-options input[type="checkbox"] {
        width: 16px;
        height: 16px;
        cursor: pointer;
    }

.meal-box button {
    background: #b22222;
    color: white;
    font-size: 1rem;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

    .meal-box button:hover {
        background: #8b1a1a;
    }

.order-form button {
    width: 85px;
    background: #b22222;
    color: white;
    font-size: 1.2rem;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    margin-top: 15px;
    margin-right: 255px;
}

    .order-form button:hover {
        background: #8b1a1a;
    }

@keyframes fadeInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.section.visible {
    animation: fadeInUp 1s ease-in-out;
}

@media (max-width: 1024px) {
    .section {
        grid-template-columns: 1fr;
    }

    .menu-combo {
        width: 45%;
    }

    .order-form {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .daywise-menu {
        grid-template-columns: repeat(3, 1fr);
    }

    .daywise-card {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    body, html {
        width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .menu-combo, .order-form {
        width: 90%;
        max-width: 400px;
        margin: 0 auto;
        text-align: center;
    }

        .order-form input,
        .order-form select,
        .order-form textarea {
            width: 100%;
            box-sizing: border-box;
        }

    .daywise-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        text-align: center;
    }

    .daywise-card {
        width: 90%;
        text-align: center;
    }

    .footer {
        width: 100%;
        text-align: center;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .container.menulist {
        padding: 20px 10px;
    }

    .col-md-4.corporate {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 0; /* Critical for text overflow */
        padding: 0;
    }

    .starter.menu {
        width: 100%;
        min-width: 0;
        margin: 0;
        padding: 0;
    }

    /* Regular menu items with proper ellipsis */
    .dishname {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        width: 100%;
        margin: 2px 0 2px 10px !important;
        padding: 0;
        font-size: 15px;
        line-height: 1.3;
    }

    /* Special treatment for combo items */
    .row.menulist .col-md-4.corporate .starter.menu .dishname {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* Show max 2 lines */
        -webkit-box-orient: vertical;
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .corporateh1 {
        font-size: 2rem;
    }

    .text-content {
        padding: 20px;
    }

        .text-content h2 {
            font-size: 1.5rem;
        }

        .text-content p {
            font-size: 1rem;
        }

    .menu-item img {
        width: 150px;
        height: 150px;
    }

    .order-form {
        width: 95%;
        padding: 15px;
        margin: 0 auto;
    }

        .order-form button {
            width: 100%;
            margin: 15px 0;
        }

    .daywise-menu {
        grid-template-columns: 1fr;
    }

    .daywise-card {
        min-height: 180px;
        width: 100%;
    }

    .dishname {
        font-size: 14px;
        margin-left: 8px !important;
    }

    /* More lines for combo items on small screens */
    .row.menulist .col-md-4.corporate .starter.menu .dishname {
        -webkit-line-clamp: 3;
    }

    /* More space for combo items */
    .menu-combo,
    .combo-section {
        width: 100%;
        margin: 5px 0;
    }

        .menu-combo .dishname,
        .combo-section .dishname {
            -webkit-line-clamp: 3; /* Allow 3 lines on very small screens */
        }
}

@media (max-width: 360px) {
    .menu-combo .dishname {
        font-size: 13px;
        -webkit-line-clamp: 4;
    }
}

.container.menulist {
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.heading {
    text-align: center;
    font-size: 40px;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 2px;
    margin-top: 20px;
    font-family: 'Cinzel', serif;
    color: #1a1a4b; /* Deep Navy Blue */
    text-shadow: 2px 2px 4px rgba(26, 26, 75, 0.3);
    transition: all 0.3s ease-in-out;
}

    .heading::after {
        content: "";
        display: block;
        width: 100px;
        height: 3px;
        background: linear-gradient(to right, #a88f32, #e8c47f); /* Elegant Gold Gradient */
        margin: 10px auto;
        border-radius: 2px;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    }

    .heading:hover {
        transform: scale(1.05);
        text-shadow: 3px 3px 8px rgba(168, 143, 50, 0.5);
    }

.sub.starter {
    font-size: 24px;
    color: rgb(39, 183, 176);
    margin-bottom: 8px;
    text-align: left;
    margin-left: 60px;
}

.dishname {
    font-size: 20px;
    color: #333;
    font-weight: 500;
    margin-bottom: 10px;
    margin-left: 80px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

    .dishname:hover {
        color: #1a7267;
    }

.row.menulist,
.row.Biryanimenulist {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-start;
}

.col-md-4 corporate {
    flex: 0 0 calc(33.333% - 15px);
    box-sizing: border-box;
}

.dropdown-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    color: #333;
    font-size: 16px;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
}

    .dropdown-select:focus {
        border-color: #27b7b0;
        outline: none;
    }

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

    .input-wrapper input {
        width: 100%;
        padding-right: 30px;
        box-sizing: border-box;
    }

.info-icon {
    position: absolute;
    right: 13px;
    top: 20px;
    transform: translateY(-50%);
    background-color: #b22222;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .info-icon:hover {
        background-color: #8b1a1a;
    }

    .info-icon::after {
        content: attr(title);
        position: absolute;
        bottom: 150%;
        left: 50%;
        transform: translateX(-50%);
        background-color: #f9f9f9;
        color: #555;
        padding: 5px 10px;
        font-size: 14px;
        font-weight: normal;
        white-space: nowrap;
        border-radius: 4px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
        z-index: 10;
        border: 1px solid #ddd;
    }

    .info-icon:hover::after {
        opacity: 1;
        visibility: visible;
    }

.input-wrapper.strength {
    position: relative;
    width: 100%;
}

    .input-wrapper.strength label {
        position: absolute;
        top: 50%;
        left: 15px;
        transform: translateY(-50%);
        font-size: 1rem;
        color: #999;
        pointer-events: none;
        transition: all 0.2s ease;
    }

    .input-wrapper.strength select {
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 1rem;
        color: #555;
        background-color: #fff;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    .input-wrapper.strength::after {
        content: '\25BC';
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        font-size: 18px;
        color: #555;
        pointer-events: none;
    }

    .input-wrapper.strength select:focus + label,
    .input-wrapper.strength select:not(:placeholder-shown) + label {
        top: 5px;
        font-size: 12px;
        color: #555;
    }
/*coporrate user page end*/

