/* speaker-style.css */

.speakers-section {
    background-color: #0a1f44 !important; /* Navy Dark Blue */
    min-height: 100vh;
    padding-top: 160px !important;
    padding-bottom: 80px;
}

.section-title {
    color: #ffffff !important;
    font-size: 2.5rem;
    font-weight: 800;
}

/* Speaker Card */
.speaker-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.speaker-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.2);
}

/* Smaller, Professional Image Container */
.speaker-img-wrapper {
    width: 140px;      /* Reduced size */
    height: 140px;     /* Reduced size */
    margin: 0 auto 15px auto;
    overflow: hidden;
    border-radius: 50%; /* Circular for a cleaner look */
    border: 4px solid #f1f5f9;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.speaker-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.speaker-card:hover .speaker-img-wrapper img {
    transform: scale(1.1);
}

/* Content Styling */
.speaker-name {
    color: #0a1f44;
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.speaker-designation {
    color: #3498db !important;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.speaker-org {
    color: #64748b !important;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-become-speaker {
    background: #3498db;
    color: #fff !important;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-become-speaker:hover {
    background: #2980b9;
}