/* Import common styles if needed */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');
:root {
    --primary-color: #ff00ff;
    --secondary-color: #e0b0ff;
    --dark-bg: #000;
    --text-white: #ffffff;
    --yellow: #ffff00;
    --h1-font-size: clamp(2.5rem, 5vw, 4rem);
    --h2-font-size: clamp(2rem, 4vw, 3.5rem);
    --h3-font-size: clamp(1.5rem, 3vw, 2.5rem);
    --body-font-size: clamp(1rem, 1.5vw, 1.25rem);
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    box-sizing: border-box;
}



.nav-links a:not(.register-cta):hover, .nav-links a.active {
    color:  #FC41DB;
    transition: all 0.6s ease;
}

.nav-links .register-cta {
    display: block;
    overflow: hidden;
}

.nav-links li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.apply-awards::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 120%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 0, 0.1) 45%,
        rgba(255, 255, 0, 0.3) 50%,
        rgba(255, 255, 0, 0.1) 55%,
        transparent 100%
    );
    transform: translateX(-100%) rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    30%, 100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.register-cta {
    background: #ffff00;
    color: #000 !important;
    padding: 12px 15px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    /* border: 2px solid transparent; */
}
.register-cta.apply-awards {
    background: transparent;
    border: 1px solid #ffff00;
    color: #ffff00 !important;
    margin-left: 0 !important;
}

.register-cta:hover {
    transform: translateY(-2px);
}
@media screen and (max-width: 768px) {
    footer .footer-legal .legal-links a {
        margin: 0 !important;
    }
    .nav-links li {
        align-items: flex-start;
        flex-direction: column;
    }
    .nav-links li .register-cta {
        width: 100%;
        text-align: center;
    }
    .nav-links li a {
        margin-left: 0 !important;
    }
    .anchor-para {
        font-size: 14px !important;
    }
}

/* Awards-specific styles */
#hero {
    /* min-height: 100vh; */
    padding-top: 100px;
    background: #000 url('../../assets/AwardsBG.png') no-repeat right center;
    background-size: auto 80%;
    display: flex;
    align-items: center;
    /* padding: 0 8%; */
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content h1 .highlight {
    color: #FF00FF;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-content .event-details{
    width: 75%;
    gap: 3rem;
}

.apply-btn {
    background: #FFFF00;
    color: #000;
    border: none;
    padding: 10px 32px !important;
    padding-right: 40px !important;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 48px;
    font-family: 'Outfit', sans-serif;
}

.apply-btn img{
    margin-left: 5px;
}

.hall-of-fame-cta .apply-btn::after{
    content: url("../../assets/arrow-right.svg"); 
    position: absolute;
    margin-left: 10px;
    /* right: 0; */
    /* top: 0; */
}

.event-details {
    display: flex;
    width: 100%;
    padding: 24px 48px;
    box-shadow:  0 0 10px #A058FF;
    background: linear-gradient(#000, #000) padding-box, linear-gradient(120deg, #FC41DB, #A058FF) border-box;
    border: 1px solid transparent;
    row-gap: 3rem;
    padding: 1rem 3rem;
    border-radius: 10px;
    /* max-width: fit-content; */
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: start;
    border-right: 1px solid #5e1953;
    padding: 10px 8% 10px 0;
   
}

.detail-item:last-child {
    border-right: none;
    padding-right: 0;
}


.detail-item .label {
    color: #FC41DB;
    font-size: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;

}

.detail-item .value {
    color: #fff;
    /* font-size: 24px; */
    font-weight: 500;
    text-align: center;
}

#filmfare .event-details, #when .event-details{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 50%;
    padding:2.5rem 3rem 2rem 3rem;
    margin: auto;
    margin-top: 2.5rem;
    row-gap: 2.5rem;
}


#filmfare .event-details .detail-item, #when .event-details .detail-item{
    align-items: center;
}

#filmfare .event-details .detail-item:nth-child(2), #when .event-details .detail-item:nth-child(2){
    border-right: none;
}



#filmfare .event-details .filmfare-cta, #when .event-details .filmfare-cta{
    grid-column: span 2;
    margin: auto;
}

