@import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400..800&display=swap');

/* CSS Variables for Reusability */
:root {
    --primary-purple: #9c27b0;
    --light-purple: #ce93d8;
    --dark-purple: #ab47bc;
    --pink: #ff4081;
    --blue: #007bff;
    --gradient-teal-blue: linear-gradient(135deg, #00c4b4 0%, #0288d1 100%);
    --text-dark: #333;
    --text-gray: #777;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Global Styles */
body {
    font-family: "Baloo Da 2", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-size: 23px;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

main {
    margin: 0;
    padding: 0;
}

/* Reusable Button Styles */
.see-more-btn {
    display: block;
    margin: 20px auto;
    background-color: #0e416191;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.see-more-btn:hover {
    background-color: rgba(47, 117, 161, 0.57);
}

/* Navbar Styles */
.navbar {
    background-color: #f8f8f8;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar-brand img {
    height: 30px;
    margin-right: 10px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 15px;
    font-size: 20px;
}

.nav-link:hover {
    color: var(--blue);
}

.navbar-toggler {
    border: none;

}

.navbar-toggler-icon {
    background: none;
}

.bikash-logo {
    height: 45px;
    margin-left: 10px;
}

.slider-img {
    display: block;
    width: 100%;
}

/* Rules Section Styles */
.rules-section {
    padding: 40px 0;
}

.rules-section h2 {
    color: var(--pink);

    font-weight: 700;
    margin-bottom: 20px;
}

.rules-section ul {
    list-style: none;
    padding-left: 0;
}

.rules-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;

    color: var(--text-dark);
}

.rules-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 10px;
    height: 10px;
    background-color: var(--blue);
    border-radius: 50%;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: auto;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.play-button:hover {
    opacity: 1;
}

/* Video Section Styles */
.video-section {
    padding: 40px 0;
    background-color: var(--primary-purple);
    position: relative;
}

.video-section h2 {
    color: white;

    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.video-category-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.video-category-buttons button {
    background-color: var(--light-purple);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;

    transition: background-color 0.3s ease;
}

.video-category-buttons button:hover,
.video-category-buttons button.active {
    background-color: var(--dark-purple);
}


.tiktok-embed > a {
    display: none !important;
}

.tiktok-embed [data-e2e="tiktok-video-embed-button"],
.tiktok-embed .tiktok-button {
    display: none !important;
}

/* Leaderboard Section Styles */
.leaderboard-section {
    padding: 40px 0;
    background: url('/images/leaderboard_bg.png') no-repeat center center;
    background-size: cover;
    color: white;
    position: relative;
}

.leaderboard-section h2 {

    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.leaderboard-item {
    text-align: center;
    margin-bottom: 20px;
}

.avatar-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
}

.medal {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);

}

.leaderboard-item p {
    margin-top: 10px;
    font-size: 17px;
}

/* News Section Styles */
.news-section {
    padding: 40px 0;
    background-color: #fff;
}

.news-section h2 {

    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--pink);
}

.news-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card h3 {
    margin-top: 15px;
    margin-left: 10px;
    color: var(--text-dark);
    font-size: 20px;
}

.news-card .date {

    color: var(--text-gray);
    margin: 0 15px 15px;
}

/* Footer Styles */
footer {
    background-color: #f5f5f5; /* Light background as per design */
    padding: 20px 0;
    border-top: 1px solid #ddd; /* Subtle top border */
}

.footer-logo img {
    height: 20px; /* Adjust based on actual logo size */
}

.footer-logo span {

    font-weight: 700;
    color: #ff0000; /* Red color for prothomalo.com as per design */
}

.footer-text {

    color: #333;
}

.social-icon {
    margin: 0 10px;
}

.social-icon img {
    height: 30px; /* Adjust based on actual icon size */
    transition: opacity 0.3s ease;
}

.social-icon img:hover {
    opacity: 0.8;
}

/* Ticket Purchase Section Styles */
.ticket-purchase-section {
    padding: 60px 0;
    background-color: #fff;
}

.ticket-title {
    color: #ff127b;
    font-weight: 700;
    margin-bottom: 10px;
    font-style: italic;
}

.text-highlight {
    color: #ff127b;
    cursor: pointer;
}

.ticket-subtitle {
    color: purple;
    font-weight: bold;
    margin-bottom: 20px;
    font-style: italic;
    font-size: 35px;
}

.ticket-description {
    color: #555;

    line-height: 1.6;
    margin-bottom: 15px;
}

.ticket-instructions {
    color: #ff127b;
    font-weight: 600;

}

#rules {
    display: none;
}

.ticket-cta {
    color: #ae205e;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 20px;
}

.ticket-phone-image {
    max-width: 100%;
    height: 425px;
    border-radius: 15px;
}
/* Participation Stats Section Styles */
.participation-stats-section {
    padding: 40px 0;
    background-color: #fff;
}

.section-title {
    font-weight: 700;
    color: #585858;
    text-align: center;
}

.uil-angle-down {
    height: 27px;
    width: 27px;
    background: #FF127B;
    border-radius: 50%;
    position: absolute;
    color: #fff;
    text-align: center;
    line-height: 32px;

    cursor: pointer;
}

