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

     body{
    background:#0f0f0f;
    color:white;
    font-family:Arial, Helvetica, sans-serif;
    overflow-x:hidden;
}

.hero{
    position:relative;
    overflow:hidden;
}

.hero::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    background:radial-gradient(circle,
    rgba(255,152,0,.12),
    transparent 70%);

    top:-200px;

    right:-180px;

    filter:blur(60px);

    z-index:0;

}

.hero-content{

    position:relative;

    z-index:2;

} 

.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

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

.hero-tag {
    color: #ff9800;
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}



.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 20px;
    color: #bdbdbd;
    line-height: 1.8;
    margin-bottom: 35px;
}

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

.btn{
    text-decoration:none;
    padding:16px 34px;
    border-radius:50px;
    font-weight:600;
    transition:all .35s ease;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.btn-primary{
    background:#ff9800;
    color:#000;
    box-shadow:0 0 25px rgba(255,152,0,.25);
}


.btn-primary:hover{

    background:#ffb74d;

    transform:translateY(-4px);

    box-shadow:0 12px 35px rgba(255,152,0,.45);

}

.btn-secondary {
    border: 2px solid #ff9800;
    color: white;
}

     .btn-secondary:hover{

    background:#ff9800;

    color:black;

    transform:translateY(-4px);

    box-shadow:0 12px 35px rgba(255,152,0,.35);

}



.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:24px 80px;
    display:flex;
    justify-content:space-between;
    align-items:center;

    background:rgba(15,15,15,.45);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

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

    transition:
        padding .35s ease,
        background .35s ease,
        backdrop-filter .35s ease,
        box-shadow .35s ease;

    z-index:1000;
}

.navbar.scrolled{

    padding:16px 80px;

    background:rgba(10,10,10,.82);

    box-shadow:0 10px 35px rgba(0,0,0,.35);

    border-bottom:1px solid rgba(255,152,0,.25);

}

.logo{
    color:white;
    font-size:28px;
    font-weight:700;
}

.logo span{
    color:#ff9800;
}

.nav-links{
    display:flex;
    gap:40px;
    list-style:none;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-size:16px;
    transition:.3s;
}

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

/* ===========================
   ABOUT SECTION
=========================== */

.about {
    padding: 120px 10%;
    background: #111;
}

.about-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
    flex-wrap:wrap;
}

.about-image {
    width: 350px;
    height: 450px;
    background: #1b1b1b;
    border: 2px solid #ff9800;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    max-width: 650px;
}

.about-text h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-text p {
    color: #bdbdbd;
    font-size: 19px;
    line-height: 1.9;
}

/* ===========================
   SERVICES
=========================== */

.services{
    padding:120px 10%;
    background:#0f0f0f;
}

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

.section-title h2{
    font-size:48px;
    margin-bottom:15px;
}

.section-title p{
    color:#bdbdbd;
    font-size:18px;
}

.services-container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    align-items:stretch;

}

.service-card{
    background:#1a1a1a;
    border:1px solid #2b2b2b;
    border-radius:20px;
    padding:40px;
    transition:.35s;
}

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

.service-card h3{
    font-size:28px;
    margin-bottom:18px;
    color:#ff9800;
}

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

/* ===========================
   FEATURED WORK
=========================== */

.work{
    padding:120px 10%;
    background:#121212;
}

.work-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.work-card{
    background:#1a1a1a;
    border-radius:20px;
    overflow:hidden;
    border:1px solid #2b2b2b;
    transition:.35s;
}

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

.work-image{
    height:240px;
    background:#2b2b2b;
}

.work-content{
    padding:25px;
}

.work-content h3{
    color:white;
    margin-bottom:10px;
    font-size:24px;
}

.work-content p{
    color:#bdbdbd;
}


/* ===========================
   COMING SOON
=========================== */

.work-grid{
    display:flex;
    justify-content:center;
}

.coming-soon-card{

    width:700px;

    background:#1a1a1a;

    border:1px solid #2b2b2b;

    border-radius:25px;

    padding:70px 50px;

    text-align:center;

    transition:.35s;

}

.coming-soon-card:hover{

    border-color:#ff9800;

    transform:translateY(-8px);

}

.coming-icon{

    font-size:60px;

    margin-bottom:25px;

}

.coming-soon-card h3{

    font-size:36px;

    margin-bottom:20px;

}

.coming-soon-card p{

    color:#bdbdbd;

    line-height:1.8;

    font-size:18px;

    margin-bottom:35px;

}

.coming-soon-card span{

    display:inline-block;

    padding:12px 28px;

    border:1px solid #ff9800;

    border-radius:50px;

    color:#ff9800;

    font-weight:600;

    letter-spacing:1px;

}

/* ===========================
   CONTACT
=========================== */

.contact{
    padding:120px 10%;
    background:#111;
}

