/* Home Page Enhanced Styles */

/* Slider Styles - merged from style.css for consistency */
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.slider .item {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: auto;
}
.slider .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    color: #fff;
    z-index: 2;
}
.slider .text h2 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}
.slider .text p {
    font-size: 16px;
    margin-bottom: 25px;
}
.slide-carousel.owl-carousel .owl-nav .owl-prev,
.slide-carousel.owl-carousel .owl-nav .owl-next {
    position: absolute;
    text-align: center;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 45px;
    font-size: 18px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.slide-carousel.owl-carousel .owl-nav .owl-prev {
    left: 40px;
}
.slide-carousel.owl-carousel .owl-nav .owl-next {
    right: 40px;
}
.slide-carousel.owl-carousel .owl-nav .owl-prev:hover,
.slide-carousel.owl-carousel .owl-nav .owl-next:hover {
    color: var(--color2-amber);
    border: 2px solid var(--color2-amber);
}
@media (max-width: 1310px) {
    .slider .text {
        padding-left: 100px;
        padding-right: 100px;
    }
}
@media (max-width: 767px) {
    .slider .item {
        padding-top: 56.25%;
        height: 47vh;
    }
    .slider .text {
        padding: 15px;
    }
    .slider .text h2 {
        font-size: 36px;
    }
    .slider .text p {
        font-size: 14px;
    }
}
@media (max-width: 576px) {
    .slider .text h2 {
        font-size: 30px;
    }
    .slider .text p {
        font-size: 13px;
    }
}
/* Remove any duplicate or conflicting .slider, .slider .item, .slider .text, .slider .text h2, .slider .text p, .slide-carousel.owl-carousel .owl-nav styles below this comment. */

/* Special Section */
.special {
    background: #3C3C3C;
    position: relative;
    overflow: hidden;
    color:#FFFFFF;
}

.special::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(243, 156, 18, 0.05),
        rgba(0, 0, 0, 0.1),
        rgba(243, 156, 18, 0.08)
    );
    background-size: 200% 200%;
    animation: gradientAnimation 10s ease infinite;
    pointer-events: none;
}

.special .left-side {
    height: 100%;
    display: table;
    position: relative;
    z-index: 1;
}

.special .left-side .inner {
    padding: 40px 30px;
    display: table-cell;
    vertical-align: middle;
}

.special .left-side h3 {
    color: var(--color2-amber);
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.special .left-side p {
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.special .left-side .read-more a {
    background: linear-gradient(45deg, #F39C12, #E67E22);
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

.special .left-side .read-more a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
}

.special .left-side .read-more a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    color: #fff;
    background: linear-gradient(45deg, #E67E22, #F39C12);
}

.special .left-side .read-more a:hover::before {
    left: 100%;
}

.special .right-side {
    width: 100%;
    min-height: 400px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.special .right-side:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.special .right-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.2)
    );
    z-index: 1;
}

.special .right-side .video-button {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    padding: 24px 18px 18px 28px;
}

.special .right-side .video-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 66px;
    height: 66px;
    background: var(--color2-amber);
    border-radius: 50%;
    animation: video-pop 1500ms ease-out infinite;
}

.special .right-side .video-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 66px;
    height: 66px;
    background: var(--color2-amber);
    border-radius: 50%;
    transition: all 200ms;
}

.special .right-side .video-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 28px solid #fff;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

