/* Conferences Page Styles */
.conferences-page-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #fff;
    padding: 80px 20px;
}

.conferences-page-container {
    margin: 0 auto;
    text-align: center;
}

.conferences-page-title {
    font-family: "Maven Pro", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #0072DA;
    margin: 0 0 60px 0;
    line-height: 1.2;
}

.conferences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.conference-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
    border: 1px solid #f0f0f0;
}

.conference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 114, 218, 0.15);
}

.conference-card-title {
    font-family: "Maven Pro", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #0072DA;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.conference-speaker {
    font-family: Georgia, serif;
    font-size: 16px;
    color: #525252;
    margin: 0 0 30px 0;
    font-style: italic;
}

.conference-dates {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.conference-date {
    font-family: "Maven Pro", sans-serif;
    font-size: 16px;
    color: #525252;
    font-weight: 500;
}

.conference-link {
    font-family: "Maven Pro", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ff7f3f;
    text-decoration: none;
    transition: all 0.3s ease;
}

.conference-link:hover {
    color: #ff6b2b;
    text-decoration: underline;
}

/* CTA Section Styling */
.conferences-cta-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 4rem 1rem;
    background: #f8f9fa;
    overflow: hidden;
    margin-top: 80px;
}

.conferences-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.conferences-cta-background {
    max-width: 800px;
    width: 100%;
    padding: 4rem 3rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #4A90E2 0%, #0072DA 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 114, 218, 0.2);
}

.conferences-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.conferences-cta-subtitle {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-family: "Maven Pro", sans-serif;
    text-transform: uppercase;
}

.conferences-cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-family: "Maven Pro", sans-serif;
    color: white;
}

.conferences-cta-button {
    display: inline-block;
    background: white;
    color: #0072DA;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: "Maven Pro", sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.conferences-cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: #0072DA;
    text-decoration: none;
}

.cta-shape-left {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.8;
}

.cta-shape-left img {
    width: 200px;
    height: auto;
    display: block;
}

.cta-shape-right {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.7;
}

.cta-shape-right img {
    width: 250px;
    height: auto;
    display: block;
}

/* Scroll to Top Button Styles */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #0072DA;
    color: white;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top-btn:hover {
    background-color: #005bb5;
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .conferences-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .conferences-page-wrapper {
        padding: 60px 20px;
    }
    
    .conferences-page-title {
        font-size: 36px;
    }
    
    .conference-card {
        padding: 30px;
    }

    .conference-card-title {
        font-size: 20px;
    }

    .conference-speaker {
        font-size: 14px;
    }

    .conference-date {
        font-size: 14px;
    }

    .conference-link {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .conferences-page-title {
        font-size: 28px;
    }

    .conference-card {
        padding: 25px 20px;
    }

    .conferences-cta-background {
        padding: 2.5rem 1rem;
    }

    .conferences-cta-title {
        font-size: 2rem;
    }

    .conferences-cta-subtitle {
        font-size: 0.8rem;
    }

    .conferences-cta-button {
        padding: 0.75rem 1.5rem;
    }

    .cta-shape-left, .cta-shape-right {
        display: none;
    }
}

