/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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 */
.nav-container {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    transition: all 0.3s ease;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 80px;
}

.nav-container.scrolled {
    background: rgba(1, 65, 124, 0.95);
    border-radius: 25px;
    padding: 12px 25px;
    margin: 0 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(1, 65, 124, 0.3);
}

.nav-logo-left {
    transition: all 0.3s ease;
    flex: 0 0 180px;
    display: flex;
    justify-content: flex-start;
}

.nav-logo-right {
    transition: all 0.3s ease;
    flex: 0 0 180px;
    display: flex;
    justify-content: flex-end;
}

.logo-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 180px;
}

.logo-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.initiative-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo {
    height: 50px;
    width: 160px;
    object-fit: contain;
}

.ncss-logo {
    width: 160px;
}

.meity-logo {
    width: 160px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    background: transparent;
    border-radius: 0;
    padding: 8px 0;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    max-width: 600px;
    margin: 0 20px;
}

.nav-menu.scrolled {
    background: rgba(1, 65, 124, 0.95);
    border-radius: 25px;
    padding: 12px 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(1, 65, 124, 0.3);
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 18px;
    border-radius: 20px;
    margin: 0 2px;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-link:hover {
    color: #01417C;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

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

.register-btn {
    background: #01417C;
    padding: 12px 24px;
    border-radius: 25px;
    color: #fff !important;
    font-weight: 600;
    margin-left: 15px;
    box-shadow: 0 4px 15px rgba(1, 65, 124, 0.3);
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 65, 124, 0.3);
    background: rgba(255, 255, 255, 0.9);
    color: #01417C !important;
}

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

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

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #01417c 0%, #0a2a5c 30%, #1a3a6e 60%, #01417c 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: 
        linear-gradient(135deg, rgba(1, 65, 124, 0.75) 0%, rgba(10, 42, 92, 0.7) 30%, rgba(26, 58, 110, 0.65) 60%, rgba(1, 65, 124, 0.75) 100%),
        url('image1.gif') no-repeat center center,
        url('image.webp') no-repeat center center;
    background-size: 100% 100%, cover, cover;
    background-position: center, center, center;
    background-blend-mode: multiply, screen, multiply;
    opacity: 0.9;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 38, 78, 0.6);
    z-index: 1;
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(1, 65, 124, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 65, 124, 0.12) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 25s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(1, 65, 124, 0.7);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(1, 65, 124, 0.5);
}

.floating-particles::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-particles::after {
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.6; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 1200px;
    padding: 0 20px;
    margin-top: 120px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
}

.title-main {
    display: block;
    color: #DF193A;
    font-family: 'Futura', 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5), 
                 0 0 30px rgba(255, 255, 255, 0.3), 
                 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.title-year {
    display: block;
    font-size: 4rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    margin-top: 10px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #fff;
}

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.4rem;
}

.detail-item i {
    color: #fff;
    width: 20px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #01417C;
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(1, 65, 124, 0.3);
}

.btn-secondary {
    background: #01417C;
    color: #fff;
    border: 2px solid #01417C;
}

.btn-secondary:hover {
    background: #0a2a5c;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(1, 65, 124, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(-45deg); }
    40% { transform: translateY(-10px) rotate(-45deg); }
    60% { transform: translateY(-5px) rotate(-45deg); }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #01417C;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: #01417C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Past Events Section */
.past-events {
    background: #fff;
    padding: 100px 0;
    overflow: hidden;
}

.past-events-slider {
    margin-top: 60px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    animation: slideRightToLeft 30s linear infinite;
    width: calc(200% + 40px);
}

.slide {
    flex: 0 0 300px;
    margin-right: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.slide:hover {
    transform: translateY(-10px);
}

.slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

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

.slider-track:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .slide {
        flex: 0 0 250px;
        margin-right: 15px;
    }
    
    .slide img {
        height: 150px;
    }
    
    @keyframes slideRightToLeft {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
}

@media (max-width: 480px) {
    .slide {
        flex: 0 0 200px;
        margin-right: 10px;
    }
    
    .slide img {
        height: 120px;
    }
}

/* Speakers Section */
.speakers {
    background: #fff;
}

.speaker-category {
    margin-bottom: 80px;
}

.category-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #01417C;
    border-radius: 2px;
}

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

.featured-speaker {
    position: relative;
}

.speaker-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.speaker-card:hover {
    transform: translateY(-10px);
}

.speaker-image {
    height: 250px;
    background: #01417C;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    font-size: 4rem;
}

.speaker-image::before {
    content: '👤';
    opacity: 0.7;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.speaker-info {
    padding: 30px;
    text-align: center;
}

.speaker-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.speaker-title {
    color: #01417C;
    font-weight: 500;
    margin-bottom: 15px;
}

.speaker-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.speaker-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.speaker-social a {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
}

.speaker-social a:hover {
    background: #01417C;
    color: #fff;
}

/* Participants Grid */
.participants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.participant-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    border-left: 4px solid #01417C;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.participant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(1, 65, 124, 0.1);
}

.participant-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.participant-info h4::before {
    content: '👥';
    font-size: 1.2rem;
}

.participant-info ul {
    list-style: none;
    padding: 0;
}

.participant-info li {
    color: #666;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.participant-info li::before {
    content: '▸';
    color: #01417C;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Sponsors Section */
.sponsors-section {
    background: #f8f9fa;
    padding: 100px 0 120px 0;
}

/* Sponsorship Section */
.sponsorship {
    background: #fff;
    padding: 100px 0;
}

.sponsorship-content {
    max-width: 1200px;
    margin: 0 auto;
}

.sponsorship-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.sponsorship-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 30px;
}

.sponsorship-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.sponsorship-benefits {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #01417C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.benefit-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.benefit-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.sponsorship-cta {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #01417C;
}

.cta-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.cta-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .sponsorship-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cta-card {
        padding: 30px 20px;
    }
}