@keyframes video-pop {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

/* Welcome Section */
.welcome-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.welcome-section .left-side {
    position: relative;
    z-index: 2;
}

.welcome-section .left-side .inner {
    padding: 30px 20px;
}

.welcome-section .left-side h3 {
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.welcome-section .left-side p {
    font-size: clamp(14px, 1.5vw, 15px);
    line-height: 1.6;
    margin-bottom: 15px;
}

.welcome-section .right-side {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

/* event slider */
/* Event Carousel Styles */
.event-slider {
    position: relative;
    overflow: hidden;
    /* background: linear-gradient(135deg, #F39C12, #FDB813, #FFD700); */
}

.event-carousel .item {
    position: relative;
    /* background-size: cover; */
    /* background-position: center; */
    /* min-height: 280px; */
    display: flex;
    align-items: center;
    justify-content: center;

}

.event-carousel .bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.event-carousel .text {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
}

.event-carousel .text-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px;
}

.event-carousel .event-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.event-carousel .button-style-1
{
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.event-carousel .register-btn {
    background: linear-gradient(45deg, #F39C12, #E67E22);
    border: none;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

.event-carousel .register-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
}

.event-carousel .register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    color: #fff;
    background: linear-gradient(45deg, #E67E22, #F39C12);
}

.event-carousel .register-btn:hover::before {
    left: 100%;
}

.event-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 3;
}

.event-carousel .owl-prev,
.event-carousel .owl-next {
    position: absolute;
    width: 35px;
    height: 35px;
    background: rgba(249, 199, 2, 0.8) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000 !important;
    font-size: 18px !important;
    transition: all 0.3s ease;
}

.event-carousel .owl-prev:hover,
.event-carousel .owl-next:hover {
    background: rgba(226, 173, 41, 0.9) !important;
}

.event-carousel .owl-prev {
    left: 10px;
}

.event-carousel .owl-next {
    right: 10px;
}

@media (max-width: 768px) {
    .event-carousel .item {
        min-height: 180px;
    }
    .event-carousel .event-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    .event-carousel .text-content {
        padding: 0 10px;
    }
    .event-carousel .register-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    .event-carousel .owl-prev,
    .event-carousel .owl-next {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 576px) {
    .event-carousel .item {
        min-height: 150px;
    }
    .event-carousel .event-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    .event-carousel .text-content {
        padding: 0 8px;
    }
    .event-carousel .button-style-1{
        margin-top: 10px;
    }
    .event-carousel .register-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    .event-carousel .owl-prev,
    .event-carousel .owl-next {
        width: 25px;
        height: 25px;
        font-size: 14px !important;
    }
    .event-carousel .owl-prev {
        left: 5px;
    }
    .event-carousel .owl-next {
        right: 5px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .event-carousel .item {
        min-height: 130px;
    }
    .event-carousel .event-title {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    .event-carousel .text-content {
        padding: 0 5px;
    }
    .event-carousel .button-style-1 {
        margin-top: 8px;
    }
    .event-carousel .register-btn {
        padding: 5px 12px;
        font-size: 0.75rem;
    }
}

/* Event Section */
.event-section {
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), var(--bg-image);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
}

.event-section::before {
    display: none;
}

.event-section .curved-lines {
    display: none;
}

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

.event-section .title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.event-section .crown-icon {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: auto;
    opacity: 0.8;
}

.event-section .section-title
 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    padding: 0 20px;
}
.founder-section .section-title{
    color: #000;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    padding: 0 20px;
    font-family: "Special Gothic Condensed One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.event-section .section-title span ,
.founder-section .section-title span {
    color: var(--color2-amber);
}

.event-card {
    background: rgba(0, 0, 0);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 8px;
    transform: scale(1);
    transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    will-change: transform;
}

.event-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.event-card .photo {
    position: relative;
    width: 100%;
    padding-top: 100%;
    display: block;
    margin: 0;
    line-height: 0;
}

.event-card .photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.event-card .text {
    padding: 8px;
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-card .text h2 {
    margin: 0;
    width: 100%;
}

.event-card .text h2 a {
    color: #fff;
    font-size: clamp(13px, 1.8vw, 16px);
    text-decoration: none;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.event-card:hover .text h2 a {
    color: var(--color2-amber);
}

.event-date {
    display: none;
}

.btn-amber {
    background: linear-gradient(45deg, #F39C12, #E67E22);
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

.btn-amber::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
}

.btn-amber:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    color: #fff;
    background: linear-gradient(45deg, #E67E22, #F39C12);
}

.btn-amber:hover::before {
    left: 100%;
}

/* Add these keyframe animations before the Winners Section */
@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(243, 156, 18, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(243, 156, 18, 0.4);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Winners Section */
.winner-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), var(--bg-image);
    background-size: cover;
    background-position: center;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.winner-section::before {
    display: none;
}

.winner-section .section-title {
    animation: slideInFromBottom 1s ease-out forwards;
}

.winner-section .section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--color2-amber);
    text-transform: uppercase;
    margin: 0;
    padding: 0 20px;
}

.winner-section .section-title span {
    color: var(--color2-amber);
}

.winner-slider {
    position: relative;
    padding: 0 60px;
}

.winner-slider .slider-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(
        45deg,
        var(--color2-amber),
        #f39c12,
        #ff9f00
    );
    background-size: 200% 200%;
    animation:
        gradientAnimation 3s ease infinite,
        glowPulse 2s ease-in-out infinite;
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(243, 156, 18, 0.3);
}

.winner-slider .slider-nav .nav-prev {
    left: 0;
    margin-left: 15px;
}

.winner-slider .slider-nav .nav-next {
    right: 0;
    margin-right: 15px;
}

.winner-slider .slider-nav button:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.5);
    animation:
        gradientAnimation 2s ease infinite,
        glowPulse 1s ease-in-out infinite;
}

.winner-slider .slider-nav button span {
    color: #000;
    font-size: 24px;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.winner-slider .slider-nav button:hover span {
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.winner-carousel {
    position: relative;
}

.winner-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--color2-amber) !important;
    border-radius: 50%;
    color: #000 !important;
    font-size: 18px !important;
    transition: all 0.3s ease;
}

.winner-carousel .owl-nav button.owl-prev {
    left: 0;
}

.winner-carousel .owl-nav button.owl-next {
    right: 0;
}

.winner-carousel .owl-nav button:hover {
    background: #fff !important;
    color: var(--color2-amber) !important;
}

.winner-card {
    background: transparent;
    text-align: center;
    padding: 15px;
    max-width: 580px;
    margin: 0 auto;
    position: relative;
    /* animation: slideInFromBottom 0.8s ease-out forwards;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); */
}

.winner-card:hover {
    animation: floatAnimation 3s ease-in-out infinite;
}

.winner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(243, 156, 18, 0.1),
        rgba(255, 255, 255, 0.05),
        rgba(243, 156, 18, 0.15)
    );
    background-size: 200% 200%;
    animation:
        gradientAnimation 10s ease infinite,
        glowPulse 3s ease-in-out infinite;
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.winner-card:hover::before {
    opacity: 1;
}

.winner-card .photo {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
    aspect-ratio: 1 / 1;
    background: #000;
    transition: all 0.4s ease;
    animation: glowPulse 3s ease-in-out infinite;
}

.winner-card .photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.winner-card:hover .photo img {
    transform: scale(1.05) rotate(1deg);
}

.winner-card .photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(243, 156, 18, 0.2),
        transparent
    );
    background-size: 200% 200%;
    animation:
        gradientAnimation 8s ease infinite,
        shimmer 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.winner-card .text {
    padding: 10px 0;
    position: relative;
    z-index: 1;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

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

.winner-card .text h2 {
    color: var(--color2-amber);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.winner-card .text h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        var(--color2-amber),
        transparent
    );
    background-size: 200% 100%;
    animation:
        gradientAnimation 5s ease infinite,
        shimmer 3s linear infinite;
}

.winner-card .text .winner-title {
    color: #fff;
    font-size: 18px;
    margin: 0;
    font-style: italic;
    text-shadow: 0 0 10px rgba(243, 156, 18, 0.3);
    transition: all 0.3s ease;
}

.winner-card:hover .text .winner-title {
    text-shadow: 0 0 15px rgba(243, 156, 18, 0.5);
    letter-spacing: 0.5px;
}

/* Gallery Section */
.gallery-section {
    background: #f8f9fa;
    padding: 80px 0;
}

/* Bento grid styles are now consolidated in style.css */

/* Event Slider Styles */
.event-slider {
    margin: 0;
    position: relative;
    overflow: hidden;
    /* padding-bottom: 30px; */
    /* background: linear-gradient(45deg, rgba(243, 156, 18, 0.9), rgba(253, 184, 19, 0.9)); */
}

.event-slider .item {
    height: auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    /* padding:1%;s */
    overflow: hidden;
    /* background: linear-gradient(45deg, rgba(243, 156, 18, 0.9), rgba(253, 184, 19, 0.9)); */
}

/* Golden Stem Background */
.event-slider .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, rgba(253, 184, 19, 0.1) 0%, rgba(255, 215, 0, 0.3) 50%, rgba(253, 184, 19, 0.1) 100%) bottom,
        radial-gradient(circle at 50% 100%, rgba(255, 215, 0, 0.4) 0%, rgba(243, 156, 18, 0.1) 60%);
    background-size: 200% 2px, 100% 100%;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: 1;
}

