/* ================= HERO ================= */

.summit-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,.12),
            rgba(0,0,0,.12)
        ),
        url("../images/about/businesssummit.png");

    background-size: cover;
    background-position: center;
}

.summit-hero::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    bottom: -250px;
    left: -200px;
    border-radius: 50%;
    background: rgba(212,175,55,.10);
    filter: blur(130px);
}
.summit-content {
    position: relative;
    z-index: 5;
    max-width: 950px;
    margin: auto;
}

.summit-content h1 {
    color: #fff;
    font-size: 90px;
    line-height: 1.1;
    margin: 30px 0;
}

.summit-content h1 span {
    color: #d4af37;
}

.summit-content p {
    color: rgba(255,255,255,.8);
    font-size: 22px;
    line-height: 1.9;
    max-width: 800px;
    margin: auto;
}
.summit-about {
    padding: 120px 0;
    background:
        linear-gradient(
            180deg,
            #050505,
            #0b0b0b
        );
}
.summit-content {
    position: relative;
    z-index: 5;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    border: 1px solid rgba(212,175,55,.35);
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(20px);
    color: #d4af37;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}
.summit-content h1 {
    margin: 35px 0 30px;
    font-size: 95px;
    line-height: 1.05;
    font-weight: 800;
    color: #fff;
    letter-spacing: -2px;
}

.summit-content h1 span {
    display: block;
    background: linear-gradient(
        90deg,
        #f5d76e,
        #d4af37,
        #f5d76e
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.summit-content p {
    max-width: 850px;
    margin: auto;
    font-size: 22px;
    line-height: 1.9;
    color: rgba(255,255,255,.82);
}
.summit-content::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: 50%;
    top: 80%;
    transform: translate(-50%, -50%);
    background: rgba(212,175,55,.12);
    border-radius: 50%;
    filter: blur(130px);
    z-index: -1;
}
.summit-content h1 {
    text-shadow:
        0 10px 40px rgba(0,0,0,.7),
        0 0 40px rgba(212,175,55,.12);
}
@media (max-width:991px){

    .summit-content h1{
        font-size:70px;
    }
}

@media (max-width:768px){

    .summit-content h1{
        font-size:48px;
        line-height:1.15;
    }

    .summit-content p{
        font-size:18px;
    }

    .hero-badge{
        font-size:13px;
        padding:12px 24px;
    }
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero-buttons a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 18px 38px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 16px;
}
.gold-btn {
    background: linear-gradient(
        135deg,
        #d4af37,
        #f5d76e
    ) !important;

    color: #111 !important;

    box-shadow:
        0 15px 40px rgba(212,175,55,.35);
}
.outline-btn {
    background: rgba(255,255,255,.05) !important;
    border: 2px solid #d4af37 !important;
    color: #fff !important;
    backdrop-filter: blur(20px);
}
.gold-btn:hover,
.outline-btn:hover {
    transform: translateY(-5px);
}
.summit-content {
    position: relative;
    z-index: 5;
    margin-top: 0 !important;
    transform: none !important;
    top: auto !important;
}
.summit-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,.72),
            rgba(0,0,0,.62)
        ),
        url('../images/about/businesssummit.jpg');

    background-size: cover;
    background-position: center;
}
.summit-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;
}

.summit-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(3,3,3,.50),
            rgba(3,3,3,.40)
        ),
        url("../../images/about/businesssummit.png");

    background-size: cover;
    background-position: center;

    animation: heroZoom 5s ease-in-out infinite alternate;

    z-index: -2;
}
@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.12);
    }
}
.summit-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at center,
            transparent 20%,
            rgba(0,0,0,.45)
        );
    z-index: -1;
}
/* ================= WHY ATTEND ================= */

.why-attend {
    padding: 120px 0;
    background:
        linear-gradient(
            180deg,
            #0b0b0b,
            #050505
        );
}

.attend-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.attend-image img {
    width: 100%;
    border-radius: 30px;
    border: 1px solid rgba(212,175,55,.15);
    box-shadow: 0 25px 60px rgba(0,0,0,.4);
}

.attend-content h2 {
    color: #fff;
    font-size: 48px;
    margin: 20px 0;
}

.attend-content p {
    color: rgba(255,255,255,.78);
    line-height: 1.9;
}
.benefits-grid {
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}

.benefit-card {
    padding: 30px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(212,175,55,.15);
    border-radius: 25px;
    transition: .4s;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212,175,55,.15);
}

.benefit-card i {
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #fff;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 15px;
}
@media (max-width:991px) {
    .attend-wrapper {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .attend-content h2 {
        font-size: 38px;
    }
}
.attend-image {
    overflow: hidden;
    border-radius: 30px;
}

.attend-image img {
    width: 100%;
    transition: .8s ease;
}

.attend-image:hover img {
    transform: scale(1.08);
}
.attend-image {
    position: relative;
}

.attend-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            rgba(0,0,0,.05),
            rgba(0,0,0,.35)
        );
}
.attend-image {
    position: relative;
}

