*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#050816;
    color:white;
    overflow-x:hidden;
}

/* NAVBAR */

.navbar{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    padding:20px 6%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    z-index:999;

    background:rgba(0,0,0,0.25);

    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo-area{
    display:flex;
    align-items:center;
    gap:15px;
}

/* ROTATING LOGO */

.logo{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

    animation:rotateLogo 8s linear infinite;
}

/* ANIMATION */

@keyframes rotateLogo{

    from{

        transform:rotate(0deg);
    }

    to{

        transform:rotate(360deg);
    }
}

.logo-area h1{
    font-size:30px;
    font-weight:800;
    letter-spacing:2px;
}

.logo-area span{

    background:linear-gradient(
        to right,
        #ffd700,
        #ff9800
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

nav{
    display:flex;
    gap:30px;
}

nav a{
    color:white;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:0.4s;
}

nav a:hover{
    color:#ffd700;
}

/* HERO */

.hero{

    position:relative;

    width:100%;
    height:100vh;

    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
}

.hero-video{

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    transform:scale(1.1);
}

.overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        rgba(0,0,0,0.55),
        rgba(5,8,22,0.9)
    );
}

/* GLOW */

.glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
}

.glow1{

    width:350px;
    height:350px;

    background:rgba(255,183,0,0.25);

    top:10%;
    left:10%;
}

.glow2{

    width:320px;
    height:320px;

    background:rgba(0,119,255,0.2);

    bottom:10%;
    right:10%;
}

/* HERO CONTENT */

.hero-content{
    position:relative;
    z-index:5;

    max-width:1000px;
    padding:20px;
}

.hero-content h4{

    letter-spacing:8px;
    margin-bottom:20px;

    color:#ddd;
}

