/* ========================================
   BT Oman CFO Forum & Awards 2025
   Main Stylesheet
   ======================================== */

/* === CSS Variables === */
:root {
    /* Purple/Blue gradient colors from event logo */
    --primary-purple: #5B2C91;
    --primary-blue: #1E4C8F;
    --primary-cyan: #00BCD4;
    --secondary-purple: #7C3AED;
    --text-white: #FFFFFF;
    --text-gray: #CBD5E0;
    --text-dark: #1A202C;
    
    /* Main gradients matching logo background */
    --gradient-primary: linear-gradient(135deg, #5B2C91 0%, #1E4C8F 100%);
    --gradient-secondary: linear-gradient(90deg, #1E4C8F 0%, #00BCD4 100%);
    --gradient-hero: linear-gradient(135deg, #5B2C91 0%, #1E4C8F 50%, #00BCD4 100%);
}

/* === Global Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(91, 44, 145, 0.98) 0%, rgba(30, 76, 143, 0.98) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(91, 44, 145, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-white);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-cyan);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.btn-register {
    background: var(--gradient-accent);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-white) !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-register::after {
    display: none;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    margin: 3px 0;
    transition: 0.3s;
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    overflow: hidden;
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-image removed - clean background */
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-tech);
    opacity: 0.3;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-white);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid var(--primary-cyan);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    animation: pulse 2s ease infinite;
}

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

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 50px;
    color: var(--accent-gold);
}

/* === Countdown Timer === */
.countdown-section {
    margin: 50px 0;
}

.countdown-section h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--accent-gold);
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 25px 30px;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.countdown-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.countdown-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.countdown-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    margin-top: 10px;
}

/* === Buttons === */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(91, 44, 145, 0.4);
}

.btn-primary:hover {
    background: var(--gradient-hero);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(91, 44, 145, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--primary-cyan);
}

.btn-secondary:hover {
    background: var(--primary-cyan);
    color: var(--primary-purple);
}

.btn-lg {
    padding: 20px 50px;
    font-size: 18px;
}

/* === Event Info === */
.event-info {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-white);
}

/* === Highlights Section === */
.highlights {
    padding: 100px 0;
    background: #F7FAFC;
}

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

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    font-weight: 400;
}

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

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.stat-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.stat-sublabel {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 5px;
}

.stat-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

/* === Vision Section === */
.vision-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--text-white);
}

.vision-content {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.vision-badge {
    margin-bottom: 20px;
}

.vision-text h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-cyan);
    margin-bottom: 15px;
}

.vision-text h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.3;
}

.vision-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.vision-image {
    position: relative;
}

.vision-image img {
    width: 100%;
    height: auto;
    min-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* === Themes Section === */
.themes-section {
    padding: 100px 0;
    background: white;
}

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

.theme-card {
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.theme-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    background: white;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.theme-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.theme-icon img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 15px;
}

.theme-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.theme-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* === Why Attend Section === */
.why-attend {
    padding: 100px 0;
    background: #F7FAFC;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.attend-image {
    text-align: center;
    margin-top: 60px;
}

.attend-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 900px;
}

/* === CTA Section === */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-tech);
    opacity: 0.2;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-white);
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* === Footer === */
.footer {
    background: var(--primary-purple);
    color: var(--text-white);
    padding: 60px 0 20px;
}

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

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-cyan);
}

.footer-col p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

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

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

.footer-col ul li a {
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-cyan);
}

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

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

.social-links a:hover {
    background: var(--primary-cyan);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logos {
    text-align: center;
}

.footer-logos p {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-logos img {
    height: 50px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    color: var(--text-gray);
    font-size: 14px;
}

.copyright a {
    color: var(--primary-cyan);
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }
    
    .vision-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--primary-purple);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 0;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
    }
    
    .countdown-box {
        min-width: 100px;
        padding: 20px;
    }
    
    .countdown-number {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .vision-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vision-text h2 {
        font-size: 36px;
    }
    
    .vision-text h3 {
        font-size: 24px;
    }
    
    .vision-image img {
        min-height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 30px;
    }
    
    .agenda-theme-banner {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .agenda-theme-banner h2 {
        font-size: 24px;
    }
    
    .agenda-item {
        padding: 20px;
    }
    
    .agenda-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .countdown-box {
        min-width: 80px;
        padding: 15px;
    }
    
    .countdown-number {
        font-size: 28px;
    }
}

/* === Additional Page Styles === */

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background: var(--gradient-primary);
    text-align: center;
    color: var(--text-white);
}

.page-header h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    color: var(--text-gray);
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.highlight-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.highlight-featured {
    background: linear-gradient(135deg, #FF6B35 0%, #FFB841 100%);
    color: white;
}

.highlight-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.highlight-featured h3 {
    color: white;
}

.forum-illustration {
    text-align: center;
    margin-top: 60px;
}

.forum-illustration img {
    max-width: 800px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Who Should Attend */
.who-attend-section {
    padding: 100px 0;
    background: white;
}

.attendee-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}

.category-icon img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.category-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 20px;
    text-align: center;
}

.category-card ul {
    list-style: none;
}

.category-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-gray);
}

.category-card ul li:last-child {
    border-bottom: none;
}

/* Agenda Styles */
.agenda-section {
    padding: 100px 0;
    background: #F7FAFC;
}

