* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #5B21B6;
    --dark-purple: #4C1D95;
    --light-purple: #7C3AED;
    --orange: #F97316;
    --light-orange: #FB923C;
    --white: #FFFFFF;
    --light-gray: #F8FAFC;
    --gray: #64748B;
    --dark-gray: #334155;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;


}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(91, 33, 182, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(91, 33, 182, 0.3);

}

.navbar.scrolled {
    background: rgba(76, 29, 149, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    padding: 0.6rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
}

.aws-logo-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aws-text {
    font-size: 1.8rem;
    font-weight: 300;
    display: block;
    letter-spacing: -1px;
    line-height: 1;
}

.aws-underline-nav {
    width: 40px;
    height: 2px;
    background: var(--orange);
    margin-top: 2px;
    border-radius: 1px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 5px var(--orange);
        transform: scaleX(1);
    }

    50% {
        box-shadow: 0 0 15px var(--orange);
        transform: scaleX(1.1);
    }
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-line {
    display: flex;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.location-line {
    display: flex;
    gap: 0.5rem;
    font-size: 0.65rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 1px;
}

.student-text {
    color: var(--white);
}

.community-text {
    color: var(--light-orange);
}

.location-text {
    color: var(--white);
}

.year-text {
    color: var(--orange);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-cta {
    background: linear-gradient(45deg, var(--orange), var(--light-orange));
    color: var(--white) !important;
    font-weight: 600;
    padding: 0.6rem 1.5rem !important;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.nav-cta::after {
    display: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--orange);
    transition: var(--transition);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 1024px) {

    .container,
    .nav-container {
        max-width: 100%;
        padding: 0 10px;

    }

    .hero-content {
        max-width: 100%;
        padding: 0 10px;
    }

    .stats-grid,
    .features-grid,
    .speakers-grid,
    .organisers-grid,
    .sponsors-grid {
        gap: 1.2rem;
    }

    .container {

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0.5rem 1rem;
        justify-content: space-between;
    }

    .nav-logo img {
        height: 80px;
        width: 160px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(45, 27, 105, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.3s ease-in-out;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
        text-align: center;
        width: 100%;
    }

    .nav-toggle {
        display: flex;
        z-index: 10;
    }

    /* Mobile Hero Section Styles */
    .hero-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-left {
        align-items: center;
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .registration-badge {
        /* margin: 0 auto 1rem; */
        margin-top: 50px;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-right {
        width: 100%;
        justify-content: center;
        margin-top: 2rem;
    }

    .event-card-redesign {
        min-width: unset;
        width: 90%;
        margin: 0 auto;
        padding: 1.5rem;
    }

    .container {

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    .venue-content {
        flex-direction: column;
    }
}

/* Smaller Mobile Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .venue-content {
        flex-direction: column;
    }

    .container {

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .event-card-redesign {
        width: 95%;
        padding: 1rem;
    }

    .event-row {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .event-social-row {
        justify-content: center;
    }

    .register-btn-redesign {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1.5rem;
    }
}

/* Minor bug fixes */
.nav-menu {
    box-sizing: border-box;
}

.nav-link,
.nav-cta {
    word-break: break-word;
}

.hero-content,
.about-content {
    box-sizing: border-box;
}


.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

/* Countdown Timer Section */
.comingsoon-section {
    padding: 0.5rem 0 1rem;
    background: #321e70;
    text-align: center;
    position: relative;
    z-index: 2;
}

.comingsoon-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.comingsoon-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.comingsoon-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.comingsoon-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0.5rem auto;
    flex-wrap: nowrap;
}

.timer-box {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(91, 33, 182, 0.2);
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    transition: transform 0.3s ease;
}

.timer-box:hover {
    transform: translateY(-5px);
}

.timer-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.timer-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light-orange);
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .comingsoon-section {
        padding: 2rem 0;
    }

    .comingsoon-title {
        font-size: 2rem;
    }

    .comingsoon-timer {
        gap: 1rem;
    }

    .timer-box {
        padding: 1rem 1.5rem;
        min-width: 100px;
    }

    .timer-value {
        font-size: 2.2rem;
    }

    .timer-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .comingsoon-timer {
        gap: 0.3rem;
        width: 100%;
        padding: 0 0.5rem;
    }

    .timer-box {
        min-width: unset;
        width: calc(25% - 0.3rem);
        padding: 0.4rem 0.2rem;
        border-radius: 0.5rem;
    }

    .timer-value {
        font-size: 1.3rem;
        margin-bottom: 0.1rem;
        letter-spacing: 0;
    }

    .timer-label {
        font-size: 0.65rem;
        letter-spacing: 0;
    }

    .comingsoon-section {
        padding: 0.5rem 0;
    }

    .comingsoon-container {
        padding: 0 10px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 50%, #2D1B69 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 20px 50px;
}

@media (max-width: 768px) {
    .venue-content {
        flex-direction: column;
    }

    .hero {
        padding: 80px 10px 30px;
        min-height: 80vh;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 5px;
        gap: 1.2rem;
    }

    .hero-main {
        gap: 1.2rem;
    }

    .hero-logo-section {
        margin-bottom: 1rem;
    }

    .aws-text {
        font-size: 2rem;
    }

    .hero-main-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-title-section {
        margin-bottom: 0.5rem;
    }

    .hero-subtitle-section {
        gap: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .year-badge {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .hero-event-info {
        flex-direction: column;
        gap: 0.7rem;
        align-items: stretch;
    }

    .event-card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        padding: 1rem 1.2rem;
        flex-direction: row;
        gap: 0.7rem;
    }

    .event-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .event-date,
    .event-venue {
        font-size: 0.9rem;
    }

    .event-time,
    .event-location {
        font-size: 0.8rem;
    }

    .hero-cta-section {
        gap: 1rem;
    }

    .register-btn-new {
        position: relative;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }

    .hero-stats-preview {
        flex-direction: row;
        gap: 0.7rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .stat-preview {
        min-width: 90px;
    }

    .stat-preview .stat-number {
        font-size: 1.2rem;
    }

    .stat-preview .stat-label {
        font-size: 0.7rem;
    }

    .announcement-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        gap: 0.6rem;
    }

    .floating-shapes .shape {
        display: none;
    }

    .hero-scroll-indicator {
        bottom: 1rem;
    }

    .container {

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .venue-content {
        flex-direction: column;
    }

    .hero {
        padding: 60px 5px 20px;
    }

    .hero-main-title {
        font-size: 1.2rem;
    }

    .aws-text {
        font-size: 1rem;
    }

    .event-card {
        padding: 0.7rem 0.7rem;
    }

    .register-btn-new {
        padding: 0.7rem 0.7rem;
        font-size: 0.95rem;
    }

    .stat-preview .stat-number {
        font-size: 1rem;
    }

    .stat-preview .stat-label {
        font-size: 0.6rem;
    }

    .container {

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}


.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    animation: float-shapes 20s infinite ease-in-out;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: -15s;
}

.shape-5 {
    width: 40px;
    height: 40px;
    top: 10%;
    right: 10%;
    animation-delay: -7s;
}

.shape-6 {
    width: 90px;
    height: 90px;
    top: 70%;
    right: 40%;
    animation-delay: -12s;
}

@keyframes float-shapes {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }

    33% {
        transform: translateY(-30px) rotate(120deg);
        opacity: 0.6;
    }

    66% {
        transform: translateY(20px) rotate(240deg);
        opacity: 0.4;
    }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 30s linear infinite;
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }

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

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--orange);
    border-radius: 50%;
    animation: particle-float 15s infinite linear;
    opacity: 0;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: -2s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: -4s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: -6s;
}

.particle:nth-child(5) {
    left: 60%;
    animation-delay: -8s;
}

.particle:nth-child(6) {
    left: 70%;
    animation-delay: -10s;
}

.particle:nth-child(7) {
    left: 80%;
    animation-delay: -12s;
}

.particle:nth-child(8) {
    left: 90%;
    animation-delay: -14s;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }

    90% {
        opacity: 1;
        transform: translateY(-10vh) scale(1);
    }

    100% {
        transform: translateY(-20vh) scale(0);
        opacity: 0;
    }
}


.sponsor-download-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0 2rem 0;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: linear-gradient(45deg, #5B21B6, #F97316);
    color: #fff;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(91, 33, 182, 0.15);
    transition: background 0.2s, transform 0.2s;
    border: none;
}

.download-btn:hover {
    background: linear-gradient(45deg, #F97316, #5B21B6);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 16px 32px rgba(249, 115, 22, 0.15);
    color: #fff;
    text-decoration: none;
}

.download-btn i {
    font-size: 1.3rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    position: relative;
}

.hero-announcement {
    margin-bottom: 2rem;
    animation: slideInDown 1s ease-out;
}

.announcement-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(249, 115, 22, 0.6);
    }
}

.badge-icon {
    font-size: 1.2rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.hero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    text-align: center;
}

.hero-logo-section {
    position: relative;
    animation: zoomIn 1s ease-out 0.3s both;
}

.aws-logo-container {
    margin-top: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aws-logo-main {
    position: relative;
    z-index: 2;
}

.aws-text {
    font-size: 5rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: -3px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.aws-smile {
    width: 120px;
    height: 8px;
    background: linear-gradient(90deg, var(--orange), var(--light-orange));
    border-radius: 10px;
    margin: 0.5rem auto 0;
    position: relative;
    animation: smile-glow 2s ease-in-out infinite;
}

@keyframes smile-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
        transform: scaleX(1);
    }

    50% {
        box-shadow: 0 0 40px rgba(249, 115, 22, 0.8);
        transform: scaleX(1.1);
    }
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: logo-pulse 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes logo-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.hero-title-section {
    animation: slideInUp 1s ease-out 0.5s both;
}

.hero-main-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.title-line-1 {
    display: block;
    color: var(--white);
    letter-spacing: 3px;
    animation: text-glow 3s ease-in-out infinite;
}

.title-line-2 {
    display: block;
    background: linear-gradient(45deg, var(--orange), var(--light-orange), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    animation: gradient-shift 3s ease-in-out infinite;
}

.title-line-3 {
    display: block;
    color: var(--white);
    letter-spacing: 3px;
    animation: text-glow 3s ease-in-out infinite 1s;
}

@keyframes text-glow {

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

    50% {
        text-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
    }
}

@keyframes gradient-shift {

    0%,
    100% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(30deg);
    }
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    animation: line-expand 2s ease-in-out infinite;
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes line-expand {

    0%,
    100% {
        transform: scaleX(1);
        opacity: 0.5;
    }

    50% {
        transform: scaleX(1.5);
        opacity: 1;
    }
}

@keyframes dot-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }
}

.hero-subtitle-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeIn 1s ease-out 0.7s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    opacity: 0.9;
    margin: 0;
}

.year-badge {
    position: relative;
    background: linear-gradient(45deg, var(--orange), var(--light-orange));
    padding: 0.8rem 2rem;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.year-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.hero-event-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.9s both;
}

.event-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.event-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--orange), var(--light-orange));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.event-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.event-date,
.event-venue {
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

.event-time,
.event-location {
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--white);
}

