:root {
    --primary: #FC438D;
    --hover-primary: #C72A7C;
    --secondary: #091971;
    --accent: #F9A9D3;
    --bg_light: #FAF9F6;
    --bg_white: #FFFFFF;
    --bg_dark: #102A6C;
    --text_primary: #333;
    --text_secondary: #6A6A7A;
    --text_white: #FFFFFF;
    --border_grey: #E8E8E8;
    --card_bg: #FFFFFF;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text_secondary);
    background-color: var(--bg_white);
    scroll-behavior: smooth;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--text_primary);
    font-family: "Roboto", sans-serif;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
}

h1 {
    font-size: 3.75rem;
}

h2 {
    font-size: 2.625rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.05rem;
}

h6 {
    font-size: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--hover-primary);
}

p {
    font-size: 14px;
}

.btn {
    padding: 6px 15px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: var(--text_white);
}

.btn-primary:disabled {
    background-color: var(--accent);
    border: 1px solid var(--accent);
    color: var(--text_white);
}

.btn-primary:hover:disabled {
    background-color: var(--accent);
    border: 1px solid var(--accent);
    color: var(--text_white);
}

.btn-primary:hover {
    background-color: var(--hover-primary);
    border-color: var(--hover-primary);
    color: var(--text_white);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--secondary);
    border: 1px solid var(--secondary);
    color: var(--text_white);
}

.btn-secondary:hover {
    background-color: #2047A8;
    border-color: #2047A8;
    color: var(--text_white);
    transform: translateY(-1px);
}

.btn-outline-secondary {
    border-radius: 5px;
    border-color: var(--secondary);
    color: var(--secondary);
    background: transparent;
}

.btn-outline-secondary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--text_white);
    transform: translateY(-1px);
}

.header-main-block {
    padding: 15px 0 5px;
}

.header-main-block .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand img {
    width: 200px;
    object-fit: contain;
}

.navbar {
    padding: 0;
}

.navbar .nav-link {
    color: var(--text_primary);
    font-size: 16px;
    font-weight: 500;
    padding: 3px 15px;
    border-bottom: 2px solid transparent;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.mobile-refer-point-block {
    border-bottom: 1px solid var(--border_grey);
}

.mobile-refer-point-block h6 {
    font-size: 1rem;
    color: var(--text_primary);
}

.mobile-refer-point-block p {
    color: var(--primary);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
}

.top-news-slider-main-block {
    padding-top: 10px;
}

.top-news-slider-main-block .carousel-item img {
    width: 100%;
    height: 450px;
    border-radius: 10px;
}

.carousel-title a {
    color: var(--text_white);
    font-size: 1.5rem;
}

.carousel .carousel-caption {
    padding: 10px;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100%;
    transform: none;
    border-radius: 0 0 10px 10px;
}

.carousel-control-next,
.carousel-control-prev {
    width: 6%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(226, 61, 144, 1);
    border-radius: 50%;
    padding: 0;
    background-image: inherit;
    line-height: 2.1;
    color: var(--secondary);
    opacity: 1;
    margin-top: -40px;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--text_secondary);
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.carousel-indicators [data-bs-target].active {
    background-color: var(--primary);
}

.carousel-indicators {
    bottom: inherit;
    margin-top: 5px;
}

.hero-slider .btn {
    background-color: var(--secondary);
    color: var(--text_white);
    border: 1px solid var(--secondary);
    font-size: 10px;
    padding: 2px 5px;
}

@media (max-width: 768px) {
    .hero-slider .carousel-caption .small {
        display: none;
    }

    .offcanvas {
        max-width: 50%;
    }

    .carousel-title a {
        font-size: 1rem;
    }

    .navbar-brand img {
        width: 170px;
    }

    .top-news-slider-main-block {
        padding-bottom: 0;
    }
}

.mentors-main-block {
    padding: 30px 0;
}

.mentor-card {
    background: linear-gradient(145deg, var(--bg_white) 85%, rgba(226, 61, 144, 0.08));
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), inset 0 0 8px rgba(0, 0, 0, 0.03);
    text-align: center;
    padding: 20px 10px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid var(--border_grey);
    height: 100%;
}

.mentor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 50px rgba(226, 61, 144, 0.5);
    border-color: var(--primary);
}

.mentor-card img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 5px solid var(--accent);
    object-fit: cover;
    margin-bottom: 20px;
    filter: grayscale(0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mentor-card:hover img {
    filter: grayscale(0);
}

.mentor-name {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text_primary);
}

.mentor-profession {
    color: var(--primary);
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mentors-main-block .carousel-inner {
    padding: 10px 0;
}

.mentor-modal-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 4px solid var(--accent);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mentor-modal-title {
    color: var(--text_primary);
    font-weight: 700;
}

.mentor-modal-profession {
    color: var(--primary);
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.swiper {
    padding: 20px 0 40px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--accent);
    transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--hover-primary);
}

.swiper-pagination-bullet {
    background: var(--text_secondary);
    opacity: 0.8;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.swiper-pagination-bullet-active {
    background: var(--hover-primary);
}

.adsSwiper {
    padding: 0 0 35px;
}

.adsSwiper .carousel-item img {
    object-fit: fill;
}

.news-main-block {
    padding: 30px 0;
}

.news-cat-title {
    color: var(--primary);
    font-weight: 700;
    border-left: 5px solid var(--primary);
    padding-left: 15px;
    margin-bottom: 0;
}

.news-block {
    border: 1px solid var(--border_grey);
    border-radius: 10px;
}

.news-card-block {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 100%;
    padding: 15px;
    border-bottom: 1px solid var(--border_grey);
    transition: background-color 0.3s ease;
}

.news-card-block:last-child {
    border: none;
}

.news-card-block:hover {
    border-radius: 8px;
}

.news-card-block .content a {
    color: var(--text_primary);
}

.news-card-block img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-card-block .tag {
    background-color: var(--secondary);
    color: var(--text_white);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 5px;
}

.news-card-block .image-wrapper {
    position: relative;
    flex-shrink: 0;
}

.news-card-block h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 0;
    line-height: 1.4;
    color: var(--text_primary);
}

.news-card-block p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text_secondary);
}

@media (max-width: 768px) {
    .news-main-block .btn span {
        display: none;
    }

    .news-main-block .btn svg {
        margin-left: 0 !important;
        font-size: 14px;
        vertical-align: middle;
    }

    .news-cat-title {
        font-size: 1.1rem;
    }

    .news-card-block h5 {
        font-size: 0.80rem;
    }

    .news-card-block p {
        font-size: 0.8rem;
    }

    .mentors-main-block {
        padding: 20px 0;
    }

    .news-block {
        margin-bottom: 20px;
    }

    .news-main-block {
        padding: 10px 0 0;
    }

    .mentors-main-block .section-title {
        margin-bottom: 0;
    }

    .adsSwiper {
        padding: 0 0 40px;
    }

    .mentor-name {
        font-size: 0.75rem;
        margin-bottom: 0;
    }

    .mentor-profession {
        font-size: 0.65rem;
        margin-bottom: 0;
    }
}

.about-main-block {
    padding: 30px 0 100px;
}

.about-sub-tile {
    color: var(--secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.about-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-img {
    position: relative;
    padding-top: 40px;
}

.about-img-one img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-one-img {
    position: absolute;
    right: 0;
    bottom: -60px;
    text-align: right;
}

.about-one-img img {
    width: 300px;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    border: 5px solid var(--bg_light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quiz-main-block {
    padding: 30px 0;
}

.quiz-card {
    background: linear-gradient(145deg, var(--bg_white) 85%, rgba(26, 58, 138, 0.08));
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), inset 0 0 8px rgba(0, 0, 0, 0.03);
    text-align: center;
    padding: 20px;
    transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid var(--border_grey);
    height: 100%;
    display: block;
    align-content: center;
}

.quiz-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 60px rgba(26, 58, 138, 0.5);
    border-color: var(--secondary);
}

.quiz-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 12px;
}

.quiz-card h5 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.3rem;
}

.daily-question-text {
    font-size: 0.85rem;
}

