:root {
    --brand: #5E2A7E;
    --brand-dark: #411358;
    --brand-light: #DCC8F2;
    --brand-soft: #F7F1FB;
    --ink: #1F122D;
    --muted: #6A5A7C;
    --white: #ffffff;
    --accent: #FFC107;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: var(--brand-soft);
    color: var(--ink);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: url('/assets/images/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

img {
    max-width: 100%;
    display: block;
}

header {
    position: relative;
    z-index: 20;
}

.navbar {
    padding: 0.85rem 1rem;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

/* Mobile menu background with branding */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: linear-gradient(135deg, var(--brand-dark), var(--brand));
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        z-index: 1000;
    }
    
    .navbar-collapse.show {
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .navbar-nav {
        padding: 0.5rem 0;
    }
    
    .navbar-nav .nav-item {
        margin-bottom: 0.5rem;
    }
    
    .navbar-nav .nav-link {
        color: var(--white);
        padding: 0.75rem 1rem;
        border-radius: 0.5rem;
        margin: 0;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        background: rgba(255, 255, 255, 0.1);
        border-left-color: var(--accent);
        color: var(--accent);
        transform: translateX(5px);
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .btn-nav {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
        padding: 0.75rem 1.5rem;
    }
}

.navbar.navbar-solid {
    background: rgba(24, 8, 36, 0.68) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.navbar-brand {
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.navbar-brand span {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--brand-light);
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 500;
    margin: 0 0.4rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--white);
}

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

.btn-nav {
    border-radius: 999px;
    border: 1px solid var(--accent);
    padding: 0.45rem 1.3rem;
    color: var(--accent);
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-nav:hover {
    background: var(--accent);
    color: var(--brand-dark);
}

#hero {
    background: url('/assets/images/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding-top: 8.5rem;
    padding-bottom: 5.5rem;
    position: relative;
    overflow: hidden;
}

#hero .row {
    align-items: stretch;
}

#hero .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}


#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1;
}


.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Staggered animations for cards */
.objective-card-wrapper:nth-child(1) { animation-delay: 0.1s; }
.objective-card-wrapper:nth-child(2) { animation-delay: 0.2s; }
.objective-card-wrapper:nth-child(3) { animation-delay: 0.3s; }
.objective-card-wrapper:nth-child(4) { animation-delay: 0.4s; }
.objective-card-wrapper:nth-child(5) { animation-delay: 0.5s; }
.objective-card-wrapper:nth-child(6) { animation-delay: 0.6s; }

.pillar-card:nth-child(1) { animation-delay: 0.1s; }
.pillar-card:nth-child(2) { animation-delay: 0.2s; }
.pillar-card:nth-child(3) { animation-delay: 0.3s; }

.venue-card-wrapper:nth-child(1) { animation-delay: 0.1s; }
.venue-card-wrapper:nth-child(2) { animation-delay: 0.2s; }
.venue-card-wrapper:nth-child(3) { animation-delay: 0.3s; }

.contact-card-wrapper:nth-child(1) { animation-delay: 0.1s; }
.contact-card-wrapper:nth-child(2) { animation-delay: 0.2s; }
.contact-card-wrapper:nth-child(3) { animation-delay: 0.3s; }

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--accent);
}

.hero-summary {
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    opacity: 0.9;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.hero-meta .meta-chip {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    backdrop-filter: blur(5px);
}

.countdown {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.countdown-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-radius: 0.6rem;
    padding: 0.4rem 0.75rem;
    min-width: 65px;
    text-align: center;
    border: 2px solid rgba(255, 193, 7, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: countdownFadeIn 0.6s ease-out backwards;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

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

.countdown-box:hover::before {
    left: 100%;
}

.countdown-box:nth-child(1) { animation-delay: 0.1s; }
.countdown-box:nth-child(2) { animation-delay: 0.2s; }
.countdown-box:nth-child(3) { animation-delay: 0.3s; }
.countdown-box:nth-child(4) { animation-delay: 0.4s; }

.countdown-box:hover {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.25), rgba(255, 193, 7, 0.15));
    border-color: rgba(255, 193, 7, 0.6);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 193, 7, 0.3);
}