.filmfare-cta .apply-btn{
    margin-bottom: 0;
}

h1 {
    font-size: 48px;
    line-height: 58px;
}

h2 {
    font-size: 38px;
    line-height: 53.2px;
}

h3 {
    font-size: 32px;
    line-height: 44.8px;
}

h4 {
    font-size: 24px;
    line-height: 33.6px;
}

h5 {
    font-size: 22px;
    line-height: 30.8px;
}

h6 {
    font-size: 20px;
    line-height: 28px;
}

.anchor-para {
    font-size: 16px;
    line-height: 22.4px;
}

.para-small {
    font-size: 14px;
    line-height: 19.6px;
}

.small-text {
    font-size: 12px;
    line-height: 16.8px;
}

@media (max-width: 768px) {
    #hero {
        padding-top: 0;
        /* min-height: 100vh; */
        padding: 80px 24px;
        /* background-image: none; */
        background: #000;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 42px;
        text-align: center;
        margin-bottom: 24px;
    }

    .hero-content p {
        font-size: 16px;
        text-align: center;
        max-width: 500px;
        margin: 0 auto;
    }
    .hero-content .event-details{
        width: -webkit-fill-available;
        gap: 1rem;
    }

    .hero-content .event-details .detail-item:nth-child(2){
        padding-right: 10px;
    }

    .apply-btn {
        margin: 24px auto;
        padding: 16px 32px;
    }

    .event-details, #filmfare .event-details {
        width: -webkit-fill-available;
        max-width: 100%;
        margin: 0 auto;
        padding:24px;
        border-radius: 16px;
        justify-content: space-between;
        row-gap: 12px;
    }

    .detail-item, #filmfare .event-details {
        text-align: center;
        padding: 8% 15% 8% 0;
    }

    #filmfare .event-details{
        padding: 25px 14px;
        
    }

    .detail-item .label, #filmfare .event-details .detail-item .label {
        font-size: 12px;
    }

    .detail-item .value, #filmfare .event-details .detail-item .value {
        font-size: 16px;
        order: 1;
        font-weight: 600;
    }

    .filmfare-image img{
        width: -webkit-fill-available;
    }


   
}

/* Extra small devices */
@media (max-width: 375px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .event-details {
        padding: 16px;
        gap: 16px;
    }
}

/* Award Categories Section */
.award-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.award-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 2px solid #FFD700;
    transition: transform 0.2s ease;
}

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

.award-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.award-card h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

/* Application Process Section */
#application-process {
    background: #120720;
    padding: 80px 24px;
    position: relative;
}

#application-process h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 80px;
}

#application-process h2 .highlight {
    color: #FF00FF;
}

#application-process .grid-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* grid-template-rows: auto auto; */
    gap: 2rem;
}

.grid-container .grid-item{
    background: #1d0d30;
    box-shadow: 0 0 4px 1px  #603199;
    border-radius: 16px;
    border: 1px solid #603199;
    padding: 2rem 1rem 0 2rem;
    /* padding: 1rem; */
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #fff;
    border: none
    /* border: 1px solid #5e1953; */
}



/* .timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 550px;
    background: #FF00FF;
} */

/* .timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 80px;
    position: relative;
    width: 100%;
} */

/* .timeline-item.right {
    justify-content: flex-end;
}

.timeline-item.left {
    justify-content: flex-start;
} */

.timeline-dot {
    width: 20px;
    height: 20px;
    background: #120721;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid #FFFFFF;
}

.timeline-content {
    background: #111111;
    padding: 8px;
    border-radius: 6px;
    max-width: 320px;
    margin: 0 30px;
    box-shadow: 0 0 4px 1px #A058FF;
}

.grid-item .step {
    width: fit-content;
    color: #FFFFFF;
    display: inline-block;
    background-color: #3d1e61;
    font-size: 20px;
    padding: 8px 12px;
    box-shadow: 0 0 5px #A058FF;    
    border-radius: 4px;
    margin-bottom: 12px;
    border: 1px solid #A058FF;
}

/* .grid-item p {
    color: #D4D4D4;
    font-size: 18px;
    line-height: 1.5;
} */

