:root {
    /* Modern Color Palette */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #ec4899;
    --secondary-dark: #db2777;
    --accent: #14b8a6;
    --accent-dark: #0d9488;

    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    /* Text Colors */
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-light: #64748b;

    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-dark: #0f172a;

    /* Border & Shadow */
    --border: #e2e8f0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);

    /* Fonts */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.nav-brand a {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

/* .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
} */

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    opacity: 0.1;
    animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-30px, -30px) rotate(180deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 32px;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.3;
    z-index: 1;
}

.hero-image-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-image-content i {
    font-size: 64px;
    margin-bottom: 16px;
}

/* Introduction Section */
.intro-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 48px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.intro-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Featured Symposium */
.featured-symposium {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.symposium-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.symposium-image {
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 40px;
    position: relative;
}

.symposium-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://picsum.photos/seed/symposium/600/800.jpg') center/cover;
    opacity: 0.8;
    z-index: -1;
}

.symposium-content {
    padding: 48px;
}

.symposium-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.symposium-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.symposium-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.meta-item i {
    color: var(--primary);
    width: 20px;
}

.symposium-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--text-secondary);
}

.symposium-buttons {
    display: flex;
    gap: 16px;
}

/* Key Focus Areas */
.focus-areas {
    padding: 80px 0;
    background: var(--bg-primary);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.focus-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

.focus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.focus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.focus-card:hover::before {
    transform: scaleX(1);
}

.focus-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.focus-card h3 {
    margin-bottom: 16px;
    color: var(--text-primary);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-content h2 {
    margin-bottom: 32px;
    color: var(--text-primary);
}

.about-mission,
.about-vision {
    margin-top: 40px;
    padding: 32px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.about-mission h3,
.about-vision h3 {
    color: var(--primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-mission h3 i,
.about-vision h3 i {
    color: var(--secondary);
}

.mission-list {
    list-style: none;
    margin-top: 16px;
}

.mission-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.mission-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-box {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Leadership & Faculty Section - Eye-catching Redesign */
.doctors-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    position: relative;
}

.doctors-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%236366f1" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.doctors-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.doctors-intro p {
    font-size: 18px;
    color: var(--text-secondary);
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.doctor-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    transform-style: preserve-3d;
}

.doctor-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.doctor-card.featured-doctor {
    border: 3px solid var(--secondary);
    transform: scale(1.02);
}

.doctor-card.featured-doctor::before {
    content: 'Featured';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient-secondary);
    color: white;
    padding: 6px 40px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.doctor-header {
    padding: 40px 30px 30px;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.doctor-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.doctor-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.doctor-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.doctor-title-info {
    text-align: center;
    position: relative;
    z-index: 2;
}

.doctor-title-info h3 {
    margin-bottom: 8px;
    color: white;
    font-size: 24px;
}

.doctor-specialty {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 6px;
    font-weight: 500;
    color: white;
}

.doctor-affiliation {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.4;
    color: white;
}

.doctor-bio {
    padding: 32px;
    max-height: 350px;
    overflow-y: auto;
    position: relative;
}

.doctor-bio::-webkit-scrollbar {
    width: 6px;
}

.doctor-bio::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
    border-radius: 3px;
}

.doctor-bio::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 3px;
}

.doctor-bio p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.doctor-bio strong {
    color: var(--primary);
    font-weight: 600;
}

.doctor-footer {
    padding: 20px 32px;
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.doctor-expertise {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.expertise-tag {
    padding: 4px 12px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
}

.doctor-social {
    display: flex;
    gap: 12px;
}

.doctor-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.doctor-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Symposia Section - Updated with IndusInsight2025 */
.symposia-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.symposium-detail {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.symposium-header {
    padding: 48px;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.symposium-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.symposium-header h3 {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    font-size: 2rem;
}

.symposium-info {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.symposium-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.symposium-info-item i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.symposium-info-item span {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.symposium-body {
    padding: 48px;
}

.symposium-section {
    margin-bottom: 40px;
}

.symposium-section h4 {
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
}

.symposium-section h4 i {
    color: var(--secondary);
}

.symposium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.symposium-grid-item {
    background: var(--bg-tertiary);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.symposium-grid-item h5 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.symposium-grid-item ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.symposium-grid-item li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.symposium-grid-item li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.keynote-speakers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.speaker-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.speaker-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.speaker-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.speaker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.speaker-info h5 {
    color: var(--primary);
    margin: 0 0 4px 0;
    font-size: 1.1rem;
}

.speaker-info p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.speaker-topic {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.speaker-topic h6 {
    color: var(--secondary);
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.speaker-topic p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
    font-style: italic;
}

/* Distinguished Speakers & Experts Section */
.distinguished-speakers {
    margin-top: 20px;
}

.distinguished-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.distinguished-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.distinguished-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.distinguished-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.distinguished-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
}

.distinguished-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.distinguished-card:hover .distinguished-image img {
    transform: scale(1.05);
}

.distinguished-content {
    padding: 20px;
}

.distinguished-content h5 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.distinguished-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.distinguished-content .specialty {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.program-highlights {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 24px;
    border-radius: 12px;
    margin-top: 20px;
}

.program-highlights h5 {
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-highlights ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.program-highlights li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.program-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.expected-outcomes {
    background: var(--bg-tertiary);
    padding: 24px;
    border-radius: 12px;
    margin-top: 20px;
}

.expected-outcomes h5 {
    color: var(--primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.expected-outcomes ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.expected-outcomes li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.expected-outcomes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 20px;
    line-height: 1;
}

.registration-info {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    padding: 24px;
    border-radius: 12px;
    margin-top: 20px;
    border: 2px dashed var(--primary);
}

.registration-info h5 {
    color: var(--primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.registration-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.registration-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.registration-item i {
    color: var(--primary);
    width: 20px;
}

.registration-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.symposium-action {
    text-align: center;
    margin-top: 40px;
}

/* Programs Section */
.programs-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.program-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.program-intro p {
    font-size: 18px;
    color: var(--text-secondary);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.program-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.program-card h3 {
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.program-card h3 i {
    color: var(--secondary);
}

.program-card ul {
    list-style: none;
}

.program-card li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.program-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.partner-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.partner-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    /* background: var(--gradient-primary); */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.partner-card h3 {
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.partner-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info h3 i {
    color: var(--secondary);
}

.contact-person {
    margin: 24px 0;
    padding: 24px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.contact-person h4 {
    color: var(--primary);
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--bg-tertiary);
    transform: translateX(5px);
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item a {
    color: var(--text-secondary);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.required {
    color: var(--secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.partner-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.partner-logo {
    width: 200px;
    height: 100px;
    margin: 0 auto 24px;
    /* background: var(--gradient-primary); */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-card h3 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: 25px;
}

.partner-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info h3 i {
    color: var(--secondary);
}

.contact-person {
    margin: 24px 0;
    padding: 24px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.contact-person h4 {
    color: var(--primary);
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--bg-tertiary);
    transform: translateX(5px);
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item a {
    color: var(--text-secondary);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.required {
    color: var(--secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
    display: inline-block;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .symposium-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .symposium-card,
    .doctors-grid,
    .focus-grid,
    .programs-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .symposium-card {
        grid-template-columns: 1fr;
    }

    .symposium-image {
        min-height: 200px;
    }

    .registration-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .doctor-card {
        margin: 0 -10px;
        border-radius: 20px 20px 0 0;
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- NEW STYLES FOR POST-EVENT CONTENT --- */

/* Video Showcase Section */
.video-showcase {
    padding: 40px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-info {
    padding: 16px;
}

.video-info h5 {
    color: var(--primary);
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.video-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Photo Gallery & Lightbox */
.gallery-section {
    padding: 40px 0;
}

.gallery-category {
    margin-bottom: 40px;
}

.gallery-category h4 {
    border-left: 4px solid var(--secondary);
    padding-left: 12px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--secondary);
}

/* Event Narrative / Blog Post */
.event-narrative {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
    border: 1px solid var(--border);
}

.narrative-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
}

.narrative-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.narrative-highlight {
    background: var(--bg-tertiary);
    border-left: 4px solid var(--accent);
    padding: 20px;
    font-style: italic;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}


/* Specific Styles for Blog Post Layout */
.article-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding: 120px 0 60px;
    text-align: center;
}

.article-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    color: var(--text-secondary);
    font-weight: 500;
}

.article-content {
    padding: 60px 0;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.article-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.article-content p {
    margin-bottom: 24px;
}

.article-image {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-image caption {
    display: block;
    text-align: center;
    padding: 10px;
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.9rem;
    background: #f9f9f9;
}

.highlight-box {
    background: #f0f9ff;
    border-left: 5px solid var(--primary);
    padding: 30px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.cta-box {
    background: var(--bg-dark);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin-top: 60px;
}

.cta-box h3 {
    color: white;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Fix nav links for sub-page */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
}


/* Program Agenda Styles */
.program-agenda {
    background: var(--bg-tertiary);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.program-agenda h3 {
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.program-agenda ul {
    list-style-type: none;
    padding-left: 0;
}

.program-agenda li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border);
    display: flex;
}

.program-agenda li:before {
    content: "•";
    color: var(--secondary);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 10px;
}

/* Video Section Styles */
.video-section {
    margin: 40px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-info {
    padding: 16px;
}

.video-info h5 {
    color: var(--primary);
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.video-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Photo Gallery Styles */
.gallery-section {
    margin: 40px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--secondary);
}

/* Call to Action Box */
.cta-box {
    background: var(--gradient-primary);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin-top: 60px;
}

.cta-box h3 {
    color: white;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cta-buttons .btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

/* Keynote Speakers Grid */
.keynote-speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.keynote-speaker-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.keynote-speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.keynote-speaker-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.keynote-speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.keynote-speaker-card:hover .keynote-speaker-image img {
    transform: scale(1.05);
}

.keynote-speaker-info {
    padding: 25px;
}

.keynote-speaker-info h3 {
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 1.4rem;
}

.keynote-speaker-title {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.keynote-speaker-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Distinguished Speakers Grid */
.distinguished-speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.distinguished-speaker-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.distinguished-speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.distinguished-speaker-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.distinguished-speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.distinguished-speaker-card:hover .distinguished-speaker-image img {
    transform: scale(1.05);
}

.distinguished-speaker-info {
    padding: 20px;
}

.distinguished-speaker-info h3 {
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 1.2rem;
}

.distinguished-speaker-title {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.distinguished-speaker-description {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
}
