/* ==========================================
   RESET
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:linear-gradient(180deg,#050505,#0d0d0d,#050505);
    color:#eaeaea;
    overflow-x:hidden;
}

/* ==========================================
   CONTAINER
========================================== */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ==========================================
   HEADER
========================================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:18px 0;
    background:rgba(0,0,0,.82);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    z-index:999;
    transition:.35s ease;
    box-shadow:0 6px 25px rgba(0,0,0,.45);
}

.nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

/* LOGO */

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:65px;
    height:65px;
    object-fit:contain;
    transition:.35s;
}

.logo:hover img{
    transform:rotate(-4deg) scale(1.05);
}

.logo-text h2{
    font-family:'Cormorant Garamond',serif;
    color:#fff;
    font-size:22px;
    letter-spacing:2px;
}

.logo-text p{
    color:#B6D0E1;
    font-size:12px;
    margin-top:3px;
}

/* NAVIGATION */

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav ul li{
    position:relative;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    transition:.3s;
}

nav a:hover,
nav .active{
    color:#B6D0E1;
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#B6D0E1;
    transition:.35s;
}

nav a:hover::after{
    width:100%;
}

/* BUTTON */

.project-btn{
    background:#B6D0E1;
    color:#000;
    padding:13px 26px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
    white-space:nowrap;
}

.project-btn:hover{
    background:#d8e8f2;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(182,208,225,.35);
}

/* MENU */

.menu-toggle{
    display:none;
    color:#fff;
    font-size:26px;
    cursor:pointer;
}

/* ==========================================
   HERO
========================================== */

.hero{
    position:relative;
    height:100vh;
    background:url("hero.png") center center/cover no-repeat;
    display:flex;
    align-items:center;
    padding-top:110px;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(0,0,0,.90),
        rgba(0,0,0,.55),
        rgba(0,0,0,.88)
    );
}

.hero-content{
    position:relative;
    z-index:2;
}

.left{
    max-width:650px;
}

.left h3{
    color:#B6D0E1;
    letter-spacing:6px;
    margin-bottom:18px;
    font-size:15px;
}

.left h1{
    font-family:'Cormorant Garamond',serif;
    font-size:78px;
    line-height:1.05;
    color:#fff;
}

.left h1 span{
    color:#B6D0E1;
}

.divider{
    width:120px;
    height:4px;
    background:#B6D0E1;
    margin:30px 0;
}

.left p{
    max-width:560px;
    font-size:18px;
    color:#d6d6d6;
    line-height:1.9;
}

.buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-top:40px;
}

.btn1,
.btn2{
    padding:16px 34px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}

.btn1{
    background:#B6D0E1;
    color:#000;
}

.btn2{
    border:2px solid rgba(255,255,255,.85);
    color:#fff;
}

.btn1:hover,
.btn2:hover{
    transform:translateY(-4px);
}
/* ==========================================
   ABOUT
========================================== */

.about{
    padding:120px 0;
    position:relative;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

.about-image img{
    width:100%;
    display:block;
    border-radius:20px;
    transition:.5s ease;
    box-shadow:0 20px 60px rgba(0,0,0,.6);
}

.about-image:hover img{
    transform:scale(1.05);
}

.sub-title{
    display:block;
    color:#B6D0E1;
    letter-spacing:3px;
    font-weight:600;
    margin-bottom:15px;
}

.about-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:52px;
    line-height:1.2;
    margin-bottom:25px;
    color:#fff;
}

.about-content p{
    color:#bdbdbd;
    line-height:1.9;
    font-size:17px;
    margin-bottom:35px;
}

.discover-btn{
    display:inline-block;
    padding:16px 35px;
    background:#000;
    color:#fff;
    border-radius:40px;
    text-decoration:none;
    border:1px solid rgba(255,255,255,.08);
    transition:.35s;
}

.discover-btn:hover{
    background:#B6D0E1;
    color:#000;
}

/* ==========================================
   showcase title
========================================== */
.showcase-title h1{
    font-family:'Cormorant Garamond',serif;
    font-size:64px;
    color:#fff;
    line-height:1;
    margin-bottom:12px;

    opacity:0;
    transform:translateY(40px);
    animation:slideUp 1s ease forwards;
}