.grid-container .grid-item.perks-box {
    display: flex;
    gap: 2rem;
    grid-column: 1 / -1;
    flex-direction: row;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1rem 2.5rem 2rem 2.5rem;

    background: #1d0d30;
    justify-content: space-between;
}


.perks-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.perks-box li {
    color: #fff;
    font-size: 16px;
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
}

.perks-box li:before {
    content: "•";
    color: #FFFFFF;
    position: absolute;
    left: 0;
}

.perks-box .apply-btn {
    top: 40px;
    right: 40px;
    background: #FFFF00;
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .grid-item .step {
        font-size: 16px;
    }
    #application-process h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }
    /* .timeline {
        padding: 0px;
    }
    .timeline-line {
        left: 24px;
        height: 500px;
    }

    .timeline-item {
        margin-bottom: 40px;
    }

    .timeline-item.right,
    .timeline-item.left {
        justify-content: flex-start;
        padding-left: 48px;
    }

    .timeline-dot {
        left: 24px;
    } */

    .apply-btn{
        width: 250px;
        /* margin: 0 auto; */
    }

    .timeline-content {
        margin: 0;
        width: 250px;
    }

    .perks-box {
        padding: 24px;
        padding-bottom: 0px;
    }
    .grid-item.perks-box{
       display: block !important;
    }

    .perks-box .apply-btn {
        position: static;
        width: 100%;
        margin-top: 20px;
        transform: translateY(0%);
    }
    #application-process .grid-container{
        gap: 1rem;
    }
}

/* Key Dates Section */
.key-dates {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
}

.date-timeline {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0;
    position: relative;
}

.date-item {
    text-align: center;
    flex: 1;
    position: relative;
}

.date-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #FFD700;
}

.date-item:last-child::after {
    display: none;
}

.date-item h3 {
    color: #FFD700;
    margin-bottom: 0.5rem;
}

/* Animation classes */
[class*="animate-"] {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.animate-fade-up {
    transform: translateY(30px);
}

.animate-fade-down {
    transform: translateY(-30px);
}

.animate-fade-right {
    transform: translateX(-30px);
}

.animate-fade-left {
    transform: translateX(30px);
}

.animate-fade-up.visible,
.animate-fade-down.visible,
.animate-fade-right.visible,
.animate-fade-left.visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* .hero-content h1 {
        font-size: 2rem;
    } */

    .award-categories {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .process-steps::after {
        display: none;
    }

    .date-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .date-item::after {
        display: none;
    }
}



.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
}

.title-box {
    background: linear-gradient(135deg, #FF00FF, #9000FF);
    padding: 3rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
}

h1 {
    color: white;
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: bold;
}

p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 600px;
    margin-bottom: 2rem;
    text-align: center;
}

.apply-btn {
    background: #FFFF00;
    color: black;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 3rem;
}



.detail-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

body {
    margin: 0;
    background: #000;
    font-family: 'Outfit', sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: absolute;
    width: 100%;
    box-sizing: border-box;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 32px;
}

#hero {
    /* min-height: 100vh; */
    /* width: 100%; */
    padding: 180px 80px;
    background-image: url('../../assets/AwardsBG.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.content-wrapper {
    text-align: left;
    max-width: 600px;
}

.gradient-box {
    background: linear-gradient(135deg, #FF00FF 0%, #9000FF 100%);
    border-radius: 32px;
    padding: 40px;
    margin-bottom: 32px;
    text-align: left;
}

h1 {
    color: white;
    font-size: 48px;
    line-height: 1.2;
    margin: 0;
    text-align: left;
}

p {
    color: white;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 32px;
    text-align: left;
}

button {
    background: #FFFF00;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 48px;
}

.event-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 48px;
    display: flex;
    justify-content: flex-start;
    gap: 48px;
}

.event-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.value {
    color: white;
    font-size: 16px;
}

@media (max-width: 768px) {

    .timeline-label h4 {
        font-size: 14px;
    }
    #hero {
        /* background-image: none; */
        padding: 100px 20px;
    }
    
    .gradient-box {
        margin-bottom: 24px;
        padding: 32px 24px;
    }
    
    h1 {
        font-size: 36px;
    }
    
    .event-box {
        padding: 20px;
        gap: 24px;
    }
}

