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

body {
    font-family: 'Inter Fallback', Arial, Inter, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8fafc;
}

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

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    background-color: #f9f9fa;
    padding: 30px;
    text-align: center;
}

@media (min-width: 1080px) {
    .header-content {
        padding: 48px 30px
    }
}

.header-content h1 {
    font-size: 2.5rem;
    line-height: 2.6rem;
    font-weight: bold;
    color: rgb(53, 53, 53);
    margin: 0 auto;
    width: 100%;
    max-width: 1089px;

}

.header-content h1 span {
    display: block;
    font-size: 2rem;
    font-weight: normal;
}


.context-text {
    padding: 10px;
    text-align: justify;
    color: white;
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    margin-bottom: 1rem;
    line-height: 1.8;
    max-width: 100%;
}

.logo-section {
    background-color: #fff;
    padding: 32px;
    text-align: center;
}

.logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    --logo-height: 50px;
    --logo-width: auto;
}

.logo-img {
    height: var(--logo-height, 50px);
    max-width: 100%;
    width: auto;
    object-fit: contain;
    max-height: 60px;
}

/* Header Navigation */
.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    flex-wrap: wrap;
}

.nav {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav.active {
    display: flex;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: clamp(0.9rem, 3vw, 1rem);
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem;
    width: 100%;
    text-align: center;
}

.nav a:hover,
.nav a:focus {
    color: #1e3a8a;
    outline: none;
}

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

.nav a:hover::after,
.nav a:focus::after {
    width: 100%;
}

.nav-actions {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    width: 100%;
    padding: 1rem;
}

.nav-actions.active {
    display: flex;
}

.theme-toggle,
.share-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.theme-toggle {
    display: none;
}

.theme-toggle:hover,
.share-btn:hover {
    background: #f5f5f5;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-outline {
    border: 2px solid #1e3a8a;
    color: #1e3a8a;
    background: transparent;
}

.btn-outline:hover,
.btn-outline:focus {
    background: #1e3a8a;
    color: white;
}

.btn-primary {
    background: linear-gradient(135deg, #ed2024, #b01f24);
    color: white;
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.menu-toggle {
    display: block;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1e3a8a;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover,
.scroll-to-top:focus {
    background: #667eea;
    transform: translateY(-5px);
}

/* Hero Section */
.hero {
    padding: 2rem 0;
    text-align: center;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2c2b7c;
    color: white;
}

.hero-content {
    max-width: 100%;
    padding: 0 1rem;
}

.hero h1 {
    font-size: clamp(2rem, 7vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.conference-theme-badge {
    background: red;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 4vw, 1.5rem);
    color: #cccbff;
    margin-bottom: 2rem;
    margin-top: 2rem;
    font-weight: 500;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* Section Styles */
.section {
    padding: 2rem 0;
}

@media (min-width: 1080px) {
    .section {
        padding: 5rem 0;
    }
}

#about.section {
    background: #2c2b7c;
}

#themes.section {
    background: white;
}

#speakers.section {
    background: #2c2b7c;
}

#timeline.section {
    background: white;
}

#partners.section {
    background: #f5f5f5;
}

#hotel.section {
    background: white;
}

#contact.section {
    background: white;
}

.section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: #1e3a8a;
    margin-bottom: 4rem;
    margin-top: 4rem;
    position: relative;
    text-align: center;
}

.section-title1 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: white;
    margin-bottom: 6rem;
    margin-top: 4rem;
    position: relative;
    text-align: center;
}

.section-title::after,
.section-title1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: red;
    border-radius: 2px;
}

/* Campus Info Section */
.campus-info {
    padding: 2rem 0;
    max-width: 100%;
}

.campus-slider {
    position: relative;
    max-width: 100%;
    margin: 0 auto 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

.slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 80vh;
    min-height: 200px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    loading: lazy;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-btn:hover,
.slider-btn:focus {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.event-details {
    max-width: 100%;
    padding: 1.5rem 0;
}

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

.event-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    width: 100%;
    margin: 0 auto;
}

.event-card:hover,
.event-card:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.event-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: #e0f2fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: #1e3a8a;
    font-weight: 600;
}

