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

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

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Rotate Animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Slide Animation */
@keyframes slideInFromLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Wiggle Animation */
@keyframes wiggle {
    0%, 7% {
        transform: rotateZ(0);
    }
    15% {
        transform: rotateZ(-15deg);
    }
    20% {
        transform: rotateZ(10deg);
    }
    25% {
        transform: rotateZ(-10deg);
    }
    30% {
        transform: rotateZ(6deg);
    }
    35% {
        transform: rotateZ(-4deg);
    }
    40%, 100% {
        transform: rotateZ(0);
    }
}

/* Glow Animation */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.8), 0 0 30px rgba(59, 130, 246, 0.6);
    }
}

/* Wave Animation */
@keyframes wave {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(20deg);
    }
    75% {
        transform: rotate(-10deg);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll-triggered animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.zoom-in {
    animation: zoomIn 0.8s ease-out;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
/* Social Media Sidebar */
.social-links-hero {
    position: fixed;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    z-index: 999;
    padding: 1rem 0.8rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin-top: 80px;
}

.follow-text {
    color: #fff;
    font-size: 0.7rem;
    font-weight: 500;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    white-space: nowrap;
    line-height: 1.2;
    margin-bottom: 0.3rem;
    display: block;
    width: fit-content;
}

.social-links-hero .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links-hero .social-link:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.4);
}

.social-links-hero .social-link i {
    font-size: 0.9rem;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: none;
}

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

.nav-logo h2 {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

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

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #fbbf24;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fbbf24;
    transition: width 0.3s ease;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/assets/homepage.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    overflow: hidden;
    animation: heroFadeIn 2s ease-out;
    width: 100%;
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}


/* Social Media Links */
.social-links-hero {
    position: fixed;
    left: 0;
    top: 20%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    animation: slideInFromLeft 1s ease-out 2.5s both;
    z-index: 10;
    padding: 2rem 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 0 20px 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
    margin-top: 2rem;
}

.social-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: bounce 2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    background: #3b82f6;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

/* Scrolling Banner */
.scrolling-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    padding: 1rem 0;
    overflow: hidden;
    border-top: 3px solid #d97706;
}

