@import url('https://googleapis.com');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
    --font-display: 'Archivo', sans-serif;
    --font-body: 'Archivo', sans-serif;
    --primary-orange: #F5A623;
    --light-blue: #A8D5E8;
    --dark-gray: #1A1A1A;
    --light-gray: #F0F0F0;
    --border-gray: #E5E5E5;
}

body {
    font-family: var(--font-body);
    color: var(--dark-gray);
    background-color: #FFFFFF;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
        max-width: 1280px;
    }
}

/* Header/Navigation */
header {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;

    background:transparent;

    transition:
        background .4s ease,
        backdrop-filter .4s ease,
        box-shadow .4s ease,
        padding .4s ease;
}

header.scrolled {
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(18px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border-bottom:1px solid rgba(0,0,0,.05);
}

.header-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 0;
    transition:.4s;
}

header.scrolled .header-content{
    padding:15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img{
    height:100px;
    transition:.4s;
}

header.scrolled .logo img{
    height:50px;
}

/* .logo-text {
    font-size: 1.125rem;
    font-weight: bold;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    line-height: 1.2;
} */

@media (max-width:768px){

    .logo img{
        height:60px;
    }

    header.scrolled .logo img{
        height:50px;
    }

}

nav {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    nav {
        display: flex;
    }
}

nav button{
    position:relative;
    background:transparent;
    border:none;
    outline:none;
    box-shadow:none;
    cursor:pointer;
    padding:8px 0;
    margin:0 18px;
    color:#111;
    font-size:20px;
    font-weight:500;
    letter-spacing:.5px;
    font-family:var(--font-body);
    transition:color .35s ease;
}

nav button:hover {
    color: var(--primary-orange);
}

nav button.active {
    color: var(--primary-orange);
}

header.scrolled nav button{
    color:#333;

}

header.scrolled nav button:hover {
    color: var(--dark-gray);
}

nav button::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-6px;
    width:0;
    height:2px;
    background:#F5A623;
    border-radius:10px;
    transform:translateX(-50%);
    transition:.35s;
}

nav button:hover::after{
    width:100%;
}

nav button:hover::after{
    width:100%;
}

header.scrolled nav button:hover{
    color:#F5A623;
}

nav button:hover,
nav button:focus,
nav button:active{
    background:transparent;
    outline:none;
    box-shadow:none;
}

.menu-toggle{
    display:none;
    border:none;
    background:none;
    font-size:34px;
    cursor:pointer;
    color:#111;
    z-index:1001;
}

@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    nav{
        position:fixed;
        top:0;
        right:-100%;
        width:80%;
        max-width:320px;
        height:100vh;
        background:rgba(255,255,255,.95);
        backdrop-filter:blur(20px);
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:30px;
        transition:.45s;
        box-shadow:-10px 0 30px rgba(0,0,0,.12);
    }

    nav.active{
        right:0;
    }

    nav a{
        width:100%;
        text-align:center;
    }

    nav button{
        font-size:24px;
        margin:0;
    }
}

.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.35);
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:998;
}

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}

/* .overlay{
    position:fixed;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,.55);
    backdrop-filter:blur(10px);
    opacity:0;
    visibility:hidden;
    transition:.45s;
    z-index:9999;
}

.overlay.show{
    opacity:1;
    visibility:visible;
}

.modal-window{
    width:min(1100px,92vw);
    max-height:88vh;
    overflow:hidden;
    border-radius:32px;
    background:white;
    box-shadow:
    0 40px 90px rgba(0,0,0,.25);
    transform:
    translateY(40px)
    scale(.95);
    transition:.45s;
}

.overlay.show .modal-window{
    transform:
    translateY(0)
    scale(1);
} */

.modal{
    position:fixed;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;

    background:rgba(0,0,0,.65);
    backdrop-filter:blur(10px);

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:99999;
}

.modal.show{
    opacity:1;
    visibility:visible;
}
.modal-close{
    position:absolute;
    right:20px;
    top:20px;
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:#fff;
    cursor:pointer;
    transition:.3s;
}
.modal-close:hover{
    transform:rotate(90deg);
}


