@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600;700&family=Mulish:wght@200;300;400;500;600;700;800&display=swap');

:root{
    --red-color:#d50c0d;
    --yellow-color:#fabe00;
    --blue-color:#090887;
    --white-color:#ffffff;
    --black-color:#101010;
    --font-body:'Mulish', sans-serif;
    --font1:'Dancing Script', cursive;
    --accent-color: #f2a900;
    --bg-light: #f8f9fa;
    --text-dark: #2d3436;
}

*,html{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Mulish', sans-serif;
    color: var(--black-color);
    background: var(--white-color);
    font-size: 1rem;
    overflow-x: hidden;
}
/* General Stylesheet */
/* ------------------------------ */
a{
    text-decoration: none;
    color: inherit;
}
ul,ol{
    list-style: none;
    padding-left: 0;
    margin: 0;
}
h1,h2,h3,h4,h5,h6{
    font-weight: 700;
}
section ul li{
    margin-bottom: 0.5rem;
}
.text-yellow{
    color: var(--yellow-color);
}
.heading{
    font-family: var(--font1);
}
.bg{
    background: url(../images/bg.jpg) no-repeat;
    background-size: cover;
}
.bg-position-top{
    background-position: top;
}
.bg-position-bottom{
    background-position: bottom;
}
.pradhanBtn{
    padding: 0.5rem 1.15rem;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--white-color);
    background: var(--red-color);
    border: 0;
    outline: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 0.25rem;
    letter-spacing: 0.5px;
}
.pradhanBtn:hover, .pradhanBtn:focus{
    color: var(--black-color);
    background: var(--yellow-color);
}
.pradhanBtn2{
    padding: 0.5rem 1.15rem;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--black-color);
    background: var(--yellow-color);
    border: 0;
    outline: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 0.25rem;
    letter-spacing: 0.5px;
}
.pradhanBtn2:hover, .pradhanBtn2:focus{
    color: var(--white-color);
    background: var(--black-color);
}
.divider{
    position: relative;
}
.sticky {
    background: var(--white-color) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
    position: fixed !important;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}
.bg-gray{
    background: #f1f1f1;
}



/* Top Header */
/* ============================== */
.topHeader{
    padding: 0.25rem 0;
    position: relative;
    background: var(--red-color);
    color: var(--white-color);
}
.topHeader ul{
    display: flex;
    align-items: center;
}
.topHeader ul li{
    margin:0 1rem 0 0;
}
.topHeader ul li i{
    margin-right: 0.25rem;
}

/* Navbar */
/* ================================= */
@media all and (min-width: 992px) {
    nav.absolute-top{
        top: 0;
        z-index: 999;
        position: absolute;
        width: 100%;
    }
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
        min-height: auto !important;
        border-radius: 0;
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 1;
        transition: all .3s ease-in;
        visibility: hidden;
        box-shadow: 0 5px 20px rgba(197, 208, 216, 0.15);
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        /* margin-top: 22px; */
        border: 0;
        padding: 0;
        min-width: 14rem;
        border-radius: 0;
        /* box-shadow: 0 5px 10px rgba(36, 40, 53, 0.4); */
        border-top: 4px solid #090887;
    }

    .navbar .nav-link {
        padding: 1.75rem 0.7rem !important;
        text-decoration: none;
        font-size: 0.8rem;
        text-transform: uppercase;
        font-weight: 700;
        color: inherit;
    }

    .navbar .nav-item:hover .nav-link {
        color: var(--blue-color);
    }

    body.dark .navbar .nav-item:hover .nav-link {
        color: #4eff17;
    }

    .navbar .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
        left: 100%;
        right: 0;
        top: -20px;
        box-shadow: 0 10px 10px rgba(15, 39, 125, 0.14);
    }

    .navbar .dropdown-submenu:hover>.dropdown-menu,
    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        transform: scaleY(1);
        visibility: visible;
    }

    .dropdown-menu a,
    .dropdown-submenu a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.65rem 1rem;
        text-decoration: none;
        font-size: 0.9rem;
    }

    .dropdown-menu a:hover,
    .dropdown-submenu a:hover,
    .dropdown-menu a:focus,
    .dropdown-submenu a:focus {
        color: var(--white-color);
        background: var(--blue-color);
    }

    .dropdown-item:focus,
    .dropdown-item:hover {
        background-color: var(--bs-dropdown-link-active-bg);
    }
    .navbar-brand:focus, .navbar-brand:hover{
        color: var(--blue-color);
    }
}