.banner-content {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.banner-content span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes gradientShift {
    0%, 100% { background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%); }
    25% { background: linear-gradient(135deg, #f093fb 0%, #f5576c 25%, #4facfe 50%, #667eea 75%, #764ba2 100%); }
    50% { background: linear-gradient(135deg, #4facfe 0%, #667eea 25%, #764ba2 50%, #f093fb 75%, #f5576c 100%); }
    75% { background: linear-gradient(135deg, #f5576c 0%, #4facfe 25%, #667eea 50%, #764ba2 75%, #f093fb 100%); }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="2" fill="%23ffffff" opacity="0.6"/><circle cx="300" cy="200" r="1.5" fill="%23ffffff" opacity="0.4"/><circle cx="700" cy="150" r="2.5" fill="%23ffffff" opacity="0.5"/><circle cx="900" cy="400" r="1" fill="%23ffffff" opacity="0.3"/><circle cx="500" cy="600" r="2" fill="%23ffffff" opacity="0.4"/><circle cx="200" cy="800" r="1.5" fill="%23ffffff" opacity="0.5"/><circle cx="800" cy="700" r="1" fill="%23ffffff" opacity="0.3"/></svg>') repeat;
    animation: particles 20s linear infinite;
}

@keyframes particles {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.hero-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-title-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    left: 0;
    right: 0;
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 900;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
    animation: titleSlideIn 1.5s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    text-align: center;
    max-width: 100%;
    display: block;
    width: 100%;
    position: relative;
    left: 50%;
    transform: translateX(-55%);
    transition: all 0.3s ease;
}

@keyframes titleGlow {
    0% {
        background-position: 0% 50%;
        filter: brightness(1);
    }
    100% {
        background-position: 100% 50%;
        filter: brightness(1.2);
    }
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateX(-55%) translateY(-55px);
    }
    to {
        opacity: 1;
        transform: translateX(-55%) translateY(0);
    }
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-align: center;
    animation: taglineFadeIn 2s ease-out 0.5s both, taglineFloat 4s ease-in-out infinite;
}

@keyframes taglineFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

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

.hero-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: detailsSlideIn 2.5s ease-out 1s both;
}

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

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.detail-item i {
    font-size: 1.2rem;
    color: #fbbf24;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cta-button {
    background: linear-gradient(45deg, #f59e0b, #f97316);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 2rem;
    animation: sectionHeaderSlide 1s ease-out;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-header p {
    font-size: 1.2rem;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 600;
}

/* About Section */
.about {
    padding: 50px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/assets/ruslan-keba-0cgmKSeaNec-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}


.about .container {
    position: relative;
    z-index: 1;
}

.about .section-header h2 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about .section-header p {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: justify;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: statItemFloat 3s ease-in-out infinite, pulse 4s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.3s);
}

@keyframes statItemFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Agenda Section */
.agenda {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/assets/event.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.agenda::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.agenda .container {
    position: relative;
    z-index: 1;
}

.agenda-cards {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.agenda-card {
    display: flex;
    align-items: stretch;
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 80px;
    opacity: 0;
    transform: translateY(30px);
    animation: agendaCardSlideIn 0.6s ease-out forwards;
    width: 100%;
    max-width: 100%;
}

.agenda-card:nth-child(1) { animation-delay: 0.1s; }
.agenda-card:nth-child(2) { animation-delay: 0.2s; }
.agenda-card:nth-child(3) { animation-delay: 0.3s; }
.agenda-card:nth-child(4) { animation-delay: 0.4s; }
.agenda-card:nth-child(5) { animation-delay: 0.5s; }
.agenda-card:nth-child(6) { animation-delay: 0.6s; }
.agenda-card:nth-child(7) { animation-delay: 0.7s; }

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

.agenda-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.time-block {
    background: #ffd700;
    color: #000;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    text-align: center;
    height: 80px;
    flex-shrink: 0;
}

.time-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
}

.title-block {
    background: #000;
    color: white;
    padding: 20px;
    width: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    text-align: center;
    flex-shrink: 0;
}

.title-block h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: #fbbf24;
}

.participants-block {
    background: #f5f5f5;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    height: 80px;
}

.info-item {
    display: flex;
    margin-bottom: 8px;
    align-items: flex-start;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    font-weight: 600;
    color: #333;
    min-width: 50px;
    font-size: 0.9rem;
}

.info-value {
    color: #666;
    font-size: 1rem;
    margin-left: 8px;
    flex: 1;
}

/* Awards Section */
.awards {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/assets/Gemini_Generated_Image_brkyoybrkyoybrky.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.awards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="awards-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="%233b82f6" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23awards-pattern)"/></svg>') repeat;
    z-index: 0;
}


.awards .container {
    position: relative;
    z-index: 1;
}

.awards .section-header h2 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.awards .section-header p {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.award-category-center {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 400px;
}

.award-category {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.award-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.award-category i {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.3));
    transform: perspective(1000px) rotateX(15deg) rotateY(5deg);
}

.award-category:hover i {
    color: #1d4ed8;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(29, 78, 216, 0.4));
}

.award-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.award-category p {
    color: #6b7280;
    line-height: 1.6;
}

/* View All Awards Button */
.view-all-awards {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.view-all-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.view-all-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: scale(1.2);
}

/* Special Guests Section */
.special-guests {
    padding: 100px 0;
    background: url('/assets/24.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.special-guests::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, rgba(30, 41, 59, 0.03) 100%);
    z-index: 0;
}

.special-guests .container {
    position: relative;
    z-index: 1;
}

.special-guests .section-header h2 {
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.special-guests .section-header p {
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-size: 1.2rem;
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto;
}

.guests-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.guest-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2.5rem;
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.guest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700 0%, #1e293b 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.guest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(30, 41, 59, 0.15);
    border-color: #ffd700;
}

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

.guest-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1e293b;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 1;
}

.guest-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffd700;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.25);
    position: relative;
    background: #ffffff;
    padding: 4px;
    transition: all 0.4s ease;
}

.guest-card:hover .guest-image {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.35);
    border-color: #1e293b;
}

.guest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.guest-card:hover .guest-image img {
    transform: scale(1.02);
}

.guest-info {
    position: relative;
    z-index: 1;
}

.guest-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.guest-title {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
    transition: border-color 0.3s ease;
}

.guest-card:hover .guest-title {
    border-bottom-color: #ffd700;
    color: #475569;
}

.guest-bio {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.8;
    text-align: left;
    margin: 0;
}

/* Responsive Design for Special Guests */
@media (max-width: 968px) {
    .guests-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 600px;
    }

    .guest-card {
        padding: 2rem;
    }

    .special-guests .section-header h2 {
        font-size: 2rem;
    }

    .special-guests .section-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .special-guests {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .guests-grid {
        gap: 2rem;
        padding: 0 15px;
    }

    .guest-card {
        padding: 1.5rem;
    }

    .guest-image {
        width: 160px;
        height: 160px;
        margin-bottom: 1.5rem;
    }

    .guest-info h3 {
        font-size: 1.5rem;
    }

    .guest-title {
        font-size: 0.9rem;
    }

    .guest-bio {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .special-guests .section-header h2 {
        font-size: 1.75rem;
    }

    .special-guests .section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .special-guests {
        padding: 50px 0;
    }

    .guest-card {
        padding: 1.25rem;
    }

    .guest-image {
        width: 140px;
        height: 140px;
    }

    .guest-info h3 {
        font-size: 1.25rem;
    }

    .guest-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
}

/* Speakers Section */
.speakers {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/assets/pablo-heimplatz-ZODcBkEohk8-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}


.speakers .container {
    position: relative;
    z-index: 1;
}

.speakers .section-header h2 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.speakers .section-header p {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.speaker-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 1.5rem;
    padding-top: 3.5rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: visible;
    margin-top: 60px;
}

@keyframes speakerCardFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(0.5deg);
    }
    75% {
        transform: translateY(-3px) rotate(-0.5deg);
    }
}

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

.speaker-image {
    width: 100%;
    margin-bottom: 1rem;
    text-align: center;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.speaker-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #3b82f6;
    box-shadow: 0 3px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    background: #ffffff;
}

.speaker-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.speaker-info {
    width: 100%;
}

.speaker-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.4rem;
    margin-top: 0.8rem;
    text-shadow: none;
}