.event-slider .stars {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.event-slider .star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--color2-amber);
    border-radius: 50%;
    box-shadow: 0 0 4px var(--color2-amber);
}

.event-slider .star:nth-child(3n+1) { animation: starFallRight var(--duration, 2s) linear infinite var(--delay, 0s); }
.event-slider .star:nth-child(3n+2) { animation: starFallLeft var(--duration, 2s) linear infinite var(--delay, 0s); }
.event-slider .star:nth-child(3n) { animation: starFallCenter var(--duration, 2s) linear infinite var(--delay, 0s); }

.event-slider .star:nth-child(1) { left: 5%; --duration: 2s; --delay: 0s; }
.event-slider .star:nth-child(2) { left: 15%; --duration: 2.5s; --delay: 0.5s; }
.event-slider .star:nth-child(3) { left: 25%; --duration: 3s; --delay: 1s; }
.event-slider .star:nth-child(4) { left: 35%; --duration: 2.8s; --delay: 1.5s; }
.event-slider .star:nth-child(5) { left: 45%; --duration: 2.2s; --delay: 0.3s; }
.event-slider .star:nth-child(6) { left: 55%; --duration: 2.7s; --delay: 0.7s; }
.event-slider .star:nth-child(7) { left: 65%; --duration: 2.4s; --delay: 1.2s; }
.event-slider .star:nth-child(8) { left: 75%; --duration: 2.6s; --delay: 0.2s; }
.event-slider .star:nth-child(9) { left: 85%; --duration: 2.3s; --delay: 0.8s; }
.event-slider .star:nth-child(10) { left: 95%; --duration: 2.9s; --delay: 1.3s; }