/* Hero Section */
.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    color:#111;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:url("../icon/Asset-Landing-Page-Web.jpg");
    background-size:cover;
    background-position:center;
    transform:scale(1);
    /* animation:kenburns 20s ease-in-out infinite alternate; */

}

@media (max-width:768px){

    .hero::before{
        background-image:url("../icon/Asset-Landing-Page-Mobile.jpg");
    }

}

.hero::after{
    content:"";
    position:absolute;
    inset:0;
}

.hero::before,
.hero::after{

    pointer-events:none;

}

@media (min-width: 768px) {
    .hero {
        padding: 6rem 0;
    }
}

.hero-content{
    display:flex;
    align-items:center;
    min-height:80vh;

}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text{
    max-width:450px;
}

.hero-text h1{
    font-size:55px;
    line-height:1.05;
    margin-bottom:25px;
    color:#111;
    font-weight:700;
    letter-spacing:-2px;

    opacity:0;
    transform:translateY(40px);
    animation:fadeUp 1s .3s forwards;
}


.hero-text p{
    color:#111;
    font-size:20px;
    max-width:580px;
    margin-bottom:40px;
    line-height: 1.05;

    opacity:0;
    transform:translateY(40px);
    animation:fadeUp 1s .8s forwards;
}

@media(max-width:768px){
.hero-text h1{
    font-size:42px;
    }
    .hero-text p{
        max-width: 300px;
    }
}

.hero-btn{
    display:inline-block;
    opacity:0;
    transform:translateY(40px);
    animation:fadeUp 1s 1.3s forwards;
}

@keyframes fadeUp{
from{
    opacity:0;
    transform:translateY(40px);
}
to{
    opacity:1;
    transform:translateY(0);
}
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-size: 1rem;
}

.btn-primary{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:18px 38px;
    border:2px solid var(--dark-gray);
    border-radius:10px;
    background-color:transparent;
    color:#111;
    font-size:17px;
    cursor:pointer;
    overflow:visible;
    z-index:2;
    animation:floating 3s ease-in-out infinite;
    transition:
        box-shadow .35s,
        background .35s;
}
.btn-primary:hover{
    background-color: #111;
    color: #fff;
}

@keyframes floating{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-5px);
    }
}

/* .btn-primary::before,
.btn-primary::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:50px;
    border:2px solid var(--primary-orange);
    pointer-events:none;
} */

/* .btn-primary::before{
    animation:wave 2.8s infinite;
}

.btn-primary::after{
    animation:wave 2.8s .9s infinite;
} */
@keyframes wave{
    0%{
        transform:scale(1);
        opacity:.6;
    }
    100%{
        transform:scale(1.7);
        opacity:0;
    }
}

.btn-primary:hover{
    animation-play-state:paused;
    transform:translateY(-4px);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-orange);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background-color: #F9F9F9;
}

.hero-image {
    width: 100%;
    height: 16rem;
    background: linear-gradient(135deg, #FED7AA, #FEF3C7);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

@media (min-width: 768px) {
    .hero-image {
        height: 20rem;
    }
}

.hero-image-emoji {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.hero-image-text {
    color: #999999;
    font-size: 0.875rem;
}

/* Main Visual Section */
.main-visual{
    position:relative;
    padding:120px 0;
    overflow:hidden;
}

.bg-slider{
    position:absolute;
    inset:0;
    overflow:hidden;
    z-index:0;
}

.bg-slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transform:scale(1.12);
    transition:
        opacity 2.5s ease,
        transform 7s ease;
}

.bg-slide.active{
    opacity:1;
    transform:scale(1);
}

.main-visual::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.15),
        rgba(0,0,0,.45)
    );
}

.main-visual .container{
    position:relative;
    z-index:2;
}

@media (min-width: 768px) {
    .main-visual {
        padding: 5rem 0;
    }
}

.main-visual-content{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    min-height:650px;
}