@keyframes countdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.count-number {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.05rem;
    transition: all 0.3s ease;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.countdown-box:hover .count-number {
    transform: scale(1.05);
    color: var(--accent);
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
}

.count-label {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.95;
    font-weight: 600;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0;
}

.btn-hero-primary {
    background: var(--accent);
    color: var(--brand-dark);
    border-radius: 999px;
    padding: 0.9rem 2rem;
    font-weight: 700;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

.btn-hero-secondary {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 0.9rem 1.8rem;
    color: var(--white);
    font-weight: 500;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-hero-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.hero-image {
    border-radius: 1.3rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    object-fit: cover;
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    transform: scale(1.1) translateX(-30px);
    animation: heroImageFloat 6s ease-in-out infinite;
}

@keyframes heroImageFloat {
    0%, 100% {
        transform: scale(1.1) translateX(-30px) translateY(0);
    }
    50% {
        transform: scale(1.1) translateX(-30px) translateY(-10px);
    }
}

main {
    position: relative;
    z-index: 5;
}

.section {
    padding: 4.5rem 0;
}

#about, #outcomes, #speakers, #contact {
    background: var(--brand-soft);
}

#objectives, #schedule, #venue {
    background: var(--white);
}


.section-title {
    font-weight: 700;
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 1.25rem;
    color: var(--brand-dark);
}

.section-intro {
    max-width: 100%;
    color: var(--muted);
    margin-bottom: 2rem;
    font-size: 0.85rem;
    line-height: 1.6;
}

.section p {
    font-size: 0.85rem;
    line-height: 1.6;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    line-height: 1.6;
}

.check-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.card {
    background: var(--white);
    border-radius: 0.875rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.08);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(94, 42, 126, 0.1), 0 10px 10px -5px rgba(94, 42, 126, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--brand);
    font-size: 1rem;
}

.insight-card,
.purpose-card,
.track-card,
.schedule-card,
.audience-card,
.outcome-card,
.expect-card,
.why-card,
.venue-card {
    /* All these now use the .card base style */
}

.theme-card {
    background: var(--brand);
    color: var(--white);
    border-radius: 0.875rem;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.theme-card h3 {
    color: var(--white);
}

.theme-pillars {
    margin-top: 3rem;
}

.pillar-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(94, 42, 126, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.6s ease-out;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(94, 42, 126, 0.15);
    border-color: var(--brand-light);
}

.pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar-card-people .pillar-icon {
    background: linear-gradient(135deg, rgba(94, 42, 126, 0.1), rgba(94, 42, 126, 0.05));
    color: var(--brand);
}

.pillar-card-policy .pillar-icon {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 193, 7, 0.05));
    color: var(--accent);
}

.pillar-card-innovation .pillar-icon {
    background: linear-gradient(135deg, rgba(94, 42, 126, 0.15), rgba(255, 193, 7, 0.1));
    color: var(--brand-dark);
}

.pillar-icon i {
    font-size: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1);
}

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

.pillar-card-people:hover .pillar-icon {
    background: linear-gradient(135deg, var(--brand-soft), var(--brand-light));
}

.pillar-card-policy:hover .pillar-icon {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.25), rgba(255, 193, 7, 0.15));
}

.pillar-card-innovation:hover .pillar-icon {
    background: linear-gradient(135deg, var(--brand-soft), rgba(255, 193, 7, 0.15));
}

.pillar-card h5 {
    color: var(--brand-dark);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.pillar-card:hover h5 {
    color: var(--brand);
}

.pillar-card p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

.pillar-accent {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--brand-light), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pillar-card:hover .pillar-accent {
    opacity: 1;
}

@media (max-width: 768px) {
    .pillar-card {
        padding: 1.5rem 1.25rem;
    }
    
    .pillar-icon {
        width: 70px;
        height: 70px;
    }
    
    .pillar-icon i {
        font-size: 1.8rem;
    }
    
    .pillar-card h5 {
        font-size: 1.3rem;
    }
}

/* Objectives Section - Re-imagined Design */
.objectives-section {
    position: relative;
    overflow: hidden;
}

.objectives-header {
    text-align: left;
    margin-bottom: 4rem;
}

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

.objective-card-wrapper {
    position: relative;
}

.objective-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(94, 42, 126, 0.08);
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease-out;
}

.objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.objective-card:hover::before {
    transform: scaleX(1);
}

.objective-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(94, 42, 126, 0.15);
    border-color: var(--brand-light);
}

.objective-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.objective-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(94, 42, 126, 0.1), rgba(94, 42, 126, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.objective-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.objective-card:hover .objective-icon {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(94, 42, 126, 0.3);
}

.objective-number {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-soft), var(--brand-light));
    color: var(--brand);
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    border: 2px solid transparent;
}

.objective-card:hover .objective-number {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(94, 42, 126, 0.25);
}

.objective-card h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--brand-dark);
    font-size: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.objective-card:hover h4 {
    color: var(--brand);
}

.objective-card p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.8rem;
    margin: 0;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.objective-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(94, 42, 126, 0.03), transparent 70%);
    border-radius: 50%;
    transform: translate(30%, 30%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.objective-card:hover .objective-accent {
    transform: translate(20%, 20%) scale(1.5);
    background: radial-gradient(circle, rgba(94, 42, 126, 0.08), transparent 70%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .objective-card {
        padding: 1.5rem;
    }
    
    .objectives-header {
        margin-bottom: 3rem;
    }
}

@media (min-width: 1200px) {
    .objectives-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Outcomes Section Styles */
.about-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-text {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.purpose-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.outcomes-header {
    margin-bottom: 3rem;
    text-align: left;
}

.outcomes-content {
    margin-bottom: 3rem;
}

.outcomes-card {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.outcomes-card h4 {
    margin-bottom: 0;
    font-size: 1rem;
}

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

.outcome-item {
    background: var(--white);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(94, 42, 126, 0.08);
    position: relative;
    overflow: hidden;
}

.outcome-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.outcome-item:hover::before {
    transform: scaleX(1);
}

.outcome-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(94, 42, 126, 0.15);
    border-color: var(--brand-light);
}

.outcome-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(94, 42, 126, 0.1), rgba(94, 42, 126, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.outcome-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 2;
}

.outcome-item:hover .outcome-icon {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(94, 42, 126, 0.3);
}

.outcome-item h4 {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--brand-dark);
    transition: color 0.3s ease;
}

.outcome-item:hover h4 {
    color: var(--brand);
}

.outcome-item p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.audience-icon,
.outcome-header-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(94, 42, 126, 0.1), rgba(94, 42, 126, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    flex-shrink: 0;
}

.audience-icon svg,
.outcome-header-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Beautiful List Styling - Re-imagined */
.beautiful-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.beautiful-list li {
    position: relative;
    padding-left: 2.25rem;
    margin-bottom: 0.625rem;
    color: var(--ink);
    font-size: 0.85rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    padding-top: 0.15rem;
}

.beautiful-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    box-shadow: 0 2px 8px rgba(94, 42, 126, 0.3);
    transition: all 0.3s ease;
}

.beautiful-list li::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 0.5rem;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.beautiful-list li:hover {
    color: var(--brand-dark);
    padding-left: 3rem;
    transform: translateX(4px);
}

.beautiful-list li:hover::before {
    width: 12px;
    height: 12px;
    top: 0.4rem;
    left: -2px;
    box-shadow: 0 4px 12px rgba(94, 42, 126, 0.4);
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.beautiful-list li:hover::after {
    opacity: 1;
}

/* Specific styling for outcomes list */
.outcomes-list li {
    padding-left: 2.5rem;
    margin-bottom: 0.625rem;
    font-size: 0.85rem;
}

.outcomes-list li::before {
    width: 10px;
    height: 10px;
    top: 0.6rem;
    background: linear-gradient(135deg, var(--brand), var(--accent));
}

.outcomes-list li:hover::before {
    width: 14px;
    height: 14px;
    top: 0.5rem;
}

/* Audience list styling */
.audience-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audience-list li {
    position: relative;
    padding-left: 2.25rem;
    margin-bottom: 0.625rem;
    color: var(--ink);
    font-size: 0.85rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    padding-top: 0.15rem;
}

.audience-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    box-shadow: 0 2px 8px rgba(94, 42, 126, 0.3);
    transition: all 0.3s ease;
}

.audience-list li::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 0.5rem;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.audience-list li:hover {
    color: var(--brand-dark);
    padding-left: 3rem;
    transform: translateX(4px);
}

.audience-list li:hover::before {
    width: 12px;
    height: 12px;
    top: 0.4rem;
    left: -2px;
    box-shadow: 0 4px 12px rgba(94, 42, 126, 0.4);
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.audience-list li:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .outcome-item {
        padding: 2rem 1.5rem;
    }
    
    .outcomes-header {
        margin-bottom: 2rem;
    }
    
    .outcomes-card,
    .audience-card {
        padding: 2rem 1.5rem;
        height: auto;
    }
    
    .beautiful-list li {
        padding-left: 2.25rem;
        margin-bottom: 0.65rem;
        font-size: 0.9rem;
    }
    
    .outcomes-list li {
        padding-left: 2.5rem;
        margin-bottom: 0.65rem;
    }
    
    .audience-list li {
        margin-bottom: 0.65rem;
    }
}

@media (min-width: 992px) {
    .outcomes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.track-card ul,
.outcome-card ul,
.audience-card ul,
.schedule-card ul {
    padding-left: 1.1rem;
    margin-bottom: 0;
}

.expect-card ul,
.why-card ul {
    margin-bottom: 0;
}

.grid {
    display: grid;
    gap: 1.75rem;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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


#schedule .schedule-card {
    border-top: 5px solid var(--brand);
}

.coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--brand);
    background: rgba(94, 42, 126, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
}

#speakers .speakers-placeholder {
    background: var(--white);
    border-radius: 1.2rem;
    padding: 3rem;
    text-align: center;
    border: 2px dashed var(--brand-light);
    color: var(--muted);
}
#speakers .speakers-placeholder:hover{
    border-color: var(--accent);
}