.quiz-info {
    color: var(--text_secondary);
    font-size: 0.95rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.quiz-meta {
    background: none;
    border: none;
    padding: 0;
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
    gap: 10px;
    box-shadow: none;
}

.quiz-meta span {
    flex: 1;
    background: rgba(249, 169, 211, 0.3);
    border: 2px solid rgba(226, 61, 144, 0.4);
    border-radius: 12px;
    padding: 10px 5px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text_primary);
    text-shadow: 0 0 1px var(--bg_white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.btn-quiz {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text_white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    padding: 10px 30px;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(226, 61, 144, 0.2);
}

.btn-quiz:hover {
    opacity: 0.95;
    color: var(--text_white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(226, 61, 144, 0.5);
}

.referral-main-block,
.fundraising-main-block {
    padding: 30px 0;
}

.referral-main-block {
    padding: 20px 0 0;
    background-repeat: no-repeat;
    width: 100%;
    margin-top: 80px;
}

.ref-img {
    text-align: right;
    margin-top: -120px;
}

.referral-main-block .add-dtl {
    padding: 18px 0;
}

.ad-banner {
    padding: 40px;
    color: var(--text_white);
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    position: relative;
    z-index: 99;
    background-size: cover;
}

.referral-main-block .container-fluid,
.fundraising-main-block .container-fluid {
    padding: 0;
}

.overlay-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.4);
}

.add-dtl {
    position: relative;
}

.ad-banner i {
    color: var(--text_white);
}

.ad-banner h3 {
    color: var(--text_white);
    margin-top: 10px;
    font-size: 2rem;
}

.ad-banner p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 15px auto 25px;
    font-size: 1.1rem;
}

.ad-banner .btn-primary {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.ad-banner .btn-light {
    color: var(--primary) !important;
    font-weight: 700;
    border-radius: 8px;
    padding: 6px 25px;
}

.ad-placeholder img {
    width: 100%;
    height: 450px;
    border-radius: 12px;
}

.footer-main-block {
    background-color: var(--bg_dark);
    padding: 60px 0 20px;

}

.footer-logo {
    height: 35px;
}

.footer-logo img {
    margin-top: -45px;
}

.footer-main-block p {
    color: rgba(255, 255, 255, 0.7);
}

footer h5 {
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 2.2;
}

footer a:hover {
    color: var(--primary);
}

footer ul {
    list-style: none;
    padding: 0;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--text_white);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.5s;
}

.social-icons a:hover {
    background: var(--primary);
    color: var(--text_white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.refer-social-icon ul li {
    list-style: none;
}

.refer-social-icon ul li svg {
    font-size: 28px !important;
}

.login-btn .dropdown-toggle {
    background-color: inherit;
    border: none;
    padding: 0;
    color: var(--primary);
}

.login-btn .dropdown-toggle:focus {
    background-color: inherit;
    border: none;
}

.login-btn .dropdown-toggle:after {
    content: inherit;
}

.login-btn .dropdown-toggle .badge {
    top: 2px;
    background-color: var(--secondary);
}

.login-btn .dropdown-toggle {
    padding: 6px 10px;
}

.login-btn .dropdown img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 5px;
    object-fit: contain;
    border: 2px solid var(--accent);
}

@media (min-width: 1100px) and (max-width: 1300px) {
    .referral-main-block .add-dtl {
        padding: 0;
    }
}

@media (min-width: 1000px) and (max-width: 1100px) {
    .referral-main-block .add-dtl {
        padding: 0;
    }
}

@media (max-width: 992px) {
    .header-main-block {
        padding: 20px 0 15px;
    }

    .header-main-block .container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .login-btn {
        margin-left: auto;
    }

    .login-btn .dropdown-toggle {
        background-color: inherit;
        border: none;
        padding: 0;
    }

    .login-btn .dropdown-toggle:focus {
        background-color: inherit;
        border: none;
    }

    .login-btn .dropdown-toggle:after {
        content: inherit;
    }

    .login-btn .dropdown img {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        margin-right: 0;
    }

    .about-one-img {
        position: static;
        text-align: left;
        margin-top: 20px;
    }

    .about-img-one img,
    .about-one-img img {
        max-width: 100%;
        height: auto;
    }

    .about-img-one img {
        height: 200px;
    }

    .about-one-img img {
        width: 100%;
        height: 200px;
    }

    .news-card-block {
        gap: 1rem;
    }

    .about-title {
        font-size: 1.5rem;
    }

    .quiz-card {
        padding: 20px 8px;
    }

    .quiz-main-block {
        padding: 10px 0;
    }

    .about-main-block {
        padding: 10px 0;
    }

    .about-img {
        padding-top: 0;
    }

    .ad-banner p {
        font-size: 0.7rem;
        margin-bottom: 10px;
    }

    .ad-banner h3 {
        font-size: 1.2rem;
    }

    .ad-banner {
        padding: 20px;
        border-radius: 10px;
    }

    .referral-main-block .container-fluid,
    .fundraising-main-block .container-fluid {
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
    }

    .referral-main-block {
        margin-top: 0;
        padding: 0 !important;
    }

    .ref-img {
        text-align: left;
        margin-top: 10px;
        margin-left: -40px;
    }

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

    .referral-main-block .add-dtl {
        padding: 0;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .quiz-card h5 {
        font-size: 1.2rem;
    }

    .btn-quiz {
        margin-top: 10px;
    }

    .add-dtl svg {
        font-size: 40px !important;
        margin-bottom: 5px !important;
    }

    .add-dtl .modal-body svg {
        font-size: 18px !important;
    }

    .fundraising-main-block .add-dtl h3 {
        font-size: 1.2rem;
        margin-top: 0;
    }

    .refer-social-icon ul li svg {
        font-size: 26px !important;
    }
}

@media (max-width: 768px) {
    .navbar-toggler {
        line-height: 1.4;
        padding: 5px 15px 5px 0;
        border-radius: 6px;
    }

    .navbar-toggler-icon {
        background-image: inherit;
        width: 10px;
        height: 24px;
    }

    .section-title {
        font-size: 1.1rem;
        margin-bottom: 0;
    }

    .top-news-slider-main-block .carousel-item img {
        height: 210px;
        object-fit: fill;
    }

    .top-news-slider-main-block .adsSwiper .carousel-item img {
        height: 160px;
    }

    .ad-placeholder img {
        height: 150px;
    }

    .mentor-card {
        padding: 10px 0;
    }

    .mentor-card img {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
        border: 3px solid var(--accent);
    }

    .news-card-block img {
        width: 100%;
        height: 80px;
    }

    .news-card-block p {
        display: none;
    }

    .carousel .carousel-caption {
        padding: 10px 15px;
    }

    .carousel-title {
        font-size: 1rem;
    }

    .carousel-caption .btn {
        font-size: 14px;
    }

    #adCarousel .carousel-item img {
        height: 200px;
        object-fit: contain;
    }

    #adCarousel {
        margin-top: 20px;
    }

    .news-card-block .tag {
        font-weight: 400;
        padding: 4px 8px;
    }
}

@media (max-width: 576px) {
    .login-btn {
        margin: 0 auto;
    }

    .header-main-block .container {
        justify-content: space-between;
    }
}

.news-page-main-block {
    padding: 10px 0 40px;
}

.news-page-main-block .section-title {
    color: var(--primary);
    font-size: 2rem;
    /* border-bottom: 3px solid var(--secondary); */
    padding-bottom: 10px;
    text-align: left;
}

.featured-news-card {
    background-color: var(--bg_white);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border_grey);
    transition: transform 0.3s ease;
}

.featured-news-card img {
    border-radius: 10px 10px 0 0;
    width: 100%;
    height: 450px;
}

.featured-news-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text_primary);
    margin-bottom: 10px;
}

.featured-news-card h2 a {
    text-decoration: none;
    color: inherit;
}

.featured-news-card h2 a:hover {
    color: var(--primary);
}

.featured-news-card .meta-info {
    font-size: 0.9rem;
    color: var(--text_secondary);
    margin-bottom: 15px;
}

.featured-news-card .read-more-link {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
}

.featured-news-card .read-more-link:hover {
    text-decoration: underline;
}

.tag.bg-primary-custom {
    background-color: var(--primary);
    color: var(--text_white);
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 500;
}

.small-news-card {
    background-color: var(--bg_white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    height: 100%;
}

.small-news-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.small-news-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-bottom: 1px solid var(--border_grey);
}

.small-news-card h6 {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px;
    line-height: 1.3;
}

.small-news-card h6 a {
    color: var(--text_primary);
    text-decoration: none;
}

.small-news-card h6 a:hover {
    color: var(--primary);
}

.more-stories-list {
    border-top: 1px solid var(--border_grey);
    padding-bottom: 10px;
    border-radius: 12px;
}

.compact-news-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border_grey);
    transition: background-color 0.3s ease;
}

.compact-news-item:hover {
    background-color: var(--bg_light);
    cursor: pointer;
}

.compact-news-item:last-child {
    border-bottom: none;
}

.compact-news-item .item-img-link {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    overflow: hidden;
    border-radius: 6px;
    margin-right: 10px;
}

.compact-news-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-content-compact {
    flex-grow: 1;
}

.item-content-compact h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
}

.item-content-compact h5 a {
    color: var(--text_primary);
    text-decoration: none;
}

.item-content-compact h5 a:hover {
    color: var(--primary);
}