@media (min-width: 768px) {
    .main-visual-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Glass Morphism Card */
/* .glass-card-wrapper{
    opacity:0;
    transform:translateX(120px);
    transition:1s;
}

.glass-card-wrapper.show{
    opacity:1;
    transform:translateX(0);
}

.glass-card-wrapper:hover .glass-glow {
    opacity: 1;
} */

/* .glass-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    border-radius: 1rem;
    filter: blur(24px);
    opacity: 0;
    transition: opacity 0.3s ease;
} */

.glass-card{
    width:560px;
    border-radius:28px;
    padding:50px;
    /* background:rgba(255,255,255,.12);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.2);
    box-shadow:
        0 30px 60px rgba(0,0,0,.25);

    transition:.45s; */
}

/* .glass-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,.18);
} */

/* .glass-card-wrapper:hover .glass-card {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
} */

.glass-card h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .glass-card h2 {
        font-size: 2.25rem;
    }
}

.glass-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: justify;
}

.btn-card{
    position:relative;
    overflow:hidden;
    width:100%;
    justify-content:center;
    border:2px solid rgba(255,255,255,.6);
    background:transparent;
    color:#fff;
    transition:.35s;
}

/* .btn-card::before{
    content:"";
    position:absolute;
    left:-120%;
    top:0;
    width:60%;
    height:100%;
    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );
    transition:.7s;
} */

.btn-card:hover{
    transform:translateY(-6px);
    background:#111;
    border-color:#111;
    box-shadow:0 20px 45px rgba(0,0,0,.25);
}

/* .btn-card:hover::before{
    left:160%;
} */

.btn-card span{
    transition:.35s;
}

.btn-card:hover span{
    transform:translateX(8px);
}

/* .btn-card{
    position:relative;
    overflow:hidden;

    text-align: center;
    width: 100%;

    background-color: transparent;
    border: 2px solid var(--border-gray);
    color: #fff;

    transition:
        transform .35s,
        box-shadow .35s,
        border-color .35s;
}

.btn-card:hover{
    background-color: black;
    border:none;
    animation-play-state:paused;
    transform:translateY(-4px);
}

.btn-card:hover{
    transform:translateY(-6px);
    border-color: var(--primary-orange);
    box-shadow:
    0 20px 45px var(--primary-orange);
}

.btn-card span{
    transition:.35s;
}

.btn-card:hover span{
    transform:translateX(8px);
}

.btn-card::after{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.4),
        transparent
    );
    transition:.8s;
}

.btn-card:hover::after{
    left:160%;
} */

/* .floating-circle{
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(5px);
    animation:floatCircle 8s ease-in-out infinite;
}

.circle1{
    width:140px;
    height:140px;

    left:8%;
    top:15%;
}

.circle2{
    width:80px;
    height:80px;

    right:35%;
    bottom:18%;

    animation-delay:2s;
}

.circle3{
    width:200px;
    height:200px;

    left:18%;
    bottom:8%;

    animation-delay:4s;
}

@keyframes floatCircle{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-25px);
    }
} */


/* Categories Section */
.categories{
    position:relative;
    min-height:100vh;
    padding: 90px 0;
    display:flex;
    align-items:center;
    background:url("../icon/bg-orange.png");
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

@media (min-width: 768px) {
    .categories {
        padding: 6rem 0;
    }
}
.categories h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--dark-gray);
    /* margin-top: 10rem; */
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .categories h2 {
        font-size: 2.25rem;
    }
}
.categories .container{
    position:relative;
    z-index:2;
}

.category-wrapper{
    display:flex;
    justify-content:flex-end;
    align-items:flex-start;
    min-height:600px;
}