#schedule .schedule-placeholder {
    background: var(--white);
    border-radius: 1.2rem;
    padding: 3rem;
    text-align: center;
    border: 2px dashed var(--brand-light);
    color: var(--muted);
}
#schedule .schedule-placeholder:hover{
    border-color: var(--accent);
}

/* Advanced Venue Section Styles */
.venue-header {
    text-align: left;
    margin-bottom: 4rem;
}

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

.venue-card-wrapper {
    position: relative;
}

.venue-card-advanced {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(94, 42, 126, 0.08);
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease-out;
}

.venue-card-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.venue-card-advanced:hover::before {
    transform: scaleX(1);
}

.venue-card-advanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(94, 42, 126, 0.15);
    border-color: var(--brand-light);
}

.venue-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.venue-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.venue-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.venue-icon-wrapper i {
    font-size: 1.25rem;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.venue-icon-location {
    background: linear-gradient(135deg, rgba(94, 42, 126, 0.1), rgba(94, 42, 126, 0.05));
    color: var(--brand);
}

.venue-icon-location::before {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.venue-icon-host {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 193, 7, 0.05));
    color: var(--accent);
}

.venue-icon-host::before {
    background: linear-gradient(135deg, var(--accent), #FF9800);
}

.venue-icon-partner {
    background: linear-gradient(135deg, rgba(94, 42, 126, 0.15), rgba(255, 193, 7, 0.1));
    color: var(--brand-dark);
}

.venue-icon-partner::before {
    background: linear-gradient(135deg, var(--brand-dark), var(--brand));
}

.venue-card-advanced:hover .venue-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(94, 42, 126, 0.3);
}

.venue-card-advanced:hover .venue-icon-wrapper::before {
    opacity: 1;
}

.venue-card-advanced:hover .venue-icon-wrapper i {
    color: var(--white);
    transform: scale(1.1);
}

.venue-card-advanced h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--brand-dark);
    font-size: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.venue-card-advanced:hover h4 {
    color: var(--brand);
}

