:root {
    --theme-red: #d90429;
    --theme-dark: #2b2d42;
    --theme-light-red: rgba(217, 4, 41, 0.15);
    --theme-light: #fff5f5;
}

body {
    background-color: var(--theme-light);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background-color: var(--theme-red);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.navbar-brand,
.nav-link {
    color: white !important;
    font-weight: 500;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--theme-light) !important;
    transform: scale(1.05);
}

.nav-link.active {
    color: var(--theme-light) !important;
    font-weight: 700;
    border-bottom: 2px solid white;
    transform: scale(1.05);
}

.nav-link {
    transition: all 0.3s ease;
}

/* Carousel */
.carousel-item img {
    height: 75vh;
    object-fit: cover;
    filter: brightness(70%);
}

/* Slider Text */
.carousel-caption {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    width: 90%;
    max-width: 700px;
}

.carousel-caption h2 {
    font-size: 2.8rem;
    font-weight: 700;
}

.carousel-caption p {
    font-size: 1.1rem;
    margin-top: 10px;
    opacity: 0.9;
}

/* Cards overlay */
.icon-cards-overlay {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 90%;
}

.icon-card {
    background: var(--theme-light-red);
    border: 2px solid var(--theme-red);
    border-radius: 15px;
    padding: 16px 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
    backdrop-filter: blur(6px);
    color: #ffffff;
    text-align: center;
}

.icon-card:hover {
    background-color: var(--theme-red);
    color: white;
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 25px rgba(217, 4, 41, 0.4);
}

.icon-card i {
    font-size: 30px;
    color: var(--theme-red);
    transition: 0.3s;
}

.icon-card:hover i {
    color: white;
    transform: rotate(8deg) scale(1.15);
}

.icon-card h6 {
    margin-top: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Mobile auto-scroll */
@media (max-width: 768px) {
    .carousel-item img {
        height: 60vh;
    }

    .carousel-caption h2 {
        font-size: 1.8rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }

    .icon-cards-overlay .row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: hidden;
        animation: scrollCards 15s linear infinite;
    }

    .icon-cards-overlay .col-4 {
        flex: 0 0 auto;
    }

    @keyframes scrollCards {
        0% {
            transform: translateX(0);
        }

        50% {
            transform: translateX(-50%);
        }

        100% {
            transform: translateX(0);
        }
    }
}

/* '''''''''''''''' Upload  Modal'''''''''''''''' */

/* Responsive Modal Size Fix */
@media (max-width: 768px) {
    .modal-dialog {
        max-width: 95% !important;
        margin: auto;
    }

    .modal-content {
        border-radius: 12px;
        padding: 10px;
    }

    #dropZone {
        padding: 25px 10px;
    }

    #dropZone p {
        font-size: 0.9rem;
    }

    #uploadModal .form-control,
    #uploadModal .form-select {
        font-size: 0.9rem;
    }
}

/* '''''''''''''''''''''''''''''''''''''''''''''''''' */
footer {
    background-color: var(--theme-dark);
    color: var(--theme-light);
    text-align: center;
    padding: 20px 0;
    margin-top: 0;
    font-size: 0.9rem;
}


/* '''''''''''''''''''''''''''''Singer Cardsss''''''''''''''''''''''''' */


.singer-slider-wrapper {
    overflow: hidden;
}

.singer-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.3s linear;
}

.singer-card {
    min-width: 180px;
    flex-shrink: 0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ff7a7a;
    border-radius: 15px;
    padding: 10px;
}

.singer-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(217, 4, 41, 0.4);
}

.singer-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    border: 3px solid #d90429;
    border-radius: 50%;
    overflow: hidden;
}

.singer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media(max-width:768px) {
    .singer-card {
        min-width: 140px;
    }

    .singer-img {
        width: 60px;
        height: 60px;
    }

    .singer-card h6 {
        font-size: 0.85rem;
    }

    .singer-card p {
        font-size: 0.7rem;
    }
}


/* ===================== OUR VALUES SECTION ===================== */
.our-values {
    background: var(--theme-light);
}