/* Filmfare section */
#filmfare, #when {
    /* background: linear-gradient(0deg, rgba(252,65,219,.2) 0%, rgba(160,88,255,.2) 100%); */
    padding: 4rem 8%;
    border-radius: 32px;
    margin: 100px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.filmfare-content {
    display: flex;
    /* max-width: 800px; */
    /* position: relative; */
}

.filmfare-text{
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.filmfare-text ul{
    margin-left: 3%;
}

.filmfare-content h2 {
    margin-top: 0;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 0px;
}

.filmfare-content h2 .highlight {
    color: #FF00FF;
}

.filmfare-content ul {
    /* list-style: none; */
    padding: 0;
    margin: 0;
    max-width: 70%;
}

.filmfare-content .cta-btn{
    /* position: absolute; */
    /* top: 50%; */
    /* transform: translateY(-50%); */
    /* right: 0; */
}


.filmfare-cta{
    align-self: center;
}

.filmfare-content li {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    opacity: 0.9;
}

.primary-btn {
    background: #FFFF00;
    color: #000;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 32px;
}

/* Why Winning Matters section */
#winning {
    padding: 4rem 8%;
    text-align: center;
    background: #120720;
}

#winning .subtitle {
    width: 100%;
    text-align: center;
    max-width: 100%;
}

#winning h2, #awards-categories h2 {
    /* font-size: 40px; */
    color: #fff;
    margin-bottom: 16px;
    text-align: center;
}

#awards-categories h2{
    margin-bottom: 24px;
}

#winning h2{
    margin-bottom: 3.5rem;
}

#awards-categories .highlight {
    color: #FF00FF;
}

#awards-categories{
    padding-top: 2rem;
}

#winning h2 .highlight {
    color: #FC41DB;
}

.subtitle {
    color: #fff;
    font-size: 18px;
    margin-bottom: 48px;
    opacity: 0.8;
}

.winning-grid, .grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.winning-grid .grid-item p{
    margin-top: 0;
    color: #D4D4D4;
}

.winning-grid .grid-item{
    padding-left: 20px;
    padding-top: 20px;
}

.grid-item {
    border-radius: 16px;
    padding: 15px;
    padding-bottom: 0;
    text-align: left;
    position: relative;
    background: #120720;
    border: none;
}

.grid-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(90deg, #FC41DB 10%, #A058FF 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}


#application-process .grid-item p{
    margin-top: 8px;
}

#application-process .grid-item::before{
    border: 1px solid #603199;
    background: #603199;
}


.number {
    color: #fff;
    width: 32px;
    height: 32px;
    /* border-radius: 50%; */
    /* display: flex;
    align-items: center;
    justify-content: center; */
    font-weight: 600;
    margin-bottom: 24px;
}

.number img{
    width: 80px;
    height: 80px;
    border-radius: 6px;
    /* box-shadow: 0 0 6px #A058FF; */
}

.grid-item h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 12px;
    margin-top: 12px;
}

.grid-item p {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.5;
}

.spotlight {
    background-image: url("../images/spotlight.png");
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-row: span 2;
    gap: 1rem;
}

.spotlight h3 {
    margin-bottom: 24px;
    text-align: center;
}


.perks-box h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 24px;
}

.spotlight .apply-btn {
    background: #FFFF00;
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}

.cta-btn {
    
    background: #FFFF00;
    color: #000;
    text-decoration: none;
    padding:0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
}

#when .event-details{
    margin-top: 2rem;
}


#when{
    margin-bottom: 0;
    margin-top: 0;
    padding-bottom: 0;
}