.tag-category-compact {
    display: inline-block;
    background-color: var(--accent);
    color: var(--text_primary);
    font-size: 9px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.news-sidebar .sidebar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    border-bottom: 3px solid var(--secondary);
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.category-list {
    border: 2px solid var(--border_grey);
    border-radius: 10px;
}

.category-list li {
    padding: 15px;
    border-bottom: 1px dashed var(--border_grey);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    color: var(--text_primary);
    font-weight: 500;
    text-decoration: none;
}

.category-list li a:hover {
    color: var(--primary);
}

.category-list li a i {
    color: var(--secondary);
    margin-right: 8px;
}

.category-list li a span {
    color: var(--text_primary);
    font-weight: 500;
}

.category-list li span i {
    color: var(--secondary);
}

.latest-news .news-card-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border_grey);
}

.latest-news .news-card-block:last-of-type {
    border-bottom: none;
    margin-bottom: 10px;
    padding-bottom: 0;
}

.latest-news .news-card-block .image-wrapper {
    flex-shrink: 0;
    width: 100px;
    height: 70px;
    overflow: hidden;
    border-radius: 5px;
    margin-right: 15px;
}

.latest-news .news-card-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-news .news-card-block .content {
    flex-grow: 1;
}

.latest-news .news-card-block .content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
}

.latest-news .news-card-block .content h5 a {
    color: var(--text_primary);
    text-decoration: none;
}

.latest-news .news-card-block .content h5 a:hover {
    color: var(--primary);
}

.latest-news .news-card-block .content .tag {
    background-color: var(--primary);
    color: var(--text_white);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.7rem;
    display: inline-block;
    margin-bottom: 5px;
}

.custom-pagination .page-item a {
    color: var(--text_primary);
    border: 1px solid var(--border_grey);
    margin: 0 3px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.custom-pagination .page-item a:hover {
    background-color: var(--accent);
    color: var(--text_primary);
    border-color: var(--accent);
}

.custom-pagination .page-item.active a {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text_white);
}

@media (max-width: 992px) {
    .featured-news-card .featured-img {
        height: 170px;
    }

    .featured-news-card h2 {
        font-size: 1.1rem;
    }

    .small-news-card img {
        height: 80px;
    }

    .tag.bg-primary-custom {
        font-size: 0.6rem;
    }
}

@media (max-width: 768px) {
    .news-page-main-block .section-title {
        font-size: 1.2rem;
        padding-bottom: 0;
    }

    .compact-news-item .item-img-link {
        width: 70px;
        height: 45px;
    }

    .item-content-compact h5 {
        font-size: 0.9rem;
    }

    .news-page-main-block {
        padding: 10px 0 20px;
    }
}

.news-detail-main-block {
    padding: 10px 0 40px;
}

.detail-nav-path {
    font-size: 0.9rem;
    color: var(--text_secondary);
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border_grey);
    border-top: 1px solid var(--border_grey);
}

.detail-nav-path a {
    color: var(--secondary);
}

.detail-nav-path span {
    color: var(--primary);
    font-weight: 500;
}

.main-article-content {
    padding-bottom: 20px;
}

.article-headline {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    font-size: 0.9rem;
    color: var(--text_secondary);
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--border_grey);
}

.meta-item i {
    color: var(--primary);
    margin-right: 5px;
}

.article-share-bar {
    border-bottom: 1px solid var(--border_grey);
    padding-bottom: 15px;
}

.share-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: var(--text_white);
    margin-right: 8px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.share-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.share-icon.facebook {
    background-color: #3b5998;
}

.share-icon.twitter {
    background-color: #55acee;
}

.share-icon.whatsapp {
    background-color: #25d366;
}

.share-icon.mail {
    background-color: var(--primary);
}

.article-featured-img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.figure-caption {
    font-style: italic;
    color: var(--text_secondary);
    font-size: 0.85rem;
    text-align: center;
}

.lead-paragraph {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text_primary);
    line-height: 1.7;
}

.main-article-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.article-quote {
    border-left: 5px solid var(--secondary);
    padding: 15px 20px 15px 25px;
    margin: 20px 0;
    background-color: rgba(26, 58, 138, 0.05);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text_primary);
    border-radius: 0 8px 8px 0;
}

.article-quote footer {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--primary);
    font-style: normal;
    font-weight: 600;
}

.related-topics {
    padding: 15px 0;
    border-top: 1px solid var(--border_grey);
}

.topic-title {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.tag-link {
    display: inline-block;
    background-color: var(--accent);
    color: var(--text_primary);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-right: 10px;
    margin-bottom: 8px;
    transition: background-color 0.3s ease;
}

.tag-link:hover {
    background-color: var(--primary);
    color: var(--text_white);
}

.read-more-section {
    background-color: rgba(249, 169, 211, 0.3);
    border-radius: 8px;
    border-top: 4px solid var(--primary) !important;
}

.other-stories-list li {
    line-height: 2.5;
}

.other-stories-list li i {
    color: var(--secondary);
    margin-right: 8px;
    font-size: 0.75rem;
}

.other-stories-list li a {
    color: var(--text_primary);
    font-weight: 500;
    font-size: 1rem;
}

.other-stories-list li a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.detail-sidebar .sidebar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    border-left: 5px solid var(--primary);
    padding-left: 10px;
    margin-bottom: 20px;
}

.sidebar-ad-block img {
    border-radius: 10px;
    height: 450px;
}

@media (max-width: 768px) {
    .article-headline {
        font-size: 1.5rem;
    }

    .lead-paragraph {
        font-size: 1rem;
    }
}

.quiz-container .card {
    border: none;
    border-radius: 1.5rem;
    box-shadow: var(--card-shadow);
    padding: 25px;
    margin-bottom: 20px;
    border-top: 5px solid var(--primary);

}

.app-header {
    padding: 15px 20px;
    border-radius: 1.5rem 1.5rem 0 0;
    margin: -25px -25px 25px -25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border_grey);
}

.quiz-container .btn-primary {
    padding: 12px 25px;
}

.quiz-container .btn-outline-secondary {
    padding: 12px 25px;
}

.quiz-option span,
.quiz-option-list {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid #e0e0e0;
    border-radius: 0.75rem;
    padding: 12px;
    margin-bottom: 10px;
    text-align: left;
    transition: all 0.15s ease;
}

.quiz-option span:hover .quiz-option-list:hover {
    border-color: var(--primary);
    background-color: #fceaf3;
}

.quiz-option-list.selected {
    border-color: var(--primary);
    background-color: var(--primary);
    color: white;
    font-weight: 500;
}

.progress-bar-app {
    height: 8px;
    border-radius: 4px;
}

.progress-bar-app .progress-bar {
    background-color: var(--secondary);
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

.result-item:last-child {
    border-bottom: none;
}

.result-value {
    font-weight: 700;
}

.result-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

.text-success-app {
    color: var(--success);
}

.text-error-app {
    color: var(--error);
}

.account-hero {
    background-color: var(--bg_light);
    padding: 40px 0 20px 0;
}

.profile-card {
    border-radius: 10px;
    padding: 30px;
    background-color: var(--bg_white);
    position: relative;
    border: 2px solid var(--border_grey);
}

.profile-image-section {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border_grey);
}

.profile-img-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 0 3px var(--accent);
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
}

.profile-img-wrap:hover {
    transform: scale(1.03);
}

.profile-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.profile-img-wrap::after {
    content: "\f030";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 45, 58, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-img-wrap:hover::after {
    opacity: 1;
}

#profileImage {
    display: none;
}

.form-group label {
    font-weight: 500;
    color: var(--text_primary);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(226, 61, 144, 0.25);
}

.adhar-group .input-group-text {
    transition: all 0.2s ease;
    border-radius: 0 10px 10px 0 !important;
}

.form-group {
    margin-bottom: 15px;
}

.voucher-list-block {
    padding: 0 0 40px;
}

.voucher-card-basic {
    background-color: var(--bg_white);
    border: 2px solid var(--border_grey);
    border-radius: 10px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    transition: transform 0.5s ease, box-shadow 0.5s ease, border 0.5s ease;
}

.voucher-card-basic:hover {
    transform: translateY(-5px);
    background-color: var(--bg_white);
    box-shadow: 0 20px 60px rgba(226, 61, 144, 0.5);
    border-color: var(--primary);
}

.card-header-basic svg {
    font-size: 28px;
    color: var(--secondary);
}
.card-header-basic img {
    height: 60px;
    width: 60px;
    border-radius: 10px;
}

.card-header-basic h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text_primary);
    margin: 0;
}

.voucher-scheme-basic {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    font-style: italic;
}