.our-values .value-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 10px;
    transition: all 0.4s ease;
    transform: scale(1);
    cursor: pointer;
    animation: fadeUp 1s ease both;
}

.our-values .value-card i {
    font-size: 2rem;
    color: var(--theme-red);
    margin-bottom: 8px;
    transition: 0.3s;
}

.our-values .value-card h6 {
    font-weight: 600;
    font-size: 0.9rem;
}

.our-values .value-card:hover {
    background: var(--theme-red);
    color: white;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 6px 20px rgba(217, 4, 41, 0.4);
}

.our-values .value-card:hover i {
    color: white;
    transform: rotate(8deg);
}

/* Fade-up animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===================== PAST EVENTS SECTION ===================== */
.events-scroll-new {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.event-card-new {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    min-width: 250px;
}

.event-card-new img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.event-card-new span {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.9rem;
    padding: 4px 10px;
    border-radius: 8px;
}

.event-card-new:hover img {
    filter: brightness(80%);
    transform: scale(1.03);
}

.event-card-new.active {
    border: 3px solid var(--theme-red);
    box-shadow: 0 0 15px rgba(217, 4, 41, 0.5);
}

.scroll-prev-new,
.scroll-next-new {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    opacity: 0.8;
    z-index: 10;
}

.events-scroll-new::-webkit-scrollbar {
    display: none;
}

@media (max-width: 768px) {
    .event-card-new img {
        height: 180px;
    }
}


/* ================ Our Story ===================== */

.our-story {
    background-color: var(--theme-light);
}

.our-story .story-image img {
    width: 100%;
    transition: transform 0.3s ease;
}

.our-story .story-image img:hover {
    transform: scale(1.05);
}

.our-story .story-content h4 {
    color: var(--theme-red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.our-story .story-content h2 {
    font-weight: 700;
}

.our-story .story-content p {
    color: var(--theme-dark);
    line-height: 1.6;
}

.our-story .container.d-flex {
    gap: 50px;
    /* image aur content ke beech ka gap, adjust kar sakte ho */
    align-items: center;
    /* vertically center align */
    flex-wrap: wrap;
    /* mobile me wrap kare */
}

.our-story .story-image {
    flex: 1 1 45%;
    /* 45% width for image on desktop */
    min-width: 300px;
    /* minimum size */
}

.our-story .story-content {
    flex: 1 1 45%;
    /* 45% width for content */
    min-width: 300px;
}

@media(max-width: 768px) {
    .our-story .container.d-flex {
        flex-direction: column;
        /* mobile me image upar, content niche */
        gap: 20px;
        /* mobile ke liye gap */
    }
}

/* Responsive */
@media(max-width: 992px) {
    .our-story .story-content h2 {
        font-size: 1.8rem;
    }
}

@media(max-width: 768px) {
    .our-story {
        text-align: center;
    }

    .our-story .story-image,
    .our-story .story-content {
        text-align: center;
    }
}


/* ============== Meet -- Team -=================== */

.team-slider-wrapper {
    overflow: hidden;
}

.team-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.3s linear;
}

.team-card {
    min-width: 200px;
    flex-shrink: 0;
    background: var(--theme-light-red);
    border-radius: 15px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(217, 4, 41, 0.4);
}

.team-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    border: 3px solid var(--theme-red);
    border-radius: 50%;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-line {
    font-size: 0.8rem;
    color: var(--theme-dark);
}

/* Controls */
.team-prev,
.team-next {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    opacity: 0.8;
    z-index: 10;
}

/* Responsive */
@media(max-width:768px) {
    .team-card {
        min-width: 150px;
    }

    .team-img {
        width: 60px;
        height: 60px;
    }

    .team-card h6 {
        font-size: 0.85rem;
    }

    .team-card p,
    .team-line {
        font-size: 0.7rem;
    }
}


/* ======================Annual Talent Hunt======================= */
.hunts-talents {
    background-color: rgb(206 18 49 / 97%);
    /* light red */
    position: relative;
    padding: 60px 0;
}

.hunts-talents h2 {
    font-size: 2.5rem;
}

.hunts-talents .heading-underline {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.hunts-talents .active-line {
    width: 60px;
    height: 4px;
    background-color: rgb(241, 241, 22);
    display: block;
    border-radius: 2px;
}

.hunts-talents p {
    font-size: 1rem;
}

.hunts-talents .hunt-card {
    background-color: #8b0000;
    /* dark red */
    padding: 20px 15px;
    border-radius: 15px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.hunts-talents .hunt-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 25px rgba(217, 4, 41, 0.4);
}

.hunts-talents .hunt-card .icon {
    font-size: 2rem;
    color: yellow;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.hunts-talents .hunt-card:hover .icon {
    transform: rotate(10deg) scale(1.2);
}

.hunts-talents .hunt-card h5 {
    color: #f6f6f6;
    font-weight: 600;
    margin-bottom: 5px;
}

.hunts-talents .hunt-card p {
    color: #fff;
    font-size: 0.9rem;
}

.hunts-talents .register-btn {
    margin-top: 20px;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hunts-talents .register-btn:hover {
    background-color: rgb(207, 207, 20);
    color: #8b0000;
    transform: scale(1.05);
}

/* Responsive */
@media(max-width:768px) {
    .hunts-talents .hunt-card {
        margin-bottom: 15px;
    }
}

/* ====================== Testimonials ====================== */
.testimonials {
    background-color: rgb(253 233 235);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials h2 {
    font-size: 2.5rem;
}

.testimonials .heading-underline {
    display: flex;
    justify-content: center;
}

.testimonials .active-line {
    width: 60px;
    height: 4px;
    background-color: #d01937;
    border-radius: 3px;
    display: block;
}

.testimonial-img img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 4px solid #d01937;
    transition: all 0.4s ease;
}

.testimonial-img:hover img {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 10px 25px rgba(255, 255, 0, 0.4);
}

.testimonial-content {
    animation: fadeInRight 0.8s ease;
}

.text-yellow {
    color: #d01937;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #d01937;
    border-radius: 50%;
    padding: 10px;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    transform: scale(1.1);
    background-color: #2b2d42;
}

/* Animation */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-img img {
        width: 130px;
        height: 130px;
    }

    .testimonial-content {
        text-align: center;
    }
}

/* ============================talent-gallery======================= */
.talent-gallery {
    background-color: #fde9eb;
    /* White background */
    position: relative;
}

.talent-gallery h2,
.talent-gallery p {
    color: #8b0000 !important;
    /* Deep red text */
}

.talent-gallery .active-line {
    width: 60px;
    height: 4px;
    background: #d90429;
    /* Bright red underline */
    display: block;
    margin: 0 auto;
    border-radius: 2px;
}

/* Filter Buttons */
.filter-buttons .btn-filter {
    background: transparent;
    border: 2px solid #d90429;
    color: #d90429;
    margin: 5px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-buttons .btn-filter:hover,
.filter-buttons .btn-filter.active {
    background: #d90429;
    color: #fff;
    box-shadow: 0 0 10px rgba(217, 4, 41, 0.4);
}

/* Gallery Cards */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.gallery-card img,
.gallery-card video {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.4s ease;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(217, 4, 41, 0.3);
}

.gallery-card:hover img,
.gallery-card:hover video {
    transform: scale(1.1);
}

/* Overlay */
.gallery-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(217, 4, 41, 0.55);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2rem;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .overlay {
    opacity: 1;
}

/* Modal */
.media-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.media-modal .modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    text-align: center;
}

.media-modal img,
.media-modal video {
    width: 100%;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 40px;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: #d90429;
}

/* Animation */
.gallery-card {
    opacity: 0;
    transform: translateY(40px);
}

.gallery-card.show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

/* Responsive */
@media(max-width:768px) {
    .filter-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery-card {
        margin-bottom: 15px;
    }
}

/* < !--==================JOIN US CSS==================--> */
.join-us-section {
    background-color: rgb(206 18 49 / 97%);
    /* Theme Red */
    color: white;
    position: relative;
    overflow: hidden;
}

.join-us-section h3 {
    font-size: 1.6rem;
    letter-spacing: 1px;
    animation: fadeInDown 1s ease;
}

.social-icons .icon-link {
    color: yellow;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    position: relative;
}

.social-icons .icon-link:hover {
    color: #fff;
    transform: scale(1.2) translateY(-3px);
    text-shadow: 0 0 10px yellow;
}

/* Animation for icons */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtle floating effect */
.icon-link {
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Responsive Adjustments */
@media(max-width: 768px) {
    .join-us-section h3 {
        font-size: 1.3rem;
    }

    .social-icons .icon-link {
        font-size: 1.5rem;
    }
}

/* < !--==================FOOTER CSS==================--> */
.footer-section {
    background-color: rgb(206 18 49 / 97%);
    color: white;
    font-family: 'Poppins', sans-serif;
}

.footer-logo {
    font-size: 1.8rem;
    color: yellow;
    letter-spacing: 1px;
    animation: fadeInDown 1s ease;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-links li {
    margin: 8px 0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: yellow;
    margin-left: 5px;
}

.footer-contact li {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-contact i {
    color: yellow;
}

.footer-social .social-icon {
    color: yellow;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
    color: #fff;
    transform: scale(1.2);
    text-shadow: 0 0 10px yellow;
}

/* Quick Form */
.footer-form input,
.footer-form textarea {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid yellow;
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.footer-form input:focus,
.footer-form textarea:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
    outline: none;
}

.footer-form button {
    background: yellow;
    border: none;
    color: #8b0000;
    transition: all 0.3s ease;
}

.footer-form button:hover {
    background: white;
    color: red;
    transform: scale(1.05);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-links,
    .footer-contact,
    .footer-form {
        text-align: center;
    }

    .footer-social {
        justify-content: center !important;
    }

    .footer-form button {
        width: 100%;
    }
}

/* Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================= <   About Pages Start >==================== */


/* ---------- BANNER ---------- */
.about-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('Imges/about-banner-bg.jpg') center/cover no-repeat;
    height: 45vh;
}

.about-banner h1 {
    font-size: 3rem;
    color: yellow;
}

.about-banner p a {
    color: yellow;
    text-decoration: none;
}

.about-banner p {
    color: #fff;
    font-size: 1rem;
}

/* --======== ABOUT CONTENT ======-- */
.about-content h2 {
    font-size: 2rem;
}

.about-img {
    transition: transform 0.4s ease;
}

.about-img:hover {
    transform: scale(1.05);
}

/* --==========-- MISSION & VISION -=========-- */
.mission-vision {
    background-color: rgb(206 18 49 / 97%);
}

.mission-vision .mv-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.mission-vision .mv-box:hover {
    transform: translateY(-8px);
}

/* ===========================Dashboards============================= */

.dashboard-wrapper {
    display: flex;
    margin-top: 70px;
    /* Offset for fixed navbar */
    min-height: calc(100vh - 70px);
}

/* Sidebar */
.dashboard-sidebar {
    width: 250px;
    background-color: var(--theme-red);
    color: white;
    padding: 20px 10px;
    position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
}

.dashboard-sidebar .dashboard-header h5 {
    font-weight: 700;
    margin-bottom: 20px;
}

.dashboard-menu {
    list-style: none;
    padding: 0;
}

.dashboard-menu li a {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 6px;
    margin-bottom: 5px;
    transition: 0.3s;
}

.dashboard-menu li a i {
    margin-right: 10px;
}

.dashboard-menu li a:hover,
.dashboard-menu li a.active {
    background-color: var(--theme-dark);
}

/* Main Content */
.dashboard-main-content {
    flex: 1;
    padding: 20px;
    background-color: var(--theme-light);
}

/* Responsive */
@media(max-width: 992px) {
    .dashboard-wrapper {
        flex-direction: column;
    }

    .dashboard-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        top: 0;
    }
}