@media (max-width: 768px) {
    #application-process{
        padding: 30px 24px;
    }

    #application-process .grid-container{
        grid-template-columns: 1fr;
    }

    #application-process .grid-item{
        gap: 0;
    }
    /* .cta-btn {
        position: static;
        display: inline-block;
        margin-top: 24px;
        transform: translateX(-30%) !important;
    } */
    .winning-grid {
        grid-template-columns: 1fr;
    }

    .spotlight {
        grid-row: auto;
        padding: 48px 24px;
        order: 1; /* Makes this element appear last in grid */
    }

    #winning h2 {
        font-size: 24px;
    }

    .number img{
        width: 45px;
        height: 45px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    #filmfare, #when {
        padding: 48px 24px;
        border-radius: 24px;
        text-align: center;
        margin: 0 20px;
    }

    #filmfare{
        margin: 0;
    }
    .filmfare-content{
        flex-direction: column-reverse;
    }

    .filmfare-content h2 {
        font-size: 24px;
    }

    .filmfare-text{
        margin: 10%;
    }

    .filmfare-text a{
        display: block;
        text-align: center;
        width: 250px;
        margin: 0 auto;
    }


    .filmfare-content li {
        font-size: 16px;
        text-align: left;
    }

    .filmfare-content ul{
        max-width: 100%;
    }
    .filmfare-cta{
        width: 100%;
    }

    .primary-btn {
        margin: 32px auto 0;
        display: block;
    }

    .grid-item h3{
        font-size: 18px;
    }
    .grid-item::before{
        border-radius: 8px;
    }
    .spotlight h3{
        font-size: 24px;
    }
}

/* Word Cloud Section */
#word-cloud {
    background: #000;
    padding: 80px 24px;
    text-align: center;
}

#word-cloud h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 8px;
}

#word-cloud h3 {
    font-size: 38px;
    color: #FF00FF;
    margin-bottom: 60px;
    margin-top: 0;
}

.cloud-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
/* Mobile styles */
@media (max-width: 768px) {
    #word-cloud {
        padding: 20px 20px 100px;
    }

    #word-cloud h2 {
        font-size: 36px;
        margin-bottom: 0px;
    }

    #word-cloud h3 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .cloud-container {
        gap: 16px;
    }
    .cloud-container img {
        width: 100%;
    }
    #winning {
        padding: 48px 24px 20% 24px;
        
       
    }
    
}

.hidden-mobile {
    display: block;
}

.load-more-btn {
    display: none; /* Hidden by default */
    background: #FF00FF;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    margin: 32px auto 0;
    cursor: pointer;
}

.carousel-controls {
    display: flex; /* Visible by default for desktop */
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.carousel-controls button {
    background: transparent;
    border: 1px solid #FF00FF;
    color: #FF00FF;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
}

.carousel-controls button:hover {
    background: #FF00FF;
    color: #fff;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .load-more-btn {
        display: block; /* Show on mobile */
    }

    .carousel-controls {
        display: none; /* Hide on mobile */
    }

    .hidden-mobile {
        display: none;
    }
}


.header-container {
    margin: 0 auto;
    width: 100%;
}

header {
    padding-left: 5%;
    padding-right: 5%;
    width: 100%;
}

header { padding-top: 1rem; padding-bottom: 1rem; }

@media (max-width: 1280px) {
    .header-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .header-container {
        max-width: 100%;
    }
    .nav-links {
        display: none !important;
    }
}



header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 5%;
    background-color: #000;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    margin: 0;
}

.hamburger-menu span {
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
    display: block;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(50deg) translate(6px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-50deg) translate(7px, -6px);
}

@media (max-width: 1440px){
    
}
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    header {
        width: 100vw;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 20px 5%; */
    /* max-width: 1440px; */
    /* margin: 0 auto; */
    width: 100%;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    /* gap: 2rem; */
    /* display: none; */
}

.nav-links.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    z-index: 999;
    height: 100vh;
    width: 100%;
    background: black;
    padding: 30px;
    top: 60px;
    left: 0;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
    gap: 3rem;
    margin-top: 0;
    /* display: flex;
    flex-direction: column;
    height: 100vh;
    position: absolute;
    z-index: 999;
    width: 100%;
    background: black;
    padding: 30px;
    top: 60px;
    left: 0;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease-in-out; */
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
}