.hero-content h2{

    font-size:120px;
    line-height:1;

    margin-bottom:30px;

    font-weight:900;

    background:linear-gradient(
        to right,
        white,
        #ffd700,
        #ff9800
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-content p{

    font-size:20px;
    line-height:2;

    color:#f2f2f2;

    margin-bottom:40px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{

    display:inline-block;

    padding:15px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:0.4s;

    background:linear-gradient(
        to right,
        #ffd700,
        #ff9800
    );

    color:black;

    box-shadow:0 10px 30px rgba(255,183,0,0.35);
}

.btn:hover{
    transform:translateY(-5px);
}

.btn2{

    background:transparent;
    border:2px solid rgba(255,255,255,0.5);

    color:white;
}

/* ABOUT */

.about{

    padding:120px 8%;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;

    align-items:center;
}

.about-left h2{

    font-size:70px;
    line-height:1.1;

    background:linear-gradient(
        to right,
        white,
        #ffd700
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.about-right p{

    color:#d8d8d8;

    font-size:18px;
    line-height:2;

    margin-bottom:25px;
}

/* SERVICES */

.services{
    padding:120px 8%;
}

.title-area{
    text-align:center;
    margin-bottom:70px;
}

.title-area h2{

    font-size:70px;

    background:linear-gradient(
        to right,
        #ffd700,
        white
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.service-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;
}

.service-card{

    background:#0f172a;

    border-radius:30px;
     text-decoration:none;

    overflow:hidden;

    transition:0.5s;

    border:1px solid rgba(255,255,255,0.08);
}

.service-card:hover{

    transform:translateY(-10px);
}

.service-card img{

    width:100%;
    height:280px;

    object-fit:cover;
}

.service-content{
    padding:30px;
}

.service-content h3{

    font-size:28px;

    margin-bottom:18px;

    color:#ffd700;
}

.service-content p{

    color:#d5d5d5;

    line-height:1.9;
}

/* PARALLAX */

.parallax{

    position:relative;

    height:70vh;

    background:url('images/parallax.jpg') center/cover no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
}

.overlay2{

    position:absolute;
    inset:0;

    background:rgba(0,0,0,0.6);
}

.parallax-content{
    position:relative;
    z-index:5;
}

.parallax-content h2{

    font-size:80px;
    line-height:1.2;

    background:linear-gradient(
        to right,
        white,
        #ffd700
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* GALLERY */

.gallery{
    padding:120px 8%;
}

.gallery-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:20px;
}

.gallery-grid img{

    width:100%;
    height:280px;

    object-fit:cover;

    border-radius:20px;

    transition:0.5s;
}

.gallery-grid img:hover{

    transform:scale(1.05);
}

/* CONTACT */

.contact{

    padding:120px 8%;

    display:flex;
    justify-content:center;
}

.contact-box{

    max-width:700px;

    width:100%;

    padding:60px;

    border-radius:30px;

    background:#0f172a;

    text-align:center;

    border:1px solid rgba(255,255,255,0.08);
}

.contact-box h2{

    font-size:50px;

    margin-bottom:25px;

    color:#ffd700;
}

.contact-box p{

    line-height:2.2;
    color:#ddd;

    margin-bottom:10px;
}

/* FOOTER */

footer{

    text-align:center;

    padding:30px;

    background:black;

    color:#999;
}

/* MOBILE */

@media(max-width:900px){

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-content h2{
        font-size:60px;
    }

    .hero-content p{
        font-size:16px;
    }

    .about{
        grid-template-columns:1fr;
    }

    .about-left h2{
        font-size:45px;
    }

    .title-area h2{
        font-size:45px;
    }

    .parallax-content h2{
        font-size:45px;
    }

}

/* ====================================
   DIGITAL MARKETING PAGE
==================================== */

.digital-hero{

    position:relative;

    width:100%;
    height:100vh;

    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    background:#050816;
}

.digital-content{

    position:relative;
    z-index:5;

    max-width:1000px;
    padding:20px;
}

.digital-content h4{

    letter-spacing:8px;

    color:#ddd;

    margin-bottom:20px;
}

.digital-content h1{

    font-size:110px;

    line-height:1;

    margin-bottom:30px;

    font-weight:900;

    background:linear-gradient(
        to right,
        white,
        #00d2ff,
        #ffd700
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.digital-content p{

    font-size:20px;

    line-height:2;

    color:#f2f2f2;

    margin-bottom:40px;
}

/* ABOUT */

.about-business{

    padding:120px 8%;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:center;
}

.about-left h2{

    font-size:75px;

    line-height:1.1;

    background:linear-gradient(
        to right,
        white,
        #00d2ff,
        #ffd700
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.about-right p{

    color:#ddd;

    font-size:18px;

    line-height:2;

    margin-bottom:25px;
}

/* SERVICES */

.service-box{

    background:#0f172a;

    border-radius:30px;

    overflow:hidden;

    transition:0.5s;

    border:1px solid rgba(255,255,255,0.08);
}

.service-box:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,0.45);
}

.service-box img{

    width:100%;
    height:280px;

    object-fit:cover;
}

.service-info{

    padding:30px;
}

.service-info h3{

    font-size:30px;

    margin-bottom:18px;

    color:#ffd700;
}

.service-info p{

    color:#d5d5d5;

    line-height:1.9;
}

/* PARALLAX */

.digital-parallax{

    position:relative;

    height:70vh;

    background:url('images/digital-parallax.jpg') center/cover no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
}

.parallax-text{

    position:relative;
    z-index:5;
}

.parallax-text h2{

    font-size:90px;

    line-height:1.1;

    background:linear-gradient(
        to right,
        white,
        #00d2ff,
        #ffd700
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* PORTFOLIO */

.portfolio{

    padding:120px 8%;
}

.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:20px;
}

.portfolio-grid img{

    width:100%;
    height:300px;

    object-fit:cover;

    border-radius:20px;

    transition:0.5s;
}

.portfolio-grid img:hover{

    transform:scale(1.05);
}

/* STATS */

.stats{

    padding:100px 8%;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

    text-align:center;
}

.stat-box{

    background:#0f172a;

    padding:50px;

    border-radius:30px;

    border:1px solid rgba(255,255,255,0.08);
}

.stat-box h2{

    font-size:65px;

    margin-bottom:15px;

    color:#ffd700;
}

.stat-box p{

    color:#ddd;
}

/* CONTACT */

.contact{

    padding:120px 8%;

    display:flex;
    justify-content:center;
}

.contact-container{

    width:100%;

    max-width:700px;

    padding:60px;

    text-align:center;

    background:#0f172a;

    border-radius:30px;

    border:1px solid rgba(255,255,255,0.08);
}

.contact-container h2{

    font-size:50px;

    margin-bottom:20px;

    color:#ffd700;
}

.contact-container p{

    color:#ddd;

    margin-bottom:30px;
}

/* MOBILE */

@media(max-width:900px){

    .digital-content h1{
        font-size:60px;
    }

    .digital-content p{
        font-size:16px;
    }

    .about-business{
        grid-template-columns:1fr;
    }

    .about-left h2{
        font-size:45px;
    }

    .parallax-text h2{
        font-size:45px;
    }

}

/* ====================================
   EVENT MANAGEMENT PAGE
==================================== */

.event-hero{

    position:relative;

    width:100%;
    height:100vh;

    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
}

/* LIGHT EFFECT */

.event-light{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    z-index:2;
}

.light1{

    width:350px;
    height:350px;

    background:rgba(255,0,150,0.22);

    top:10%;
    left:10%;
}

.light2{

    width:320px;
    height:320px;

    background:rgba(255,183,0,0.20);

    bottom:10%;
    right:10%;
}

/* CONTENT */

.event-content{

    position:relative;

    z-index:5;

    max-width:1000px;

    padding:20px;
}

.event-content h4{

    letter-spacing:8px;

    color:#ddd;

    margin-bottom:20px;
}

.event-content h1{

    font-size:110px;

    line-height:1;

    margin-bottom:30px;

    font-weight:900;

    background:linear-gradient(
        to right,
        white,
        #ff4fd8,
        #ffd700
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.event-content p{

    font-size:20px;

    line-height:2;

    color:#f2f2f2;

    margin-bottom:40px;
}

/* ABOUT */

.event-about{

    padding:120px 8%;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:center;
}

.event-about-left h2{

    font-size:75px;

    line-height:1.1;

    background:linear-gradient(
        to right,
        white,
        #ff4fd8,
        #ffd700
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.event-about-right p{

    color:#ddd;

    font-size:18px;

    line-height:2;

    margin-bottom:25px;
}

/* EVENT BOX */

.event-box{

    background:#0f172a;

    border-radius:30px;

    overflow:hidden;

    transition:0.5s;

    border:1px solid rgba(255,255,255,0.08);
}

.event-box:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,0.45);
}

.event-box img{

    width:100%;
    height:280px;

    object-fit:cover;
}

.event-info{

    padding:30px;
}

.event-info h3{

    font-size:30px;

    margin-bottom:18px;

    color:#ffd700;
}

.event-info p{

    color:#d5d5d5;

    line-height:1.9;
}

/* PARALLAX */

.event-parallax{

    position:relative;

    height:70vh;

    background:url('images/event-parallax.jpg') center/cover no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
}

.event-parallax-content{

    position:relative;

    z-index:5;
}

.event-parallax-content h2{

    font-size:90px;

    line-height:1.1;

    background:linear-gradient(
        to right,
        white,
        #ff4fd8,
        #ffd700
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* MOBILE */

@media(max-width:900px){

    .event-content h1{
        font-size:60px;
    }

    .event-content p{
        font-size:16px;
    }

    .event-about{
        grid-template-columns:1fr;
    }

    .event-about-left h2{
        font-size:45px;
    }

    .event-parallax-content h2{
        font-size:45px;
    }

}

/* ====================================
   TOURS & TRAVELS PAGE
==================================== */

.travel-hero{

    position:relative;

    width:100%;
    height:100vh;

    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
}

/* LIGHT EFFECT */

.travel-light{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    z-index:2;
}

.light1{

    width:350px;
    height:350px;

    background:rgba(0,255,180,0.18);

    top:10%;
    left:10%;
}

.light2{

    width:320px;
    height:320px;

    background:rgba(0,140,255,0.18);

    bottom:10%;
    right:10%;
}

/* CONTENT */

.travel-content{

    position:relative;

    z-index:5;

    max-width:1000px;

    padding:20px;
}

.travel-content h4{

    letter-spacing:8px;

    color:#ddd;

    margin-bottom:20px;
}

.travel-content h1{

    font-size:110px;

    line-height:1;

    margin-bottom:30px;

    font-weight:900;

    background:linear-gradient(
        to right,
        white,
        #00ffd5,
        #00bfff
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.travel-content p{

    font-size:20px;

    line-height:2;

    color:#f2f2f2;

    margin-bottom:40px;
}

/* ABOUT */

.travel-about{

    padding:120px 8%;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:center;
}

.travel-about-left h2{

    font-size:75px;

    line-height:1.1;

    background:linear-gradient(
        to right,
        white,
        #00ffd5,
        #00bfff
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.travel-about-right p{

    color:#ddd;

    font-size:18px;

    line-height:2;

    margin-bottom:25px;
}

/* PACKAGES */

.packages{

    padding:120px 8%;
}

.package-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;
}

.package-card{

    background:#0f172a;

    border-radius:30px;

    overflow:hidden;

    transition:0.5s;

    border:1px solid rgba(255,255,255,0.08);
}

.package-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,0.45);
}

.package-card img{

    width:100%;
    height:280px;

    object-fit:cover;
}

.package-content{

    padding:30px;
}

.package-content h3{

    font-size:32px;

    margin-bottom:18px;

    color:#00ffd5;
}

.package-content p{

    color:#d5d5d5;

    line-height:1.9;

    margin-bottom:25px;
}

/* PARALLAX */

.travel-parallax{

    position:relative;

    height:70vh;

    background:url('images/travel-parallax.jpg') center/cover no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
}

.travel-parallax-content{

    position:relative;

    z-index:5;
}

.travel-parallax-content h2{

    font-size:90px;

    line-height:1.1;

    background:linear-gradient(
        to right,
        white,
        #00ffd5,
        #00bfff
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* MOBILE */

@media(max-width:900px){

    .travel-content h1{
        font-size:60px;
    }

    .travel-content p{
        font-size:16px;
    }

    .travel-about{
        grid-template-columns:1fr;
    }

    .travel-about-left h2{
        font-size:45px;
    }

    .travel-parallax-content h2{
        font-size:45px;
    }

}

/* ====================================
   CAR RENTALS PAGE
==================================== */

.car-hero{

    position:relative;

    width:100%;
    height:100vh;

    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
}

/* LIGHT EFFECT */

.car-light{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    z-index:2;
}

.light1{

    width:350px;
    height:350px;

    background:rgba(255,120,0,0.20);

    top:10%;
    left:10%;
}

.light2{

    width:320px;
    height:320px;

    background:rgba(255,215,0,0.18);

    bottom:10%;
    right:10%;
}

/* CONTENT */

.car-content{

    position:relative;

    z-index:5;

    max-width:1000px;

    padding:20px;
}

.car-content h4{

    letter-spacing:8px;

    color:#ddd;

    margin-bottom:20px;
}

.car-content h1{

    font-size:110px;

    line-height:1;

    margin-bottom:30px;

    font-weight:900;

    background:linear-gradient(
        to right,
        white,
        #ff9800,
        #ffd700
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.car-content p{

    font-size:20px;

    line-height:2;

    color:#f2f2f2;

    margin-bottom:40px;
}

/* ABOUT */

.car-about{

    padding:120px 8%;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:center;
}

.car-about-left h2{

    font-size:75px;

    line-height:1.1;

    background:linear-gradient(
        to right,
        white,
        #ff9800,
        #ffd700
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.car-about-right p{

    color:#ddd;

    font-size:18px;

    line-height:2;

    margin-bottom:25px;
}

/* FLEET */

.fleet{

    padding:120px 8%;
}

.fleet-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;
}

.car-card{

    background:#0f172a;

    border-radius:30px;

    overflow:hidden;

    transition:0.5s;

    border:1px solid rgba(255,255,255,0.08);
}

.car-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,0.45);
}

.car-card img{

    width:100%;
    height:280px;

    object-fit:cover;
}

.car-info{

    padding:30px;
}

.car-info h3{

    font-size:32px;

    margin-bottom:18px;

    color:#ffb300;
}

.car-info p{

    color:#d5d5d5;

    line-height:1.9;

    margin-bottom:25px;
}

/* PARALLAX */

.car-parallax{

    position:relative;

    height:70vh;

    background:url('images/car-parallax.jpg') center/cover no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
}

.car-parallax-content{

    position:relative;

    z-index:5;
}

.car-parallax-content h2{

    font-size:90px;

    line-height:1.1;

    background:linear-gradient(
        to right,
        white,
        #ff9800,
        #ffd700
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* MOBILE */

@media(max-width:900px){

    .car-content h1{
        font-size:60px;
    }

    .car-content p{
        font-size:16px;
    }

    .car-about{
        grid-template-columns:1fr;
    }

    .car-about-left h2{
        font-size:45px;
    }

    .car-parallax-content h2{
        font-size:45px;
    }

}

/* ====================================
   MEN'S PREMIUM COLLECTIONS PAGE
==================================== */

.fashion-hero{

    position:relative;

    width:100%;
    height:100vh;

    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    background:black;
}

/* LIGHT EFFECT */

.fashion-light{

    position:absolute;

    border-radius:50%;

    filter:blur(140px);

    z-index:2;
}

.light1{

    width:380px;
    height:380px;

    background:rgba(255,215,0,0.18);

    top:10%;
    left:10%;
}

.light2{

    width:320px;
    height:320px;

    background:rgba(255,255,255,0.10);

    bottom:10%;
    right:10%;
}

/* CONTENT */

.fashion-content{

    position:relative;

    z-index:5;

    max-width:1100px;

    padding:20px;

     margin-top:120px;
}


.fashion-content h4{

    letter-spacing:10px;

    color:#ffffff;

    margin-bottom:35px;

    font-weight:600;

    font-size:18px;

    text-transform:uppercase;
}

.fashion-content h1{

    font-size:100px;

    line-height:0.95;

    margin-bottom:35px;

    font-weight:900;

    text-transform:uppercase;

    background:linear-gradient(
        to right,
        white,
        #ffd700,
        #ffb300,
        white
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.fashion-content p{

    font-size:21px;

    line-height:2;

    color:#f2f2f2;

    margin-bottom:45px;
}

/* ABOUT */

.fashion-about{

    padding:140px 8%;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;
}

.fashion-about-left h2{

    font-size:80px;

    line-height:1.05;

    font-weight:900;

    background:linear-gradient(
        to right,
        white,
        #ffd700,
        #ffb300
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.fashion-about-right p{

    color:#ddd;

    font-size:18px;

    line-height:2.1;

    margin-bottom:30px;
}

/* COLLECTIONS */

.collections{

    padding:140px 8%;
}

.collection-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:40px;
}

.fashion-card{

    background:linear-gradient(
        145deg,
        #0f172a,
        #111827
    );

    border-radius:35px;

    overflow:hidden;

    transition:0.5s;

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:0 15px 40px rgba(0,0,0,0.4);
}

.fashion-card:hover{

    transform:translateY(-12px) scale(1.02);

    box-shadow:0 25px 50px rgba(0,0,0,0.55);
}

.fashion-card img{

    width:100%;
    height:420px;

    object-fit:cover;
}

.fashion-info{

    padding:35px;
}

.fashion-info h3{

    font-size:34px;

    margin-bottom:18px;

    color:#ffd700;
}

.fashion-info p{

    color:#d5d5d5;

    line-height:2;

    margin-bottom:28px;
}

/* PARALLAX */

.fashion-parallax{

    position:relative;

    height:80vh;

    background:url('images/fashion-parallax.jpg') center/cover no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    overflow:hidden;
}

.fashion-parallax-content{

    position:relative;

    z-index:5;
}

.fashion-parallax-content h2{

    font-size:100px;

    line-height:1;

    font-weight:900;

    text-transform:uppercase;

    background:linear-gradient(
        to right,
        white,
        #ffd700,
        #ffb300
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* FEATURES */

.fashion-features{

    padding:120px 8%;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;
}

.feature-box{

    background:linear-gradient(
        145deg,
        #0f172a,
        #111827
    );

    padding:60px 40px;

    border-radius:35px;

    text-align:center;

    border:1px solid rgba(255,255,255,0.08);

    transition:0.5s;
}

.feature-box:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,0.5);
}

.feature-box h2{

    font-size:50px;

    margin-bottom:18px;

    color:#ffd700;
}

.feature-box p{

    color:#ddd;

    font-size:18px;
}

/* MOBILE */

@media(max-width:900px){

    .fashion-content h1{
        font-size:62px;
    }

    .fashion-content p{
        font-size:16px;
    }

    .fashion-about{
        grid-template-columns:1fr;
    }

    .fashion-about-left h2{
        font-size:50px;
    }

    .fashion-parallax-content h2{
        font-size:50px;
    }

}

/* =========================
   HERO TEXT ANIMATION
========================= */

.welcome-text{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:0px;

    margin-bottom:20px;

    letter-spacing:0px;
}

.welcome-text span{

    display:inline-block;

    opacity:0;

    color:#ffffff;

    transform:translateY(-120px);

    animation:dropLetter 0.7s forwards;
}

/* SPACE */

.welcome-text .space{

    width:10px;
}

/* HERO LOGO */

.hero-logo{

    line-height:0.95;

    font-size:120px;

    font-weight:900;
    letter-spacing:0px;
}

.hero-logo span{

    display:inline-block;

    opacity:0;

     margin-right:-3px;

    transform:translateY(-250px);

    background:linear-gradient(
        to right,
        #f5f5f5,
    #caa95c,
    #ffdf8c,
    #ffffff
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:dropLetter 0.9s forwards;
}

/* LETTER DELAYS */

.welcome-text span:nth-child(1){animation-delay:0.1s;}
.welcome-text span:nth-child(2){animation-delay:0.15s;}
.welcome-text span:nth-child(3){animation-delay:0.2s;}
.welcome-text span:nth-child(4){animation-delay:0.25s;}
.welcome-text span:nth-child(5){animation-delay:0.3s;}
.welcome-text span:nth-child(6){animation-delay:0.35s;}
.welcome-text span:nth-child(7){animation-delay:0.4s;}
.welcome-text span:nth-child(9){animation-delay:0.5s;}
.welcome-text span:nth-child(10){animation-delay:0.55s;}

/* KMR */

.hero-logo span:nth-child(1){animation-delay:0.7s;}
.hero-logo span:nth-child(2){animation-delay:0.8s;}
.hero-logo span:nth-child(3){animation-delay:0.9s;}

/* GLOBAL */

.hero-logo span:nth-child(5){animation-delay:1.1s;}
.hero-logo span:nth-child(6){animation-delay:1.2s;}
.hero-logo span:nth-child(7){animation-delay:1.3s;}
.hero-logo span:nth-child(8){animation-delay:1.4s;}
.hero-logo span:nth-child(9){animation-delay:1.5s;}
.hero-logo span:nth-child(10){animation-delay:1.6s;}

/* ANIMATION */

@keyframes dropLetter{

    0%{

        opacity:0;

        transform:
        translateY(-250px)
        rotate(-20deg);

    }

    70%{

        opacity:1;

        transform:
        translateY(20px)
        rotate(5deg);

    }

    100%{

        opacity:1;

        transform:
        translateY(0)
        rotate(0);

    }
}

/* MOBILE */

@media(max-width:768px){

    .hero-logo{

        font-size:60px;
    }

    .welcome-text{

        letter-spacing:0px;
    }

}

a{

    text-decoration:none;

    color:inherit;
}





/* =========================
   WEBSITE POPUP
========================= */

.popup-overlay{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.88);

    backdrop-filter:blur(8px);

    display:flex;

    justify-content:center;
    align-items:center;

    z-index:999999;

    animation:fadeIn 1s ease;
}

/* POPUP BOX */

.popup-box{

    width:90%;
    max-width:650px;

    padding:60px 50px;

    border-radius:35px;

    text-align:center;

    background:linear-gradient(
        145deg,
        rgba(15,23,42,0.95),
        rgba(17,24,39,0.95)
    );

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 0 40px rgba(212,175,55,0.15);

    animation:popupUp 1s ease;
}

/* TITLE */

.popup-box h2{

    font-size:70px;

    margin-bottom:25px;

    font-family:'Bebas Neue', sans-serif;

    letter-spacing:4px;

    background:linear-gradient(
        to right,
        #ffffff,
        #d4af37,
        #ffdf8c
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* TEXT */

.popup-box p{

    font-size:18px;

    line-height:2;

    color:#dddddd;

    margin-bottom:35px;
}

/* BUTTON */

.popup-box button{

    padding:16px 40px;

    border:none;

    border-radius:50px;

    cursor:pointer;

    font-size:16px;

    font-weight:600;

    background:linear-gradient(
        to right,
        #d4af37,
        #ffdf8c
    );

    color:black;

    transition:0.4s;
}

.popup-box button:hover{

    transform:translateY(-5px);

    box-shadow:
    0 10px 30px rgba(212,175,55,0.35);
}

/* ANIMATIONS */

@keyframes popupUp{

    from{

        opacity:0;

        transform:
        translateY(80px)
        scale(0.9);
    }

    to{

        opacity:1;

        transform:
        translateY(0)
        scale(1);
    }
}

@keyframes fadeIn{

    from{

        opacity:0;
    }

    to{

        opacity:1;
    }
}

/* MOBILE */

@media(max-width:768px){

    .popup-box{

        padding:40px 25px;
    }

    .popup-box h2{

        font-size:45px;
    }

}