/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

/* Body */
body{
    background:#0b0b0b;
    color:white;
}

/* Navigation */
nav{
    position:fixed;
    top:0;
    left:0;

    width:100%;
    padding:20px 8%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:rgba(11,11,11,0.92);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    z-index:1000;

    border-bottom:1px solid rgba(255,255,255,0.08);
}

nav h2{
    color:#ff7a00;
    font-size:28px;
}

nav ul{
    display:flex;
    list-style:none;
}
/* ===== Hamburger Menu ===== */

.hamburger{

    display:none;

    flex-direction:column;

    justify-content:center;

    cursor:pointer;

    gap:6px;

    z-index:1100;

}
.hamburger span{

    width:28px;

    height:3px;

    background:white;

    border-radius:5px;

    transition:.35s;

}
.hamburger.active span:nth-child(1){
    transform:rotate(45deg) translate(6px,6px);
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:rotate(-45deg) translate(7px,-7px);
}

nav ul li{
    margin-left:35px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-size:18px;
    transition:0.3s;
}

nav ul li a:hover{
    color:#ff7a00;
}

/* Hero */
.hero{
    position:relative;
    overflow:hidden;

    min-height:100vh;
    padding:120px 8% 60px;

    display:flex;
    align-items:center;
}
    


.hero-text{
    max-width:700px;
}

.hero h1{
    font-size:64px;
    line-height:1.15;
    margin: bottom 20px;;
}

.hero p{
    margin-top:20px;
    color:#cfcfcf;
    font-size:20px;
    line-height:1.7;
}

button{
    margin-top:35px;
    padding:15px 35px;
    background:#ff7a00;
    color:white;
    border:none;
    border-radius:8px;
    font-size:18px;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    transform:translateY(-3px);
}/* Hero Layout */
.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
}

.hero-text{
    flex:1;
    max-width:650px;
}

.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
    align-items: center;
}

.hero-image img{
    width:380px;
    height:380px;
    object-fit:cover;
    border-radius:50%;
    border:5px solid #ff7a00;
    box-shadow:0 0 35px rgba(255,122,0,0.35);
}

.hero h4{
    color:#ff7a00;
    font-size:22px;
    margin-bottom:20px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:35px;
}

.hero-btn{
    background:#ff7a00;
    color:white;
    padding:16px 38px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.hero-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(255,122,0,.3);
}

.secondary-btn{
    display:inline-block;
    text-decoration:none;

    background:transparent;
    color:#ff7a00;

    border:2px solid #ff7a00;
    padding:16px 38px;
    border-radius:8px;

    font-weight:600;
    transition:.3s;
}

.secondary-btn:hover{
    background:#ff7a00;
    color:white;
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(255,122,0,.3);
}

/* Featured Work */

.projects{
    padding:100px 8%;
    background:#111;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:48px;
    color:#ff7a00;
}

.section-title p{
    color:#cfcfcf;
    margin-top:15px;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:50px;
}

.project-card{
    background:#1b1b1b;
    border-radius:15px;
    overflow:hidden;
    transition:.4s;

     text-decoration:none;
    color:white;
    display:block;
}

.project-card:hover{
    transform:translateY(-10px);
}

.project-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.project-content{

    padding:35px 25px;

    width:100%;
    height:100%;

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

}

.project-content h3{
    margin-bottom:10px;
}

.project-content p{
    color:#aaa;
}/* ===== CATEGORY CARDS ===== */

.category-card{
    min-height:260px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    background:#1b1b1b;

    border:1px solid #2b2b2b;
    border-radius:18px;

    cursor:pointer;

    text-decoration:none;
    color:white;

    transition:.35s;

    width:100%;
    height:100%;
}

.category-card:hover{

    transform:translateY(-10px);

    border-color:#ff7a00;

    box-shadow:0 18px 40px rgba(255,122,0,.22);

}

.category-icon{

    font-size:60px;

    margin-bottom:22px;

    transition:.3s;

}

.category-card:hover .category-icon{

    transform:scale(1.15);

}

.category-card h3{

    font-size:24px;

    margin-bottom:15px;

    line-height:1.4;

}

.category-card p{
    color: #bdbdbd;
    margin-bottom: 25px;
}

.category-card a{
    color: #ff7a00;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.category-card a:hover{
    letter-spacing: 1px;
}/* ===== ABOUT SECTION ===== */

.about{
    padding:100px 10%;
}

.about-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    margin-top:60px;
    flex-wrap:wrap;
}

.about-text{
    flex:2;
}

.about-text h3{
    font-size:34px;
    margin-bottom:20px;
    color:#ff7a00;
}

.about-text p{
    color:#cfcfcf;
    line-height:1.9;
    margin-bottom:20px;
    font-size:17px;
}

