/* NAVBAR */



.nav-link{
    margin-left:15px;
    font-weight:500;
}


/* HERO */

.hero-section{
    min-height:100vh;
    background:
    linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.9)),
    url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    text-align:center;
    padding-top:100px;
}

.hero-title{
    font-size:90px;
    font-weight:900;
    line-height:1;
    text-transform:uppercase;
}

.hero-text{
    color:#d0d0d0;
    font-size:20px;
    margin-top:25px;
    line-height:1.7;
}

.hero-btn{
    padding:15px 35px;
    border-radius:50px;
    font-weight:700;
    text-decoration:none;
    display:inline-block;
    transition:0.3s;
}

.btn-yellow{
    background:#ffc107;
    color:#000;
}

.btn-yellow:hover{
    background:#fff;
    color:#000;
}

.btn-outline-custom{
    border:1px solid rgba(255,255,255,0.3);
    color:#fff;
}

.btn-outline-custom:hover{
    background:#fff;
    color:#000;
}

/* MARQUEE */

.marquee{
    background:#111;
    padding:15px 0;
    overflow:hidden;
    white-space:nowrap;
    border-top:1px solid rgba(255,255,255,0.08);
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.marquee span{
    display:inline-block;
    animation:scroll 20s linear infinite;
    color:#aaa;
    font-size:18px;
    letter-spacing:2px;
}

@keyframes scroll{
    from{
        transform:translateX(100%);
    }
    to{
        transform:translateX(-100%);
    }
}

/* SECTION */

.section-padding{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:55px;
    font-weight:800;
}

.section-title p{
    color:#aaa;
    max-width:700px;
    margin:auto;
    margin-top:20px;
}

/* CARDS */

.custom-card{
    background:#111;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:25px;
    padding:35px;
    height:100%;
    transition:0.4s;
}

.custom-card:hover{
    transform:translateY(-8px);
    border-color:#ffc107;
}

.custom-card h3{
    font-size:28px;
    margin-bottom:20px;
}

.custom-card p{
    color:#bbb;
    line-height:1.8;
}

/* ABOUT */

.about-img{
    width:100%;
    border-radius:30px;
}

.about-text h2{
    font-size:55px;
    font-weight:800;
    margin-bottom:25px;
}

.about-text p{
    color:#bbb;
    line-height:1.9;
}

/* CONTACT */

.form-control{
    background:#111;
    border:1px solid rgba(255,255,255,0.08);
    color:#fff;
    padding:15px;
    border-radius:15px;
}

.form-control:focus{
    background:#111;
    color:#fff;
    box-shadow:none;
    border-color:#ffc107;
}

textarea{
    resize:none;
}

/* FOOTER */

footer{
    border-top:1px solid rgba(255,255,255,0.08);
    padding:50px 0;
    text-align:center;
}

.social-icons a{
    width:45px;
    height:45px;
    background:#111;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    text-decoration:none;
    color:#fff;
    margin:0 5px;
    transition:0.3s;
}

.social-icons a:hover{
    background:#ffc107;
    color:#000;
}



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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#050505;
    color:#fff;
    overflow-x:hidden;
}

/* NAVBAR */

nav{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    backdrop-filter:blur(10px);
    background:rgba(244,235,215,0.94);
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.nav-container{
    width:90%;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0 5px 0;
}

.logo{
    font-size:28px;
    font-weight:900;
    letter-spacing:1px;
}

.nav-links{
    display:flex;
    gap:30px;
}

.nav-links a{
    color:#000;
    text-decoration:none;
    font-size:15px;
    transition:0.3s;
    padding-top: 10px;
    text-transform: uppercase;
}

.nav-links a:hover{
    color:#DA621E;
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:120px 20px 50px;
    background:
    linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.9)),
    url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?q=80&w=1600&auto=format&fit=crop') center/cover;
}

.hero-content{
    max-width:900px;
}

.hero h1{
    font-size:90px;
    line-height:1;
    font-weight:900;
    text-transform:uppercase;
}

.hero p{
    margin-top:25px;
    font-size:22px;
    color:#d0d0d0;
    line-height:1.6;
}

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