.venue-description {
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.8rem;
    margin: 0 0 1rem 0;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.venue-badge {
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--brand);
    background: rgba(94, 42, 126, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.venue-card-advanced:hover .coming-soon-badge {
    background: rgba(94, 42, 126, 0.15);
    transform: translateY(-2px);
}

.venue-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(94, 42, 126, 0.03), transparent 70%);
    border-radius: 50%;
    transform: translate(30%, 30%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.venue-card-advanced:hover .venue-accent {
    transform: translate(20%, 20%) scale(1.5);
    background: radial-gradient(circle, rgba(94, 42, 126, 0.08), transparent 70%);
}

/* Responsive adjustments for venue section */
@media (max-width: 768px) {
    .venue-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .venue-card-advanced {
        padding: 1.5rem;
    }
    
    .venue-header {
        margin-bottom: 3rem;
    }
    
    .venue-icon-wrapper {
        width: 52px;
        height: 52px;
    }
    
    .venue-icon-wrapper i {
        font-size: 1.4rem;
    }
}

@media (min-width: 1200px) {
    .venue-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

#contact {
    color: var(--ink);
}

#contact .section-title {
    color: var(--brand-dark);
}

#contact .section-intro {
    color: var(--muted);
}

.contact-header {
    text-align: left;
    margin-bottom: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    position: relative;
}

.contact-card-wrapper {
    position: relative;
}

.contact-card-advanced {
    background: var(--white);
    border-radius: 0.875rem;
    padding: 1.25rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(94, 42, 126, 0.08);
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease-out;
}

.contact-card-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.contact-card-advanced:hover::before {
    transform: scaleX(1);
}

.contact-card-advanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(94, 42, 126, 0.15);
    border-color: var(--brand-light);
}

.contact-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.contact-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.contact-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-icon-wrapper i {
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-icon-email {
    background: linear-gradient(135deg, rgba(94, 42, 126, 0.1), rgba(94, 42, 126, 0.05));
    color: var(--brand);
}

.contact-icon-email::before {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.contact-icon-phone {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 193, 7, 0.05));
    color: var(--accent);
}

.contact-icon-phone::before {
    background: linear-gradient(135deg, var(--accent), #FF9800);
}

.contact-icon-partnership {
    background: linear-gradient(135deg, rgba(94, 42, 126, 0.15), rgba(255, 193, 7, 0.1));
    color: var(--brand-dark);
}

.contact-icon-partnership::before {
    background: linear-gradient(135deg, var(--brand-dark), var(--brand));
}

.contact-icon-updates {
    background: linear-gradient(135deg, rgba(94, 42, 126, 0.12), rgba(94, 42, 126, 0.06));
    color: var(--brand);
}

.contact-icon-updates::before {
    background: linear-gradient(135deg, var(--brand), var(--accent));
}

.contact-card-advanced:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(94, 42, 126, 0.3);
}

.contact-card-advanced:hover .contact-icon-wrapper::before {
    opacity: 1;
}

.contact-card-advanced:hover .contact-icon-wrapper i {
    color: var(--white);
    transform: scale(1.1);
}

.contact-card-advanced h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--brand-dark);
    font-size: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-card-advanced:hover h4 {
    color: var(--brand);
}

