@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Bengali:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



@font-face {
    font-family: 'Kalpana Unicode';
    src: url('../fonts/KalpanaUnicode.woff2') format('woff2'),
        url('../fonts/KalpanaUnicode.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


:root {
    --primary-color: #3f3f3f;
    --secondary-color: #ef1d29;
    --third-color: #0085ff;
    --white-color: #FFFFFF;
    --dark-color: #10679c;
    --footer-color: #02121B;
    --text-color: #777777;
    --text-color-2: #6E8DA0;
    --my-family: 'Noto Serif Bengali';
    --my-bengali: 'Kalpana';
    --my-shadow: 13px 14px 40px rgba(109, 28, 28, 0.041);
}

*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

body {
    font-size: 100%;
    margin: 0;
    padding: 0;
    font-family: "Poppins";
    letter-spacing: 0.15px;
    color: #121212;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.1s ease-in;
}

h1,
h2,
h3,
h4 {
    font-weight: 500;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}


ul,
ol {
    padding: 0;
}

/* ================================ 
Button styles section 
=================================== */
.btn1 {
    font-family: inherit;
    display: inline-block;
    padding: 10px 16px;
    line-height: 1;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--primary-color);
    transition: color .5s;
    z-index: 1;
    font-size: 14px;
    border-radius: 6px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: capitalize;
}

.btn1:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: var(--primary-color);
    height: 150px;
    width: 200px;
    border-radius: 50%;
}

.btn1:hover {
    color: #fff;
}

.btn1:before {
    top: 100%;
    left: 100%;
    transition: all .7s;
}

.btn1:hover:before {
    top: -30px;
    left: -30px;
}

.btn1:active:before {
    background: var(--primary-color);
    transition: background 0s;
}

.btn2 {
    font-family: inherit;
    display: inline-block;
    padding: 10px 16px;
    line-height: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-color);
    transition: color .5s;
    z-index: 1;
    font-size: 14px;
    border-radius: 6px;
    font-weight: 500;
    color: var(--white-color);
    text-transform: capitalize;
    transition: all 0.25s ease-in-out;
}

.btn2:hover {
    background-color: var(--secondary-color);
}

.play-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    padding: 14px 22px;
    font-size: 36px;
    border-radius: 100%;
    background: var(--white-color);
    border: 1px solid #ff5861;
    transition: all 0.5s ease-in-out;
    box-shadow: rgba(239, 29, 40, 0.3) 0px 0px 0px 0px;
    animation: 1.25s linear infinite normal none running pulse;
    align-items: center;
}

.play-btn:hover {
    transform: scale(1.2);
}

@keyframes pulse {
    100% {
        box-shadow: 0 0 20px 20px rgba(239, 29, 40, 0.4);
    }
}

.img-grayscale {
    filter: grayscale(100%);
}

/* ================================ 
Re-used styles section 
=================================== */

.title {
    position: relative;
    font-size: 40px;
    margin-bottom: 30px;
    text-transform: capitalize;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title span {
    color: var(--primary-color);
    font-weight: 600;
}



/* ================================ 
Custom Css Section 
=================================== */



/* ================================ 
Header Section 
=================================== */

header {
    background-color: var(--primary-color);
    padding: 0.5rem 0;
    font-size: 14px;
    color: var(--white-color);
}

.social-box {
    width: 30px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--white-color);
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-size: 16px;
}

.social-box:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}


/* ================================ 
Navbar Section 
=================================== */

.navbar {
    position: relative;
    box-shadow: var(--my-shadow);
    z-index: 999;
}

.navbar .navbar-brand>img {
    height: 70px;
}

.navbar .nav-link {
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
    padding: 8px 0 !important;
    margin: 0 1rem;
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    transition: all 0.25s ease-in-out;
    height: 2px;
    background-color: var(--primary-color);
}

.navbar .nav-link:hover::after {
    width: 100%;
}

.navbar .nav-link:hover {
    color: var(--primary-color);
}