.voucher-scheme-basic strong {
    color: var(--primary, #FC438D);
}

.voucher-meta-basic {
    font-size: 0.8rem;
    color: var(--text_secondary);
    margin-bottom: 0;
}

.voucher-meta-basic i {
    color: var(--secondary, #091971);
    min-width: 20px;
}

.btn-redeem-basic {
    text-align: center;
    padding: 10px;
    padding: 7px 15px;
    border-radius: 8px;
    font-size: 0.75rem;
    text-decoration: none;
    background-color: var(--primary);
    color: var(--text_white) !important;
}

.btn-redeem-basic.secondary {
    background-color: var(--secondary, #091971);
}

.btn-redeem-basic.secondary:hover {
    background-color: var(--bg_dark, #102A6C);
}

@media (max-width: 768px) {
    .quiz-container {
        padding: 0;
        display: block;
    }

    .quiz-container .card {
        width: 100%;
    }

    .quiz-container h3 {
        font-size: 1.5rem;
    }

    .result-item {
        font-size: 1rem;
    }

    .card-header-basic h5 {
        font-size: 1.15rem;
    }
    
    .card-header-basic img {
        height: 70px;
        width: 70px;
    }
    
    .voucher-list-block {
        padding: 0 0 20px;
    }

    .voucher-scheme-basic {
        font-size: 0.9rem;
        font-style: normal;
    }

    .voucher-card-basic {
        flex-direction: row;
        justify-content: left;
        width: 100%;
        gap: 15px;
        margin-bottom: 10px;
    }

    .voucher-card-dtl {
        text-align: left;
    }

    .btn-redeem-basic {
        padding: 5px;
        width: 100%;
        display: block;
    }

    .card-header-basic {
        margin: 0 !important;
    }

    .profile-card {
        padding: 20px;
    }
}

.pricing-block {
    padding-bottom: 60px;
    background-color: var(--bg_light);
}

.pricing-card {
    background-color: var(--bg_white);
    border: 2px solid var(--border_grey);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border: 3px solid var(--primary);
    box-shadow: 0 10px 20px rgba(226, 61, 144, 0.2);
    transform: translateY(-5px);
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text_primary);
    margin-bottom: 10px;
}

.plan-tag {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 15px;
}

.price-main {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1;
}

.price-time {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.price-main span {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text_secondary);
    display: block;
    margin-top: 5px;
}

.price-main.free-price {
    font-size: 2.5rem;
    color: var(--secondary);
}

.feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.feature-list li {
    padding: 5px 0;
    font-size: 0.85rem;
    color: var(--text_secondary);
    display: flex;
    align-items: baseline;
}

.feature-list li i {
    color: var(--primary);
    margin-right: 10px;
    min-width: 20px;
    margin-top: 3px;
}

.feature-list li .fa-times {
    color: #FF5733;
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
    padding: 12px 20px;
}

.pricing-card .btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.pricing-card .btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

@media (max-width: 991.98px) {
    .pricing-block {
        padding-bottom: 20px;
    }

    .pricing-block .col-lg-3 {
        width: 50%;
    }
}

@media (max-width: 575.98px) {
    .pricing-block .col-lg-3 {
        width: 100%;
    }
}

.login-header {
    padding: 20px 0;
    background-color: var(--bg_white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.login-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-header .navbar-brand img {
    height: 40px;
}

.login-section {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.login-card {
    display: flex;
    max-width: 960px;
    width: 100%;
    background-color: var(--bg_white);
    border-radius: 15px;
    border: 2px solid var(--border_grey);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.login-form-container {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-image-side {
    flex: 1;
    /* background: linear-gradient(135deg, var(--secondary), var(--primary)); */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* padding: 30px; */
    color: var(--text_white);
    text-align: center;
    flex-direction: column;
}

.login-image-side h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.login-image-side p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.login-image-side img {
    max-width: 100%;
    height: 100%;
    /* margin-bottom: 30px; */
    /* border-radius: 10px; */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.login-form-container h3 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.login-form-container p.subtitle {
    color: var(--text_secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.form-label {
    font-weight: 500;
    color: var(--heading_color);
    margin-bottom: 8px;
}

.form-control {
    border-radius: 10px;
    padding: 12px 18px;
    border: 1px solid var(--border_grey);
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-select {
    border-radius: 10px;
    padding: 12px 18px;
    border: 1px solid var(--border_grey);
    font-size: 14px;
    color: var(--text_secondary);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.15);
    outline: none;
}

.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.15);
    outline: none;
}

.input-group-text.adhar-group {
    background-color: var(--bg_white);
    border: 1px solid var(--border_grey);
    border-left: none;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    color: var(--text_secondary);
    padding: 12px 15px;
}

.input-group-text.adhar-group:hover {
    color: var(--primary);
}

.btn-gradient {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: var(--text_white);
    border: none;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 6px 15px rgba(var(--primary-rgb), 0.2);
}

.btn-gradient:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    color: var(--text_white);
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
}

.text-center a {
    color: var(--secondary);
    font-weight: 500;
    text-decoration: none;
}

.forgot-password-link {
    color: var(--text_secondary);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.forgot-password-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

@media (max-width: 992px) {
    .login-card {
        flex-direction: column;
        max-width: 550px;
    }

    .login-image-side {
        min-height: 250px;
        padding: 40px 20px;
    }

    .login-form-container {
        padding: 30px;
    }

    .login-form-container h2 {
        font-size: 2rem;
    }

    .login-form-container p.subtitle {
        font-size: 0.85rem;
    }

    .login-form-container h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .login-section {
        padding-bottom: 20px;
    }
    
    .login-section .btn {
        padding: 12px;
    }

    .login-form-container {
        padding: 20px;
    }

    .login-form-container h2 {
        font-size: 1.8rem;
    }

    .login-image-side h3 {
        font-size: 1.6rem;
    }
}

.hamburger {
    width: 24px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-top: 3px;
}

.hamburger span {
    display: block;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.hamburger span:nth-child(1) {
    width: 100%;
}

.hamburger span:nth-child(2) {
    width: 70%;
}

.hamburger span:nth-child(3) {
    width: 40%;
}

.mobile-icons a {
    text-decoration: none;
}

.mobile-icons i {
    font-size: 1.5rem;
}

.read-more-btn {
    color: var(--secondary) !important;
    text-decoration: none;
    font-weight: 500;
    margin-left: 4px;
}

.read-more-btn:hover {
    text-decoration: underline;
}

.mentors-page-main-block {
    padding: 0 0 40px;
}

@media (max-width: 768px) {
    .mobile-icons i {
        font-size: 1.3rem;
        color: var(--primary);
    }

    .offcanvas-body .navbar .nav-link {
        padding: 8px 0;
    }

    .mentors-page-main-block {
        padding: 0 0 20px;
    }
}

.contest-main-block {
    padding: 0 0 40px;
}

.contest-card-gallery {
    background-color: var(--bg_white);
    border-radius: 15px;
    border: 1px solid var(--border_grey);
}

.contest-header-bg {
    color: var(--text_primary);
    text-align: left;
}

.contest-date {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    margin: 0;
}

.contest-body-gallery {
    padding: 30px;
}

.rule-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    border-left: 5px solid var(--primary);
    padding-left: 15px;
    margin-bottom: 20px;
}

.contest-visual-area {
    border: 1px solid var(--border_grey);
    border-radius: 10px;
    padding: 15px;
    background-color: var(--bg_light);
}

.contest-visual-area img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.contest-body-gallery ul {
    list-style: none;
    padding-left: 1.2rem;
}

.contest-body-gallery ul li {
    font-size: 14px;
    list-style: disc;
    color: var(--text_primary);
}

.contest-body-gallery ul li i {
    color: var(--primary);
    font-size: 1.1rem;
}

.contest-form-wrapper-gallery {
    background-color: var(--accent);
    padding: 30px 25px;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rule-title-small {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 25px;
    text-align: center;
}

.contest-form .form-label {
    font-weight: 600;
    color: var(--text_primary);
    font-size: 0.95rem;
}

.contest-form .form-control {
    border-radius: 8px;
    border: 1px solid var(--border_grey);
    padding: 10px 15px;
}

.contest-submit-btn {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 12px;
    border-radius: 8px;
    background-color: var(--primary);
    border-color: var(--primary);
    transition: background-color 0.3s;
}

.contest-submit-btn:hover {
    background-color: var(--hover-primary);
    border-color: var(--hover-primary);
}

@media (max-width: 991.98px) {
    .contest-body-gallery {
        padding: 10px;
    }

    .contest-form-wrapper-gallery {
        padding: 30px 20px;
    }
}


.directory-section-main-block {
    padding: 0 0 40px;
}

.directory-section .directory-title-main {
    font-size: 2.75rem;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.category-sidebar {
    position: sticky;
}

.category-sidebar .nav {
    border-radius: 10px;
    border: 2px solid var(--border_grey);
    padding: 10px;
    gap: 10px;
    text-align: center;
}

.nav-pills .nav-link {
    padding: 7px 15px;
    border-radius: 10px;
    color: var(--text_primary);
    font-weight: 500;
    background-color: transparent;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.nav-pills .nav-link i {
    margin-right: 10px;
    font-size: 1rem;
    color: var(--primary);
}

.nav-pills .nav-link:hover {
    background-color: var(--bg_light);
    color: var(--secondary);
}

.nav-pills .nav-link.active {
    background-color: var(--primary);
    color: var(--text_white);
    border-color: var(--primary);
}

.nav-pills .nav-link.active i {
    color: var(--text_white);
}

.directory-section-main-block .form-select {
    padding: 8px 18px;
}

.filter-dropdown-bar {
    background-color: var(--bg_white);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.filter-dropdown-bar .input-group-text {
    background-color: var(--bg_light);
    color: var(--secondary);
    font-weight: 600;
    border: 1px solid var(--border_grey);
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-size: 1rem;
}

.filter-dropdown-bar .input-group-text i {
    color: var(--primary);
    margin-right: 5px;
}

.filter-dropdown-bar .form-select {
    border: 1px solid var(--border_grey);
    border-radius: 0 8px 8px 0;
    padding: 10px 15px;
    font-weight: 500;
    color: var(--text_primary);
}

.professional-card {
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s ease, box-shadow 0.5s ease, border 0.5s ease;
    margin-bottom: 20px;
    border: 1px solid var(--border_grey);
    box-shadow: inherit;
    text-align: center;
}

.professional-card:hover {
    transform: translateY(-5px);
    background-color: var(--bg_white);
    box-shadow: 0 20px 60px rgba(226, 61, 144, 0.5);
    border-color: var(--primary);
}
.filter-section {
    display: none !important;
}
.mobile-category-canvas {
    height: calc(85vh - 100px);
    overflow-y: scroll;
    background-color: var(--bg_light);
}
.directory-section-main-block .tab-content {
    height: calc(85vh - 100px);
    overflow-y: scroll;
    overflow-x: hidden;
}
.prof-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid var(--accent);
    object-fit: cover;
    margin-bottom: 10px;
    filter: grayscale(0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.prof-info-text {
    width: 100%;
}

.prof-name {
    color: var(--secondary);
    margin-bottom: 2px;
    font-weight: 700;
}

.prof-name .verified-badge {
    color: #28a745;
    font-size: 0.85rem;
    opacity: 0.9;
}

.prof-detail {
    display: grid;
    grid-template-columns: 1fr;
    text-align: left;
}

.prof-detail p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text_secondary);
}

.prof-detail strong {
    color: var(--text_primary);
    font-weight: 500;
    min-width: 85px;
    margin-right: 5px;
}

.prof-detail i {
    min-width: 25px;
    text-align: center;
    color: var(--primary);
    font-size: 0.9rem;
    margin-right: 10px;
}

.directory-detail-section {
    padding: 0 0 40px;
}

.detail-header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border_grey);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.detail-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 25px;
    border: 4px solid var(--accent);
}

.detail-info h2 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 5px;
    font-weight: 700;
}

.category-badge {
    background-color: var(--primary);
    color: var(--text_white);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: inline-block;
}

.detail-info .lead {
    font-size: 1rem;
    color: var(--text_secondary) !important;
    margin-bottom: 0;
}



.detail-body p,
.detail-body li {
    color: var(--text_secondary);
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text_secondary);
}

.contact-info i {
    color: var(--primary);
    width: 20px;
    text-align: center;
    margin-right: 5px;
}

.detail-body ul {
    padding-left: 20px;
}

.top-pro-sidebar {
    background-color: var(--bg_white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 20px;
    border: 1px solid var(--border_grey);
}

.top-pro-sidebar h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    text-align: center;
}

.pro-mini-card {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--border_grey);
}

.pro-mini-card:last-child {
    border-bottom: none;
}

.mini-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--bg_white);
}

.mini-info h5 {
    font-size: 1.0rem;
    color: var(--secondary);
    margin-bottom: 0px;
    font-weight: 600;
}

.mini-info p {
    font-size: 0.85rem;
    color: var(--text_secondary);
    margin-bottom: 0;
    line-height: 1.3;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .detail-header {
        flex-direction: row;
        gap: 15px;
        text-align: left;
        width: 100%;
    }

    .detail-info h2 {
        font-size: 1.3rem;
    }

    .detail-img {
        margin-right: 0;
        margin-bottom: 15px;
        width: 90px;
        height: 90px;
    }

    .top-pro-sidebar {
        margin-top: 30px;
        position: static;
    }
}

@media (max-width: 768px) {
    .category-sidebar {
        margin-bottom: 20px;
    }

    .professional-card {
        flex-direction: column;
        text-align: left;
        gap: 0;
        align-items: center;
        border: none;
        padding: 0;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .professional-card:hover {
        transform: none;
    background-color: inherit;
    box-shadow: inherit;
    border-color: inherit;
    }

    .prof-detail {
        text-align: left;
    }
    
    .nav-pills .nav-link {
        padding: 7px 10px;
    }
}

.professional-detail-main-block {
    padding: 0 0 40px;
}

.professional-profile-card .detail-img {
    border-radius: 8px !important;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.pro-name-heading {
    color: var(--secondary);
    margin-bottom: 5px;
    font-weight: 700;
}

.detail-info .bg-secondary {
    background-color: var(--secondary) !important;
}

.tab-section .nav-tabs {
    border-bottom: none;
}

.tab-section .nav-tabs .nav-link {
    border: 1px solid var(--secondary);
    color: var(--secondary);
    border-radius: 10px;
    margin-right: 15px;
    padding: 8px 20px;
}

.tab-section .nav-tabs .nav-link.active {
    border-color: inherit;
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: var(--text_white);
    transition: all 0.5 ease;
}

.tab-section .nav-tabs .nav-link:hover {
    background-color: var(--primary);
    color: var(--text_white);
    border: 1px solid var(--primary);
}

.tab-section .tab-content {
    border: 2px solid var(--border_grey);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

#congratsPopup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--secondary);
    color: var(--text_white);
    font-weight: bold;
    font-size: 28px;
    padding: 20px 35px;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 99999;
    text-align: center;
    border: 2px solid var(--secondary);
}

@media (max-width: 768px) {
    .professional-profile-card .detail-img {
        margin-bottom: 0;
    }

    .section-block .col-md-3 {
        margin-bottom: 20px;
    }

    .product-name {
        font-size: 1rem;
    }

    .pro-name-heading {
        font-size: 1.5rem;
    }

    .detail-info .category-badge {
        font-size: 0.75rem;
    }

    .tab-section .nav-tabs .nav-link {
        padding: 5px 15px;
    }
}

.birthday-3d-card {
    background: linear-gradient(145deg, #ffffff, #f5f0ff);
    backdrop-filter: blur(10px);
    border-radius: 22px;
    position: relative;
    transform-style: preserve-3d;
    animation: card3DEntrance 0.9s ease-out forwards;
    opacity: 0;
    background-repeat: no-repeat;
    background-size: cover;
}

@keyframes card3DEntrance {
    0% {
        opacity: 0;
        transform: translateY(40px) rotateX(20deg) scale(0.85);
    }

    60% {
        opacity: 1;
        transform: translateY(-10px) rotateX(5deg) scale(1.03);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
}

.birthday-header-3d {
    padding: 25px 20px 0;
    text-align: center;
    position: relative;
    z-index: 5;
}

.birthday-3d-card .btn-close {
    background: linear-gradient(90deg,
            var(--accent),
            var(--primary),
            var(--secondary));
    border-radius: 50%;
    border: none;
    top: -13px;
    position: absolute;
    right: -14px;
    width: 2em;
    height: 2em;
    color: var(--text_white);
}

.title-glow-circle {
    width: 160px;
    height: 160px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(rgba(200, 150, 255, 0.35), transparent 70%);
    filter: blur(10px);
    border-radius: 50%;
    animation: glowPulse 3s infinite ease-in-out;
    z-index: 1;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.7;
        transform: translateX(-50%) scale(0.95);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

.birthday-title-3d {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(90deg,
            var(--primary),
            var(--primary),
            var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 5;
    animation: textShimmer3D 3s infinite linear;
    transform: translateZ(25px);
}

@keyframes textShimmer3D {
    0% {
        text-shadow: 0 0 8px rgba(160, 100, 255, 0.3);
    }

    50% {
        text-shadow: 0 0 18px rgba(160, 100, 255, 0.45);
    }

    100% {
        text-shadow: 0 0 8px rgba(160, 100, 255, 0.3);
    }
}

/* underline */
.title-bottom-line {
    display: block;
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 6px auto 0;
    border-radius: 5px;
    animation: underlineWave 2s infinite ease-in-out;
}

@keyframes underlineWave {
    0% {
        transform: scaleX(1);
    }

    50% {
        transform: scaleX(1.15);
    }

    100% {
        transform: scaleX(1);
    }
}

.birthday-body-3d {
    padding: 25px 30px 15px;
    position: relative;
}

.birthday-body-3d img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 3px solid var(--accent);
}

.birthday-message-3d {
    font-size: 1.2rem;
    color: #574b72;
    line-height: 1.8;
    margin-bottom: 8px;
    font-family: "Poppins", sans-serif;
    transform: translateZ(18px);
}

.divider-3d {
    width: 75%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    margin: 15px auto;
    transform: translateZ(15px);
}

.birthday-small-3d {
    font-size: 1rem;
    color: #786b92;
    font-style: italic;
    transform: translateZ(12px);
}

.threed-btn {
    border-radius: 30px;
    padding: 10px 26px;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(130, 80, 255, 0.4);
    transition: 0.3s ease;
    transform: translateZ(20px);
}

.threed-btn:hover {
    transform: translateZ(25px) scale(1.05);
    box-shadow: 0 0 25px rgba(130, 80, 255, 0.6);
}

.sparkle-container::before,
.sparkle-container::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(160, 120, 255, 0.8);
    border-radius: 50%;
    animation: sparkleFloat 5s infinite ease-in-out;
}

.sparkle-container::after {
    width: 4px;
    height: 4px;
    animation-duration: 7s;
}

@keyframes sparkleFloat {
    0% {
        transform: translate(20px, 40px);
        opacity: 0.4;
    }

    50% {
        transform: translate(-60px, -20px);
        opacity: 1;
    }

    100% {
        transform: translate(50px, 40px);
        opacity: 0.5;
    }
}

.dropdown:hover>.dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--border_grey);
    background-color: var(--bg_white);
    padding: 10px 0;
    border-radius: 8px;
    min-width: 230px;
    right: 0;
}

.dropdown-item {
    font-weight: 500;
    color: var(--text_secondary);
    padding: 3px 15px;
    border: 3px solid transparent;
    border-radius: 0;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    border-left: 3px solid var(--primary);
    color: var(--primary);
}

.dropdown-divider {
    margin: 5px 0;
    border-color: var(--border_grey);
}

.important-contacts-main-block {
    padding: 0 0 40px;
}

.contact-table-wrapper {
    border-radius: 10px;
}

.contact-table-wrapper .table {
    margin-bottom: 0;
}

.contact-table-wrapper th,
.contact-table-wrapper td {
    vertical-align: middle;
    padding: 12px 15px;
}

.contact-table-wrapper .table-primary {
    --bs-table-bg: var(--primary) !important;
    --bs-table-color: var(--text_white);
    border-color: var(--primary);
}

.contact-table-wrapper .table-primary th {
    font-weight: 700;
}

.contact-table-wrapper .table-hover tbody tr:hover {
    --bs-table-bg: var(--bg_light) !important;
    --bs-table-color: var(--text_primary);
}

.talent-main-block {
    padding: 0 0 40px;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox-content {
    max-width: 600px;
    background: var(--bg_white);
    border-radius: 10px;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

.lightbox img {
    width: 100%;
    height: 500px;
    border-radius: 10px 10px 0 0;
    object-fit: cover;
}

.lightbox-info {
    padding: 20px;
}

.lightbox-info h3 {
    margin-bottom: 5px;
    font-weight: 700;
}

.lightbox-info p,
.lightbox-info h6 {
    margin: 3px 0;
}

.close-lightbox {
    position: fixed;
    top: 25px;
    right: 35px;
    font-size: 40px;
    color: var(--text_white);
    cursor: pointer;
    z-index: 10000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.talent-name {
    color: var(--primary);
    font-weight: 600;
}

.talent-card {
    border-radius: 12px;
    padding: 15px;
    transition: transform 0.5s ease, box-shadow 0.5s ease, border 0.5s ease;
    margin-bottom: 20px;
    border: 1px solid var(--border_grey);
}

.talent-card:hover {
    transform: translateY(-5px);
    background-color: var(--bg_white);
    box-shadow: 0 20px 60px rgba(226, 61, 144, 0.5);
    border-color: var(--primary);
}

.talent-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.daily-quiz-options .quiz-option span {
    padding: 8px 20px;
    color: var(--text_primary);
    font-size: 0.85rem;
    border-radius: 10px;
}

.quiz-option span {
    display: block;
    padding: 10px;
}

.quiz-option input:checked+span {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text_white);
}

.progress {
    height: 7px;
}

.progress-bar {
    background-color: var(--primary);
    height: 7px;
}

.lightbox {
    top: 0 !important;
}

.lb-close:before,
.lb-prev:before,
.lb-next:before {
    content: "" !important;
}

.lb-close {
    position: fixed !important;
    top: 20px !important;
    right: 25px !important;
    width: 40px !important;
    height: 40px !important;
}

.lb-close svg {
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

.lb-prev {
    left: 30px !important;
    opacity: 1 !important;
}

.lb-prev svg {
    color: #fff;
    position: fixed;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    cursor: pointer;
}

.lb-next {
    right: 30px !important;
    opacity: 1 !important;
}

.lb-next svg {
    color: #fff;
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    cursor: pointer;
}

.lb-prev::after:hover,
.lb-next::after:hover,
.lb-close::after:hover {
    color: #ffd700;
    transform: scale(1.2);
}

.lb-prev,
.lb-next,
.lb-close {
    background: none !important;
}

.lightbox .lb-outerContainer {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.lightbox .lb-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.lb-image {
    margin: auto !important;
}

.pricing-main-block {
    padding: 10px 0 40px;
}

.pricing-main-block .category-sidebar .nav {
    border: inherit;
    padding: 0;
}

.business-directory-section {
    padding: 30px 0;
}

.business-card.overlay-card {
    background: none;
    border: none;
    padding: 0;
    overflow: hidden;
    height: 250px;
    border-radius: 10px;
}

.business-card.overlay-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.business-card.overlay-card .business-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border: none;
}

.business-card.overlay-card .business-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.6s ease;
}

.business-card.overlay-card:hover .business-image-wrapper img {
    transform: scale(1.08);
}

.business-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 20px 15px 15px 15px;
    color: var(--text_white);
    border-radius: 0 0 10px 10px;
    transition: background 0.3s ease;
}

.business-info-overlay .owner-name {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
    font-weight: 600;
}

.business-info-overlay .business-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--text_white);
}

.main-directory-links {
    padding: 30px 0;
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    text-align: center;
}

@media (max-width: 1024px) {
    .directory-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .directory-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.directory-link-card {
    background: linear-gradient(145deg, var(--bg_white) 85%, rgba(226, 61, 144, 0.08));
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), inset 0 0 8px rgba(0, 0, 0, 0.03);
    text-align: center;
    padding: 30px 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid var(--border_grey);
    height: 100%;
}

.directory-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 50px rgba(226, 61, 144, 0.5);
    border-color: var(--primary);
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent);
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.directory-link-card:hover .icon-wrapper {
    background-color: var(--primary);
}

.directory-icon {
    font-size: 1.5rem;
    color: var(--secondary);
    margin: 0;
    transition: color 0.3s ease;
}

.directory-link-card:hover .directory-icon {
    color: var(--text_white);
}

.directory-name {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    color: var(--text_primary);
    transition: color 0.3s ease;
    line-height: 1.3;
}

.directory-link-card:hover .directory-name {
    color: var(--primary);
}

.quiz-mobile-row {
    display: none;
    padding: 20px 0;
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center;
    align-content: center;
    height: 180px;
}

.quiz-mobile-row .section-title {
    color: var(--text_white);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.quiz-mobile-row .quiz-subtitle {
    color: var(--text_white);
}
.quiz-mobile-row .btn-quiz {
    background: var(--bg_white);
    color: var(--secondary);
}

.ngo-intro-section {
    padding: 30px 0;
}

.ngo-intro-section .business-card {
    background: linear-gradient(145deg, var(--bg_white) 85%, rgba(226, 61, 144, 0.08));
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), inset 0 0 8px rgba(0, 0, 0, 0.03);
    text-align: left;
    transition: all 0.4s 
cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid var(--border_grey);
}

.ngo-card {

    background: linear-gradient(145deg, var(--bg_white) 85%, rgba(226, 61, 144, 0.08));
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), inset 0 0 8px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid var(--border_grey);
    height: 100%;
    overflow: hidden;
}

.ngo-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.ngo-image-box {
    overflow: hidden;
}

.ngo-image-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    transition: transform 0.5s ease;
}

.ngo-card:hover .ngo-image-box img {
    transform: scale(1.08);
    border-radius: 10px 10px 0 0;
}

.ngo-content {
    color: var(--text_primary);
    padding: 15px;
    text-align: left;
}

.ngo-name {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.ngo-mission-text {
    color: var(--text_primary);
    margin-bottom: 0;
}

.breadcrumb {
    padding-top: 10px !important;
}

.aboutus-main-block {
    padding: 10px 0 40px;
}

.donation-main-block {
    padding: 10px 0 40px;
}

.donation-btn svg {
    font-size: 14px !important;
    margin-bottom: 0 !important;
}

.patient-detail-card {
    border: 1px solid var(--border_grey);
    border-radius: 10px;
    padding: 20px;
}

.patient-detail-card img {
    border-radius: 10px;
}

.foundation-donation-card {
    border: 1px solid var(--border_grey);
    border-radius: 10px;
    padding: 20px;
}
.featured-video-section {
    padding: 30px 0;
}
.featured-video-section .video-card {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background-color: var(--bg_white);
}

.featured-video-section .video-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.featured-video-section .video-image-wrapper {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.featured-video-section .video-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-video-section .video-card:hover .video-image-wrapper img {
    transform: scale(1.05);
}

.featured-video-section .overlay-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 2;
}

.featured-video-section .video-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 20px 15px 10px 15px;
    color: var(--text_white);
    border-radius: 0 0 10px 10px;
    z-index: 3;
    transition: background 0.3s ease;
}

.featured-video-section .video-title {
    font-size: 1.2rem;
    color: var(--text_white);
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-video-section .play-icon-overlay {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    color: var(--text_white);
    font-size: 30px;
    pointer-events: none;
}

.featured-video-section .play-icon-overlay i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.featured-video-section .video-card:hover .play-icon-overlay i {
    transform: translate(-55%, -55%) scale(1.1);
    opacity: 1;
}

.videoSwiper .swiper-button-next,
.videoSwiper .swiper-button-prev {
    color: var(--primary);
}

.videoSwiper .swiper-pagination-bullet-active {
    background: var(--primary);
}


/* ============================================== */
/* VIDEO MODAL STYLING */
/* ============================================== */

#videoModal .modal-dialog {
    max-width: 900px;
}

#videoModal .modal-body {
    padding: 0;
}

#videoModal .modal-content {
    background-color: #000;
}

#videoModal .modal-header {
    border-bottom: none;
}