.contact-description {
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.8rem;
    margin: 0 0 0.875rem 0;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.contact-action {
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0.875rem;
    border-radius: 0.5rem;
    background: rgba(94, 42, 126, 0.05);
    border: 1px solid rgba(94, 42, 126, 0.1);
    font-size: 0.85rem;
}

.contact-link:hover {
    background: var(--brand);
    color: var(--white);
    transform: translateX(4px);
    border-color: var(--brand);
    box-shadow: 0 4px 12px rgba(94, 42, 126, 0.2);
}

.contact-link i {
    transition: transform 0.3s ease;
}

.contact-link:hover i {
    transform: translateX(4px);
}

.contact-badge {
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.contact-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(94, 42, 126, 0.03), transparent 70%);
    border-radius: 50%;
    transform: translate(30%, 30%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.contact-card-advanced:hover .contact-accent {
    transform: translate(20%, 20%) scale(1.5);
    background: radial-gradient(circle, rgba(94, 42, 126, 0.08), transparent 70%);
}


/* Responsive adjustments for contact section */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .contact-card-advanced {
        padding: 1.25rem;
    }
    
    .contact-header {
        margin-bottom: 2.5rem;
    }
    
    .contact-icon-wrapper {
        width: 44px;
        height: 44px;
    }
    
    .contact-icon-wrapper i {
        font-size: 1.2rem;
    }
}

footer {
    background: #1A0A27;
    color: var(--brand-light);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.95rem;
}

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


/* Enhanced Mobile Responsiveness */
@media (max-width: 992px) {
    .section {
        padding: 3.5rem 0;
    }
    
    .section-title {
        margin-bottom: 1rem;
    }
    
    .section-intro {
        margin-bottom: 1.75rem;
    }
    
    #hero {
        text-align: center;
        padding-top: 7rem;
        padding-bottom: 4rem;
        min-height: auto;
    }
    
    #hero .row {
        align-items: center;
    }
    
    #hero .row > [class*="col-"] {
        margin-bottom: 0;
    }

    .hero-actions,
    .hero-meta,
    .hero-highlights,
    
    .hero-summary {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 2.8rem);
        margin-bottom: 1rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-image {
        transform: scale(1) translateX(0) !important;
        max-width: 100%;
        height: auto;
        min-height: auto;
        max-height: 450px;
        object-fit: cover;
        object-position: center;
        animation: none;
    }
    
    .hero-visual {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 4vw, 2.4rem);
        margin-bottom: 0.75rem;
    }
    
    .section-intro {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    .card {
        padding: 1.25rem;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 5vw, 2.2rem);
        margin-bottom: 0.875rem;
    }
    
    .section-intro {
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    
    #hero {
        padding-top: 6rem;
        padding-bottom: 3rem;
        text-align: center;
    }
    
    #hero .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    #hero .row {
        flex-direction: column-reverse;
        align-items: center;
        gap: 0;
    }
    
    #hero .row > [class*="col-"] {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    
    .hero-content {
        text-align: center;
        margin-top: 1.5rem;
        padding: 0;
    }
    
    .hero-visual {
        order: -1;
        margin-top: 0;
        margin-bottom: 1.5rem;
        width: 100%;
        padding: 0;
    }
    
    .hero-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: auto;
        max-height: 400px;
        object-fit: cover;
        object-position: center;
        transform: none !important;
        border-radius: 1rem;
        margin: 0 auto;
        display: block;
        animation: none;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        line-height: 1.2;
        text-align: center;
    }
    
    .hero-tagline {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .hero-meta {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .meta-chip {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .countdown {
        justify-content: center;
        gap: 0.4rem;
        width: 100%;
        padding: 0 1rem;
    }
    
    .countdown-box {
        padding: 0.4rem 0.3rem;
        min-width: 0;
        flex: 1 1 0;
        max-width: calc((100% - 1.2rem) / 4);
    }
    
    .count-number {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
    }
    
    .count-label {
        font-size: clamp(0.4rem, 1.2vw, 0.5rem);
    }
    
    
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 0.5rem;
    }
    
    .section-intro {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .objectives-header,
    .venue-header,
    .contact-header,
    .outcomes-header {
        margin-bottom: 2rem;
    }
    
    .objectives-grid,
    .venue-grid,
    .contact-grid {
        gap: 1rem;
    }
    
    .objective-card,
    .venue-card-advanced,
    .contact-card-advanced {
        padding: 1.25rem;
    }
    
    .pillar-card {
        padding: 1.25rem 1rem;
        margin-bottom: 1rem;
    }
    
    .card {
        padding: 1rem;
    }
    
    .about-content,
    .purpose-card {
        margin-bottom: 1.5rem;
    }
    
    .outcomes-card,
    .audience-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .navbar {
        padding: 0.75rem 1rem;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .btn-nav {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    footer {
        padding: 1.5rem 0;
        font-size: 0.85rem;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .section {
        padding: 2.5rem 0;
    }
    
    #hero {
        padding-top: 5.5rem;
        padding-bottom: 2.5rem;
    }
    
    #hero .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .hero-image {
        max-height: 300px;
        border-radius: 0.75rem;
        width: calc(100% - 1.5rem);
        max-width: calc(100% - 1.5rem);
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        line-height: 1.25;
    }
    
    .hero-tagline {
        font-size: 0.85rem;
    }
    
    .countdown {
        justify-content: center;
        gap: 0.3rem;
        width: 100%;
        padding: 0 0.75rem;
    }
    
    .countdown-box {
        padding: 0.4rem 0.25rem;
        min-width: 0;
        flex: 1 1 0;
        max-width: calc((100% - 0.9rem) / 4);
    }
    
    .count-number {
        font-size: clamp(0.85rem, 2.8vw, 1.1rem);
    }
    
    .count-label {
        font-size: clamp(0.4rem, 1.1vw, 0.5rem);
    }
    
    .hero-visual {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .meta-chip {
        font-size: 0.65rem;
        padding: 0.35rem 0.7rem;
    }
    
    .section-title {
        font-size: clamp(1.35rem, 6vw, 1.75rem);
    }
    
    .objective-card,
    .venue-card-advanced,
    .contact-card-advanced,
    .pillar-card {
        padding: 1rem;
    }
    
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* Animated Background Shapes */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(40px);
    -webkit-filter: blur(40px);
}

.bg-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--brand);
    top: -100px;
    left: -100px;
    animation: float1 20s ease-in-out infinite;
}

.bg-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 20%;
    right: -50px;
    animation: float2 25s ease-in-out infinite;
}

.bg-shape-3 {
    width: 350px;
    height: 350px;
    background: var(--brand-dark);
    bottom: -100px;
    left: 10%;
    animation: float3 30s ease-in-out infinite;
}

.bg-shape-4 {
    width: 250px;
    height: 250px;
    background: var(--brand-light);
    top: 50%;
    right: 15%;
    animation: float4 22s ease-in-out infinite;
}

.bg-shape-5 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    bottom: 20%;
    right: -50px;
    animation: float5 18s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(150px, 200px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 100px) scale(0.9);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-100px, -150px) scale(1.15);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, -200px) scale(1.05);
    }
    66% {
        transform: translate(-80px, -100px) scale(0.95);
    }
}