/* navbar on scroll animation */
.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #ffffff;
    /* backdrop-filter: blur(30px); */
    transition: all ease-in-out 0.2s;
    box-shadow: 0 -2px 20px 5px #3d3d3d21;
    animation: fadeInDown 0.45s ease-in-out;
}

@keyframes fadeInDown {
    0% {
        top: -30%;
    }

    50% {
        top: -15%;
    }

    100% {
        top: 0;
    }
}

@media all and (min-width: 992px) {
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
        min-height: auto !important;
        border-radius: 0;
    }

    

    .navbar .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(20px);
        transition: all .3s ease-in;
        visibility: hidden;
        min-width: 22rem;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        border: 0;
        padding: 10px;
        min-width: 5rem;
        left: 50%;
        transform: translate(-50%, 0);
        margin-top: 0;
        border-radius: 5px;
        box-shadow: 0 10px 20px rgba(15, 39, 125, 0.4);
    }

    .navbar .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
        left: 100%;
        right: 0;
        top: -8px;
        border-radius: 0;
        /* box-shadow: none; */
    }

    .navbar .dropdown-submenu:hover>.dropdown-menu,
    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        /* transform: scaleY(1); */
        visibility: visible;
    }

    .dropdown-menu a,
    .dropdown-submenu a {
        color: var(--black-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 15px;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: var(--fw-500);
    }

    .dropdown-menu a:hover,
    .dropdown-submenu a:hover,
    .dropdown-menu a:focus,
    .dropdown-submenu a:focus {
        color: var(--primary-color);
    }
}
/* ================================ 
Banner Section 
=================================== */

.banner {
    width: 100%;
    height: 750px;
    background: url('../images/banner/banner.jpg') no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
}



.banner h4 {
    font-family: var(--my-family);
    font-weight: bold;
    font-size: 24px;
    opacity: 0.8;
    animation: come 1s ease-in-out;
}

.banner h1 .highlight {
    color: var(--primary-color);

}

.banner h1 {
    font-family: 'Kalpana Unicode';
    font-size: 95px;
    line-height: 1.35;
    font-weight: bold;
    animation: come 1s ease-in-out;

}

q::after {
    color: var(--primary-color);
}