.event-info p {
    margin: 0;
    color: #64748b;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.countdown-section {
    background: #f8fafc;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.countdown-item {
    background: white;
    border-radius: 12px;
    text-align: center;
    width: 25%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    flex: 1;
}

.countdown-content {
    padding: 24px;
}

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

.countdown-number {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: #64748b;
    font-weight: 500;
}

/* Flip Card Styles for Themes */
.themes-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
    align-items: center;
}

.theme-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
}

.theme-card {
    perspective: 1000px;
    height: 180px;
    position: relative;
    background: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
}

.theme-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.theme-card:hover .theme-card-inner,
.theme-card.touched .theme-card-inner {
    transform: rotateY(180deg);
}

.theme-card-front,
.theme-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: bold;
}

.theme-card-front {
    background: white;
    color: #1e3a8a;
}

.theme-card-back {
    background: darkblue;
    color: white;
    transform: rotateY(180deg);
}

.theme-card-front h3 {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin: 0;
}

.theme-card-back p {
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    margin: 0;
    line-height: 1.4;
}

.theme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    z-index: 1;
}

/* Speakers and Committee Members */
.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.person-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    margin: 0 auto;
    /* Added to ensure consistent minimum height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    /* Ensures content is evenly distributed */
}

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

.speaker-img,
.committee-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 3px solid #667eea;
}

.committee-img {
    border-color: #764ba2;
}

.person-card h4 {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    flex-grow: 0;
    /* Prevents h4 from stretching */
}

.person-card p {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: #64748b;
    flex-grow: 1;
    /* Allows p to take available space */
    margin: 0;
    /* Removes default margin for consistency */
}

/* Contact Logos */
.contact-logos-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Adjusted for larger logos */
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.contact-logos-list .contact-logo-img {
    height: 50px !important; /* Reasonable height with high specificity */
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 767px) {
    .contact-logos-list {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 1rem;
    }
    .contact-logos-list .contact-logo-img {
        height: 50px !important; /* Smaller height on mobile */
    }
}

/* Dark Theme */
.dark-theme {
    background: #1f2937;
    color: #f9fafb;
}

.dark-theme header {
    background: #374151;
    box-shadow: 0 2px 10px rgba(ndash, 0, 0, 0.3);
}

.dark-theme .nav a {
    color: #f9fafb;
}

.dark-theme .nav a:hover,
.dark-theme .nav a:focus {
    color: #60a5fa;
}

.dark-theme .hero {
    background: #2d3748;
}

.dark-theme .hero-subtitle {
    color: #d1d5db;
}

.dark-theme .theme-toggle,
.dark-theme .share-btn {
    border-color: #6b7280;
    color: #f9fafb;
}

.dark-theme .theme-toggle:hover,
.dark-theme .share-btn:hover {
    background: #4b5563;
}

.dark-theme .campus-info {
    background: #1f2937;
}

.dark-theme .countdown-section {
    background: #1f2937;
}

.dark-theme .event-card,
.dark-theme .countdown-item,
.dark-theme .person-card,
.dark-theme .theme-card-front {
    background: #374151;
}

.dark-theme #about.section {
    background: #1e40af;
}

.dark-theme #themes.section {
    background: #4c1d95;
}

.dark-theme #speakers.section {
    background: #164e63;
}

.dark-theme #timeline.section {
    background: #833f12;
}

.dark-theme #partners.section {
    background: #4b5563;
}

.dark-theme #hotel.section {
    background: white;
}

.dark-theme #contact.section {
    background: #4c1d95;
}

.dark-theme .event-info h4,
.dark-theme .countdown-number,
.dark-theme .person-card h4 {
    color: #60a5fa;
}