* Footer Styles */
.footer {
    background: #000000;
    padding: 1.5rem 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    /* max-width: 1440px; */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo, .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo img , .logo img{
    width: 140px;
    height: 40px;
}

.footer-logo span, .logo span {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 500;
    font-family: poppins;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-link {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #fff;
}

@media (max-width: 576px) {
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media screen and (min-width: 992px) {
    .nav-links {
        display: flex
;
        /* gap: clamp(1rem, 2vw, 2rem); */
    }
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
    /* padding: 2rem 0; */
    margin-top: 5rem;
    padding: 80px 30%;
    padding-top: 10px;
}

.award-badge {
    background: transparent;
    /* border: 2px solid #FFD700; */
    padding: 2rem 0;
    padding-top: 0;
    text-align: center;
    clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 50% 100%, 0% 85%);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 0px;
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.award-badge h3 {
    color: #FFD700;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.year {
    background: #FFD700;
    color: black;
    padding: 0.25rem 1rem;
    margin-top: 1rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    #awards-categories h2 {
        font-size: 36px;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px 10%;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 20px 10%;
    }

    .award-badge {
        max-width: 150px;
        padding: 0 !important;
    }
    .award-badge img {
        width: 100%;
    }
}
@media screen and (max-width: 1280px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 5%;
        padding-bottom: 10%;
    }

    .award-badge {
        max-width: 280px;
        padding: 1.5rem;
    }

    .award-badge img {
        width: 90%;
    }

    .stars {
        font-size: 1.3rem;
    }

    .award-badge h3 {
        font-size: 1rem;
    }

    .year {
        padding: 0.2rem 0.8rem;
        font-size: 0.9rem;
    }
}


#key-dates {
    background: #120721;
    padding: 50px 0;
}
.key-dates-timeline {
    position: relative;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

/* Horizontal line */
.key-dates-timeline::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 163px;
    right: 50px;
    height: 1px;
    background: #A058FF;
    opacity: 0.8;
    width: 73%;
}

/* Timeline items container */
.key-dates-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Individual timeline item */
.key-dates-timeline .timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 25%;
    position: relative;
    opacity: 0.5;
    gap: 1rem;
}

.key-dates-timeline .timeline-item:nth-child(1){
    opacity: 1;
}


/* Pink dots */
.key-dates-timeline .timeline-dot {
    width: 20px;
    height: 20px;
    background: #120721;
    border-radius: 50%;
    position: absolute;
    z-index: 2;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    margin-bottom: 20px;
}
.dot-inner{
    width: 10px;
    height: 10px;
    background: #FFFFFF;
    border-radius: 50%;
    position: absolute;
    top: 25%;
    left: 25%;
    transform: translate(-1px, -1px);
}
/* Date tag */
.key-dates-timeline .date-tag {
    background: #331a54;
    border: 1px solid #4c277d;
    padding: 8px 20px;
    border-radius: 8px;
    color: #FFFFFF;
    font-weight: 500;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px #4c277d;
    margin-top: 50px;
}

/* Text content */
.key-dates-timeline .timeline-content {
    text-align: center;
    color: white;
    line-height: 1.4;
    max-width: 200px;
}

#key-dates h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 80px;
}

#key-dates h2 .highlight {
    color: #FF00FF;
}

/* Mobile styles */
@media (max-width: 768px) {
    /* #key-dates {
        padding-left: 50px;
    } */
    #key-dates h2 {
        font-size: 36px;
    }
    .key-dates-timeline {
        flex-direction: column;
        align-items: flex-start;
        margin: 40px auto;
        padding-left: 100px;
    }

    .key-dates-timeline::before {
        top: 0;
        left: 55px;
        width: 1px;
        height: 69%;
        right: auto;
    }

    .key-dates-timeline .timeline-item {
        width: 100%;
        margin-bottom: 30px;
        align-items: flex-start;
    }

    .key-dates-timeline .date-tag {
        margin-top: 0;
    }


    .key-dates-timeline .timeline-dot {
        position: absolute;
        left: -45px;
        margin-bottom: 0;
    }

    .key-dates-timeline .timeline-content {
        text-align: left;
    }
}

#faq {
    padding: 80px 8%;
    background: #000000;
}

#faq h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

#faq .highlight {
    color: #FF00FF;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
}

.faq-question h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-icon {
    position: relative;
    width: 46px;
    height: 46px;
}

.faq-icon img {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
    width: 30px;
    height: 30px;
}

.faq-icon .open-icon {
    width: 30px;
    height: 30px;
}

.faq-icon .open-icon {
    opacity: 0;
}