.btn{
    padding:15px 35px;
    border-radius:60px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
    display:inline-block;
}

.btn-primary{
    background:#ffcc00;
    color:#000;
}

.btn-primary:hover{
    background:#fff;
}

.btn-secondary{
    border:1px solid rgba(255,255,255,0.3);
    color:#fff;
}

.btn-secondary:hover{
    background:#fff;
    color:#000;
}

/* MARQUEE */

.marquee{
    overflow:hidden;
    white-space:nowrap;
    border-top:1px solid rgba(255,255,255,0.08);
    border-bottom:1px solid rgba(255,255,255,0.08);
    background:#0d0d0d;
    padding:20px 0;
}

.marquee span{
    display:inline-block;
    animation:marquee 20s linear infinite;
    font-size:20px;
    color:#aaa;
    letter-spacing:2px;
}

@keyframes marquee{
    from{
        transform:translateX(100%);
    }
    to{
        transform:translateX(-100%);
    }
}

/* SECTION */

.section{
    padding:110px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:60px;
    margin-bottom:20px;
}

.section-title p{
    color:#aaa;
    max-width:700px;
    margin:auto;
    line-height:1.7;
}

/* CARDS */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:#111;
    border:1px solid rgba(255,255,255,0.08);
    padding:35px;
    border-radius:25px;
    transition:0.4s;
    position:relative;
    overflow:hidden;
}

.card::before{
    content:'';
    position:absolute;
    width:200px;
    height:200px;
    background:rgba(255,204,0,0.08);
    border-radius:50%;
    top:-100px;
    right:-100px;
}

.card:hover{
    transform:translateY(-10px);
    border-color:#ffcc00;
}

.card h3{
    font-size:28px;
    margin-bottom:20px;
}

.card p{
    color:#bbb;
    line-height:1.8;
}

/* ABOUT */

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

.about img{
    width:100%;
    border-radius:30px;
}

.about-text h2{
    font-size:55px;
    margin-bottom:25px;
}

.about-text p{
    color:#bbb;
    line-height:1.9;
    margin-bottom:20px;
}

/* CONTACT */

.contact-box{
    max-width:800px;
    margin:auto;
}

.contact-form{
    display:grid;
    gap:25px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    background:#111;
    border:1px solid rgba(255,255,255,0.08);
    padding:18px;
    border-radius:15px;
    color:#fff;
    font-size:16px;
}

.contact-form textarea{
    height:180px;
    resize:none;
}

.contact-form button{
    background:#ffcc00;
    border:none;
    padding:18px;
    border-radius:60px;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:0.3s;
}

.contact-form button:hover{
    background:#fff;
}

/* FOOTER */

footer{
    padding:50px 20px;
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
}

footer h3{
    font-size:30px;
    margin-bottom:15px;
}

footer p{
    color:#999;
    margin-bottom:25px;
}

.socials{
    display:flex;
    justify-content:center;
    gap:20px;
}

.socials a{
    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    background:#111;
    transition:0.3s;
}

.socials a:hover{
    background:#ffcc00;
    color:#000;
}
a.btn_cls{ color:#fff; }
.btn_cls{background: #1A1108;color: #fff;padding: 10px 20px;border-radius: 5px;}

/* RESPONSIVE */

/* MOBILE */

@media(max-width:991px){

    .hero-title{
        font-size:60px;
    }

    .about-text{
        margin-top:40px;
    }

}

@media(max-width:768px){

    .hero-title{
        font-size:42px;
    }

    .hero-text{
        font-size:17px;
    }

    .section-title h2{
        font-size:38px;
    }

    .about-text h2{
        font-size:38px;
    }

    .section-padding{
        padding:70px 0;
    }

}

@media(max-width:991px){

    .hero h1{
        font-size:60px;
    }

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

    .section-title h2{
        font-size:42px;
    }

    .about-text h2{
        font-size:42px;
    }

}

@media(max-width:768px){

    .nav-links{
        display:none;
    }

    .hero h1{
        font-size:45px;
    }

    .hero p{
        font-size:18px;
    }

    .section{
        padding:80px 6%;
    }

    .section-title h2{
        font-size:36px;
    }

}