.stat-card {
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);*/
}

.stat-icon {
    margin-right: 15px;
}

.stat-icon img {
    width: 75px;
    height: 75px;
}

.stat-info {
    text-align: left;
}

.stat-label {
    font-weight: bold;
    font-size: 25px;
}

.stat-value {

    font-weight: bold;
    color: #212536;
    margin-bottom: 0;
    font-size: 25px;
}

.border-right {
    border-right: 1px solid #000;
}

dl, ol, ul {
    list-style-type: none;
}

#rules {
    display: none;
    transition: all 0.3s ease;
}

#rules.show {
    display: block;
}

.margin-60 {
    margin-top: 60px;
}

.toggle-icon {
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.toggle-icon.rotated {
    transform: rotate(180deg);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
}

/* TikTok Video Section Styling */
.tiktok-video-section {
    background: url("/images/video_bg.png") no-repeat;
    background-size: 100% 100%; /* Stretches to full width and height */
    padding: 40px 0;
    color: white;
    position: relative;
    width: 100%;
}

.tiktok-video-section h2 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.video-category-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.video-category-buttons button {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.video-category-buttons button.active {
    background-color: rgba(255, 255, 255, 0.4);
}

.video-category-buttons button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}


blockquote {
    margin: 0;
    border: none;
    background: none !important;
}

iframe {
    background: none !important;
}

.embed-video-container {
    background: red !important;
}

.see-more-btn {
    display: block;
    margin: 20px auto;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 130px;
    text-align: center;
}

.see-more-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.video-item {
    transition: all 0.3s ease;
}

.video-item.hidden {
    display: none;
}

.video-category-buttons button {
    cursor: pointer;
    padding: 8px 16px;
    margin: 5px;
}

.video-category-buttons .active {
    background-color: #000;
    color: #fff;
}

/*css for desktop*/
iframe {
    width: 100%;
    height: 500px;
}

.desktop-view{
    display: block;
}
.mobile-view{
    display: none;
}

/*css for mobile*/
@media (max-width: 576px) {
    iframe {
        width: 100%;
        height: 200px;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .partnership-text {
        text-align: center;
    }
    .footer-logo img {
        height: 17px;
    }
    .navbar-brand img {
        height: 30px;
        margin-right: 10px;
    }

    .bikash-logo {
        height: 60px;
        margin-left: 10px;
    }
    .participation-stats-section {
        padding: 0px 40px 0;
        background-color: #fff;
        margin-top:0px;
    }
    .desktop-view{
        display: none;
    }

    .mobile-view{
        display: block;
    }


    .video-category-buttons button {
        margin: 0px;
    }

    border-right: none;
    .section-title {

    }

    .stat-card {
        height: unset;
        padding: 0px;
    }

    .stat-icon img {
        width: 45px;
        height: 45px;
    }

    .stat-label {

    }

    .stat-value {

    }
}

@media (max-width: 576px) {
    .stat-card {
        flex-direction: column;
        text-align: center;
    }

    .stat-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}


.ticket-title {
    font-size: 55px;
}
.ticket-subtitle {
    color: #A30048;
    font-size: 68px;
}
/* Responsive Adjustments */
@media (max-width: 768px) {

    .hand-img{
        margin-left: 60px;
        height: 399px;
    }
    .ticket-title {

    }

    .ticket-subtitle {

    }

    .ticket-description, .ticket-instructions, .ticket-cta {

    }

    .ticket-phone-image {
        margin-top: 20px;
        margin-right: -21px;
    }
}

@media (max-width: 768px) {
    .footer-text {

    }

    .social-icon img {
        height: 25px;
    }

    .stat-label {
        font-size: 12px;
    }

    .ticket-title {
        text-align: center;
        font-size: 30px;
    }

    .ticket-subtitle {
        text-align: center;
        font-size: 38px;
    }

    .ticket-description {
        text-align: center;
    }

    .ticket-instructions {
        text-align: center;
    }

    .ticket-cta {
        text-align: center;
    }

}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        padding: 0;
    }

    .navbar-brand {
        margin: 0;
        padding: 10px;
    }

    .video-category-buttons button {
        padding: 5px 15px !important;

    }

    .bikash-logo {
        margin: 0;
        padding: 10px;
    }

    .navbar-toggler {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1001;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        width: 60%;
        background-color: #f0f0f0;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        padding-top: 60px;
        box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    .navbar-nav {
        flex-direction: column;
        padding: 20px;
    }

    .nav-item {
        margin: 10px 0;
    }

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0;
    }

    .navbar-brand, .bikash-logo-container {
        flex: 0 0 auto;
    }

    .bikash-logo-container {
        padding-right: 10px;
    }

    .slider-img {
        margin-top: 50px;
    }

    /* Rules Section */
    .rules-section h2 {

    }

    .rules-section ul li {

    }

    .video-thumbnail {
        margin-top: 20px;
    }

    .play-button {

    }

    /* Video Section */
    .video-section h2 {

    }


    /* Leaderboard Section */
    .avatar-wrapper {
        width: 60px;
        height: 60px;
    }

    /* News Section */
    .news-section h2 {

    }

    .news-card h3 {

    }

    .news-img {
        height: 150px;
    }
}