.dark-theme .event-info p,
.dark-theme .countdown-label,
.dark-theme .person-card p {
    color: #d1d5db;
}

.dark-theme .context-text {
    color: #f9fafb;
}

.dark-theme .theme-card-front {
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
    color: #f9fafb;
}

.dark-theme .theme-card-back {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
}

.dark-theme .speaker-img {
    border-color: #60a5fa;
}

.dark-theme .committee-img {
    border-color: #a78bfa;
}

.dark-theme .scroll-to-top {
    background: #60a5fa;
}

.dark-theme .scroll-to-top:hover,
.dark-theme .scroll-to-top:focus {
    background: #a78bfa;
}


.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: #6c8cd5;
    top: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

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

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

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    background: #e8f0ff;
    padding: 25px 30px;
    border-radius: 12px;
    width: 45%;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 10%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 10%;
}

.timeline-date {
    font-size: 18px;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: #6c8cd5;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
    }

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

    .timeline-item {
        flex-direction: row !important;
        margin-bottom: 40px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }

    .timeline-dot {
        left: 30px;
    }

  
}

/* Contact Cards */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.contact-card {
    background: #2c2b7c;
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: red;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.contact-card h3 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #fff;
}

.contact-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

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

.contact-info i {
    font-size: 1.3rem;
    color: #fff;
    margin-top: 2px;
    transition: transform 0.3s ease;
}

.contact-info:hover i {
    transform: rotate(15deg);
}

.contact-info strong {
    font-weight: 600;
    margin-bottom: 0.3rem;
    display: block;
}

.contact-info a {
    color: #e0e7ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Hotel Section */
.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
    justify-content: center;
    align-items: stretch;
}

.hotel-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.hotel-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #667eea;
    max-width: 100%;
}

.hotel-info {
    padding: 1.5rem;
    text-align: left;
}

.hotel-info h3 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.hotel-info p {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: #64748b;
    margin-bottom: 0.5rem;
}

.hotel-info a {
    color: #1e3a8a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hotel-info a:hover {
    color: #667eea;
    text-decoration: underline;
}

.partners-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-category {
  flex: 1; /* Each category takes equal width */
  min-width: 0; /* Prevents overflow */
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.partner-category h3 {
  margin-top: 0;
  font-size: 1.5em;
  color: #333;
  text-align: center;
}

.partner-category ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  flex-grow: 1; /* Ensures the list takes available space */
}

.partner-category li {
  font-size: 1em;
  color: darkblue;
  padding: 8px 0;
  text-align: center;
  font-weight: bold;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .partners-grid {
    flex-direction: column;
    align-items: center;
  }

  .partner-category {
    width: 100%;
    max-width: 400px;
  }
}
.partner-category li {
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    transition: transform 0.2s ease;
    font-size: clamp(0.75rem, 2vw, 0.85rem);
}

.partner-category li:hover {
    transform: translateX(5px);
    background: white;
}

/* Footer */
footer {
    background: rgba(26, 35, 126, 0.95);
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 1.5rem;
    font-size: clamp(0.75rem, 2vw, 0.85rem);
}

.footer-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