#videoModal .modal-title {
    color: var(--text_white);
}

#videoModal .btn-close {
    background-color: var(--text_white);
    filter: invert(1);
}

.ratio.ratio-16x9 {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
}

.ratio.ratio-16x9 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.polling-section {
    margin: 30px 0;
    padding: 30px 0;
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center;
}

.polling-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(252, 67, 141, 0.3);
    z-index: 2;
}

.polling-section .container {
    position: relative;
    z-index: 3;
}

.polling-section .section-title {
    color: var(--secondary);
}

.polling-card-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.poll-card {
    background-color: var(--bg_white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 600px;
    transition: box-shadow 0.3s ease;
}
.poll-card p.note{font-size: 11px; text-align: center; margin: 25px 0 0;font-style:italic;}
.poll-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.poll-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text_primary);
    margin-bottom: 25px;
    line-height: 1.4;
}

.poll-option {
    margin-bottom: 15px;
    position: relative;
}

.poll-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.poll-label {
    display: block;
    padding: 15px 20px;
    border: 2px solid var(--border_grey);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    color: var(--text_primary);
    font-weight: 500;
}

.poll-label:hover {
    border-color: var(--accent);
}

.poll-radio:checked + .poll-label {
    border-color: var(--primary);
    background-color: var(--accent);
    color: var(--secondary);
    font-weight: 700;
    box-shadow: 0 0 5px rgba(var(--primary), 0.2);
}