.contact-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.contact-card{

    width:280px;

    background:#1a1a1a;

    border:1px solid #2b2b2b;

    border-radius:20px;

    padding:40px;

    text-align:center;

    text-decoration:none;

    color:white;

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-8px);

    border-color:#ff9800;

}

.contact-card h3{

    color:#ff9800;

    margin-bottom:15px;

}

.contact-card p{

    color:#bdbdbd;

}

/* ===========================
   FOOTER
=========================== */

.footer{

    padding:120px 10% 60px;

    background:#0b0b0b;

    text-align:center;

}

.footer h2{

    font-size:52px;

    max-width:700px;

    margin:auto;

    margin-bottom:25px;

}

.footer p{

    max-width:650px;

    margin:auto;

    color:#bdbdbd;

    line-height:1.8;

    margin-bottom:40px;

}

.footer-btn{

    display:inline-block;

    text-decoration:none;

    color:black;

    background:#ff9800;

    padding:18px 40px;

    border-radius:50px;

    font-weight:bold;

    transition:.35s;

}

.footer-btn:hover{

    transform:translateY(-5px);

    background:#ffb84d;

}

.footer-bottom{

    margin-top:80px;

 color: #bdbdbd;

    font-size:16px;

    letter-spacing:0.5px;


}

/* ===========================
   SCROLL ANIMATION
=========================== */

.hidden{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.show{

    opacity:1;

    transform:translateY(0);

}

/* ===========================
   TOOLS STRIP
=========================== */

/* ===========================
   TOOLS STRIP
=========================== */

.tools-strip{

    width:100%;

    overflow:hidden;

  background:#181818;

    border-top:1px solid #222;

    border-bottom:1px solid #222;

    margin-top:20px;
    padding:18px 0;

}

.tools-track{

    display:flex;

    align-items:center;

    width:max-content;

    animation:scrollTools 22s linear infinite;

}

.tool{

    display:flex;

    align-items:center;

    gap:12px;

    padding:0 45px;

    flex-shrink:0;

}

.tool img{
    width:42px;
    height:42px;
}

.tool span{

    color:white;

    font-size:18px;

    font-weight:600;

}

@keyframes scrollTools{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 768px){

    .navbar{
        padding:20px;
    }

    .logo{
        font-size:24px;
    }

    .nav-links{
        gap:20px;
    }

    .nav-links a{
        font-size:15px;
    }

    .hero{
        min-height:90vh;
        padding:120px 20px 80px;
    }

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

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

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

  

   .about-container{
    flex-direction:column;
    text-align:center;
    gap:40px;
}

.about-image{
    width:280px;
    height:360px;
}

.about-text{
    max-width:100%;
}

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

.about-text p{
    font-size:17px;
    line-height:1.8;
}

    .services-container{
    grid-template-columns:1fr;
    gap:25px;
}

.service-card{
    padding:30px;
}

.service-card h3{
    font-size:24px;
}

.service-card p{
    font-size:16px;
}
    .work{
    padding:80px 30px;
}

.work-grid{
    display:flex;
    justify-content:center;
}

.coming-soon-card{
    width:100%;
    padding:50px 30px;
}

.coming-soon-card h3{
    font-size:30px;
}

.coming-soon-card p{
    font-size:17px;
}

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

    .contact-container{
        flex-direction:column;
        align-items:center;
    }

    .footer h2{
        font-size:38px;
    }

}

@media (max-width:480px){

    .navbar{
        padding:15px;
    }

    .logo{
        font-size:22px;
    }

    .nav-links{
        gap:12px;
    }

    .nav-links a{
        font-size:14px;
    }

    .hero-title{
        font-size:32px;
        line-height:1.2;
    }

    .hero-description{
        font-size:15px;
        line-height:1.8;
        
    }

    .hero-tag{
        font-size:15px;
    }

    .btn{
        width:100%;
        max-width:260px;
    }

    .about-text h2,
    .section-title h2,
    .footer h2{
        font-size:32px;
    }

    .tool img{
        width:32px;
        height:32px;
    }

    .tool span{
        font-size:15px;
    }

    .about{
    padding:80px 25px;
}

.about-image{
    width:240px;
    height:310px;
}

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

.about-text p{
    font-size:16px;
}

.services{
    padding:80px 25px;
}

.service-card{
    padding:25px;
}

.service-card h3{
    font-size:22px;
}

.service-card p{
    font-size:15px;
    line-height:1.7;
}

.work{
    padding:70px 20px;
}

.coming-soon-card{
    width:100%;
    padding:40px 20px;
}

.coming-icon{
    font-size:50px;
}

.coming-soon-card h3{
    font-size:24px;
}

.coming-soon-card p{
    font-size:15px;
}

}


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

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

@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav-links{
        display:none;
        position:absolute;
        top:80px;
        right:20px;
        width:230px;
        background:#111;
        border:1px solid #2b2b2b;
        border-radius:15px;
        padding:25px;
        flex-direction:column;
        gap:20px;
    }

    .nav-links.active{
        display:flex;
    }

}