.navbar-toggler{
    border-color: rgba(0, 0, 0, 0.4);
}
.navbar-toggler:focus{
    box-shadow: none;
}
.dropdown-menu li a{
    padding: 0.5rem 1rem;
    display: block;
}

/* Banner */
/* ================================= */
.bannerPanel{
    position: relative;
    margin: 0;
    padding: 0;
}
.bannerPanel .contentBanner{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white-color);
    z-index: 9;
    top: 0;
    /* font-family: var(--font1); */
    font-weight: 900;
    background: rgba(0, 0, 0, 0.55);
}

/* Home Service */
/* ================================= */
.hServiceBox h3{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white-color);
    z-index: 9;
    top: 0;
    font-family: var(--font1);
    background: rgba(0, 0, 0, 0.15);
}

/* Home Banquet */
/* ================================= */
.banContent{
    width: 80%;
    background: var(--yellow-color);
    padding: 0.5rem 1rem;
    display: inline-block;
    position: absolute;
    bottom: 25px;
    text-align: center;
    text-transform: uppercase;
    margin-left: 10%;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Homw WHy Choose */
/* =============================== */
.whyBox{
    padding-left: 4.25rem;
    position: relative;
}
.whyBox img{
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
}
.whyBox h4{
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--red-color);
    font-size: 1.15rem;
    font-weight: 700;
}

/* Home Testimonial */
/* ============================ */
.testimonialBox{
    text-align: center;
    padding: 0 4rem;
}
.testimonialBox img{
    display: inline-block;
    margin-bottom: 2rem;
    width: 100px;
}
.testimonialBox h3 {
    font-size: 1.5rem;
    color: #000;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.testimonialBox p {
    margin: 0;
}

/* Home Blog */
/* ============================ */
.blogBox{
    position: relative;
    border: 1px solid #ddd;
}
.blogBox img{
    height: 260px;
    width: 100%;
    object-fit: cover;
}
.blogBox .contentBlog{
    padding: 1.25rem;
    color: var(--black-color);
}
.blogBox .contentBlog h5{
    font-weight: 600;
    color: var(--red-color);
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 50px;
}
.blogBox .contentBlog .content{
    margin-bottom: 1rem;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.blogBox .post-meta{
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue-color);
}

.latest {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background-color: #eef4f9;
    border-radius: 8px;
    transition: all 0.25s ease-in-out;
}
.latest .lat-post {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: var(--white-color);
    border-radius: 0.5rem;
}

.latest .lat-post img {
    width: 100px;
    border-radius: 5px;

}

.latest .lat-post h6 {
    font-size: 14px;
    font-weight: 600;
    text-overflow: ellipsis;
    color: #000;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: all 0.25s ease-in-out;
    margin-bottom: 10px;
}

.latest .lat-post:hover h6 {
    color: var(--red-color);
}

.latest .lat-post p {
    color: var(--black-color);
    font-size: 13px;
    margin-bottom: 0;
}

/* Home Loaction */
/* ============================ */
.locationBox{
    position: relative;
}
.locationBox .ico{
    width: 40px;
    height: 40px;
    background: var(--red-color);
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
}
.locationBox h4 {
    font-size: 1.25rem;
    color: #000;
    font-weight: 700;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    border-bottom: 1px solid var(--red-color);
}

.form-control:focus{
    border-color: var(--red-color);
    box-shadow: none;
}
.social {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
}
.social li{margin: 0;}
.social a {
    display: block;
    margin: 0 0.25rem;
}