.image-frame {
    position: relative;
    padding: 15px;
    border-radius: 35px;
    overflow: hidden;
    background: rgba(255,255,255,.03);
    backdrop-filter: blur(20px);
}
.image-frame::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 35px;

    background: linear-gradient(
        90deg,
        transparent,
        #d4af37,
        transparent,
        #f5d76e,
        transparent
    );

    background-size: 300% 300%;
    animation: borderFlow 6s linear infinite;
    z-index: 1;
}
.image-frame::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: #050505;
    border-radius: 32px;
    z-index: 2;
}
.image-frame img {
    position: relative;
    z-index: 3;
    width: 100%;
    display: block;
    border-radius: 25px;
    transition: .8s ease;
}

.image-frame:hover img {
    transform: scale(1.08);
}
@keyframes borderFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}
.attend-image::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(212,175,55,.15);
    border-radius: 50%;
    filter: blur(100px);
    top: -50px;
    left: -50px;
    z-index: -1;

    animation: glowMove 8s ease-in-out infinite alternate;
}

@keyframes glowMove {
    from {
        transform: translate(0,0);
    }

    to {
        transform: translate(30px,20px);
    }
}
.image-frame:hover {
    box-shadow:
        0 25px 60px rgba(212,175,55,.25);
}
/* ================= KEY THEMES ================= */

.summit-topics {
    padding: 120px 0;
    background:
        radial-gradient(
            circle at center,
            rgba(212,175,55,.06),
            transparent 50%
        ),
        #050505;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
    margin-top: 70px;
}
.topic-card {
    text-align: center;
    padding: 50px 35px;
    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;
}

.topic-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(212,175,55,.08);
    border-radius: 50%;
    top: -80px;
    right: -80px;
    transition: .5s;
}

.topic-card:hover::before {
    transform: scale(1.5);
}

.topic-card:hover {
    transform: translateY(-12px);
    border-color: #d4af37;
    box-shadow:
        0 25px 50px rgba(212,175,55,.18);
}
.topic-card i {
    font-size: 42px;
    color: #d4af37;
    margin-bottom: 25px;
}

.topic-card h3 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 18px;
}

.topic-card p {
    color: rgba(255,255,255,.75);
    line-height: 1.8;
}
/* ================= SUMMIT AGENDA ================= */

.summit-agenda {
    padding: 120px 0;
    background: #050505;
}

.agenda-timeline {
    position: relative;
    max-width: 900px;
    margin: 80px auto 0;
}
.agenda-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        #d4af37,
        transparent
    );
    transform: translateX(-50%);
}
.agenda-item {
    position: relative;
    width: 50%;
    padding: 0 50px;
    margin-bottom: 70px;
}

.agenda-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.agenda-item:nth-child(even) {
    left: 50%;
}
.agenda-item::before {
    content: "";
    position: absolute;
    top: 35px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #d4af37;
    box-shadow:
        0 0 25px rgba(212,175,55,.6);
}

.agenda-item:nth-child(odd)::before {
    right: -9px;
}

.agenda-item:nth-child(even)::before {
    left: -9px;
}
.agenda-content {
    padding: 35px;
    border-radius: 25px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(212,175,55,.15);
    backdrop-filter: blur(20px);
    transition: .4s;
}

.agenda-content:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow:
        0 20px 40px rgba(212,175,55,.15);
}
.agenda-day {
    display: inline-block;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 15px;
}

.agenda-content h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 28px;
}

.agenda-content p {
    color: rgba(255,255,255,.75);
    line-height: 1.8;
}
@media (max-width:768px) {

    .agenda-timeline::before {
        left: 20px;
    }

    .agenda-item {
        width: 100%;
        left: 0 !important;
        padding-left: 60px;
        padding-right: 0;
        text-align: left !important;
    }

    .agenda-item::before {
        left: 11px !important;
    }
}
/* ================= SPONSORS ================= */

.sponsors-section {
    padding: 120px 0;
    background:
        linear-gradient(
            180deg,
            #0b0b0b,
            #050505
        );
}

.logo-slider {
    margin-top: 70px;
    overflow: hidden;
    position: relative;
}
.logo-slider::before,
.logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 5;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(
        to right,
        #050505,
        transparent
    );
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(
        to left,
        #050505,
        transparent
    );
}
.logo-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: logoMarquee 30s linear infinite;
}

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}
.logo-item {
    width: 240px;
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.04);
    border: 1px solid rgba(212,175,55,.12);
    border-radius: 25px;

    transition: .4s;
}

.logo-item:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow:
        0 20px 40px rgba(212,175,55,.18);
}
.logo-item img {
    max-width: 150px;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .8;
    transition: .4s;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}
@keyframes logoMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}
@media (max-width:768px) {

    .logo-item {
        width: 180px;
        height: 100px;
    }

    .logo-item img {
        max-width: 120px;
    }
}
.logo-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px;
    background:
        radial-gradient(
            circle,
            rgba(212,175,55,.12),
            transparent
        );
    opacity: 0;
    transition: .4s;
}

.logo-item:hover::before {
    opacity: 1;
}