.poll-actions {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 10px;
}


.poll-vote-btn,
.poll-toggle-btn {
    flex-grow: 1;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
}

.poll-results-container {
    padding-top: 5px;
}

.result-bar-item {
    margin-bottom: 20px;
}

.result-text {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    color: var(--text_primary);
    margin-bottom: 5px;
    font-size: 1rem;
}

.result-percentage {
    font-weight: 700;
    color: var(--primary);
}

.progress {
    height: 12px;
    background-color: var(--bg_light);
    border-radius: 6px;
    overflow: hidden;
}

.progress-bar {
    transition: width 0.6s ease;
}

.total-votes {
    text-align: right;
    font-size: 0.9rem;
    color: var(--text_secondary);
    margin-top: 25px;
}

.hidden {
    display: none !important;
}

.job-corner-main-block {
    padding: 30px 0;
}
.job-corner-main-block .carousel-item img {
    height: 350px;
    border-radius: 10px;
}
.job-corner-main-block .swiper {
    padding: 0;
}

.professional-tool-block .directory-grid {
    grid-template-columns: repeat(2, 1fr);
}
.professional-tool-block .directory-name {
    font-size: 0.85rem;
}
.professional-tool-block .directory-link-card {
    padding: 18px 0;
}
.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* disable click */
}
.rule-modal .modal-dialog {
    max-width: 700px;
}
.list-group-item {
    border: none;
}
.rules-page .quiz-container .card {
    width: 100%;
}

