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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8B4513;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #8B4513;
}

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

.cta-btn {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(97, 52, 19, 0.3);
}

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

/* Hero Section */
.hero {
    /* gradient overlay using #353889 over the background image */
    background: linear-gradient(135deg, rgba(53,56,137,0.85) 90%, rgba(53,56,137,0.65) 100%), url('assests/background.jpg') center/cover;
    color: white;
    padding: 150px 2rem 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(210, 105, 30, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-citation {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    width: min(92%, 980px);
    font-size: 0.72rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    z-index: 1;
    pointer-events: none;
}

.hero-subtitle {
    font-size: 2rem;
    color: #FFD700;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

/* Hero logo replacing subtitle */
.hero-logo {
    margin-bottom: 1rem;
}
.hero-logo img {
    height: 220px;
    max-width: 100%;
    object-fit: contain;
}

.hero-title {
    font-size: 1.6rem;
    /* margin-bottom: 1rem; */
    font-weight: 700;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-description-highlight {
    display: inline-block;
    font-size: 1.55rem;
    font-weight: 500;
    color: #FFD700;
    line-height: 1.1;
    margin-right: 0.35rem;
    margin-bottom: 1rem;
}

.hero-image-caption {
    margin: 0 auto 2rem;
    max-width: 700px;
    padding: 1rem 1.2rem;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    text-align: left;
    backdrop-filter: blur(4px);
    
}

.caption-title {
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-size: 0.1rem;
}

.caption-text {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

/* Hero Button & QR Wrapper */
.hero-button-qr-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Hero QR Code */
.hero-qr {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-qr img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

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

.hero-button {
    display: inline-block;
    background: linear-gradient(135deg, #08b133, #0e690b);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.hero-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 1.5rem 75px;
    }

    .hero-title {
        font-size: 1.9rem;
    }

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

    .hero-logo img {
        height: 90px;
    }

    .hero-meta {
        gap: 1.5rem;
    }

    .hero-image-caption {
        text-align: center;
    }

    .hero-citation {
        font-size: 0.02rem;
        bottom: 0.5rem;
        width: 94%;
    }
}

/* Sections */
section {
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: #F8AD0A;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
}
.section-title1 {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: #F8AD0A;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
}

.speakers .section-title,
.speakers .section-title1 {
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #D2691E, transparent);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}
.section-subtitle1 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Sponsors & Knowledge Partners Section */
.sponsors-partners {
    background: white;
    padding: 60px 2rem;
}

.sponsors-partners-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sponsors-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a472a;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.sponsors-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    border-radius: 2px;
}

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

/* Official Sponsors: anchor background color */
.official-sponsor-link {
    display: inline-block;
    background: #c7fba0;
    padding: 0.75rem;
    border-radius: 12px;
}

/* .sponsor-logo-wrap {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(6, 30, 15, 0.08);
    border: 1px solid rgba(139, 69, 19, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    min-height: 120px;
} */

/* .sponsor-logo-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(6, 30, 15, 0.14);
} */

.sponsor-logo {
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .sponsors-title {
        font-size: 1.5rem;
    }

    .sponsor-logo-wrap {
        min-width: 160px;
        min-height: 100px;
        padding: 1rem;
    }
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.about-card h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-card p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Objectives Section */
.objectives {
    background: rgba(255, 255, 255, 0.199);
}

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

.objective-item {
    background: linear-gradient(135deg, #f0f0f0, #fff);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #8B4513;
    transition: transform 0.3s;
}

.objective-item:hover {
    transform: translateX(10px);
}

.objective-item::before {
    content: '✓';
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #8B4513;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 1rem;
    font-weight: bold;
}

/* Key Takeaways */
.key-takeaways {
    background: white;
}

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

.takeaway-card {
    background: linear-gradient(135deg, #353889, #5255aa);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.takeaway-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(173, 148, 8, 0.836);
    border-radius: 50%;
    transition: all 0.3s;
}

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

.takeaway-card:hover::before {
    top: -20%;
    right: -20%;
}

.takeaway-card p {
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* Speakers Section */
.speakers {
    position: relative;
    text-align: justify;
    overflow: hidden;
}

.speakers-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.speakers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.205), rgba(0, 0, 0, 0.212));
    z-index: 1;
    pointer-events: none;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.speakers-content {
    max-width: 1000px;
    margin: 2rem auto 0;
    background: linear-gradient(180deg, rgba(37, 37, 27, 0.137), rgba(255,255,255,0.02));
    padding: 1.75rem 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.692);
    color: #243b2b;
    position: relative;
    z-index: 2;
}

.speakers-content p {
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.speakers-topics {
    margin: 0.5rem 0 1rem 1.2rem;
    color: #ffffff;
}

.speakers-topics li {
    margin: 0.45rem 0;
    /* color: #00A0E3; */
}
.speakers-topics li strong {
    margin: 0.45rem 0;
    color: #c7bb13;
}

.speakers-content p.speakers-note {
    font-weight: 700;
    color: #F8AD0A;
    margin-top: 0.75rem;
}

.speaker-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

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

.speaker-name {
    font-size: 1.3rem;
    color: #20462d;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.speaker-title {
    color: #8B4513;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.speaker-affiliation {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.speaker-contact {
    font-size: 0.85rem;
    color: #999;
    word-break: break-all;
}
.speakers-note {
    font-weight: 700;
    color: #F8AD0A;
    margin-top: 0.75rem;
    text-align: center;
    position: relative;
    z-index: 2;
    position: relative;
    padding: 1.75rem 2rem;
}

/* Patrons Section */
.patrons {
    background: linear-gradient(180deg, #fbfcfa 0%, #f4f8f2 100%);
}

.patrons-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1.75rem;
    margin-top: 3rem;
    
}

@media (min-width: 769px) {
    .patrons-grid {
        justify-content: center;
        max-width: 1100px;
        margin: 3rem auto 0;
    }

    .patrons-grid .patron-card,
    .conveners-grid .patron-card {
        flex: 0 0 calc((100% - 3.5rem) / 3);
        max-width: calc((100% - 3.5rem) / 3);
    }
}

.patron-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(18, 40, 26, 0.1);
    border: 1px solid rgba(26, 71, 42, 0.08);
    text-align: center;
    flex: 0 1 260px;
    width: min(100%, 260px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.patron-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(18, 40, 26, 0.15);
}

.patron-image-wrap {
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, #e9f2ea, #f6f9f4);
    overflow: hidden;
}

.patron-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.patron-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: -1rem;
    padding: 0.48rem 0.95rem;
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 18px rgba(18, 40, 26, 0.18);
}

.patron-badge-chief {
    background: linear-gradient(135deg, #8b4513, #d2691e);
}

.patron-badge-co-chief {
    background: linear-gradient(135deg, #1a472a, #2d5a3d);
}

.patron-badge-regular {
    background: linear-gradient(135deg, #596a55, #7c8d76);
}

.patron-badge-convener {
    background: linear-gradient(135deg, #1f6f78, #2f9b89);
}

.patron-badge-co-convener {
    background: linear-gradient(135deg, #5f7f35, #8aab4d);
}

.patron-card h3 {
    margin: 1rem 1.1rem 0.45rem;
    color: #1a472a;
    font-size: 1.12rem;
    line-height: 1.35;
}

.patron-designation {
    margin: 0 1.1rem 1.25rem;
    color: #666;
    font-size: 0.94rem;
    line-height: 1.65;
}
/* Make guest speaker card and image wider */
.guest-speaker-section .patron-card {
    flex: 0 1 340px;
    width: min(100%, 340px);
}

.guest-speaker-section .patron-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}


/* Convener Section */
.conveners {
    background: #ffffff;
}

@media (min-width: 769px) {
    .conveners-grid {
        justify-content: center;
        max-width: 860px;
        margin: 3rem auto 0;
    }
}

/* Organising Committee Section */
.committee {
    background: #ffffff;
}

.committee-table-wrapper {
    margin-top: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
    background: #ffffff;
}

.committee-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.committee-table th,
.committee-table td {
    padding: 0.95rem 1rem;
    text-align: left;
    border-bottom: 1px solid #ebebeb;
    font-size: 0.95rem;
}

.committee-table th {
    background: linear-gradient(135deg, #1a472a, #2d5a3d);
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.committee-table tbody tr:nth-child(even) {
    background: #f8fbf9;
}

.committee-table tbody tr:hover {
    background: #eef7f0;
}

.committee-table td:first-child {
    width: 80px;
    font-weight: 600;
    color: #1a472a;
}

.committee-photo {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    border: 2px solid rgba(26, 71, 42, 0.08);
}

.committee-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Schedule Section */
.schedule {
    background: white;
}

.schedule-container {
    margin-top: 3rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.schedule-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    padding: 2rem;
    border-bottom: 1px solid #eee;
    transition: background 0.3s;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item:hover {
    background: #f9f9f9;
}

.schedule-time {
    font-weight: 700;
    color: #8B4513;
    font-size: 0.95rem;
}

.schedule-content h4 {
    color: #1a472a;
    margin-bottom: 0.5rem;
}

.schedule-content p {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .schedule-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .patrons-grid {
        justify-content: center;
        gap: 1.25rem;
    }

    .patron-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Important Dates */
.important-dates {
    background: linear-gradient(135deg, #2f307a, #094a70);
    color: white;
}

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

.date-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.date-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.date-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
}

/* Pricing */
.pricing {
    background: white;
}

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

.pricing-card {
    border: 2px solid #eee;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    border-color: #8B4513;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
}

.pricing-category {
    font-size: 1.2rem;
    color: #1a472a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-amount {
    font-size: 2.5rem;
    color: #8B4513;
    font-weight: 700;
    margin: 1rem 0;
}

.pricing-amount::after {
    content: ' INR';
    font-size: 1rem;
    color: #666;
}

.pricing-offer {
    position: relative;
    max-width: 860px;
    margin: 2rem auto 0;
    margin-top: 2rem;
    padding: 1.5rem 1.5rem 1.5rem 1.75rem;
    border-radius: 16px;
    border: 1px solid rgba(139, 69, 19, 0.18);
    background: linear-gradient(135deg, rgba(182, 159, 127, 0.96), rgba(255, 255, 255, 0.98));
    box-shadow: 0 12px 28px rgba(139, 69, 19, 0.08);
    overflow: hidden;
    animation: offerBlink 1.8s ease-in infinite;
    text-align: center;
}

.pricing-offer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(248, 173, 10, 0.18) 50%, transparent 100%);
    transform: translateX(-120%);
    animation: offerShimmer 4s ease-in-out infinite;
    pointer-events: none;
}

.pricing-offer-badge {
    display: block;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    margin: 0 auto 0.85rem;
    width: fit-content;
    margin-bottom: 0.85rem;
    position: relative;
    z-index: 1;
}

.pricing-offer p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #334;
    font-size: 1.15rem;
    line-height: 1.85;
}

.pricing-offer-line {
    animation: none;
}

.pricing-offer-line-secondary {
    animation-delay: 0.35s;
    font-weight: 700;
}

.pricing-offer-line strong {
    color: #1a472a;
}

.pricing-offer p + p {
    margin-top: 0.65rem;
}

.offer-highlight {
    display: inline-block;
    padding: 0.18rem 0.55rem;
    text-align: center;
    border-radius: 9px;
    background: #F8AD0A;
    color: #1f1f1f;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(248, 173, 10, 0.28);
}

.offer-highlight-blink {
    animation: none;
}

@keyframes offerBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.55;
    }
}

@keyframes offerShimmer {
    0% {
        transform: translateX(-120%);
    }
    45% {
        transform: translateX(120%);
    }
    100% {
        transform: translateX(120%);
    }
}

/* General Information */
.general-info {
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,249,246,0.96));
    padding: 3rem 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(6, 30, 15, 0.06);
    border-left: 6px solid #F8AD0A;
    text-align:justify;
}

.general-info-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 3rem;
    align-items: start;
    color: #2f4236;
}

.general-info-content h3,
.general-info-content h4 {
    margin: 0 0 0.5rem 0;
    color: #20462d;
}

.general-info-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.general-info-content li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 0.6rem;
    line-height: 1.6;
    color: #444;
}

.general-info-content li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    top: 0;
    color: #F8AD0A;
    font-weight: 800;
    font-size: 1.15rem;
    line-height: 1;
}

.general-info-content a {
    color: #8B4513;
    font-weight: 700;
    text-decoration: underline;
}

.general-info h3 {
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .general-info-content {
        grid-template-columns: 1fr;
        gap: 1rem 0;
    }

    .general-info {
        padding: 2rem 1.25rem;
    }
}

.general-info-qr {
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.qr-card {
    background: #fff;
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(6, 30, 15, 0.06);
    border: 1px solid rgba(26, 71, 42, 0.04);
    width: 100%;
    max-width: 260px;
}

.qr-image {
    width: 160px;
    height: 160px;
    object-fit: contain;
    display: block;
    margin: 0 auto 0.6rem auto;
}

.qr-caption {
    font-weight: 700;
    color: #20462d;
    margin-bottom: 0.5rem;
}

.qr-card .registration-link {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 768px) {
    .qr-card {
        max-width: 100%;
    }
}

/* Contact Section */
.contact {
    background: #ffffff;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    flex: 1;
    min-width: 200px;
}

.contact-item h4 {
    color: #1a472a;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
}

.contact-item a {
    color: #8B4513;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #D2691E;
}

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

/* Mountain Section */
.mountain-section {
    background: linear-gradient(135deg, #0f268b, #2d5a3d);
    color: white;
    
    padding: 60px 2rem;
}

.col-cemca-section {
    background:
        radial-gradient(circle at top left, rgba(248, 173, 10, 0.18), transparent 28%),
        linear-gradient(135deg, #f7f4ea 0%, #eef5ee 100%);
    color: #17324d;
    padding: 72px 2rem;
}

.col-cemca-section .mountain-content {
    gap: 2.5rem;
}

.col-cemca-section .mountain-image-box {
    justify-content: flex-start;
}

.col-cemca-section .mountain-image {
    max-width: 470px;
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(19, 46, 72, 0.18);
}

.col-cemca-section .mountain-title {
    color: #0f268b;
}

.col-cemca-section .mountain-text {
    color: #2f3f4f;
    line-height: 1.9;
}

.col-cemca-section .mountain-text + .mountain-text {
    margin-top: 1rem;
}
.guest-speaker-section {
    /* background: linear-gradient(135deg, #9fa1a5, #3b6477); */
    background-color: white;
    color: white;
    
    padding: 60px 2rem;
}
.guest-speaker-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1.75rem;
    margin-top: 3rem;
}
.mountain-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
   
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mountain-text-box {
    /* text-align: left; */
     text-align: justify;
}
    
.mountain-image-box {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.mountain-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.mountain-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: #F8AD0A;
}

.mountain-text {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.9;
}

.about-university-more {
    margin-top: 1rem;
}

.about-university-more summary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    cursor: pointer;
    color: #FFD700;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.55rem 1rem;
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    width: fit-content;
}

.about-university-more summary::-webkit-details-marker {
    display: none;
}

.about-university-more summary::after {
    content: '+';
    font-size: 1.1rem;
    line-height: 1;
}

.about-university-more[open] summary::after {
    content: '−';
}

.about-university-more-content {
    margin-top: 1rem;
}

.about-university-achievements {
    margin-bottom: 0;
}

.achievement-highlight {
    color: #FFD700;
    font-weight: 700;
}

@media (max-width: 768px) {
    .col-cemca-section {
        padding: 56px 1.25rem;
    }

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

    .mountain-text-box {
        text-align: center;
    }

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

    .mountain-text {
        font-size: 0.95rem;
    }

    .about-university-more summary {
        font-size: 0.95rem;
    }
}

/* Rankings Carousel */
.rankings-carousel-section {
    /* background: linear-gradient(135deg, #2c5eca, #2d5a3d); */
    padding: 60px 2rem 2rem;
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    padding:1rem;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.carousel-item {
    min-width: 200px;
    flex-shrink: 0;
}

.carousel-item img {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    object-fit: contain;
}

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

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 8 - 2rem * 7));
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-width: 200px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-200px * 4 - 2rem * 4));
        }
    }
}