.showcase-title h6{
    font-family:'Poppins',sans-serif;
    font-size:12px;
    font-weight:500;
    color:;
    letter-spacing:3px;
    margin-left:70px;
    text-transform:uppercase;

    opacity:0;
    transform:translateY(40px);
    animation:slideUp 1s ease forwards;
    animation-delay:.4s;
}

@keyframes slideUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ==========================================
   FEATURES
========================================== */

.features{
    grid-column:1/3;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:70px;
}

.feature{
    background:linear-gradient(145deg,#111,#1b1b1b);
    border:1px solid rgba(255,255,255,.05);
    border-radius:18px;
    padding:35px 28px;
    text-align:center;
    transition:.35s;
}

.feature:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.45);
}

.feature i{
    font-size:42px;
    color:#B6D0E1;
    margin-bottom:18px;
}

.feature h3{
    color:#fff;
    margin-bottom:10px;
}

.feature p{
    color:#bdbdbd;
    line-height:1.7;
}

/* ==========================================
   SHOWCASE
========================================== */

.showcase{
    padding:120px 0;
    background:linear-gradient(180deg,#050505,#0b0b0b,#050505);
}

.showcase-box{
    display:flex;
    align-items:center;
    overflow:hidden;
    border-radius:28px;
    background:linear-gradient(135deg,#000,#0b0b0b,#121212);
    box-shadow:0 25px 70px rgba(0,0,0,.7);
}

/* IMAGE */

.showcase-image{
    position:relative;
    flex:1;
    min-height:560px;
    overflow:hidden;
    background:#0b0b0b;
}

.showcase-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* ===== PREMIUM BLEND EFFECT ===== */

.image-fade{
    position:absolute;
    top:0;
    right:0;
    width:45%;
    height:100%;
    background:linear-gradient(
        to right,
        rgba(11,11,11,0),
        rgba(11,11,11,.15),
        rgba(11,11,11,.45),
        rgba(11,11,11,.75),
        #0b0b0b
    );
    pointer-events:none;
}

/* Extra soft glow */

.showcase-image::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(255,255,255,.02),
        rgba(0,0,0,.08),
        rgba(0,0,0,.18)
    );
    pointer-events:none;
}

/* CONTENT */

.showcase-content{
    flex:1;
    padding:80px 70px;
}

.showcase-content span{
    color:#B6D0E1;
    font-weight:600;
    letter-spacing:3px;
}

.showcase-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:54px;
    color:#fff;
    margin:20px 0;
}

.showcase-content p{
    color:#bdbdbd;
    line-height:1.9;
    margin-bottom:35px;
}
/* ==========================================
   FOOTER
========================================== */

footer{
    background:#000;
    padding:35px 0;
    margin-top:80px;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
}

footer p{
    color:#9f9f9f;
    font-size:15px;
    letter-spacing:1px;
}

/* ==========================================
   ANIMATIONS
========================================== */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.hero-content,
.about-content,
.about-image,
.feature,
.showcase-box{

    animation:fadeUp .9s ease both;

}

.feature:nth-child(2){
    animation-delay:.15s;
}

.feature:nth-child(3){
    animation-delay:.3s;
}

.feature:nth-child(4){
    animation-delay:.45s;
}

/* Smooth Hover */

.showcase-image img,
.about-image img,
.project-btn,
.btn1,
.btn2,
.discover-btn{

    transition:.35s ease;

}

.showcase-image:hover img{

    transform:scale(1.05);

}

.discover-btn:hover,
.project-btn:hover,
.btn1:hover,
.btn2:hover{

    box-shadow:0 12px 30px rgba(182,208,225,.18);

}

/* ==========================================
   TABLET
========================================== */