/* ------------------------------------------------ */
    /* Welcome Popup */
/* ------------------------------------------------ */
        .welcome-points-popup .modal-content {
            border-radius: 15px;
            border: none;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            background: var(--bg_white);
            overflow: hidden;
            padding: 25px;
            transform: scale(1);
            transition: transform 0.3s ease-out;
        }
        
        .welcome-points-popup .btn-close {
            position: absolute;
            top: 15px;
            right: 15px;
            z-index: 10;
        }

        .welcome-points-popup .modal-body {
            text-align: center;
            padding: 0;
            padding-bottom: 10px;
        }

        .congrats-icon {
            font-size: 3rem;
    color: var(--primary);
    margin: 0 auto;
    margin-bottom: 0.5rem;
    display: block;
    text-align: center;
            animation: pulse 1s infinite alternate;
        }
        
        .congrats-title {
            font-weight: 700;
            color: var(--secondary);
            font-size: 2rem;
            margin-bottom: 0.5rem;
            letter-spacing: 1px;
        }

        .points-message {
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--text_primary);
            margin-bottom: 1.5rem;
        }

        .points-value {
            color: var(--primary);
            font-size: 3rem;
            font-weight: 900;
            display: block;
            line-height: 1;
        }


        @keyframes pulse {
            from { transform: scale(1); opacity: 1; }
            to { transform: scale(1.05); opacity: 0.9; }
        }

.sponsor-banner img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
.dir-cat-block {
    margin-bottom: 15px;
}
.dir-cat-img img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
}
.dir-cat-title {
    font-size: 0.75rem;
}
.sponserSwiper.swiper {
    padding: 0;
}
.voucher-card-basic.redeemed {
    filter: blur(5px);
    opacity: 0.8;
    pointer-events: none;
}

.voucher-redeemed-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.70);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.voucher-redeemed-overlay span {
    font-size: 28px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
}