.sponsor-category {
    margin-bottom: 60px;
}

.sponsor-category-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.sponsor-category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #01417C;
    border-radius: 2px;
}

.sponsors-grid {
    display: grid;
    gap: 30px;
    width: 100%;
    margin: 0 auto 40px auto;
    place-items: center;
}

.title-sponsors {
    grid-template-columns: 1fr;
    max-width: 300px;
}

.platinum-sponsors {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
}

.gold-sponsors {
    grid-template-columns: repeat(5, 1fr);
    max-width: 1200px;
}

.silver-sponsors {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1000px;
}

.academic-partners {
    grid-template-columns: repeat(5, 1fr);
    max-width: 1200px;
}

.sponsor-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 120px;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.15);
}

.sponsor-logo {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.sponsor-card:hover .sponsor-logo {
    filter: grayscale(0%);
}

.title-sponsors .sponsor-logo {
    max-width: 150px;
    max-height: 80px;
}

.platinum-sponsors .sponsor-logo {
    max-width: 130px;
    max-height: 70px;
}

.sponsor-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sponsor-cta h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.sponsor-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Agenda Section */
.agenda {
    background: #f8f9fa;
}

.agenda-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.agenda-timeline::before {
    content: '';
    position: absolute;
    left: 150px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #01417C;
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 141px;
    top: 10px;
    width: 20px;
    height: 20px;
    background: #01417C;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px #01417C;
}

.timeline-time {
    width: 130px;
    font-weight: 600;
    color: #01417C;
    font-size: 0.9rem;
    padding-top: 5px;
}

.timeline-content {
    flex: 1;
    margin-left: 40px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Awards Section */
.awards {
    background: #f8f9fa;
}

.awards-content {
    max-width: 1200px;
    margin: 0 auto;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

@media (max-width: 1200px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }
}

.award-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(1, 65, 124, 0.15);
}

.award-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #01417C, #0a2a5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(1, 65, 124, 0.3);
}

.award-icon i {
    font-size: 2rem;
    color: #fff;
}

.award-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.award-summary {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
    font-size: 1rem;
}

.award-details {
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.award-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
    font-size: 0.95rem;
}

.award-criteria {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: left;
    font-size: 0.95rem;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #01417C;
}

.award-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
}

.read-more-btn {
    background: transparent;
    border: 2px solid #01417C;
    color: #01417C;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.read-more-btn:hover {
    background: #01417C;
    color: #fff;
    transform: translateY(-2px);
}

.read-more-btn.expanded {
    background: #01417C;
    color: #fff;
}

.nomination-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid #e9ecef;
}

.nomination-details h3,
.nomination-guidelines h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #01417C;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.step-content p {
    color: #666;
    line-height: 1.5;
}

.dates-list,
.criteria-list {
    list-style: none;
    padding: 0;
}

.dates-list li,
.criteria-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #666;
    line-height: 1.5;
}

.dates-list i,
.criteria-list i {
    color: #01417C;
    width: 16px;
}

.dates-list strong {
    color: #333;
}

/* Registration Section */
.registration {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #fff;
}

.registration .section-title,
.registration .section-subtitle {
    color: #fff;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #DF193A;
    margin-bottom: 10px;
}

.price-note {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
    text-align: left;
}

.features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #ccc;
    line-height: 1.5;
}

.features i {
    color: #fff;
    width: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.features .fa-times {
    color: #ff6b6b;
}

.pricing-card .btn {
    margin-top: auto;
    align-self: center;
}

/* Contact Section */
.contact {
    background: #f8f9fa;
}

.contact-content {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    width: 100%;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #01417C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.contact-details p {
    color: #666;
    margin-bottom: 5px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #01417C;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #01417C;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #01417C;
}

.footer-section ul li i {
    color: #01417C;
    width: 20px;
    margin-right: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #01417C;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        flex-wrap: nowrap;
    }
    
    .nav-logo-left,
    .nav-logo-right {
        flex: 0 0 auto;
    }
    
    .logo-container {
        max-width: 120px;
        padding: 8px 10px;
    }
    
    .logo {
        height: 35px;
        width: 110px;
    }
    
    .initiative-text {
        font-size: 0.6rem;
        margin-bottom: 4px;
    }
    
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(1, 65, 124, 0.98);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding: 100px 0 20px;
        backdrop-filter: blur(10px);
        margin: 0;
        max-width: none;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 15px 20px;
        margin: 5px 0;
        font-size: 1.1rem;
        border-radius: 0;
        width: 100%;
        display: block;
    }
    
    .register-btn {
        margin: 20px auto 0;
        display: inline-block;
        width: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-year {
        font-size: 3rem;
    }
    
    .hero-details {
        align-items: flex-start;
    }
    
    .detail-item {
        justify-content: flex-start;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content,
    .venue-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .speakers-grid {
        grid-template-columns: 1fr;
    }
    
    .agenda-timeline::before {
        left: 20px;
    }
    
    .timeline-item::before {
        left: 11px;
    }
    
    .timeline-time {
        width: auto;
        margin-bottom: 10px;
    }
    
    .timeline-content {
        margin-left: 50px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .title-year {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .timeline-content {
        margin-left: 30px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

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

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}