.speaker-title {
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.speaker-bio {
    color: #666666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.speaker-bio.expanded {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.read-more-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
}

.read-more-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}


/* Sponsors Section */
.sponsors {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
}

.sponsors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="sponsors-pattern" width="80" height="80" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="80" height="80" fill="none" stroke="%233b82f6" stroke-width="0.5" opacity="0.03"/></pattern></defs><rect width="100%" height="100%" fill="url(%23sponsors-pattern)"/></svg>') repeat;
    z-index: 0;
}


.sponsors .container {
    position: relative;
    z-index: 1;
}

.sponsors .section-header h2 {
    color: #1e293b;
    text-shadow: none;
}

.sponsors .section-header p {
    color: #475569;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.sponsor-item {
    text-align: center;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

@keyframes sponsorPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }
}

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

.sponsor-logo {
    margin-bottom: 1rem;
}

.sponsor-logo img {
    width: 100px;
    height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.sponsor-item:hover .sponsor-logo img {
    transform: scale(1.05);
}

.sponsor-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
    text-shadow: none;
}

.sponsor-link {
    display: inline-block;
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid #3b82f6;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: rgba(59, 130, 246, 0.1);
}

.sponsor-link:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

/* Venue Section */
.venue {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.venue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="venue-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23venue-pattern)"/></svg>') repeat;
    z-index: 0;
}

.venue .container {
    position: relative;
    z-index: 1;
}

.venue-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 60vh;
}

.venue-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.venue-address {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.venue-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
    animation: slideInFromLeft 1s ease-out, glow 3s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.2s);
}

.detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

.detail i {
    color: #3b82f6;
    font-size: 1.2rem;
    animation: rotate 4s linear infinite;
}