.about-stats{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.stat-box{
    background:#1b1b1b;
    border:1px solid #2b2b2b;
    border-radius:15px;
    padding:30px;
    text-align:center;
    transition:.3s;
}

.stat-box:hover{
    border-color:#ff7a00;
    transform:translateY(-8px);
}

.stat-box h3{
    font-size:42px;
    margin-bottom:15px;
}

.stat-box h4{
    color:#ff7a00;
    font-size:22px;
    margin-bottom:12px;
}

.stat-box p{
    color:#cfcfcf;
    line-height:1.6;
    font-size:15px;
}

.stat-box p{
    color:#cfcfcf;
}
/* ===== SERVICES ===== */

.services{
    padding:100px 10%;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:60px;
}

.service-card{
    background:#1b1b1b;
    border:1px solid #2b2b2b;
    border-radius:18px;
    padding:35px;
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#ff7a00;
    box-shadow:0 15px 35px rgba(255,122,0,0.25);
}

.service-card span{
    font-size:48px;
    display:block;
    margin-bottom:20px;
}

.service-card h3{
    color:#ff7a00;
    margin-bottom:15px;
    font-size:24px;
}

.service-card p{
    color:#cfcfcf;
    line-height:1.7;
}
/* ===== TOOLS & TECHNOLOGIES ===== */

.tools{
    padding:100px 10%;
}

.tools-category{
    margin-top:60px;
}

.tools-category h3{
    color:#ff7a00;
    font-size:28px;
    margin-bottom:25px;
}

.tools-grid{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

.tool-card{
    background:#1b1b1b;
    border:1px solid #2b2b2b;
    color:white;
    padding:18px 28px;
    border-radius:12px;
    font-size:18px;
    font-weight:600;
    transition:0.3s;
}

.tool-card:hover{
    border-color:#ff7a00;
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(255,122,0,0.25);
}
/* ===== CONTACT ===== */

.contact{
    padding:100px 10%;
}

.contact-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top:60px;
}

.contact-card{
    background:#1b1b1b;
    border:1px solid #2b2b2b;
    border-radius:18px;
    padding:35px;
    transition:.3s;
    text-align:center;
}

.contact-card:hover{
    transform:translateY(-10px);
    border-color:#ff7a00;
    box-shadow:0 15px 35px rgba(255,122,0,0.25);
}

.contact-card h3{
    color:#ff7a00;
    margin-bottom:18px;
}

.contact-card a{
    color:white;
    text-decoration:none;
    word-break:break-word;
    transition:.3s;
}

.contact-card a:hover{
    color:#ff7a00;
}
/* ===== FOOTER ===== */

.footer{
    background:#111;
    padding:60px 10%;
    text-align:center;
    border-top:1px solid #2a2a2a;
}

.footer h2{
    color:#ff7a00;
    font-size:32px;
    margin-bottom:15px;
}

.footer p{
    color:#cfcfcf;
    max-width:700px;
    margin:10px auto;
    line-height:1.8;
}

.footer-links{
    margin:35px 0;
}

.footer-links a{
    color:white;
    text-decoration:none;
    margin:0 18px;
    font-size:17px;
    transition:.3s;
}

.footer-links a:hover{
    color:#ff7a00;
}

.footer-social{
    margin:30px 0;
}

.footer-social a{
    font-size:28px;
    margin:0 15px;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    transform:translateY(-5px);
    color:#ff7a00;
}

.copyright{
    margin-top:35px;
    font-size:15px;
    color:#888;
}
.category-card{
    text-decoration:none;
    color:white;
    display:flex;
    flex-direction:column;
    height:100%;
}

.explore-link{

    color:#ff7a00;

    font-weight:600;

    margin-top:auto;

    transition:.3s;

}

.category-card:hover .explore-link{

    transform:translateX(8px);

}

.category-card:hover .explore-link{
    transform:translateX(8px);
}
.hero-btn{
    display:inline-block;
    background:#ff7a00;
    color:white;
    padding:16px 40px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.hero-btn:hover{
    transform:translateY(-4px);
}
.hero{
    position:relative;
    overflow:hidden;
}

.hero-video{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:0;
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.30);
                

    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;

    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:80px;
}
section{
    opacity:0;
    transform:translateY(-60px);
    transition:all 0.8s ease;
}

section.show{
    opacity:1;
    transform:translateY(0);
}
.about-video{
    margin-top:35px;
}


.about-video video{
    width:100%;
    max-width:650px;
    aspect-ratio:16/9;
    object-fit:cover;

    border-radius:18px;
    border:2px solid rgba(255,122,0,.3);
    box-shadow:0 15px 40px rgba(0,0,0,.35);

    display:block;
}
@media(max-width:1100px){

.project-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:700px){

.project-grid{

grid-template-columns:1fr;

}

}
/* Clickable About Cards */

.stat-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

.stat-link:hover{
    text-decoration:none;
}
/* ===== MOBILE RESPONSIVE ===== */

@media (max-width: 768px){

nav{
    padding:15px 5%;
}

nav h2{
    font-size:18px;
}

.hamburger{
    display:flex;
}

nav ul{

    position:absolute;

    top:100%;

    left:0;

    width:100%;

    background:#111;

    display:flex;

    flex-direction:column;

    align-items:center;

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

    border-bottom:1px solid rgba(255,255,255,.08);

}

nav ul.active{

    max-height:420px;

}

nav ul li{

    margin:20px 0;

}

nav ul li a{

    font-size:18px;

}
.hero{
        padding:110px 5% 60px;
        min-height:auto;
    }

    .hero-content{
        flex-direction:column-reverse;
        text-align:center;
        gap:30px;
    }

    .hero-text{
        max-width:100%;
    }

    .hero h1{
        font-size:42px;
        line-height:1.15;
    }

    .hero p{
        font-size:18px;
    }

    .hero-buttons{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;
    width:100%;
    }

    .hero-image img{
        width:220px;
        height:220px;
    }
    .hero-btn,
.secondary-btn{

    width:100%;
    max-width:280px;
    text-align:center;

}

    .about-container{
        flex-direction:column;
    }
    .about-video video{

    max-width:100%;

}

    .project-grid{
        grid-template-columns:1fr;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .contact-container{
        grid-template-columns:1fr;
    }
    nav{
    position:fixed;
}

}
@media (max-width:1024px){

.hero-content{

    gap:40px;

}

.hero-image img{

    width:300px;
    height:300px;

}

.section-title h2{

    font-size:40px;

}

}