.speakers-hero {
    position: relative;
    min-height: 100vh;
    padding-top: 180px;
    padding-bottom: 100px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;

    background:
        linear-gradient(
            rgba(0,0,0,.55),
            rgba(0,0,0,.45)
        ),
        url("../images/about/speakers-bg.jpg");

    background-size: cover;
    background-position: center;
}
.speakers-content {
    max-width: 950px;
    margin: auto;
}

.speakers-content h1 {
    font-size: 95px;
    color: #fff;
    line-height: 1.05;
    margin: 30px 0;
}

.speakers-content h1 span {
    display: block;
    color: #d4af37;
}

.speakers-content p {
    font-size: 22px;
    line-height: 1.9;
    color: rgba(255,255,255,.8);
}
.featured-speakers {
    padding: 120px 0;
    background:
        linear-gradient(
            180deg,
            #050505,
            #0b0b0b
        );
}

.speakers-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}
.speaker-card {
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(212,175,55,.15);
    transition: .5s;
}

.speaker-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow:
        0 25px 50px rgba(212,175,55,.18);
}
.speaker-image {
    height: 420px;
    overflow: hidden;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s;
}

.speaker-card:hover img {
    transform: scale(1.08);
}
.speaker-info {
    padding: 30px;
    text-align: center;
}

.speaker-info h3 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 12px;
}

.speaker-info span {
    color: #d4af37;
    display: block;
    margin-bottom: 15px;
}

.speaker-info p {
    color: rgba(255,255,255,.75);
}
@media (max-width:991px) {
    .speakers-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:768px) {
    .speakers-grid {
        grid-template-columns: 1fr;
    }

    .speakers-content h1 {
        font-size: 52px;
    }

    .speakers-content p {
        font-size: 18px;
    }
}
.speakers-content {
    position: relative;
    z-index: 10;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.speakers-hero {
    position: relative;
    overflow: hidden;
}
/* ================= DELEGATES ================= */

.delegates-section {
    padding: 120px 0;
    background:
        linear-gradient(
            180deg,
            #0b0b0b,
            #050505
        );
}

.delegates-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}
.delegate-card {
    padding: 45px 30px;
    text-align: center;
    border-radius: 30px;

    background: rgba(255,255,255,.04);
    border: 1px solid rgba(212,175,55,.15);
    backdrop-filter: blur(20px);

    transition: .5s;
    position: relative;
    overflow: hidden;
}

.delegate-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;

    box-shadow:
        0 25px 50px rgba(212,175,55,.18);
}
.flag {
    display: block;
    font-size: 55px;
    margin-bottom: 25px;
}

.delegate-card h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;
}

.delegate-card p {
    color: rgba(255,255,255,.75);
    line-height: 1.8;
}
.delegate-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;

    background: rgba(212,175,55,.08);
    border-radius: 50%;

    top: -80px;
    right: -80px;

    transition: .5s;
}

.delegate-card:hover::before {
    transform: scale(1.5);
}
@media (max-width:991px) {
    .delegates-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:768px) {
    .delegates-grid {
        grid-template-columns: 1fr;
    }
}
/* ================= PAST SPEAKERS ================= */

.past-speakers {
    padding: 120px 0;
    background:
        linear-gradient(
            180deg,
            #050505,
            #0b0b0b
        );
}

.past-speakers-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}
.past-card {
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(212,175,55,.15);
    transition: .5s;
}

.past-card:hover {
    transform: translateY(-12px);
    border-color: #d4af37;
    box-shadow:
        0 25px 50px rgba(212,175,55,.18);
}

.past-image {
    height: 380px;
    overflow: hidden;
}

.past-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .8s;
}

.past-card:hover img {
    transform: scale(1.08);
}
.past-content {
    padding: 30px;
    text-align: center;
}

.past-content h3 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 12px;
}

.past-content span {
    display: block;
    color: #d4af37;
    margin-bottom: 25px;
}

.speaker-meta p {
    color: rgba(255,255,255,.75);
    margin-bottom: 12px;
}
@media (max-width:991px) {
    .past-speakers-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:768px) {
    .past-speakers-grid {
        grid-template-columns: 1fr;
    }
}
/* ================= SPEAKER CTA ================= */

.speaker-cta {
    padding: 120px 0;
    background:
        linear-gradient(
            180deg,
            #0b0b0b,
            #050505
        );
}
.cta-box {
    position: relative;
    max-width: 1000px;
    margin: auto;
    padding: 90px 70px;
    text-align: center;
    border-radius: 40px;

    background:
        rgba(255,255,255,.04);

    border: 1px solid
        rgba(212,175,55,.18);

    backdrop-filter: blur(25px);

    overflow: hidden;
}
.cta-box::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background:
        rgba(212,175,55,.12);

    border-radius: 50%;
    filter: blur(120px);

    top: -150px;
    left: -100px;

    animation: glowMove 8s ease-in-out infinite alternate;
}

@keyframes glowMove {
    from {
        transform: translate(0,0);
    }

    to {
        transform: translate(80px,40px);
    }
}
.cta-tag {
    display: inline-block;
    color: #d4af37;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 20px;
}

.cta-box h2 {
    color: #fff;
    font-size: 60px;
    margin-bottom: 30px;
}

.cta-box p {
    max-width: 700px;
    margin: auto;
    color: rgba(255,255,255,.8);
    line-height: 1.9;
    font-size: 20px;
}
.cta-buttons {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cta-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #d4af37;
    border-radius: 50%;
    opacity: .4;
    animation: floatParticle 10s linear infinite;
}

@keyframes floatParticle {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    50% {
        opacity: .7;
    }

    to {
        transform: translateY(-200px);
        opacity: 0;
    }
}
@media (max-width:768px) {

    .cta-box {
        padding: 60px 30px;
    }

    .cta-box h2 {
        font-size: 42px;
    }

    .cta-box p {
        font-size: 18px;
    }
}

/* ================= PREMIUM GOLD BUTTON ================= */

.gold-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 42px;
    border-radius: 60px;

    background: linear-gradient(
        135deg,
        #f5d76e,
        #d4af37,
        #b8860b
    );

    color: #111;
    font-weight: 700;
    letter-spacing: .5px;
    text-decoration: none;

    overflow: hidden;
    transition: .4s ease;

    box-shadow:
        0 15px 40px rgba(212,175,55,.35);
}

.gold-btn:hover {
    transform: translateY(-5px);
    box-shadow:
        0 25px 60px rgba(212,175,55,.45);
}
.gold-btn::before {
    content: "";
    position: absolute;

    top: 0;
    left: -120%;

    width: 60%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.5),
        transparent
    );

    transform: skewX(-25deg);

    transition: .8s;
}

.gold-btn:hover::before {
    left: 130%;
}
.outline-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 42px;
    border-radius: 60px;

    color: #fff;
    text-decoration: none;
    font-weight: 600;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(212,175,55,.4);

    backdrop-filter: blur(20px);

    transition: .4s ease;
}
.outline-btn:hover {
    transform: translateY(-5px);

    background: rgba(212,175,55,.12);

    border-color: #d4af37;

    box-shadow:
        0 20px 50px rgba(212,175,55,.18);
}
.cta-buttons a{
    min-width:240px;
}
.experience-card{
    bottom: 25px;
    left: 25px;
    padding: 18px 25px;
    background: rgba(0,0,0,.7);
}

.experience-card h3{
    font-size: 30px;
}

.experience-card span{
    font-size: 13px;
}
.experience-card{
    display: none;
}
.experience-card{
    opacity: 0;
    visibility: hidden;
}
.image-box{
    overflow: hidden;
}