.hero-cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: bounceIn 1s ease-out 1.1s both;
}

.register-btn-new {
    position: absolute;
    background: none;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 60px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--orange), var(--light-orange));
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-text {
    position: relative;
    z-index: 2;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.register-btn-new:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.6);
}

.register-btn-new:hover .btn-bg {
    background: linear-gradient(45deg, var(--light-orange), var(--orange));
}

.btn-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.btn-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0;
    animation: btn-sparkle 2s ease-in-out infinite;
}

.btn-particles span:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.btn-particles span:nth-child(2) {
    top: 20%;
    right: 20%;
    animation-delay: 0.7s;
}

.btn-particles span:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 1.4s;
}

@keyframes btn-sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0);
    }

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

.hero-stats-preview {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.stat-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.stat-preview:hover {
    opacity: 1;
    transform: scale(1.1);
}

.stat-preview .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
}

.stat-preview .stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--white);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeIn 1s ease-out 1.5s both;
    z-index: 10;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--orange);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0.3;
    }
}

.scroll-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Animation keyframes */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.social-icons {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-icon.linkedin {
    background: #0077B5;
}

.social-icon.twitter {
    background: #1DA1F2;
}

.social-icon:hover {
    transform: scale(1.1) translateX(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Statistics Section */
.stats-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.stat-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.stat-label i {
    color: var(--orange);
    font-size: 1.2rem;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-gray);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-purple), var(--orange));
    border-radius: 2px;
}

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