.venue-map {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-container {
    height: 400px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.map-info {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.map-info .venue-location {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

/* Fallback for map placeholder */
.map-placeholder {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    color: rgba(255, 255, 255, 0.9);
    animation: shimmer 2s ease-in-out infinite;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #3b82f6;
    animation: float 3s ease-in-out infinite, pulse 2s ease-in-out infinite;
}

.map-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-placeholder .venue-location {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    line-height: 1.4;
    max-width: 300px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    position: relative;
    overflow: visible;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="contact-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23contact-pattern)"/></svg>') repeat;
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-item i {
    font-size: 1.5rem;
    color: #3b82f6;
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 2s ease-in-out infinite, bounce 4s ease-in-out infinite, rotate 8s linear infinite;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
    animation: pulse 3s ease-in-out infinite, glow 4s ease-in-out infinite;
}

.submit-button:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

/* Contact Social Media Icons */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

.contact .social-links .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4f46e5;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    cursor: pointer;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.contact .social-links .social-link:hover {
    background: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.contact .social-links .social-link i {
    font-size: 1.2rem;
}

/* Professional Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Enhanced Hover Effects */
.card-hover {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-hover:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Professional Button Animations */
.btn-animated {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

/* Staggered Animation for Grid Items */
.stagger-animation {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.stagger-animation:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation:nth-child(4) { animation-delay: 0.4s; }
.stagger-animation:nth-child(5) { animation-delay: 0.5s; }
.stagger-animation:nth-child(6) { animation-delay: 0.6s; }

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: #4f46e5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3730a3;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-text p {
    color: #9ca3af;
}

.footer-text a {
    color: #4f46e5;
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
        transform: translateX(-50%);
    }
    
    .hero-content {
        padding: 0 40px;
    }
    
    .agenda-card {
        height: 70px;
    }
    
    .time-block, .title-block, .participants-block {
        height: 70px;
    }
    
    .time-block {
        width: 200px;
        padding: 15px;
    }
    
    .title-block {
        width: 350px;
        padding: 15px;
    }
    
    .time-text {
        font-size: 1.2rem;
    }
    
    .title-block h3 {
        font-size: 1rem;
    }
    
    .awards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .speakers-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-content {
        padding: 0 30px;
    }
    
    .agenda-card {
        height: 65px;
    }
    
    .time-block, .title-block, .participants-block {
        height: 65px;
    }
    
    .time-block {
        width: 180px;
        padding: 12px;
    }
    
    .title-block {
        width: 300px;
        padding: 12px;
    }
    
    .time-text {
        font-size: 1.1rem;
    }
    
    .title-block h3 {
        font-size: 0.95rem;
    }
    
    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .speakers-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .agenda-card {
        flex-direction: column;
        height: auto;
        min-height: 150px;
    }
    
    .time-block, .title-block, .participants-block {
        width: 100%;
        height: 50px;
    }
    
    .time-block {
        border-radius: 12px 12px 0 0;
    }
    
    .participants-block {
        border-radius: 0 0 12px 12px;
        height: auto;
        min-height: 60px;
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .speakers-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .social-links-hero {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .hero-title {
        font-size: 2rem;
        white-space: nowrap;
        text-align: center;
        line-height: 1.1;
        padding: 0 1rem;
        transform: translateX(-50%);
    }

    .hero-tagline {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        text-align: center;
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-details {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        align-items: center;
    }

    .countdown-container {
        flex-wrap: wrap;
        gap: 1rem;
        margin: 2rem 0;
        padding: 0 1rem;
        justify-content: center;
        align-items: center;
    }

    .countdown-item {
        text-align: center;
        flex: 1;
        min-width: 120px;
        padding: 1rem 1.5rem;
        max-width: 120px;
    }

    .countdown-number {
        font-size: 2rem;
    }

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

    .social-links-hero {
        position: fixed;
        left: 0;
        top: 20%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        z-index: 10;
        padding: 2rem 0.8rem;
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 0 20px 20px 0;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
        margin-top: 2rem;
    }

    .social-label {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        font-size: 0.75rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
        letter-spacing: 3px;
        margin-bottom: 1rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .social-icons {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.3);
        animation: bounce 2s ease-in-out infinite;
        animation-delay: calc(var(--i) * 0.1s);
        font-size: 0.8rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .about {
        padding: 50px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        order: -1;
        margin-bottom: 2rem;
        flex-direction: row;
        justify-content: space-around;
        gap: 1rem;
    }

    .stat-item {
        flex: 1;
        text-align: center;
        padding: 1rem 0.5rem;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .stat-item p {
        font-size: 0.9rem;
    }

    .about-text {
        order: 1;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: left;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        padding-left: 50px;
    }

    .timeline-item:nth-child(odd) {
        flex-direction: column;
    }

    .agenda {
        padding: 60px 0;
    }

    .agenda-cards {
        padding: 0 1rem;
    }

    .agenda-card {
        flex-direction: column;
        text-align: center;
        height: auto;
        min-height: 200px;
    }

    .time-block {
        width: 100%;
        border-radius: 12px 12px 0 0;
        height: 60px;
    }

    .title-block {
        width: 100%;
        border-radius: 0;
        height: 60px;
    }

    .participants-block {
        height: auto;
        min-height: 80px;
    }

    .participants-block {
        min-width: 100%;
        border-radius: 0 0 12px 12px;
    }

    .timeline-item {
        flex-direction: column !important;
        margin-bottom: 2rem;
        padding-left: 50px;
    }

    .timeline-item::before {
        left: 10px;
        width: 20px;
        height: 20px;
    }

    .timeline-time {
        flex: none;
        width: 100%;
        margin-bottom: 1rem;
        font-size: 1.1rem;
        padding: 1rem;
        min-height: 60px;
    }

    .timeline-content {
        margin: 0;
        padding: 1.5rem;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    .venue-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .venue-info {
        text-align: center;
    }

    .venue-details {
        justify-content: center;
        align-items: center;
    }

    .venue-map {
        text-align: center;
    }

    .contact {
        padding: 50px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        width: 100%;
        padding: 0 1rem;
    }

    .contact-info {
        text-align: center;
        gap: 1.5rem;
        width: 100%;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .contact-item i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .contact-item h4 {
        font-size: 1rem;
    }

    .contact-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .contact-form {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 1.5rem;
        box-sizing: border-box;
    }

    .social-links {
        gap: 1rem;
        margin-top: 2rem;
        padding: 1.5rem 0;
    }

    .social-links .social-link {
        width: 45px;
        height: 45px;
    }

    .social-links .social-link i {
        font-size: 1.1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 0.9rem;
    }

    .submit-button {
        padding: 12px;
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
        margin-top: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
        text-align: center;
    }

    .section-header p {
        font-size: 1rem;
        text-align: center;
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
        white-space: nowrap;
        text-align: center;
        transform: translateX(-50%);
    }
    
    .agenda-card {
        flex-direction: column;
        height: auto;
        min-height: 140px;
    }
    
    .time-block, .title-block, .participants-block {
        width: 100%;
        height: 45px;
    }
    
    .time-block {
        border-radius: 12px 12px 0 0;
    }
    
    .participants-block {
        border-radius: 0 0 12px 12px;
        height: auto;
        min-height: 50px;
    }
    
    .time-text {
        font-size: 1rem;
    }
    
    .title-block h3 {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 1.5rem;
        white-space: nowrap;
        text-align: center;
        line-height: 1.1;
        padding: 0 0.5rem;
        transform: translateX(-50%);
    }
    
    .agenda-card {
        flex-direction: column;
        height: auto;
        min-height: 120px;
    }
    
    .time-block, .title-block, .participants-block {
        width: 100%;
        height: 40px;
    }
    
    .time-block {
        border-radius: 12px 12px 0 0;
    }
    
    .participants-block {
        border-radius: 0 0 12px 12px;
        height: auto;
        min-height: 45px;
    }
    
    .time-text {
        font-size: 0.9rem;
    }
    
    .title-block h3 {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.2rem;
        white-space: nowrap;
        text-align: center;
        line-height: 1.1;
        padding: 0 0.5rem;
        transform: translateX(-50%);
    }

    .about {
        padding: 30px 0;
    }

    .about-content {
        gap: 1.5rem;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .stat-item {
        flex: 1;
        text-align: center;
        padding: 0.8rem 0.3rem;
    }

    .stat-item h3 {
        font-size: 1.3rem;
    }

    .stat-item p {
        font-size: 0.7rem;
    }

    .about-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .section-header {
        margin-bottom: 1.5rem;
        margin-top: 0.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .section-header p {
        font-size: 0.9rem;
        text-align: center;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        justify-items: center;
    }

    .award-category {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .speakers-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.2rem;
        justify-items: center;
    }

    .speaker-card {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 1.2rem;
        padding-top: 3rem;
        margin-top: 60px;
    }

    .speaker-image {
        top: -60px;
    }

    .speaker-image img {
        width: 100px;
        height: 100px;
    }

    .contact {
        padding: 30px 0;
    }

    .contact-item {
        padding: 0.8rem;
        gap: 0.3rem;
    }

    .contact-item i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .contact-item h4 {
        font-size: 0.9rem;
    }

    .contact-item p {
        font-size: 0.8rem;
    }

    .contact-form {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 0.85rem;
    }

    .submit-button {
        padding: 10px;
        font-size: 0.9rem;
    }

    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        justify-items: center;
        max-width: 100%;
        overflow: hidden;
    }

    .sponsor-item {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

}

/* Event Agenda Responsive Styles */
@media (max-width: 1200px) {
    .agenda {
        padding: 50px 0;
    }
    
    .agenda-cards {
        padding: 0 0.5rem;
    }
    
    .agenda-card {
        margin-bottom: 15px;
        height: 80px;
    }
    
    .time-block {
        padding: 15px;
        height: 80px;
        width: 120px;
    }
    
    .time-text {
        font-size: 1.3rem;
    }
    
    .title-block {
        padding: 15px;
        height: 80px;
        width: 250px;
    }
    
    .title-block h3 {
        font-size: 1rem;
    }

    .participants-block {
        height: 80px;
    }
    
    .participants-block {
        padding: 15px;
    }
    
    .timeline-time {
        flex: 0 0 180px;
        font-size: 1.1rem;
        padding: 0.9rem 0.7rem;
        min-height: 55px;
    }
    
    .timeline-content {
        padding: 1rem;
        margin: 0 1.2rem;
    }
    
    .timeline-content h3 {
        font-size: 1rem;
    }
    
    .timeline-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 1000px) {
    .agenda {
        padding: 40px 0;
    }
    
    .timeline {
        max-width: 95%;
    }
    
    .timeline-item {
        margin-bottom: 1rem;
    }
    
    .timeline-time {
        flex: 0 0 160px;
        font-size: 1rem;
        padding: 0.8rem 0.6rem;
        min-height: 50px;
    }
    
    .timeline-content {
        padding: 0.9rem;
        margin: 0 1rem;
    }
    
    .timeline-content h3 {
        font-size: 0.95rem;
    }
    
    .timeline-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 900px) {
    .agenda {
        padding: 30px 0;
    }
    
    .timeline {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .timeline::before {
        left: 30px;
        width: 3px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        margin-bottom: 1.2rem;
        padding-left: 60px;
    }

    .timeline-time {
        width: 100%;
        margin-bottom: 0.8rem;
        font-size: 0.9rem;
        padding: 0.8rem;
        min-height: 45px;
    }

    .timeline-content {
        margin: 0;
        padding: 1rem;
    }

    .timeline-content h3 {
        font-size: 1rem;
    }

    .timeline-content p {
        font-size: 0.8rem;
    }
    
    .timeline-item::before {
        left: 20px;
        width: 18px;
        height: 18px;
    }
    
    .timeline-time {
        flex: none;
        width: 100%;
        margin-bottom: 0.8rem;
        font-size: 0.9rem;
        padding: 0.8rem;
        min-height: 45px;
    }
    
    .timeline-content {
        margin: 0;
        padding: 1rem;
    }
    
    .timeline-content h3 {
        font-size: 1rem;
    }
    
    .timeline-content p {
        font-size: 0.8rem;
    }
}

/* Extra small screens - show full title */
@media (max-width: 700px) {
    .hero-title {
        font-size: 1.4rem;
        white-space: nowrap;
        line-height: 1.1;
        padding: 0 0.5rem;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 1.1rem;
        white-space: nowrap;
        line-height: 1.1;
        padding: 0 0.5rem;
    }
    
    .agenda {
        padding: 20px 0;
    }
    
    .timeline {
        padding: 0 0.5rem;
    }
    
    .timeline::before {
        left: 15px;
        width: 2px;
    }
    
    .timeline-item {
        padding-left: 40px;
        margin-bottom: 1rem;
    }
    
    .timeline-item::before {
        left: 5px;
        width: 16px;
        height: 16px;
    }
    
    .timeline-time {
        font-size: 0.8rem;
        padding: 0.6rem;
        min-height: 40px;
    }
    
    .timeline-content {
        padding: 0.8rem;
    }
    
    .timeline-content h3 {
        font-size: 0.9rem;
    }
    
    .timeline-content p {
        font-size: 0.75rem;
    }
}

@media (max-width: 500px) {
    .hero-title {
        font-size: 0.9rem;
        line-height: 1.1;
        padding: 0 0.25rem;
    }
    
    .agenda {
        padding: 15px 0;
    }
    
    .timeline {
        padding: 0 0.25rem;
    }
    
    .timeline::before {
        left: 10px;
        width: 2px;
    }
    
    .timeline-item {
        padding-left: 30px;
        margin-bottom: 0.8rem;
    }
    
    .timeline-item::before {
        left: 0px;
        width: 14px;
        height: 14px;
    }
    
    .timeline-time {
        font-size: 0.75rem;
        padding: 0.5rem;
        min-height: 35px;
    }
    
    .timeline-content {
        padding: 0.7rem;
    }
    
    .timeline-content h3 {
        font-size: 0.8rem;
    }
    
    .timeline-content p {
        font-size: 0.7rem;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 0.8rem;
        line-height: 1.1;
        padding: 0 0.25rem;
        transform: translateX(-50%);
    }
    
    .agenda-card {
        flex-direction: column;
        height: auto;
        min-height: 100px;
    }
    
    .time-block, .title-block, .participants-block {
        width: 100%;
        height: 35px;
    }
    
    .time-block {
        border-radius: 12px 12px 0 0;
    }
    
    .participants-block {
        border-radius: 0 0 12px 12px;
        height: auto;
        min-height: 40px;
    }
    
    .time-text {
        font-size: 0.8rem;
    }
    
    .title-block h3 {
        font-size: 0.7rem;
    }
}

@media (max-width: 350px) {
    .hero-title {
        font-size: 0.7rem;
        line-height: 1.1;
        padding: 0 0.25rem;
        transform: translateX(-50%);
    }
    
    .contact-content {
        padding: 0 0.5rem;
    }
    
    .contact-form {
        padding: 0.8rem;
    }
    
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .agenda-card {
        flex-direction: column;
        height: auto;
        min-height: 90px;
    }
    
    .time-block, .title-block, .participants-block {
        width: 100%;
        height: 30px;
    }
    
    .time-block {
        border-radius: 12px 12px 0 0;
    }
    
    .participants-block {
        border-radius: 0 0 12px 12px;
        height: auto;
        min-height: 35px;
    }
    
    .time-text {
        font-size: 0.7rem;
    }
    
    .title-block h3 {
        font-size: 0.6rem;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .award-category {
        padding: 0.8rem;
    }
    
    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .speaker-card {
        padding: 0.8rem;
        padding-top: 2.5rem;
        margin-top: 50px;
    }
    
    .speaker-image {
        top: -50px;
    }
    
    .speaker-image img {
        width: 80px;
        height: 80px;
    }
    
    .speaker-info h3 {
        font-size: 1rem;
    }
    
    .speaker-title {
        font-size: 0.8rem;
    }
    
    .speaker-bio {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .read-more-btn {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced Button Styles */
button, .sponsor-link {
    position: relative;
    overflow: hidden;
}

/* Glowing Text Effect */

@keyframes glow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #4f46e5;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3730a3;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 28px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 15px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-size: 32px;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 15px;
    z-index: -1;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-btn:hover::before {
    background: linear-gradient(135deg, #128C7E 0%, #0D6B5A 100%);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Fluid Typography for Better Responsiveness */
@media (max-width: 1400px) {
    .hero-title {
        font-size: 4.2rem;
    }
}

@media (max-width: 1300px) {
    .hero-title {
        font-size: 3.8rem;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 1100px) {
    .hero-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 1000px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 800px) {
    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 700px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .agenda-card {
        flex-direction: column;
        height: auto;
        min-height: 130px;
    }
    
    .time-block, .title-block, .participants-block {
        width: 100%;
        height: 45px;
    }
    
    .time-block {
        border-radius: 12px 12px 0 0;
    }
    
    .participants-block {
        border-radius: 0 0 12px 12px;
        height: auto;
        min-height: 50px;
    }
    
    .time-text {
        font-size: 1rem;
    }
    
    .title-block h3 {
        font-size: 0.9rem;
    }
}
    


/* Mobile responsiveness for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float i {
        font-size: 24px;
    }
}
