/* =========================================
STARTUP HERO
========================================= */

.startup-hero{
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 8% 100px;
    background: #050505;
}

/* Background */

.startup-hero .hero-bg{
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            rgba(5,5,5,.55),
            rgba(5,5,5,.65)
        ),
        url("../images/startup_ibsaward.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroZoom 18s ease-in-out infinite alternate;
}

/* Golden Glow */

.hero-glow{
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .25;
}

.glow-1{
    width: 320px;
    height: 320px;
    background: #d4af37;
    top: -80px;
    left: -80px;
}

.glow-2{
    width: 350px;
    height: 350px;
    background: #f6e27a;
    right: -100px;
    bottom: -100px;
}

/* Content */

.startup-hero .hero-content{
    position: relative;
    z-index: 5;
    max-width: 950px;
}

.hero-tag{
    display: inline-block;
    color: #d4af37;
    border: 1px solid rgba(212,175,55,.25);
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(15px);
    padding: 12px 28px;
    border-radius: 50px;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.startup-hero h1{
    color: #fff;
    font-size: clamp(48px,7vw,82px);
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
}

.startup-hero h1 span{
    color: #d4af37;
}

.startup-hero p{
    max-width: 760px;
    margin: auto;
    color: rgba(255,255,255,.8);
    line-height: 1.9;
    font-size: 18px;
    margin-bottom: 45px;
}

/* Buttons */

.hero-buttons{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn-primary,
.hero-btn-secondary{
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    transition: .4s;
}

.hero-btn-primary{
    background: linear-gradient(
        135deg,
        #d4af37,
        #f6e27a
    );
    color: #111;
    box-shadow:
        0 15px 35px rgba(212,175,55,.3);
}

.hero-btn-primary:hover{
    transform: translateY(-6px);
    box-shadow:
        0 20px 45px rgba(212,175,55,.45);
}

.hero-btn-secondary{
    color: #fff;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(15px);
}

.hero-btn-secondary:hover{
    background: rgba(255,255,255,.12);
    transform: translateY(-6px);
}

/* Scroll */

.scroll-down{
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 60px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 30px;
}

.scroll-down span{
    position: absolute;
    width: 6px;
    height: 12px;
    background: #d4af37;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    border-radius: 20px;
    animation: scrollMove 2s infinite;
}

/* Animations */

@keyframes heroZoom{
    from{
        transform: scale(1);
    }
    to{
        transform: scale(1.1);
    }
}

@keyframes scrollMove{
    0%{
        opacity: 0;
        top: 10px;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        top: 30px;
    }
}

/* Mobile */

@media(max-width:768px){

    .startup-hero{
        min-height: 90vh;
    }

    .startup-hero p{
        font-size: 16px;
    }

    .hero-buttons{
        flex-direction: column;
        align-items: center;
    }
}
/* =========================================
ABOUT STARTUP EXPO
========================================= */

.about-expo{
    padding: 120px 8%;
    background: #080808;
    overflow: hidden;
}

.about-expo .container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-tag{
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(212,175,55,.1);
    border: 1px solid rgba(212,175,55,.25);
    color: #d4af37;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 25px;
}

.expo-content h2{
    color: #fff;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.expo-content p{
    color: rgba(255,255,255,.75);
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Features */

.expo-features{
    margin: 35px 0;
}

.feature-item{
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.feature-item span{
    width: 35px;
    height: 35px;
    background: rgba(212,175,55,.1);
    border: 1px solid rgba(212,175,55,.25);
    border-radius: 50%;
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item p{
    margin: 0;
    color: rgba(255,255,255,.8);
}

/* Button */

.expo-btn{
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    background: linear-gradient(
        135deg,
        #d4af37,
        #f6e27a
    );
    color: #111;
    text-decoration: none;
    font-weight: 700;
    transition: .4s;
}

.expo-btn:hover{
    transform: translateY(-6px);
    box-shadow:
        0 20px 45px rgba(212,175,55,.35);
}

/* Image */

.image-box{
    position: relative;
}

.image-box img{
    width: 100%;
    border-radius: 30px;
    display: block;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow:
        0 25px 60px rgba(0,0,0,.45);
}

/* Floating Card */

.floating-card{
    position: absolute;
    right: -30px;
    bottom: 40px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    padding: 25px 35px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,.1);
    text-align: center;
}

.floating-card h3{
    color: #d4af37;
    font-size: 38px;
    margin-bottom: 8px;
}

.floating-card span{
    color: #fff;
    font-size: 14px;
}

/* Responsive */

@media(max-width:991px){

    .about-expo .container{
        grid-template-columns: 1fr;
    }

    .floating-card{
        right: 20px;
        bottom: 20px;
    }

    .expo-content h2{
        font-size: 38px;
    }
}

@media(max-width:576px){

    .about-expo{
        padding: 90px 6%;
    }

    .expo-content h2{
        font-size: 30px;
    }

    .floating-card{
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
        width: fit-content;
    }
}
/* =========================================
WHY PARTICIPATE
========================================= */

.why-participate{
    padding: 120px 8%;
    background: #050505;
}

.participate-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.participate-card{
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 30px;
    padding: 45px 35px;
    text-align: center;
    transition: .5s;
    position: relative;
    overflow: hidden;
}

.participate-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        #d4af37,
        transparent
    );
    transition: .8s;
}

.participate-card:hover::before{
    left: 100%;
}

.participate-card:hover{
    transform: translateY(-12px);
    border-color: rgba(212,175,55,.35);
    box-shadow:
        0 20px 45px rgba(0,0,0,.45),
        0 0 25px rgba(212,175,55,.12);
}

.participate-icon{
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    background: rgba(212,175,55,.1);
    border: 1px solid rgba(212,175,55,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.participate-card h3{
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

.participate-card p{
    color: rgba(255,255,255,.7);
    line-height: 1.8;
}

/* Responsive */

@media(max-width:991px){

    .participate-grid{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px){

    .participate-grid{
        grid-template-columns: 1fr;
    }
}
/* =========================================
EXPO HIGHLIGHTS
========================================= */

.expo-highlights{
    padding: 120px 8%;
    background: #080808;
}

.highlights-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.highlight-card{
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 30px;
    padding: 50px 30px;
    text-align: center;
    transition: .4s;
}

.highlight-card:hover{
    transform: translateY(-10px);
    border-color: rgba(212,175,55,.35);
    box-shadow:
        0 20px 45px rgba(0,0,0,.45),
        0 0 25px rgba(212,175,55,.12);
}

.highlight-card h3{
    font-size: 58px;
    color: #d4af37;
    margin-bottom: 15px;
    font-weight: 800;
}

.highlight-card h3::after{
    content: "+";
}

.highlight-card p{
    color: rgba(255,255,255,.75);
    font-size: 18px;
}

/* Responsive */

@media(max-width:991px){

    .highlights-grid{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px){

    .highlights-grid{
        grid-template-columns: 1fr;
    }

    .highlight-card h3{
        font-size: 46px;
    }
}
/* =========================================
STARTUP CATEGORIES
========================================= */

.startup-categories{
    padding: 120px 8%;
    background: #050505;
}

.categories-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.category-card{
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 30px;
    padding: 45px 25px;
    text-align: center;
    transition: .5s;
    position: relative;
    overflow: hidden;
}

.category-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top,
        rgba(212,175,55,.12),
        transparent 70%
    );
    opacity: 0;
    transition: .5s;
}

.category-card:hover::before{
    opacity: 1;
}

.category-card:hover{
    transform: translateY(-12px);
    border-color: rgba(212,175,55,.35);
    box-shadow:
        0 20px 45px rgba(0,0,0,.45),
        0 0 25px rgba(212,175,55,.12);
}

.category-icon{
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    background: rgba(212,175,55,.1);
    border: 1px solid rgba(212,175,55,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    position: relative;
    z-index: 2;
}

.category-card h3{
    color: #fff;
    font-size: 22px;
    position: relative;
    z-index: 2;
}

/* Responsive */

@media(max-width:1100px){

    .categories-grid{
        grid-template-columns: repeat(3,1fr);
    }
}

@media(max-width:768px){

    .categories-grid{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px){

    .categories-grid{
        grid-template-columns: 1fr;
    }
}
/* =========================================
STARTUP TIMELINE
========================================= */

.startup-timeline{
    padding: 120px 8%;
    background: #080808;
}

.timeline{
    position: relative;
    max-width: 900px;
    margin: 80px auto 0;
}

/* Center Line */

.timeline::before{
    content: "";
    position: absolute;
    left: 35px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(
        #d4af37,
        rgba(212,175,55,.2)
    );
}

.timeline-item{
    position: relative;
    display: flex;
    gap: 35px;
    margin-bottom: 50px;
}

.timeline-number{
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #d4af37,
        #f6e27a
    );
    color: #111;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-content{
    flex: 1;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 30px;
    padding: 35px;
    transition: .4s;
}

.timeline-content:hover{
    transform: translateY(-8px);
    border-color: rgba(212,175,55,.35);
    box-shadow:
        0 20px 45px rgba(0,0,0,.45),
        0 0 25px rgba(212,175,55,.12);
}

.timeline-content h3{
    color: #fff;
    font-size: 26px;
    margin-bottom: 15px;
}

.timeline-content p{
    color: rgba(255,255,255,.75);
    line-height: 1.8;
}

/* Mobile */

@media(max-width:768px){

    .timeline::before{
        left: 30px;
    }

    .timeline-item{
        gap: 20px;
    }

    .timeline-number{
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 18px;
    }

    .timeline-content{
        padding: 25px;
    }

    .timeline-content h3{
        font-size: 22px;
    }
}
/* =========================================
INVESTORS & PARTNERS
========================================= */

.startup-partners{
    padding: 120px 8%;
    background: #050505;
}

.partners-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.partner-card{
    height: 160px;
    padding: 30px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.partner-card img{
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .7;
    transition: .4s;
}

.partner-card:hover{
    transform: translateY(-10px);
    border-color: rgba(212,175,55,.35);
    box-shadow:
        0 20px 45px rgba(0,0,0,.45),
        0 0 25px rgba(212,175,55,.12);
}

.partner-card:hover img{
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

/* Responsive */

@media(max-width:991px){

    .partners-grid{
        grid-template-columns: repeat(3,1fr);
    }
}

@media(max-width:768px){

    .partners-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .partner-card{
        height: 140px;
    }
}

@media(max-width:576px){

    .partners-grid{
        grid-template-columns: 1fr;
    }
}
/* =========================================
AUTO SCROLLING PARTNERS
========================================= */

.partners-slider{
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 70px;
}

.partners-track{
    display: flex;
    gap: 30px;
    width: max-content;
    animation: partnerScroll 35s linear infinite;
}

.partners-slider:hover .partners-track{
    animation-play-state: paused;
}

.partner-card{
    width: 260px;
    height: 150px;
    flex-shrink: 0;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: .4s;
}

.partner-card img{
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .7;
    transition: .4s;
}

.partner-card:hover{
    border-color: rgba(212,175,55,.35);
    box-shadow:
        0 20px 40px rgba(0,0,0,.4),
        0 0 25px rgba(212,175,55,.12);
}

.partner-card:hover img{
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

/* Infinite Scroll */

@keyframes partnerScroll{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-50%);
    }
}
.partners-slider::before,
.partners-slider::after{
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-slider::before{
    left: 0;
    background: linear-gradient(
        to right,
        #050505,
        transparent
    );
}

.partners-slider::after{
    right: 0;
    background: linear-gradient(
        to left,
        #050505,
        transparent
    );
}
/* =========================================
STARTUP CTA
========================================= */

.startup-cta{
    position: relative;
    padding: 140px 8%;
    text-align: center;
    overflow: hidden;
    background:
        linear-gradient(
            rgba(5,5,5,.92),
            rgba(5,5,5,.92)
        ),
        url("../images/world-map.png");
    background-size: cover;
    background-position: center;
}

/* Glows */

.startup-cta .cta-glow{
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .25;
}

.startup-cta .glow-1{
    width: 300px;
    height: 300px;
    background: #d4af37;
    top: -100px;
    left: -100px;
}

.startup-cta .glow-2{
    width: 350px;
    height: 350px;
    background: #f6e27a;
    right: -120px;
    bottom: -120px;
}

/* Content */

.startup-cta .cta-content{
    position: relative;
    z-index: 5;
    max-width: 900px;
    margin: auto;
}

.startup-cta .cta-tag{
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(212,175,55,.25);
    color: #d4af37;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 25px;
}

.startup-cta h2{
    color: #fff;
    font-size: clamp(40px,5vw,64px);
    line-height: 1.2;
    margin-bottom: 25px;
}

.startup-cta p{
    max-width: 760px;
    margin: auto;
    color: rgba(255,255,255,.75);
    line-height: 1.9;
    font-size: 18px;
    margin-bottom: 45px;
}

/* Buttons */

.startup-cta .cta-buttons{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.startup-cta .cta-btn-primary,
.startup-cta .cta-btn-secondary{
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    transition: .4s;
}

.startup-cta .cta-btn-primary{
    background: linear-gradient(
        135deg,
        #d4af37,
        #f6e27a
    );
    color: #111;
    box-shadow:
        0 15px 35px rgba(212,175,55,.3);
}

.startup-cta .cta-btn-primary:hover{
    transform: translateY(-6px);
    box-shadow:
        0 20px 45px rgba(212,175,55,.45);
}

.startup-cta .cta-btn-secondary{
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(15px);
    color: #fff;
}

.startup-cta .cta-btn-secondary:hover{
    background: rgba(255,255,255,.12);
    transform: translateY(-6px);
}

/* Mobile */

@media(max-width:768px){

    .startup-cta{
        padding: 100px 6%;
    }

    .startup-cta p{
        font-size: 16px;
    }

    .startup-cta .cta-buttons{
        flex-direction: column;
        align-items: center;
    }
}