/* Registration CTA */
.registration-cta {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    margin: 2rem;
    border-radius: 10px;
}

.registration-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.registration-cta p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.registration-link {
    display: inline-block;
    background: white;
    color: #8B4513;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.registration-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.3);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.5);
}

.scroll-to-top.show {
    display: flex;
}

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

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

/* Video Gallery */
.video-gallery {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98));
}

/* Image Gallery */
.image-gallery {
    background: linear-gradient(180deg, rgba(245, 248, 243, 0.98), rgba(255, 255, 255, 0.98));
}

.video-carousel {
    position: relative;
    margin-top: 2.5rem;
}

.image-carousel {
    position: relative;
    margin-top: 2.5rem;
}

.video-gallery-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.25rem 0.2rem;
    scrollbar-width: none;
}

.video-gallery-grid::-webkit-scrollbar {
    display: none;
}

.image-gallery-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.25rem 0.2rem;
    scrollbar-width: none;
}

.image-gallery-grid::-webkit-scrollbar {
    display: none;
}

.video-card {
    background: #fff;
    flex: 0 0 calc((100% - 3rem) / 3);
    min-width: 260px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(6, 30, 15, 0.08);
    border: 1px solid rgba(139, 69, 19, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(6, 30, 15, 0.14);
}

.video-card-link {
    position: relative;
    display: block;
    text-decoration: none;
}

.video-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.video-card-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.35));
}