.agenda-theme-banner {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-cyan) 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(88, 28, 135, 0.2);
}

.agenda-theme-banner h2 {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.agenda-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.agenda-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-cyan);
    transition: all 0.3s ease;
}

.agenda-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.agenda-time {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-cyan);
    margin-bottom: 10px;
}

.agenda-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 10px;
}

.agenda-description {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Speakers Page Styles */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.chief-guest-section {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 3px solid #FF6B35;
}

.chief-guest-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F0 100%);
    border: 3px solid #FF6B35;
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.2) !important;
}

.chief-guest-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(255, 107, 53, 0.3) !important;
}

.speaker-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

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

.speaker-card.moderator-card {
    border: 3px solid var(--primary-cyan);
}

.speaker-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #F7FAFC;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-purple);
    margin: 15px 0 10px;
}

.speaker-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-cyan);
    margin: 5px 0;
}

.speaker-company {
    font-size: 15px;
    color: var(--text-gray);
    margin: 5px 0 15px;
}

.speaker-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 15px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-cyan) 100%);
    color: white;
}

.speaker-badge.keynote {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
}

.speaker-badge.moderator {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #06D6A0 100%);
}

.speaker-badge.panelist {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #5B4F9E 100%);
}

@media (max-width: 768px) {
    .speakers-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .speaker-image {
        width: 150px;
        height: 150px;
    }
    
    .speaker-name {
        font-size: 20px;
    }
    
    .speaker-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Panel Discussion Styles */
.panel-section {
    padding: 100px 0;
    background: white;
}

.panel-grid {
    display: grid;
    gap: 40px;
}

.panel-card {
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--primary-cyan);
}

.panel-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.panel-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.panel-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.panel-participants {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.panel-participants h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 10px;
}

.panel-participants p {
    font-size: 14px;
    color: var(--text-gray);
}

.panel-opportunity {
    background: rgba(255, 107, 53, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.panel-opportunity h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-cyan);
    margin-bottom: 10px;
}

/* Awards Styles */
.awards-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.award-category {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.award-category:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.award-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.award-category h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-purple);
}

/* Contact Form */
.contact-section {
    padding: 100px 0;
    background: #F7FAFC;
}

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

.contact-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

.registration-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
}

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

/* Speakers Grid */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.speaker-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.speaker-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.speaker-info {
    padding: 30px;
}

.speaker-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 5px;
}

.speaker-title {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.speaker-bio {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Sponsors Section */
.sponsor-tiers {
    max-width: 1000px;
    margin: 0 auto;
}

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

.sponsor-tier h3 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-purple);
}

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

    max-height: 80px;
    width: auto;
}

/* Past Events */
.past-event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.past-event-header {
    background: var(--gradient-primary);
    padding: 40px;
    text-align: center;
    color: white;
}

.past-event-header h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.past-event-content {
    padding: 40px;
}

.past-event-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.gallery-image {
    border-radius: 10px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-image img:hover {
    transform: scale(1.1);
}


/* Past Events Gallery with Names */
.past-event-gallery .gallery-item-with-name {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.past-event-gallery .gallery-item-with-name:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.past-event-gallery .gallery-item-with-name .gallery-image {
    margin-bottom: 0;
}

.past-event-gallery .gallery-item-with-name p {
    margin: 0;
    padding-top: 10px;
}

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 35px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

    max-height: 50px;
    width: auto;
    object-fit: contain;
}

    max-height: 45px;
    max-width: 280px;
}

    color: rgba(255, 255, 255, 0.3);
    font-size: 24px;
    font-weight: 300;
    margin: 0 5px;
}

/* Responsive */
@media (max-width: 1024px) {
        max-height: 40px;
    }
    
        max-height: 38px;
        max-width: 220px;
    }
    
        font-size: 20px;
    }
}

@media (max-width: 768px) {
        gap: 15px;
        padding: 25px 15px;
    }
    
        max-height: 35px;
    }
    
        max-height: 33px;
        max-width: 180px;
    }
    
        display: none;
    }
}

/* Clean up - remove all sponsor strip styles */
.footer-partners-strip,
.footer-logos-row,
.footer-logo-item,
.partner-logos-inline,
.sponsor-logo,
.partner-logo-box,
.partner-separator,
.partner-logo-img,
.partner-logo-wide {
    display: none !important;
}

/* Single Footer Logo */
.footer-single-logo {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

.footer-single-logo img {
    max-width: 200px;
    height: auto;
    display: inline-block;
}

/* Dual Footer Logos */
.footer-dual-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    flex-wrap: wrap;
}

.footer-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-item img {
    max-width: 200px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

.footer-logo-separator {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .footer-single-logo img {
        max-width: 160px;
    }
    
    .footer-dual-logos {
        gap: 30px;
        padding: 25px 0;
    }
    
    .footer-logo-item img {
        max-width: 150px;
        max-height: 60px;
    }
    
    .footer-logo-separator {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .footer-dual-logos {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-logo-separator {
        display: none;
    }
    
    .footer-logo-item img {
        max-width: 140px;
    }
}

/* Social Media Icons */
.social-links a i::before {
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: white;
}

.icon-linkedin::before {
    content: "in";
    font-weight: bold;
}

.icon-twitter::before {
    content: "𝕏";
}

.icon-facebook::before {
    content: "f";
    font-weight: bold;
}

/* Better icon visibility */
.social-links a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}