@media(max-width:991px){

    .menu-toggle{
        display:block;
    }

    .project-btn{
        display:none;
    }

    nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#050505;
        display:none;
        border-top:1px solid rgba(255,255,255,.08);
    }

    nav.active{
        display:block;
    }

    nav ul{
        flex-direction:column;
        gap:0;
        padding:20px 0;
    }

    nav ul li{
        text-align:center;
        padding:15px 0;
    }

    .about-grid{
        grid-template-columns:1fr;
    }

    .features{
        grid-template-columns:repeat(2,1fr);
        grid-column:auto;
    }

    .showcase-box{
        flex-direction:column;
    }

    .showcase-image{
        min-height:420px;
    }

    .image-fade{

        width:100%;
        height:150px;
        top:auto;
        bottom:0;

        background:linear-gradient(
            to bottom,
            rgba(11,11,11,0),
            rgba(11,11,11,.35),
            #0b0b0b
        );

    }

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

    header{
        padding:15px 0;
    }

    .logo img{
        width:55px;
        height:55px;
    }

    .logo-text h2{
        font-size:18px;
    }

    .logo-text p{
        font-size:11px;
    }

    .left h3{
        font-size:13px;
        letter-spacing:4px;
    }

    .left h1{
        font-size:46px;
    }

    .left p{
        font-size:16px;
    }

    .buttons{
        flex-direction:column;
    }

    .btn1,
    .btn2,
    .discover-btn{
        width:100%;
        text-align:center;
    }

    .about{
        padding:90px 0;
    }

    .about-content h2{
        font-size:40px;
    }

    .showcase-content{
        padding:45px 30px;
    }

    .showcase-content h2{
        font-size:40px;
    }

    .features{
        grid-template-columns:1fr;
    }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media(max-width:480px){

    .container{
        width:92%;
    }

    .left h1{
        font-size:34px;
    }

    .divider{
        width:80px;
    }

    .showcase-image{
        min-height:300px;
    }

    .showcase-content h2{
        font-size:32px;
    }

    footer p{
        font-size:13px;
    }

}
/*==============================
CONTACT PAGE
==============================*/

.contact-page{

padding:170px 0 120px;

}

.contact-heading{

text-align:center;
margin-bottom:70px;

}

.contact-heading span{

color:#B6D0E1;
letter-spacing:4px;
font-weight:600;

}

.contact-heading h1{

font-family:'Cormorant Garamond',serif;
font-size:64px;
color:#fff;
margin:20px 0;

}

.contact-heading p{

color:#bdbdbd;
max-width:650px;
margin:auto;
line-height:1.8;

}

.contact-grid{

display:grid;
grid-template-columns:1fr 1.2fr;
gap:50px;

}

.contact-info{

display:flex;
flex-direction:column;
gap:25px;

}

.info-box{

display:flex;
align-items:flex-start;
gap:20px;

background:#111;

padding:28px;

border-radius:18px;

border:1px solid rgba(255,255,255,.05);

}

.info-box i{

font-size:28px;
color:#B6D0E1;

}

.info-box h3{

margin-bottom:8px;
color:#fff;

}

.info-box p{

color:#bdbdbd;

}

.contact-form{

background:#111;

padding:40px;

border-radius:22px;

border:1px solid rgba(255,255,255,.05);

}

.contact-form form{

display:flex;
flex-direction:column;
gap:20px;

}

.contact-form input,
.contact-form textarea{

background:#1b1b1b;

border:1px solid rgba(255,255,255,.08);

padding:18px;

border-radius:14px;

color:#fff;

font-family:'Poppins',sans-serif;

font-size:15px;

outline:none;

}

.contact-form input:focus,
.contact-form textarea:focus{

border-color:#B6D0E1;

}

.contact-form button{

padding:18px;

border:none;

border-radius:40px;

background:#B6D0E1;

color:#000;

font-size:16px;

font-weight:600;

cursor:pointer;

transition:.35s;

}

.contact-form button:hover{

background:#d8e8f2;

transform:translateY(-3px);

box-shadow:0 12px 30px rgba(182,208,225,.25);

}

@media(max-width:900px){

.contact-grid{

grid-template-columns:1fr;

}

.contact-heading h1{

font-size:48px;

}

}

@media(max-width:480px){

.contact-heading h1{

font-size:36px;

}

.contact-form{

padding:25px;

}

}
/* Contact Links */

.info-box a{

color:#eaeaea;

text-decoration:none;

transition:.3s;

}

.info-box a:hover{

color:#B6D0E1;

}
.info-link{
    display:block;
    text-decoration:none;
    color:inherit;
}