@media (max-width: 768px) {
    .sponserSwiper.swiper {
    padding: 0;
}
    .quiz-container .btn-primary {
        padding: 7px 25px;
    }
    .congrats-title {
        font-size: 1.3rem;
    }
    .points-message {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    .points-value {
        font-size: 2rem;
    }
    .congrats-icon {
        font-size: 2rem;
    }
    .welcome-points-popup .modal-body {
        padding-bottom: 0;
    }
    .welcome-points-popup .modal-content {
        width: auto;
        margin: 0 auto;
    }
    .referral-main-block {
        display: none;
    }
    .job-corner-main-block {
        padding: 10px 0;
    }
    .job-corner-main-block .swiper {
        padding: 10px 0 40px;
    }
    .job-corner-main-block .carousel-item img {
    height: 160px;
    
}
    .polling-section {
        margin: 10px 0;
    }
    .poll-card {
        max-width: 100%;
    }
    .poll-card {
        padding: 20px;
    }
    .poll-question {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    .poll-label {
        padding: 7px 15px;
        font-size: 14px;
    }
    .poll-actions {
        flex-direction: column;
    }
    .talent-main-block {
        padding: 0 0 20px;
    }

    .patient-detail-card {
        margin-bottom: 20px;
    }

    .navbar-nav .dropdown-menu {
        position: absolute;
        left: 0;
    }

    .lightbox {
        top: 0 !important;
        width: 320px;
        height: 100%;
    }

    .lb-outerContainer {
        width: 100% !important;
        height: 100% !important;
        background-color: inherit;
    }

    .lightbox img {
        width: 100% !important;
        height: 100% !important;
    }

    .lb-prev svg {
        font-size: 26px !important;
        left: 4px;
    }

    .lb-next svg {
        font-size: 26px !important;
        right: 44px;
    }

    .btn {
        padding: 4px 8px;
        font-size: 14px;
    }

    .business-card.overlay-card {
        height: 170px;
    }

    .business-info-overlay .business-name {
        font-size: 1rem;
    }

    .directory-link-card {
        padding: 10px;
        box-shadow: inherit;
        display: block;
        align-content: center;
    }

    .directory-name {
        font-size: 0.75rem;
    }

    .directory-icon {
        font-size: 1rem;
    }

    .icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .swiper {
        padding: 10px 0 40px;
    }

    .order-3,
    .order-5 {
        margin-top: 0;
    }

    .business-directory-section {
        padding: 10px 0;
    }

    .main-directory-links {
        padding: 10px 0;
    }

    .quiz-mobile-row {
        display: block;
        margin: 10px 0;
    }

    .quiz-web-row {
        display: none;
    }

    .quiz-mobile-row ul {
        list-style: none;
        padding-left: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-bottom: 10px;
    }

    .quiz-mobile-row .btn-quiz {
        margin-top: 0;
        padding: 10px 8px;
        font-size: 16px;
        width: 100%;
        display: block;
        text-align: center;
    }

    .directory-grid {
        margin-top: 10px;
    }

    .referral-main-block,
    .fundraising-main-block {
        padding: 10px 0;
    }

    .directory-link-card:hover {
        transform: translateY(0);
    }

    .mentor-card:hover {
        transform: translateY(0);
    }

    .referral-main-block h3 {
        font-size: 1.2rem;
    }

    .referral-main-block p {
        font-size: 12px;
        margin-bottom: 0.5rem;
    }

    .referral-main-block .add-dtl svg {
        font-size: 35px !important;
        margin-bottom: 5px !important;
    }

    .ngo-intro-section {
        padding: 10px 0;
    }

    .dropdown:hover>.dropdown-menu {
        display: block;
        opacity: 0;
        transform: translateY(0);
        visibility: hidden;
    }

    .dropdown>.dropdown-menu.show {
        display: block;
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    .dropdown-submenu {
        position: relative;
    }

    .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
    }

    .ngo-card {
        flex-direction: column;
    }

    .ngo-image-box,
    .ngo-content {
        width: 100%;
    }

    .ngo-image-box {
        height: 180px;
    }

    .ngo-content {
        padding: 15px;
    }

    .ngo-name {
        font-size: 1.4rem;
    }

    .directory-section-main-block .category-sidebar {
        display: none;
    }

    .directory-section-main-block .form-select {
        padding: 8px 30px 8px 5px;
    }

    .prof-img {
        width: 60px;
        height: 60px;
        border: 2px solid var(--accent);
    }
    
    .prof-name {
        font-size: 0.85rem;
    }
    
    .prof-detail {
        display: none;
    }
    
    .professional-card .btn {
        display: none;
    }
    
    .filter-section {
        position: fixed;
        bottom: 0;
        width: 100%;
        background-color: var(--accent);
        padding: 10px 0;
        left: 0;
        right: 0;
        z-index: 999;
    }
    
    .web-filter-section {
        display: none !important;
    }

    .reset-btn {
        padding: 8px 10px;
        border-radius: 10px;
    }

    .mobile-category-canvas .btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .mobile-category-canvas .dir-cat-img img {
        width: 40px;
        height: 40px;
    }
    
    .mobile-category-canvas .nav-pills .nav-link {
        width: 100%;
        word-wrap: break-word;
        padding: 5px;
        margin-bottom: 5px;
        border-radius: 0;
    }
    
    .mobile-category-canvas .dir-cat-title {
        font-size: 0.70rem;
        margin-bottom: 0;
    }
    
    .mobile-category-canvas .dir-cat-block.active .dir-cat-title {
        color: #FFF;
    }
    
    
    .footer-main-block {
        position: relative;
        z-index: 99;
    }
    
    .sidebar-ad-block img {
        height: 160px;
    }

    .category-list li {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .mobile-icons .login-btn svg {
        font-size: 18px;
    }

    .mentors-main-block .btn {
        font-size: 12px;
    }

    .business-directory-section .btn {
        font-size: 12px;
    }

    .news-main-block .btn {
        font-size: 10px;
    }
    
    .featured-video-section {
        padding: 10px 0;
    }
    
    .featured-video-section .video-image-wrapper {
        height: 150px;
    }
    .birthday-title-3d {
        font-size: 1.5rem;
    }
    .birthday-body-3d {
        padding: 15px 30px 15px;
    }
    .birthday-body-3d img {
        width: 100px;
    height: 100px;
    }
    .birthday-message-3d {
        font-size: 1rem;
        line-height: 1.6;
    }
    .divider-3d {
        margin: 10px auto;
    }
    .birthday-small-3d {
        font-size: 0.85rem;
    }
    .birthday-3d-card .btn-close {
        top: -15px;
        right: -5px;
    }
    .directory-title {
        font-size: 1rem;
    }
    .filter-section {
        display: flex !important;
    }
}


.points-stat-card {
    padding: 25px;
    border-radius: 15px;
    color: #fff;
    transition: transform 0.3s ease;
    border: none;
}

.points-stat-card svg {
    font-size: 42px;
}
.points-stat-card:hover {
    transform: translateY(-5px);
}

.card-total {
    background: linear-gradient(45deg, var(--primary), #ff75a0);
}

.card-referral {
    background: linear-gradient(45deg, var(--secondary), #1a2a8a);
}

.card-quiz {
    background: linear-gradient(45deg, #6610f2, #8e4cf1);
}

.points-stat-card h6 {
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.points-stat-card i {
    font-size: 2.5rem;
}

.points-table-wrapper {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border_grey);
}

.points-table-wrapper .table thead {
    background-color: var(--bg_light);
}

.points-table-wrapper .table thead th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--text_secondary);
    border-bottom: none;
}

.icon-circle {
    color: var(--primary);
}

.text-success {
    color: #28a745 !important;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.4rem;
    }
    .points-stat-card {
        padding: 20px;
    }
    .points-stat-card h2 {
        font-size: 1.625rem;
    }
    .points-stat-card svg {
        font-size: 30px;
    }
}

.card-selector {
    border: 2px solid var(--border_grey);
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.btn-check:checked + .card-selector {
    border-color: var(--primary);
    background-color: var(--bg-soft-primary);
    color: var(--primary);
}

.gift-card-preview {
    background: linear-gradient(135deg, var(--secondary) 0%, #000 100%);
    border-radius: 20px;
    height: 280px;
    position: relative;
    overflow: hidden;
}

.gift-card-preview::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(252, 67, 141, 0.15);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.otp-input {
    width: 40px;
    height: 45px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border: 1px solid #ced4da;
    border-radius: 8px;
    margin: 0 2px;
    padding: 0;
}

.otp-container {
    max-width: 320px;
    margin: 0 auto;
}

.login-gredient {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.gredient-card {
    border-radius: 26px;
    padding: 10px;
    border: none;
    background: transparent;
}

.gredient-card .login-form-container {
    background: #ffffff;
    border-radius: 26px;
    padding: 40px 30px;
    box-shadow: 0 25px 60px rgba(226, 61, 144, 0.25);
}

/* Heading */
.login-form-container h3 {
    color: var(--secondary);
}

.login-form-container .subtitle {
    color: var(--text_secondary);
    margin-bottom: 25px;
}

.login-update-form form {
    margin-bottom: 0;
}

.login-update-form .form-label {
    margin-bottom: 4px;
}

/* Mobile App Layout Styles */

.mobile-quiz-item {
    display: flex;
    align-items: center;
    background: var(--bg_light);
    padding: 15px;
    border-radius: 16px;
    text-decoration: none !important;
    border: 1px solid var(--border_grey);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.mobile-quiz-item:active {
    transform: scale(0.98);
    background-color: #fdfdfd;
}

.item-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 15px;
}

.item-details h5 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text_primary);
}

.item-details span {
    font-size: 0.85rem;
    color: var(--text_secondary);
}

.item-action {
    margin-left: auto;
    display: flex;
    align-items: center;
    color: var(--primary);
}

.play-label {
    font-weight: 700;
    margin-right: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.play-label.lock {
    color: #ccc;
}
.rules-page .voucher-card-basic {
    border: inherit;
    padding: 0;
    text-align: left;
}
.rules-page .card-header-basic img {
    height: 220px;
        width: 100%;
        margin-bottom: 20px;
}
.rules-page .voucher-card-basic:hover {
    transform: inherit;
    background-color: inherit;
    box-shadow: inherit;
}
/* Mobile spacing */
@media (max-width: 576px) {
    .gredient-card .login-form-container {
        padding: 30px 20px;
    }
    .quiz-mobile-container .btn {
        padding: 6px 15px;
        margin-top: 0;
    }
}