/* Footer */
/* ======================== */
footer{
    position: relative;
    padding: 3rem 0;
    background: url(../images/bg.jpg) bottom center no-repeat;
}
footer h6{
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
footer ul{
    display: flex;
    flex-direction: column;
    list-style: none;
    margin-bottom: 1.5rem;
}
footer ul li{
    margin-bottom: 0.5rem;
}
footer ul li a{
    position: relative;
    padding-left: 1.5rem;
}
footer ul li a:hover{
    color: var(--red-color);
}
footer ul li a:before{
    position: absolute;
    content: "\eeb2";
    font-family:boxicons!important;
    top: -2px;
    left: 0;
    font-size: 1rem;
}

/* ============================ */
/* INNER PANEL */
/* ========================================== */

.breadcrumb-header {
    padding-bottom: 120px;
    padding-top: calc(120px + 85px);
    color: #FFF;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-size: cover;
}
.breadcrumb-header.style-2 {
    padding: 100px 0;
    min-height: 420px;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(28 26 48 / 55%);
}
.breadcrumb-header h1 {
    color: #FFF;
    /* text-transform: capitalize; */
    font-weight: 700;
    line-height: 1.2;
    font-size: 2.5rem;
    margin-bottom: 0;
}
.breadcrumb-header ul li {
    display: inline-block;
    position: relative;
    margin-right: 10px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.30px;
    color: #F9F9F9;
    text-transform: capitalize;
}
.cont{
    margin: 0 0 1.5rem 1rem;
}
.cont li{
    position: relative;
    padding-left: 1.5rem;
}
.cont li:before{
    font-family: bootstrap-icons !important;
    content: "\f26a";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
    color: var(--red-color);
}
.imgMain{
    display: flex;
    align-items: center;
    overflow: hidden;
    /* height: 250px;
    border: 1px solid var(--black-color); */
    /* padding: 0.5rem; */
}

.imgMain img{
    /* height: 250px; */
    width: 100%;
}

.table thead tr th{
    background: var(--red-color);
    color: var(--white-color);
}

/* GET QUOTE */
/* ================================= */
.enquireModal .btn-close{
    position: absolute;
    right: -1.5em;
    top: -1.5em;
    padding: 0.5em;
    outline: none;
    box-shadow: none;
    border-radius: 2rem;
}
.enquireModal .modal-content{
    border: 0;
    border-radius: 0;
}
.enquireModalPanel{
    display: flex;
    justify-content: center;
}
.enquireModalPanel .sidePart{
    width: 50%;
}
/* .enquireModalPanel .sidePart:first-child{
    display: flex;
    align-items: center;
    justify-content: center;
} */
.enquireModalPanel .form-control, .enquireModalPanel .form-select{
    border-radius: 0;
}
.enquireModalPanel .form-control:hover, 
.enquireModalPanel .form-control:focus, 
.enquireModalPanel .form-select:hover, 
.enquireModalPanel .form-select:focus{
    border-color: #000;
    box-shadow: none;
}


.menuList{
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #ddd;
}
.menuList:last-child{
    border-bottom: 0;
}
.menuList li{
    margin-bottom: 0;
}


/* Blog Panel */
/* ========================== */
.leftSide{
    position: -webkit-sticky;
    position: sticky;
    top: 85px;
}
.leftMenu{
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #eee8f7;
    background: var(--white-color);
}
.leftMenu h3{
    background-color: var(--red-color);
    color: var(--white-color);
    padding: 1rem 1.5rem;
    font-size: 1.25rem;
    margin: -1rem -1rem 1rem;
}
.CourseContact{
    background: var(--white-color);
    padding: 1.5rem;
    color: var(--black-color);
}
.otherblog{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #f5f5f5;
}
.otherblog:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}
.otherblog img{
    width: 80px;
    margin-right: 15px;
    border: 1px solid #ddd;
    padding: 0.2rem;
}
.otherblog .othercont{
    width: calc(100% - 95px);
    position: relative;
}
.otherblog .othercont h6{
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.otherblog .othercont p{
    color: var(--black-color) !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    font-size: 0.8rem;
    max-height: 3rem;
    margin-bottom: 0.2rem;
}
.otherblog b{
    font-size: 0.9rem;
    display: block;
    color: var(--blue-color);
}

/* THANKYOU */
/* ================================ */
.thankyou{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    background: url(../images/thankyoubg.jpg) no-repeat;
    background-size: cover;
    text-align: center;
    padding: 2rem;
}
.thankyou h1{
    color: #132d8e;
    font-size: 3rem;
}


/* REVIEW RATING */
/* ===================== */
#ratingdiv {
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.review-rating {
    background: url("../images/review-rating.svg") repeat-x 0 0;
    width: 120px;
    margin: 5px;
    position: relative;
    /* display: flex; */
}

.review-rating input[type="radio"] {
    position: absolute;
    opacity: 0;
    filter: alpha(opacity=0);
}

.review-rating input[type="radio"].review-rating-5:checked~span {
    width: 100%;
}

.review-rating input[type="radio"].review-rating-4:checked~span {
    width: 80%;
}

.review-rating input[type="radio"].review-rating-3:checked~span {
    width: 60%;
}

.review-rating input[type="radio"].review-rating-2:checked~span {
    width: 40%;
}

.review-rating input[type="radio"].review-rating-1:checked~span {
    width: 20%;
}

.review-rating label {
    display: block;
    width: 24px;
    height: 20px;
    margin: 0 !important;
    padding: 0 !important;
    text-indent: -999em;
    float: left;
    position: relative;
    z-index: 10;
    background: transparent !important;
    cursor: pointer;
}

.review-rating label:hover~span {
    background-position: 0 -20px;
}

.review-rating label.review-rating-5:hover~span {
    width: 100% !important;
}

.review-rating label.review-rating-4:hover~span {
    width: 80% !important;
}

.review-rating label.review-rating-3:hover~span {
    width: 60% !important;
}

.review-rating label.review-rating-2:hover~span {
    width: 40% !important;
}

.review-rating label.review-rating-1:hover~span {
    width: 20% !important;
}

.review-rating span {
    display: block;
    width: 0;
    position: relative;
    top: 0;
    left: 0;
    height: 20px;
    background: url("../images/review-rating.svg") repeat-x 0 -40px;
    -webkit-transition: -webkit-width 0.5s;
    -moz-transition: -moz-width 0.5s;
    -ms-transition: -ms-width 0.5s;
    -o-transition: -o-width 0.5s;
    transition: width 0.5s;
}

table{
    width: 100%;
    margin-bottom: 20px;
}
table tr td{
    border: 1px solid #ddd;
    padding: 8px;
}
table thead tr th{
    background-color: #d50c0d;
    padding: 8px;
    color: #fff;
}


/* Service Panel */
.bg-catering{
    background: url(../images/services/catering-content-bg.jpg) center  no-repeat;
    background-size: cover;
}

.bg-florist{
    background: url(../images/services/catering-content-bg.jpg) center  no-repeat;
    background-size: cover;
}
.bg-makeover{
    background: url(../images/services/makeover-content-bg.jpg) center  no-repeat;
    background-size: cover;
}
.bg-decorator{
    background: url(../images/services/decorator-content-bg.jpg) center  no-repeat;
    background-size: cover;
}
.bg-photography{
    background: url(../images/services/photography-content-bg.jpg) center  no-repeat;
    background-size: cover;
}
.bg-wedding{
    background: url(../images/services/wedding-content-bg.jpg) center  no-repeat;
    background-size: cover;
}
.bg-lighting{
    background: url(../images/services/lighting-content-bg.jpg) center  no-repeat;
    background-size: cover;
}
.bg-theme{
    background: url(../images/services/theme-content-bg.jpg) center  no-repeat;
    background-size: cover;
}
.bg-catering p, .bg-florist p, .bg-makeover p, .bg-decorator p, .bg-photography p, .bg-wedding p, .bg-lighting p, .bg-theme p{
    font-size: 1.2rem;
    line-height: 1.8;
}


/* ========================= */
/* RESPONSIVE PANEL */
/* ======================================== */
@media(max-width:800px){
    .topHeader ul{margin-bottom: 0.5rem; flex-direction: column;}
    .topHeader ul li{line-height: 1; display: flex; align-items: center;}
    .topHeader ul li:first-child{margin-bottom: 5px;}
    .bannerPanel .contentBanner{ font-size: 1.25rem; }
    .hServiceBox{ margin-bottom: 1rem;}
    .breadcrumb-header h1 {font-size: 2rem;}
    .imgMain{height: 150px;}
    .enquireModalPanel{flex-direction: column;}
    /* .enquireModalPanel .sidePart:first-child{display: none;} */
    .enquireModalPanel .sidePart{width: 100%; text-align: center;}
}




/* Banquet Terms & Condition */
/* =============================================== */
.section-header {
    background: var(--red-color);
    color: var(--bg-light);
    padding: 10px 20px;
    border-left: 5px solid var(--accent-color);
    margin: 10px 0 0 0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 10px;
}

.info-item label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #0a8ef0;
    font-weight: 700;
    margin-bottom: 2px;
}

.info-item p {
    font-weight: 500;
    margin: 0;
}

.terms-list {
    font-size: 14px;
    /* column-count: 2;
    column-gap: 40px; */
}

.terms-list h6 {
    font-weight: 600;
    color: blue;
}
.terms-list ul{
    padding-left: 20px;
}
.terms-list li {
    margin-bottom: 8px;
    list-style: circle;
}

@media (max-width: 768px) {
    .terms-list {
        column-count: 1;
    }

    .booking-card {
        padding: 20px;
        margin: 10px;
    }
}

.table-custom {
    font-size: 13px;
    overflow: hidden;
}

.table > :not(caption) > * > * {
    padding: 0.35rem 0.5rem !important; /* smaller padding */
}