.video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 74px;
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

.video-caption {
    padding: 1rem 1rem 1.15rem;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #324;
}

.video-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #8B4513;
    font-size: 1.35rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    z-index: 2;
}

.video-carousel-btn-prev {
    left: -0.6rem;
}

.video-carousel-btn-next {
    right: -0.6rem;
}

.video-carousel-btn:hover {
    background: #fff;
    color: #5f2f0f;
}

.image-card {
    background: #fff;
    flex: 0 0 calc((100% - 3rem) / 3);
    min-width: 260px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(6, 30, 15, 0.08);
    border: 1px solid rgba(139, 69, 19, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
}

.image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(6, 30, 15, 0.14);
}

.image-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.image-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #8B4513;
    font-size: 1.35rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    z-index: 2;
}

.image-carousel-btn-prev {
    left: -0.6rem;
}

.image-carousel-btn-next {
    right: -0.6rem;
}

.image-carousel-btn:hover {
    background: #fff;
    color: #5f2f0f;
}

@media (max-width: 768px) {
    .video-gallery-grid {
        gap: 1rem;
        padding: 0.15rem;
    }

    .video-card {
        flex-basis: 85%;
    }

    .video-carousel-btn,
    .image-carousel-btn {
        display: none;
    }

    .image-gallery-grid {
        gap: 1rem;
        padding: 0.15rem;
    }

    .image-card {
        flex-basis: 85%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    section {
        padding: 50px 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
    .section-title1 {
        font-size: 0.8rem;
    }

    .objectives-grid,
    .takeaways-grid,
    .speakers-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .committee-table th,
    .committee-table td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

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