.category-right{
    width:55%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.category-item{

    display:flex;
    flex-direction:column;

    align-items:flex-start;
    min-width: 600px;

    height:100%;

    min-height:350px;
    transition:.45s;

}

/* .category-item:hover{
    transform:translateY(-8px);
} */

.category-title{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:20px;
}

.category-title h3{
    margin:0;
    min-height:auto;
    font-size: 30px;
    line-height:1.3;
}

/* 
.category-item:hover .category-icon{

    transform:

        rotate(90deg)

        scale(1.3);
        color: #C1202F;

} */

.category-icon{
    width:60px;
    height:60px;
    object-fit:contain;
    flex-shrink:0;
    transition:.35s;
}

/* .category-item h3{

    margin:15px 0;

    min-height:50px;
    transition:.35s;
}
.category-item:hover h3{

    color:#C1202F;

} */

/* .category-item h4{
    color:#F5A623;
    margin-bottom:20px;
    font-size:16px;
    letter-spacing:1px;
} */

.category-item p{
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: justify;
}

.category-item span{
    color:#F5A623;
    font-weight:600;
    display:block;
    margin-bottom:20px;
}

.category-btn{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:2px 34px;
    border-radius:20px;
    border:2px solid black;
    color:black;
    text-decoration:none;
    overflow:hidden;
    animation:floating 3s ease-in-out infinite;
    transition:
        transform .35s,
        border-color .35s,
        box-shadow .35s;
}

.category-btn:hover{
    color: white;
    background-color: #111;
}

/* .category-btn::before{
    content:"";
    position:absolute;
    left:0;
    bottom:-100%;
    width:100%;
    height:100%;
    background:#F5A623;
    transition:.45s;
    z-index:-1;
}

.category-btn:hover{
    transform:translateY(-6px);
    background-color: #C1202F;
    box-shadow:
        0 20px 40px rgba(245,166,35,.25);
}

.category-btn:hover::before{
    left:0;
}

.category-btn::after{
    content:"";
    position:absolute;
    top:0;
    left:-130%;
    width:60%;
    height:100%;
    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

}

.category-btn:hover::after{
    left:170%;
    transition:.8s;
} */

.category-btn span{
    padding-top:18px;
    display:flex;
    align-items:center;
    transition:.35s;
    color:black;
}

.category-btn:hover span{
    transform:translateX(8px);
    color: white;
}

.category-item.show{
    opacity:1;
    transform:translateY(0);
}

@media (max-width:992px){

    .categories{
        min-height:auto;
        padding:80px 0;
    }

    .category-wrapper{
        justify-content:center;
        min-height:auto;
    }

    .category-right{
        width:100%;
        grid-template-columns:1fr;
        gap:40px;
    }

    .category-item{
        min-width:0;
        min-height:auto;
    }

}

@media (max-width:768px){

    .categories{
        padding:70px 0;
    }

    .categories h2{
        font-size:36px;
        margin-bottom:40px;
        text-align:center;
    }

    .category-wrapper{
        min-height:auto;
    }

    .category-right{
        width:100%;
        gap:35px;
    }

    .category-item{
        min-width:100%;
        min-height:auto;
    }

    .category-title{
        gap:15px;
        margin-bottom:15px;
        align-items:center;
    }

    .category-icon{
        width:45px;
        height:45px;
    }

    .category-title h3{
        font-size:24px;
        line-height:1.3;
    }

    .category-item p{
        font-size:16px;
        line-height:1.8;
        margin-bottom:25px;
    }

    .category-btn{
        width:100%;
        justify-content:center;
        padding:16px 20px;
        font-size:16px;
    }

    /* .category-btn span{
        padding-top:;
    } */

}


/* Timeline Section */
.timeline{
    position:relative;
    background:url("../icon/bg-blue.png") center/cover no-repeat;
    padding:90px 0;
    overflow:hidden;
}

@media (min-width: 768px) {
    .timeline {
        padding: 6rem 0;
    }
}

.timeline h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}



.timeline p{
    max-width: 100%;
    text-align: justify;
}
@media (min-width: 768px) {
    .timeline h2 {
        font-size: 2.25rem;
    }
    .timeline p{
        max-width:50%;
        font-size:15px;
        line-height:1.8;
        text-align:justify;
    }
}
.timeline-scroll{
    overflow-x:auto;
    overflow-y:hidden;
    scroll-behavior:smooth;
    scrollbar-width:none;
    padding:70px 90px 40px;
}
.timeline-scroll::-webkit-scrollbar{
    display:none;
}

.timeline-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.timeline-items{
    position:relative;
    display:flex;
    gap:45px;
    width:max-content;
}

.timeline-items::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:18px;
    height:4px;
    background:#E4E4E4;
}

.timeline-item{
    position:relative;
    width:310px;
    height:220px;
    padding:40px;
    background:white;
    border-radius:28px;
    box-shadow:
        0 20px 45px rgba(0,0,0,.10);
    margin-top:55px;
    transition:.35s;
}

.timeline-item:hover{
    transform:translateY(-10px);
    box-shadow:
        0 30px 60px rgba(0,0,0,.18);
}