.faq-icon .close-icon {
    opacity: 1;
}

/* Active state styles */
.faq-item.active .faq-question h3 {
    color: #FC41DB;
}

.faq-item.active .faq-icon .open-icon {
    opacity: 1;
}

.faq-item.active .faq-icon .close-icon {
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 24px 0 0;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding-bottom: 24px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}

@media (max-width: 768px) {
    #faq {
        padding: 40px 24px;
    }

    #faq h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .faq-question h3 {
        font-size: 18px;
        padding-right: 16px;
    }
    
    .faq-icon {
        width: 36px;
        height: 36px;
    }
    
    .faq-icon img {
        width: 36px;
        height: 36px;
    }
}

/* Contact Section Styles */
#contact-section {
    background: #120720;
    padding: 6rem 5%;
}

.contact-container {
    /* max-width: 1440px; */
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-card {
    position: relative;
    background: #000;
    border-radius: 1.5rem;
    padding: 2px; /* Space for gradient border */
    overflow: hidden;
}

/* Gradient border effect */
.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    padding: 2px;
    background: linear-gradient(
        90deg,
        rgba(252, 65, 219, 0.4) 0%,
        rgba(173, 88, 255, 0.4) 100%
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.contact-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.contact-content .highlight {
    background: linear-gradient(90deg, #FC41DB 0%, #AD58FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Styles */
@media (max-width: 968px) {
    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-content {
        text-align: center;
        padding: 1rem;
    }

    .contact-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .contact-card {
        padding: 1rem;
    }

    .contact-content h2 {
        font-size: 30px;
        text-align: center;
    }

    .contact-content p {
        font-size: 1rem;
        margin-top: 0;
        text-align: center;
    }
}

@media screen and (max-width: 1920px) and (max-height: 1080px) {
    .categories-grid { 
        grid-template-columns: repeat(3, 1fr);
    }
}

#Hall-of-fame {
    padding: 25px 80px 25px 80px;
    background: #120721;
    overflow: hidden;
    position: relative;

}

#Hall-of-fame h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

#Hall-of-fame .highlight {
    color: #FF00FF;
}

.hall-of-fame-content {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hall-of-fame-scroll {
    display: flex;
    gap: 3rem;
    transform: translateX(0%);
    animation: animate 25s linear infinite;
    animation-direction: alternate;
  
}

.hall-of-fame-scroll:hover {
    animation-play-state: paused;
}

.hall-of-fame-item {
    flex: 0 0 auto;
    width: 240px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* transform: perspective(300px) scale(1); */
    transition: all .3s linear;
}

.hall-of-fame-item:hover {
    transform: scale(1.05);
}

.hall-of-fame-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hall-of-fame-cta {
    text-align: center;
    margin-top: 60px;
}

@keyframes animate {
    0% {
        transform: translateX(0%);
      }
    100% {
      transform: translateX(calc(-240px * 4));
    }
  }
  

/* Mobile styles */
@media (max-width: 768px) {
    #Hall-of-fame {
        padding: 40px 20px 20px 20px;
    }

    #Hall-of-fame h2 {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .hall-of-fame-item {
        width: 180px;
        height: 240px;
    }

    .hall-of-fame-cta{
        margin-top: 40px;
    }

    #when{
        margin: 0px;
    }

    #when .event-details{
        margin: 0px;
        width: -webkit-fill-available;
        padding: 25px 14px;
        row-gap: 12px;
    }
    @keyframes animate {
        0% {
            transform: translateX(0%);
          }
        100% {
          transform: translateX(calc(-240px * 7));
        }
      }
      
}


@media screen and (min-width: 1600px){
    header nav, main section > div, footer > div{
    max-width: 1600px;
    /* margin: 0 auto; */
     /* margin: 0 auto; */
}

#hero, #filmfare{
    max-width: 1600px;
    margin: 0 auto;
}
nav{
    margin: 0 auto;
}
    /* section{
       padding-left: 15% !important;
       padding-right: 15% !important;
    }
    header{
        padding-left: 15% !important;
        padding-right: 15% !important;
    }
    footer{
        padding-left: 15% !important;
        padding-right: 15% !important;
    } */
}