.event-slider .glitter {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(243, 156, 18, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(243, 156, 18, 0.6);
}

.event-slider .glitter:nth-child(2n) { animation: glitterPulse var(--duration, 3s) ease-in-out infinite var(--delay, 0s); }
.event-slider .glitter:nth-child(2n+1) { animation: glitterFloat var(--duration, 3s) ease-in-out infinite var(--delay, 0s); }

.event-slider .glitter:nth-child(11) { top: 15%; left: 10%; --duration: 3s; --delay: 0.2s; }
.event-slider .glitter:nth-child(12) { top: 25%; left: 20%; --duration: 4s; --delay: 0.5s; }
.event-slider .glitter:nth-child(13) { top: 35%; left: 30%; --duration: 3.5s; --delay: 0.8s; }
.event-slider .glitter:nth-child(14) { top: 45%; left: 40%; --duration: 3.8s; --delay: 1.1s; }
.event-slider .glitter:nth-child(15) { top: 55%; left: 50%; --duration: 3.2s; --delay: 1.4s; }
.event-slider .glitter:nth-child(16) { top: 65%; left: 60%; --duration: 4.2s; --delay: 0.3s; }
.event-slider .glitter:nth-child(17) { top: 75%; left: 70%; --duration: 3.7s; --delay: 0.6s; }
.event-slider .glitter:nth-child(18) { top: 85%; left: 80%; --duration: 3.4s; --delay: 0.9s; }
.event-slider .glitter:nth-child(19) { top: 25%; left: 90%; --duration: 3.9s; --delay: 1.2s; }
.event-slider .glitter:nth-child(20) { top: 35%; left: 95%; --duration: 3.6s; --delay: 1.5s; }

.event-slider .register-status {
    color: #000;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.event-slider .register-status:hover {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .welcome-section,
    .event-section,
    .winner-section,
    .gallery-section,
    .team-section {
        padding: 50px 0;
    }
    .slider {
        padding-top: 0;
    }
    .mean-bar.is-sticky ~ .slider {
        padding-top: 55px;
    }
}

@media (max-width: 768px) {
    .welcome-section,
    .event-section,
    .winner-section,
    .gallery-section,
    .team-section {
        padding: 40px 0;
    }

    .section-title,
    .winner-section .section-title,
    .event-section .section-title {
        margin-bottom: 10px;
    }

    .event-section .title-wrapper {
        margin-bottom: 10px;
    }

    .team-section .section-heading {
        margin-bottom: 30px;
    }

    .winner-slider .slider-nav {
        display: none;
    }

    /* Winner cards bigger on mobile */
    .winner-card {
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .welcome-section,
    .event-section,
    .winner-section,
    .gallery-section,
    .team-section {
        padding: 30px 0;
    }

    .section-title,
    .winner-section .section-title,
    .event-section .section-title {
        margin-bottom: 20px;
    }

    .event-section .title-wrapper {
        margin-bottom: 0px;
    }

    .team-section .section-heading {
        margin-bottom: 30px;
    }
}

/* Responsive Text Sizes */
@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 28px !important;
    }

    .section-heading p {
        font-size: 15px !important;
        margin-top: 5px !important;
    }

    .heading h2 {
        font-size: 26px !important;
    }

    .heading p {
        font-size: 15px !important;
        margin-top: 5px !important;
    }

    /* Card Content Spacing */
    .card-body {
        padding: 15px !important;
    }

    /* .card .heading,
    .section .heading {
        margin-bottom: 10px !important;
    } */

    .pb-3 {
        padding-bottom: 0.75rem !important;
    }

    .pb-md-4 {
        padding-bottom: 1rem !important;
    }

    .event-card .text {
        padding: 12px !important;
    }

    .event-card .text h2 {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }

    .team-card .team-text {
        padding: 12px !important;
    }

    .team-card .team-text h4 {
        font-size: 16px !important;
        margin-bottom: 4px !important;
    }

    .team-card .team-text p {
        font-size: 13px !important;
    }

    .team-social {
        margin-top: 8px !important;
        padding-top: 8px !important;
    }

    /* Section Spacing */
    .section {
        padding: 40px 0 !important;
    }

    .section .container {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }
}