.timeline-item::before{
    content:"";
    position:absolute;
    top:-47px;
    left:45px;
    width:20px;
    height:20px;
    border-radius:50%;
    background:#F5A623;
    border:8px solid white;
    z-index:5;
}

.timeline-progress{
    width:280px;
    height:5px;
    margin:35px auto 0;
    background:rgba(0,0,0,.15);
    border-radius:20px;
    overflow:hidden;
}
.timeline-progress-bar{
    height:100%;
    width:0;
    background:#F5A623;
}

.timeline-nav{
    display:flex;
    justify-content:flex-end;
    gap:15px;
    margin-bottom:35px;
}

.timeline-nav button{
    width:52px;
    height:52px;
    border-radius:50%;
    border:none;
    background:white;
    cursor:pointer;
    font-size:22px;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    transition:.3s;
}

.timeline-nav button:hover{
    background:#F5A623;
    color:white;
    transform:translateY(-4px);
}

.timeline-scroll-wrapper{
    position:relative;
}

.timeline-arrow{
    position:absolute;
    top:52%;
    transform:translateY(-50%);
    width:58px;
    height:58px;
    border:none;
    border-radius:50%;
    background:white;
    cursor:pointer;
    z-index:20;
    font-size:24px;
    box-shadow:
        0 12px 30px rgba(0,0,0,.18);
}

.timeline-arrow.left{
    left:15px;
}
.timeline-arrow.right{
    right:15px;
}

.timeline-arrow:hover{
    background:#F5A623;
    color:white;
    transform:
        translateY(-50%)
        scale(1.08);
}
.timeline-arrow:active{
    transform:
        translateY(-50%)
        scale(.95);
}

@media(max-width:768px){

    .timeline-arrow{
        width:46px;
        height:46px;
        font-size:20px;
    }

    .timeline-arrow.left{
        left:-10px;
    }

    .timeline-arrow.right{
        right:-10px;
    }

}



.timeline-date{
    font-size:15px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:28px;
}

.timeline-title {
    font-family: var(--font-display);
    font-size:28px;
    line-height:1.2;
    font-weight:700;
}

.scroll-hint {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #1A1A1A;
    font-family: var(--font-body);
}



/* timeline temp */
/* .timeline-section{

    position:relative;

    height:450vh;

    overflow:hidden;

}

.timeline-bg{
    position:absolute;
    inset:0;
    background:url("../icon/bg-blue.png") center/cover no-repeat;
    background-attachment:fixed;
    z-index:-2;
}

.timeline-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

    z-index:-1;

}
.timeline-sticky{
    position:sticky;
    top:0;
    height:100vh;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.timeline-header{
    color:#888;

    margin-top:12px;
    padding-left:7%;
    margin-bottom:60px;
}
.timeline-header h2{

    color:#111;

    font-size:70px;

}
.timeline-header p{

    color:#777;

}
.timeline-wrapper{
    display:flex;
    gap:70px;
    padding-left:7%;
    width:max-content;
    will-change:transform;
}
.timeline-wrapper{
    opacity:0;
    transform:translateX(100px);
    transition:
        opacity .8s,
        transform .8s;
}
.timeline-wrapper.show{
    opacity:1;
}
.timeline-card{
    position:relative;
    margin-top:80px;
    display:flex;
    width:320px;
    padding:40px;
    border-radius:28px;
    border:1px solid rgba(0,0,0,.06);
     background:
    linear-gradient(
    180deg,
    white,
    #FCFCFC
    );
    transition:.45s;
}
.timeline-card:hover{
    transform:translateY(-14px);
    box-shadow:
    0 18px 40px rgba(0,0,0,.12);
}
.timeline-line{
    position:absolute;
    left:0;
    right:0;

    top:calc(45% + 15px);

    height:4px;
    background:#E5E5E5;
}
.timeline-dot{
    position:absolute;
    top:-58px;
    left:50%;
    transform:translateX(-50%);

    width:22px;
    height:22px;

    border-radius:50%;
    background:#F5A623;
    border:6px solid #fff;
    z-index:10;
    transition:.35s;
}
.timeline-card-inner{
    transition:.4s ease;
}
.timeline-card:hover{

transform:translateY(-10px);

}
.timeline-card:hover {
    transform:translateY(-12px);
    box-shadow:0 30px 60px rgba(0,0,0,.18);
}
.timeline-card:hover {
        transform:

        translateX(-50%)

        scale(1.5);
}
.timeline-card::before{

    content:"";

    position:absolute;

    top:-50px;

    left:50%;

    transform:translateX(-50%);

    width:2px;

    height:50px;

    background:#DDD;

}
.timeline-line::after{
content:"";
position:absolute;
left:0;
top:0;
height:100%;
width:20%;
background:
linear-gradient(
90deg,
transparent,
#F5A623,
transparent
);
animation:
lineGlow 4s linear infinite;
}
@keyframes lineGlow{
0%{
left:-20%;
}
100%{
left:120%;
}
} */