.section-title.white::after {
    background: linear-gradient(45deg, var(--orange), var(--light-orange));
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gray);
    animation: fadeInUp 0.8s ease-out;
}

/* Why Attend Section */
.why-attend-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
    position: relative;
    overflow: hidden;
}

.why-attend-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><polygon points="50 0 60 40 100 50 60 60 50 100 40 60 0 50 40 40"/></g></svg>');
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: var(--transition);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--orange), var(--light-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Speakers Section */
.speakers-section {
    padding: 6rem 0;
    background: var(--white);
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.speaker-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.speaker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(45deg, var(--primary-purple), var(--orange));
}

.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.speaker-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary-purple);
    transition: var(--transition);
}

.speaker-card:hover .speaker-image {
    transform: scale(1.05);
    border-color: var(--orange);
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.speaker-title {
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.speaker-company {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.speaker-bio {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Sponsors Section */
.sponsors-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.sponsor-tier {
    margin-bottom: 4rem;
}

.tier-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.tier-title.platinum {
    color: #E5E7EB;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tier-title.gold {
    color: #F59E0B;
}

.tier-title.silver {
    color: #9CA3AF;
}

.tier-title.partners {
    color: var(--primary-purple);
}

.sponsors-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.sponsors-grid.platinum {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.sponsors-grid.gold {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.sponsors-grid.silver {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.sponsors-grid.partners {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.sponsor-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    width: 100%;
    max-width: 300px;
    height: 300px;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.sponsor-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-purple);
    /* border: 2px dashed var(--light-purple); */
    border-radius: 10px;
    background: var(--light-gray);
}

.sponsor-logo img {
    height: 80px;
    width: 120px;
    object-fit: contain;
    padding: 10px;
}

.sponsor-name {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.sponsor-description {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.4;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.organisers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.organiser-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.organiser-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(45deg, var(--primary-purple), var(--orange));
}

.organiser-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.organiser-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary-purple);
    transition: var(--transition);
}

.organiser-card:hover .organiser-image {
    transform: scale(1.05);
    border-color: var(--orange);
}

.organiser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.organiser-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.organiser-title {
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.organiser-location {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #0077B5;
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.linkedin-link:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
}

.team-subtitle {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--dark-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.team-member:hover {
    transform: scale(1.05);
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--primary-purple);
    transition: var(--transition);
}

.team-member:hover img {
    border-color: var(--orange);
    transform: scale(1.1);
}

.team-member p {
    font-weight: 500;
    color: var(--dark-gray);
}

/* Venue Section */
.venue-section {
    padding: 6rem 0;
    background: var(--white);
}

.venue-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.venue-card {
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.venue-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.venue-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.venue-location {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.venue-location i {
    color: var(--orange);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.venue-location strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.venue-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.venue-map:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.map-placeholder iframe {
    border-radius: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: var(--transition);
    font-weight: 600;
    color: var(--dark-gray);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question i {
    color: var(--primary-purple);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-social-link:hover {
    background: var(--orange);
    transform: scale(1.1);
    border-color: var(--orange);
}

.footer-text {
    opacity: 0.8;
    margin-top: 1rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Redesign Styles */
.hero-redesign {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2D1B69 0%, #3B217A 100%);
    color: #fff;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, #3B217A 0%, #2D1B69 100%);
    z-index: 0;
    opacity: 0.85;
}

.hero-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 0 20px;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 500px;
}

.registration-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: #F97316;
    border-radius: 50%;
    display: inline-block;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.highlight-orange {
    color: #F97316;
}

.hero-year {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-organized {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.register-btn-redesign {
    background: linear-gradient(45deg, #F97316, #FB923C);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    cursor: pointer;
    transition: transform 0.2s;
}

.register-btn-redesign:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.5);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 1rem;
    color: #FB923C;
    font-weight: 600;
    margin-left: 0.3rem;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: 40px;
}

.event-card-redesign {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    padding: 2rem 2.5rem;
    min-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.event-icon-redesign {
    font-size: 2rem;
    color: #F97316;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 0.5rem;
}

.event-main {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}

.event-sub {
    font-size: 0.95rem;
    color: #fff;
    opacity: 0.8;
}

.event-social-row {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.event-social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.2s, transform 0.2s;
}

.event-social-icon:hover {
    background: #F97316;
    transform: scale(1.1);
}

/* New Countdown Timer Styles */
.comingsoon-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem auto;
    flex-wrap: wrap;
}

.timer-box {
    background: linear-gradient(180deg, #7c3aed 0%, #5b21b6 100%);
    border-radius: 0.8rem;
    box-shadow: 0 4px 24px rgba(124, 58, 237, 0.25);
    padding: 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.timer-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(124, 58, 237, 0.5);
    margin-bottom: 0.3rem;
    letter-spacing: 2px;
}

.timer-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ede9fe;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .timer-box {
        padding: 0.8rem 1rem;
        min-width: 70px;
    }

    .timer-value {
        font-size: 2rem;
    }

    .timer-label {
        font-size: 0.8rem;
    }
}

/* Countdown Timer Styles */
.comingsoon-section {
    padding: 4rem 0;
    /* background: linear-gradient(180deg, rgba(91, 33, 182, 0.1) 0%, rgba(91, 33, 182, 0.05) 100%); */
    text-align: center;
    margin-top: 100px;
    background-color: #341e72
}

.comingsoon-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

}

.comingsoon-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    color: white
}

.comingsoon-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    color: white
}

.comingsoon-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem auto;
    flex-wrap: wrap;
}

.timer-box {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(91, 33, 182, 0.2);
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    transition: transform 0.3s ease;
}

.timer-box:hover {
    transform: translateY(-5px);
}

.timer-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.timer-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light-orange);
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .comingsoon-section {
        padding: 3rem 0;
    }

    .comingsoon-title {
        font-size: 2rem;
    }

    .comingsoon-timer {
        gap: 1rem;
    }

    .timer-box {
        padding: 1rem 1.5rem;
        min-width: 100px;
    }

    .timer-value {
        font-size: 2.2rem;
    }

    .timer-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .timer-box {
        min-width: 80px;
        padding: 0.8rem 1rem;
    }

    .timer-value {
        font-size: 1.8rem;
    }

    .comingsoon-timer {
        flex-wrap: nowrap;
    }

    .timer-label {
        font-size: 0.7rem;
    }

    .comingsoon-section {
        padding-top: 5rem;
    }

    #home {
        padding-top: 0px
    }
}

#home {
    padding-top: 0px
}

#itinerary{
    padding:10px;
}

.itinerary-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Use your same timeline style */
.itinerary-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    border-left: 4px solid var(--light-purple);
    padding-left: 30px;
}

.timeline-item {
    position: relative;
    padding-left: 20px;
    transition: var(--transition);
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--orange);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--light-orange);
}

.timeline-time {
    font-weight: bold;
    color: var(--dark-purple);
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.timeline-content {
    background: var(--white);
    padding: 18px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.timeline-content h3 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: var(--primary-purple);
}

.timeline-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gray);
}

.timeline-item:hover .timeline-content {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 900px) {
    .itinerary-wrapper {
        grid-template-columns: 1fr;
    }
}