@keyframes float4 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(80px, 120px) scale(1.1);
    }
}

@keyframes float5 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-120px, -80px) scale(1.08);
    }
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .countdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .countdown-box {
        padding: 0.6rem 0.5rem;
        min-height: 75px;
    }
    
    .hero-image {
        transform: scale(1) translateX(0) !important;
        margin-top: 2rem;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: auto;
        border-radius: 1rem;
        animation: none;
    }
    
    .hero-visual {
        margin-top: 2rem;
        order: -1;
    }
    
    #hero .row {
        flex-direction: column-reverse;
    }
    
    #hero .row > [class*="col-"] {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-content {
        text-align: center;
        margin-top: 1.5rem;
    }

    .bg-shape {
        opacity: 0.05;
    }

    .bg-shape-1,
    .bg-shape-2,
    .bg-shape-3,
    .bg-shape-4,
    .bg-shape-5 {
        width: 200px;
        height: 200px;
    }
    
    /* Improved spacing for mobile */
    .section {
        padding: 2.5rem 0;
    }
    
    .card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .section-title {
        margin-bottom: 0.875rem;
    }
    
    .section-intro {
        margin-bottom: 1.5rem;
    }
    
    /* Better touch targets for mobile */
    .nav-link,
    .btn-nav {
        padding: 0.75rem 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Smooth animations for mobile */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Improve navbar toggler visibility */
    .navbar-toggler {
        border: 2px solid rgba(255, 255, 255, 0.5);
        padding: 0.4rem 0.6rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.3);
        border-color: var(--accent);
    }
    
    .navbar-toggler[aria-expanded="true"] {
        border-color: var(--accent);
        background: rgba(255, 193, 7, 0.1);
    }
}