/* timeline temp */



/* Jury Section */
.jury{
    padding:120px 7%;
    background:url("../icon/bg-grey.png") center/cover;
    padding: 90px 0;
}

@media (min-width: 768px) {
    .jury {
        padding: 6rem 0;
    }
}

.jury h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .jury h2 {
        font-size: 2.25rem;
    }
}

.jury-grid{
    display:flex;
    gap:28px;
    width:max-content;
    padding:15px 0 25px;
}

.jury-grid::-webkit-scrollbar{
    display:none;
}
.jury-card{
    flex:0 0 210px;
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    cursor:pointer;
    transition:.35s;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    position:relative;
    transition:.35s;
}
/* .jury-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,0,0,.15);
    transform:translateY(-8px) scale(1.03);
    box-shadow:0 18px 45px rgba(0,0,0,.15);
} */
.jury-card img{
    width:100%;
    height:240px;
    filter: grayscale(100%);
    object-fit:cover;
    display:block;
}
.jury-card h3{
    margin:0 0 8px;
    font-size:20px;
    font-weight:700;
    line-height:1.25;
}
.jury-card-content{
    padding:18px;
}

.jury-card-title{
    display:block;
    margin-bottom:8px;

    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;

    color:#111;
}
.jury-card p{
    margin:0;
    font-size:14px;
    color:#111;
    line-height:1.5;
}

.jury-grid:hover .jury-card{
    /* opacity:.55; */
    transform:scale(.95);
}
.jury-grid:hover .jury-card:hover{
    opacity:1;
    transform:translateY(-10px) scale(1.05);
}
.jury-scroll-wrapper{
    position:relative;
}
.jury-scroll{
    overflow-x:auto;
    overflow-y:hidden;
    scroll-behavior:smooth;
    scrollbar-width:none;
    -ms-overflow-style:none;
    padding-inline:80px;
}
.jury-title{
    display:block;
    margin:0 0 10px;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#111;
}
.jury-scroll::-webkit-scrollbar{
    display:none;
}

.jury-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:56px;
    height:56px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    background:rgba(255,255,255,.9);
    backdrop-filter:blur(20px);
    box-shadow:0 15px 35px rgba(0,0,0,.18);
    font-size:24px;
    z-index:20;
    transition:.3s;
}

.jury-arrow:hover{
    background:#F5A623;
    color:white;
    transform:translateY(-50%) scale(1.08);
}

.jury-arrow.left{
    left:-28px;
}

.jury-arrow.right{
    right:-28px;
}

.jury-progress{
    width:320px;
    height:6px;
    margin:30px auto 0;
    background:#d9d9d9;
    border-radius:999px;
    overflow:hidden;
}

.jury-progress-bar{
    width:0;
    height:100%;
    background:#F5A623;
    transition:.2s;
}

@media(max-width:768px){

.jury-scroll{
    padding-inline:20px;
}

.jury-arrow{
    width:46px;
    height:46px;
    font-size:18px;
}

.jury-arrow.left{
    left:-10px;
}

.jury-arrow.right{
    right:-10px;
}

}

.jury-scroll-hint{
    color:#111;
    font-size:14px;
    margin:10px 0 30px;
    animation:hintMove 2s ease-in-out infinite;
}
@keyframes hintMove{
    0%,100%{
        transform:translateX(0);
    }
    50%{
        transform:translateX(8px);
    }
}