/* Media Queries for Responsiveness */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .header-nav {
        flex-direction: row;
        align-items: center;
    }

    .menu-toggle {
        display: none;
    }

    .nav {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
        width: auto;
    }

    .nav a {
        width: auto;
        padding: 0.5rem 1rem;
    }

    .nav-actions {
        display: flex;
        flex-direction: row;
        width: auto;
        padding: 0;
    }

    .btn {
        width: auto;
        max-width: none;
    }

    .hero {
        min-height: 50vh;
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: clamp(3rem, 7vw, 4rem);
    }

    .hero-subtitle {
        font-size: clamp(1.3rem, 4vw, 1.5rem);
        max-width: 700px;
    }

    .slider-container {
        max-height: 80vh;
    }

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

    .theme-row {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .contact-logos .logos {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .timeline {
        max-width: 1000px;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hotel-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logos {
        gap: 20px;
    }

    .logo-img {
        max-height: 50px;
    }

    .context-text {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        padding: 12px;
    }

    .person-card {
        min-height: 340px;
        /* Slightly larger for desktop */
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 960px;
    }

    .slider-container {
        max-height: 75vh;
    }

    .theme-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .people-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-logos .logos {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .timeline {
        max-width: 1200px;
    }

    .hotel-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .logos {
        gap: 25px;
    }

    .logo-img {
        max-height: 60px;
    }

    .context-text {
        font-size: clamp(0.95rem, 2vw, 1.1rem);
    }

    .person-card {
        min-height: 360px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1200px;
    }

    .slider-container {
        max-height: 70vh;
    }

    .contact-logos .logos {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .logos {
        gap: 30px;
    }

    .logo-img {
        max-height: 70px;
    }

    .person-card {
        min-height: 380px;
    }
}

@media (max-width: 767px) {
    .theme-row {
        grid-template-columns: 1fr;
    }

    .logos {
        gap: 10px;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }

    .logo-img {
        max-height: 40px;
        width: auto;
    }

    .context-text {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
        padding: 8px;
    }

    .slider-container {
        min-height: 150px;
        max-height: 60vh;
    }

    .slide-overlay {
        font-size: clamp(0.7rem, 2.5vw, 0.8rem);
    }

    .event-card {
        max-width: 100%;
    }

    .countdown-item {
        min-width: 70px;
        max-width: 100px;
        padding: 1rem;
    }

    .countdown-number {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }

    .people-grid {
        grid-template-columns: 1fr;
    }

    .person-card {
        min-height: 280px;
        /* Adjusted for mobile */
        max-width: 280px;
        /* Ensures consistent width */
        width: 100%;
        /* Full width within grid */
    }

    .hotel-img {
        height: 150px;
    }

    .contact-logos .logos {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    }

    .contact-logos .logo-img {
        height: 30px;
    }

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

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-content {
        margin: 0 0 1rem 40px;
        text-align: left;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0 0 1rem 40px;
        text-align: left;
    }

    .timeline-dot {
        left: 20px;
        transform: translateY(-50%);
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }

    .section-title,
    .section-title1 {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }

    .context-text {
        font-size: clamp(0.75rem, 2.8vw, 0.85rem);
    }

    .logos {
        gap: 8px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .logo-img {
        max-height: 35px;
    }

    .contact-logos .logos {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    }

    .contact-logos .logo-img {
        height: 25px;
    }

    .person-card {
        min-height: 260px;
        /* Smaller for very small screens */
        max-width: 260px;
    }
}
/* Contact Logos Static Layout */
.contact-logos {
    margin-top: 2rem;
    padding: 1rem;
    text-align: center;
}

.contact-logos-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--logo-gap, 1rem);
}

.contact-logo-img {
    height: var(--logo-height, 800px);
    
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .contact-logos-list {
        gap: var(--logo-gap, 1.5rem);
    }
    .contact-logo-img {
        height: var(--logo-height, 50px);
    }
}

@media (min-width: 1024px) {
    .contact-logo-img {
        height: var(--logo-height, 60px);
    }
}

@media (max-width: 767px) {
    .contact-logos-list {
        gap: var(--logo-gap, 0.8rem);
    }
    .contact-logo-img {
        height: var(--logo-height, 30px);
    }
}

* Bio Section */
.bio-section {
    padding: 2rem 0;
}

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

.bio-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.bio-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.bio-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    text-align: left;
   
}
.bio-text p {
    margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
    .people-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .speaker-img {
        max-height: 150px;
    }
    .person-card h4 {
        font-size: 1rem;
    }
    .bio-content h2 {
        font-size: 1.5rem;
    }
    .bio-img {
        max-width: 200px;
    }
    .bio-text {
        font-size: 0.9rem;
    }
}
.bio-content h2 {
    padding-top: 100px;
}