@media (max-width: 576px) {
    .section-heading h2 {
        font-size: 24px !important;
    }

    .heading h2 {
        font-size: 22px !important;
    }

    .event-card .text h2 {
        font-size: 16px !important;
    }

    .team-card .team-text h4 {
        font-size: 15px !important;
    }

    /* Further reduce spacing */
    .card-body {
        padding: 12px !important;
    }

    .pb-3 {
        padding-bottom: 0.5rem !important;
    }

    .section {
        padding: 30px 0 !important;
    }

    /* Winner cards even bigger on small mobile */
    .winner-card {
        max-width: 400px;
    }
}

.team-section .section-heading,
.previous-events-section .section-heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.team-section .section-heading h2,
.team-section .section-heading p,
.previous-events-section .section-heading h2,
.previous-events-section .section-heading p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.team-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    aspect-ratio: 3/4;
    background: #23272f;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}
.team-card .team-photo {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    background: #181a20;
}
.team-card .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 12px;
}
.team-card .team-text {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 2;
    background: rgba(30,30,30,0.7);
    color: #fff;
    padding: 18px 14px 14px 14px;
    text-align: center;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}
.team-card .team-text h4,
.team-card .team-text h4 a {
    color: #fff !important;
    margin-bottom: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.team-card .team-text p {
    color: #e2ad29 !important;
    margin-bottom: 0;
    font-size: 0.98rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.team-social .social-icon {
    background-color: #181a20 !important;
    color: var(--color2-amber, #e2ad29) !important;
    border: 1px solid #e2ad29 !important;
}
.team-social .social-icon:hover {
    background-color: #e2ad29 !important;
    color: #23272f !important;
}
@media (max-width: 767px) {
    .team-card {
        aspect-ratio: 3/4;
    }
    .team-card .team-text {
        padding: 12px 8px 10px 8px;
        font-size: 0.95rem;
    }
}

/* Restore previous-event-card to original style */
.previous-event-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    aspect-ratio: 3/4;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.previous-event-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}
.previous-event-card .event-photo {
    flex: 0 0 82%;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 82%;
    overflow: hidden;
    background: #f5f5f5;
}
.previous-event-card .event-photo img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.previous-event-card .event-text {
    flex: 1 1 18%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 12px 12px 12px;
    min-height: 0;
    text-align: center;
    background: #fff;
}
.previous-event-card .event-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #222;
    line-height: 1.2;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.previous-event-card .event-text p {
    font-size: 0.92rem;
    color: #666;
    margin: 0;
    line-height: 1.2;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
@media (max-width: 767px) {
    .team-card {
        aspect-ratio: 3/4;
    }
    .team-card .team-text {
        padding: 12px 8px 10px 8px;
        font-size: 0.95rem;
    }
    .previous-event-card {
        aspect-ratio: 3/4;
    }
    .previous-event-card .event-photo {
        padding-bottom: 80%;
    }
    .previous-event-card .event-text {
        padding: 8px 8px 10px 8px;
    }
}

.team-section {
    background: rgb(60, 60, 60) !important;
    color: #f1f1f1 !important;
}
/* .team-card {
    background: #23272f !important;
    color: #f1f1f1 !important;
}
.team-card .team-text {
    background: #23272f !important;
    color: #f1f1f1 !important;
}
.team-card .team-text h4,
.team-card .team-text h4 a {
    color: #fff !important;
}
.team-card .team-text p {
    color: #e2ad29 !important;
}
.team-social .social-icon {
    background-color: #181a20 !important;
    color: var(--color2-amber, #e2ad29) !important;
    border: 1px solid #e2ad29 !important;
}
.team-social .social-icon:hover {
    background-color: #e2ad29 !important;
    color: #23272f !important;
}
.team-section .section-heading h2 {
    color: #fff !important;
}
.team-section .section-heading p {
    color: #e0e0e0 !important;
} */