/* .jury-photo {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #D1D5DB, #9CA3AF);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: box-shadow 0.3s ease;
} */

.jury-item:hover .jury-photo {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* .jury-name {
    font-weight: bold;
    font-family: var(--font-display);
    color: var(--dark-gray);
    font-size: 0.875rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.jury-role {
    font-size: 0.75rem;
    color: #999999;
    font-family: var(--font-body);
} */

.jury-popup{
    position:relative;
    display:grid;
    grid-template-columns:320px 1fr;
    gap:40px;
    width:min(980px,90vw);
    max-height:85vh;
    padding:45px;
    border-radius:28px;

    background: url('../icon/bg-grey.png') center/cover;
}

.jury-left img{
    width:100%;
    height:480px;
    filter: grayscale(100%);
    object-fit:cover;
    border-radius:20px;
}

.jury-right{
    display:grid;
    grid-template-rows:
        auto   /* title */
        auto   /* name */
        70px   /* position */
        1fr;   /* description */
}

.jury-right h2{
    margin:0;
    font-size:42px;
    line-height:1.1;
}

.jury-right h4{
    margin:10px 0 14px;
    font-size:18px;
    font-weight:500;
    overflow-y: auto;
    color:#111;
}
.jury-right h4::-webkit-scrollbar{
    width:6px;
}

.jury-right h4::-webkit-scrollbar-thumb{
    background:#d0d0d0;
    border-radius:20px;
}

.jury-description{
    display:flex;
    flex-direction:column;
    gap:24px;

    overflow-y:auto;
    max-height:270px;

    padding-right:10px;

}
.jury-description p{
    margin:0;
    line-height:1.9;
    text-align:justify;
    color:#444;

    margin-bottom: 24px;
}

.jury-description::-webkit-scrollbar{
    width:6px;
}

.jury-description::-webkit-scrollbar-thumb{
    background:#d0d0d0;
    border-radius:20px;
}

.modal.show .jury-popup{
    transform:translateY(0);
}
.jury-popup img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:20px;
}
.jury-info{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.jury-info h2{
    font-size:40px;
    margin-bottom:8px;
}

.jury-info h4{
    color:#111;
    margin-bottom:20px;
}

.jury-info p{
    line-height:1.8;
    margin-bottom:20px;
}

@media (max-width:992px){
    .jury-popup{
        width:95vw;
        padding:30px;
        gap:25px;
    }
    .jury-left{
        flex:0 0 220px;
    }
}

@media (max-width:768px){

    .jury-popup{
        display:block;
        width:95vw;
        max-height:90vh;
        padding:25px;
        overflow-y:auto;
    }

    .jury-left{
        width:100%;
        margin-bottom:25px;
    }
    .jury-left img{
        width:100%;
        max-width:300px;
        margin:auto;
        display:block;
    }
    .jury-right{
        width:100%;
    }

    .jury-right h2{
        font-size:28px;
        text-align:center;
    }

    .jury-right h4{
        text-align:center;
        margin-bottom:20px;
    }

    .jury-description{
        margin-bottom:20px;
    }

    .modal-close{
        top:15px;
        right:15px;
    }
}
@media (max-height:700px){
    .jury-popup{
        max-height:85vh;
    }
}

.news-popup{
    width:min(620px,92vw);
    background:white;
    border-radius:24px;
    padding:45px;
    text-align:center;
    position:relative;
    animation:popup .45s ease;
}

.news-popup h2{
    margin-bottom:20px;
    font-size:36px;
}

.news-popup p{
    margin-bottom:18px;
    line-height:1.8;
}

@keyframes popup{
from{
    transform:translateY(40px) scale(.9);
    opacity:0;
}
    to{
        transform:translateY(0) scale(1);
        opacity:1;
    }
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    padding: 3rem 0;
}

@media (min-width: 768px) {
    footer {
        padding: 4rem 0;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.footer-section h3 {
    font-weight: bold;
    font-family: var(--font-display);
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}
.footer-section img{
    width: 15px;
    height: 15px;
    align-items: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-links {
        justify-content: flex-end;
    }
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

@keyframes kenburns{

0%{

    transform:scale(1);

}

100%{

    transform:scale(1.12);

}

}