
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    overflow-x:hidden;

}

/* ========================= */
/* HERO SECTION */
/* ========================= */


.carousel-item{
    height:100vh;
    position:relative;
}

/* Split Layout */

.slide-wrapper{
    display:grid;
    grid-template-columns:42% 58%;
    width:100%;
    height:100vh;
}

/* ========================= */
/* LEFT SIDE */
/* ========================= */

.left-content{
    background:
    linear-gradient(rgba(8,18,40,.94),rgba(8,18,40,.95)),
    url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=1200&auto=format&fit=crop');

    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    padding:80px;
    position:relative;
    overflow:hidden;
}

.left-content::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    background:radial-gradient(circle,#00d9ff 0%,transparent 70%);
    top:-150px;
    left:-120px;
    opacity:.18;
}

.left-content::after{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:radial-gradient(circle,#ff9f1a 0%,transparent 70%);
    bottom:-100px;
    right:-80px;
    opacity:.12;
}

/* Text */

.content-box{
    max-width:540px;
    position:relative;
    z-index:5;
    margin-top:30px;
}

.content-box h5{
    color:#00d9ff;
    font-size:15px;
    letter-spacing:5px;
    text-transform:uppercase;
    margin-bottom:22px;
    font-weight:500;
}

.content-box h1{
    color:#fff;
    font-size:64px;
    line-height:0.95;
    margin-bottom:35px;
    font-weight:600;
    font-family:'Cormorant Garamond',serif;
}

.content-box p{
    color:#d9d9d9;
    font-size:18px;
    line-height:2;
    margin-bottom:45px;
    font-family:'Cormorant Garamond',serif;
}

/* Buttons */

.hero-btns{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn-custom{
    padding:16px 34px;
    border-radius:0;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    transition:.4s;
}

.btn-orange{
    background:#ff9f1a;
    color:#fff;
}

.btn-orange:hover{
    background:#ff7b00;
    color:#fff;
    transform:translateY(-3px);
}

.btn-outline{
    border:1px solid rgba(255,255,255,.35);
    color:#fff;
}

.btn-outline:hover{
    background:#fff;
    color:#111;
}

/* ========================= */
/* RIGHT IMAGE */
/* ========================= */

.right-image{
    position:relative;
    overflow:hidden;
}

.right-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    animation:zoom 10s linear infinite alternate;
}

@keyframes zoom{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.08);
    }

}

/* Overlay */

.right-image::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
    to right,
    rgba(0,0,0,.35),
    rgba(0,0,0,.08)
    );
}

/* Floating Box */

.float-box{
    position:absolute;
    right:60px;
    bottom:60px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(15px);
    padding:32px;
    width:270px;
    color:#fff;
    z-index:10;
    border-left:4px solid #ff9f1a;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.float-box h2{
    font-size:52px;
    margin-bottom:10px;
    color:#ff9f1a;
    font-family:'Cormorant Garamond',serif;
}

.float-box p{
    line-height:1.9;
    color:#eee;
    font-size:15px;
}

/* ========================= */
/* INDICATORS */
/* ========================= */

.carousel-indicators{
    position:absolute;
    left:28px;
    top:50%;
    transform:translateY(-50%);
    flex-direction:column;
    margin:0;
    gap:14px;
    z-index:20;
}

.carousel-indicators button{
    width:16px !important;
    height:16px !important;
    border-radius:50%;
    border:1px solid #fff !important;
    background:transparent !important;
    opacity:1 !important;
}

.carousel-indicators .active{
    background:#fff !important;
}

/* Controls */

.carousel-control-prev,
.carousel-control-next{
    width:70px;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:992px){

    .slide-wrapper{
        grid-template-columns:1fr;
    }

    .left-content{
        position:absolute;
        inset:0;
        z-index:5;
        background:rgba(10,15,30,.75);
    }

    .right-image{
        height:100vh;
    }

    .content-box{
        text-align:center;
        margin:auto;
    }

    .hero-btns{
        justify-content:center;
    }

    .content-box h1{
        font-size:58px;
    }

    .float-box{
        display:none;
    }

}

@media(max-width:576px){

    .left-content{
        padding:40px 25px;
    }

    .content-box h1{
        font-size:42px;
    }

    .content-box p{
        font-size:16px;
        line-height:1.8;
    }

    .btn-custom{
        width:100%;
        text-align:center;
    }

    .carousel-indicators{
        left:10px;
    }

}