/* Animation section */
@keyframes come {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.count-down {
    /* width: 550px; */
    position: absolute;
    top: -60px;
    right: 0;
}

.count-down .flipdown {
    margin: auto;
    /* width: 600px; */
    /* margin-top: 30px; */
}

.flipdown .rotor {
    font-size: 44px;
}

.flipdown.flipdown__theme-dark .rotor,
.flipdown.flipdown__theme-dark .rotor-top,
.flipdown.flipdown__theme-dark .rotor-leaf-front {
    background-color: var(--primary-color);
}

.flipdown .rotor-bottom.flipdown.flipdown__theme-dark .rotor-bottom,
.flipdown.flipdown__theme-dark .rotor-leaf-rear {
    background-color: var(--primary-color);
}

.flipdown.flipdown__theme-dark .rotor-bottom,
.flipdown.flipdown__theme-dark .rotor-leaf-rear {
    background-color: var(--primary-color);
}

.flipdown.flipdown__theme-dark .rotor-group:nth-child(n+2):nth-child(-n+3)::before,
.flipdown.flipdown__theme-dark .rotor-group:nth-child(n+2):nth-child(-n+3)::after {
    background-color: var(--primary-color);
    display: none;
}




/* ================================ 
About Section 
=================================== */


.about span {
    color: var(--primary-color);
    font-family: var(--my-family);
}




.about .div-border {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 2px solid var(--white-color); */
    width: 93%;
    height: 93%;
    transform: translate(-50%, -50%);
}


/* ================================ 
Accolade Section 
=================================== */


.accolade {
    width: 100%;
    background: url('../images/banner/banner-2.jpg') no-repeat center;
    background-size: cover;
}

.accolade .inner-contain {
    padding: 20px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    /* backdrop-filter: blur(5px); */
    box-shadow: 4px 6px 30px rgba(0, 0, 0, 0.096);
    gap: 24px;
    transition: all 0.25s ease-in-out;
}

.accolade .inner-contain img {
    height: 100px;
}

.accolade .inner-contain h4 {
    font-size: 18px;
    font-weight: 600;
}

.accolade .inner-contain:hover {
    transform: translateY(-10px);
}

/* ================================ 
Gallery Section 
=================================== */


.gallery .inner-contain {
    overflow: hidden;
    height: 280px;
    width: 100%;
    border-radius: 10px;
    position: relative;
    transition: all 0.25s ease-in-out;
}



.gallery .inner-contain img {
    width: 100%;
    border-radius: 10px;
    height: 280px;
    object-fit: cover;
    transition: all 0.25s ease-in-out;
}

.gallery .inner-contain:hover img {
    transform: scale(1.1);
}





/* ================================ 
Associate Section 
=================================== */


.associate {
    width: 100%;
    background: url('../images/banner/banner-3.jpg') no-repeat center bottom;
    background-size: cover;
    background-attachment: fixed;
}

.associate .inner-contain {
    padding: 22px;
    border: 3px solid goldenrod;
    position: relative;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.associate .inner-contain img {
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.associate .inner-contain .div-border {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2.5px solid goldenrod;
    width: 93%;
    height: 93%;
    transform: translate(-50%, -50%);
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    pointer-events: none;
}

.associate h3 {
    color: #faca22;
    font-size: 18px;
}

.associate h6 {
    color: #d6d6d6;
    font-size: 14px;
    text-align: center;
}


/* ================================ 
Event Section 
=================================== */
/* 

.event .inner-contain {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 4px 4px 25px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.25s ease-in-out;
    overflow: hidden;
}

.event .inner-contain::before,
.event .inner-contain::after {
    content: "";
    position: absolute;
    clip-path: polygon(55% 28%, 0% 120%, 100% 100%);
    background-color: var(--primary-color);
    height: 50px;
    width: 85px;
    z-index: 200;
    transition: background-color 0.25s ease-in-out;
}

.event .inner-contain::before {
    top: -14px;
    left: -37.05px;
    transform: rotate(-45deg);
}

.event .inner-contain::after {
    bottom: -15px;
    right: -39.05px;
    transform: rotate(135deg);
}

.event .inner-contain .date h3 {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 48px;
    transition: all 0.25s ease-in-out;
}

.event .inner-contain:hover::before,
.event .inner-contain:hover::after {
    background-color: var(--secondary-color);
}

.event .inner-contain:hover .date h3 {
    color: var(--secondary-color);
}

.event .inner-contain .dets small {
    color: var(--primary-color);
    font-weight: 500;
}

.event .inner-contain .dets h3 {
    font-weight: 600;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 3px;
    transition: all 0.25s ease-in-out;
}

.event .inner-contain:hover .dets h3 {
    color: var(--primary-color);
}

.event .inner-contain .dets .short-desc {
    font-size: 14px;
    color: #707070;
} */

.event {
    background: #f1f1f1;
}

.event .card {
    border-radius: 15px;
    background-color: var(--white-color);
    transition: all 0.2s ease-in-out;
}

.event .card-img-top {
    height: 230px;
    object-fit: cover;
    width: 100%;
    transition: all 0.2s ease-in-out;
}

.event .card:hover {
    background-color: var(--white-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.event .card:hover .card-img-top {
    transform: scale(1.05);
}

.event h6 {
    font-size: 14px;
    color: var(--primary-color);
}

.event .card-text {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
    position: relative;
    min-height: 42px;
}

.event .address {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
    position: relative;
    min-height: 42px;
    padding-left: 25px;
}

.event .address::before {
    content: "\ef14";
    font-family: 'remixicon';
    color: var(--primary-color);
    top: 0;
    left: 0;
    position: absolute;
}


.event .card-body .card-text {
    color: #565656;
}

.btn-comment p {
    color: #565656;
    transition: all 0.2s ease-in-out;
}

.event .card .card-title {
    font-size: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

/* ================================ 
Footer Section 
=================================== */





footer {
    width: 100%;
    background: #495057;
    color: var(--white-color);
    font-size: 14px;
}

footer ul {
    list-style: none;
    margin: 0;
}

footer ul li a {
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.25s;
    font-size: 12px;
    position: relative;
}

footer ul li a::before {
    content: "-";
    padding-right: 5px;
    font-size: 20px;
    color: var(--white-color);
}

footer ul li a:hover {
    padding-left: 10px;
    color: var(--primary-color);
}

footer .copy {
    border-top: 1px solid #c0000052;
    padding: 12px 0;
}

footer .copy p {
    font-weight: 500;
}

.visiter-count h5 {
    color: var(--primary-color);
    font-weight: 600;
}

.visiter-count span {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 20px;
}


/* ================================ 
Back to top Section 
=================================== */






/* ================================ 
Inner banner Section 
=================================== */

.inner-banner {
    width: 100%;
    width: 100%;
    height: 250px;
    background: linear-gradient(rgba(12, 70, 70, 0.259), rgba(12, 70, 70, 0.259)),
        url(../images/banner/banner-5.jpg) no-repeat center;
    background-size: cover;
}

.inner-banner .overlay {
    background: #0c464642;
    backdrop-filter: blur(1px);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
}

.inner-banner .overlay h1 {
    font-size: 36px;
    font-weight: 700;
}


/* ================================ 
About Page 
=================================== */

.about-page span {
    color: var(--primary-color);
}

.about-page .div-border {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 2px solid var(--white-color); */
    width: 93%;
    height: 93%;
    transform: translate(-50%, -50%);
}




/* ================================ 
Gallery Section 
=================================== */


.gallery-list .inner-contain {
    overflow: hidden;
    height: 280px;
    width: 100%;
    border-radius: 10px;
    position: relative;
    transition: all 0.25s ease-in-out;
}

.gallery-list .inner-contain:before {
    position: absolute;
    z-index: 1;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    border-radius: 10px;

    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}


.gallery-list .inner-contain img {
    width: 100%;
    border-radius: 10px;
    height: 280px;
    object-fit: cover;
    transition: all 0.25s ease-in-out;
}

.gallery-list .inner-contain:hover img {
    transform: scale(1.1);
}

.gallery-list .inner-contain h5 {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white-color);
    z-index: 100;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 500;
    display: inline-block;
    padding: 7px 10px;
    border-radius: 5px;
    color: var(--white-color);
    font-size: 14px;
    background-color: transparent;
    border: 2px dashed var(--primary-color);
    transition: all 0.25s ease-in-out;
    text-align: center;
}

.gallery-list .inner-contain:hover h5 {
    bottom: 48%;
}


/* ================================ 
Post your puja Section 
=================================== */
.post-form .inner-contain {
    padding: 30px;
    border-radius: 16px;
    box-shadow: 13px 14px 40px rgba(0, 0, 0, 0.068);
}

.input-container {
    position: relative;
}

.input-container input,
.input-container select {
    height: 50px;
    width: 100%;
    border-radius: 5px;
    font-size: 14px;
    background-color: transparent;
    padding: 0 1rem;
    outline: none;
    border: 1px solid var(--primary-color);
}

.input-container label {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 14px;
    line-height: 30px;
    background-color: #fff;
    z-index: 10;
    border-radius: 50vw;
    color: var(--theme-bg-color);
    pointer-events: none;
    transition: all 0.2s ease-in-out;
}

.input-container input:focus+label,
.input-container input:not(:placeholder-shown)+label,
.input-container textarea:focus+label,
.input-container textarea:not(:placeholder-shown)+label {
    top: -16px;
    left: 10px;
    font-size: 12px;
    padding: 0 10px;
    background-color: #fff;
    /* Change background color when focused */
    border-radius: 50vw;
    /* color: var(--secondary-color); */
    color: var(--secondary-color);
}

.my-text>textarea {
    font-size: 14px;
    padding: 0.75rem 1rem;
    resize: none;
    height: 100px;
    border: 1px solid var(--primary-color);
}

.input-container input:focus,
.input-container select:focus,
.my-text>textarea:focus {
    border-color: var(--secondary-color);
}



/* ================================ 
Contact Page
=================================== */
.contact-page .inner-contain {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 13px 14px 40px rgba(0, 0, 0, 0.068);
}

.contact-page .info-contain {
    box-shadow: 13px 14px 40px rgba(0, 0, 0, 0.068);
    padding: 30px;
}

.icon-con {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--white-color);
    background-color: var(--secondary-color);
    display: grid;
    place-items: center;
    font-size: 26px;
}

.contact-page h6 {
    font-size: 18px;
    letter-spacing: 0.5px;
}


/* ================================ 
Durga Puja Art Page
=================================== */
.durga-puja-art .nav-tabs .nav-item {
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
}

.durga-puja-art .nav-tabs .nav-link.active {
    color: var(--white-color);
    background-color: var(--secondary-color);
    border-radius: 5px;
}

.durga-puja-art .inner-det-contain {
    height: 100%;
    box-shadow: 4px 4px 30px 5px rgba(0, 0, 0, 0.068);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--primary-color);
}




/* ================================ 
Branding Page
=================================== */
.branding .inner-contain {
    box-shadow: 4px 4px 30px 5px rgba(0, 0, 0, 0.068);
    padding: 10px;
    border-radius: 10px;
}
.branding .inner-contain img {
    height: 100%;
}




/* ==============================================================
                        RESPONSIVE PANEL
================================================================== */

@media(min-width:993px) and (max-width:1200px) {
    .banner {
        width: 100%;
        height: 450px;
        background: url('../images/banner/banner-7.jpg') no-repeat center;
        background-size: cover;
    }

    .count-down .flipdown {
        width: auto;
        margin-top: 0;
    }

    .flipdown .rotor {
        font-size: 28px;
    }

    .count-down {
        top: 90px;
    }
}



@media(max-width:800px) {
    body {
        overflow-x: hidden;
    }

    header {
        display: none;
    }

    .banner {
        width: 100%;
        height: 550px;
        background: url('../images/banner/tab-view.jpg') no-repeat center;
        background-size: cover;
        align-items: end;
    }

    .count-down{
        top: -150px;
        left: 14%;
    }

    .associate {
        width: 100%;
        background: #6c757d;
    }

    .title img {
        height: 40px;
    }

    .title span {
        font-size: 30px;
    }

    .count-down .flipdown {
        width: auto;
        margin-top: 0;
        display: flex;
        justify-content: center;
    }

    .flipdown .rotor {
        font-size: 40px;
    }

    .inner-banner {
        height: 180px;
    }

    h6 {
        font-size: 12px;
    }

    .event .inner-contain .dets h3 {
        font-size: 18px;
    }

    .event .inner-contain::before,
    .event .inner-contain::after {
        height: 40px;
        width: 65px;
    }

    .contact-page h6 {
        font-size: 14px;
    }

    .contact-page .info-contain {
        padding: 20px;
    }

    .icon-con {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}


@media(max-width:767px) {
    .count-down {
        padding: 0px;
    }
}


@media(max-width:480px) {
    body {
        font-size: 90%;
    }

    .banner {
        width: 100%;
        height: 550px;
        background: url('../images/banner/mobile-view.jpeg') no-repeat center;
        background-size: cover;
    }

    .count-down {
        position: absolute;
        padding: 20px;
        top: -100px;
        left: 0;
    }

    .flipdown .rotor {
        font-size: 30px;
    }
}