/* ===========================
   GOOGLE FONT
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
    font-family:'Poppins',sans-serif;
}

body{
    background:#050505;
    color:#fff;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    color:white;
}

ul{
    list-style:none;
}

img{
    width:100%;
    display:block;
}

/* ===========================
   SCROLLBAR
=========================== */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#111;
}

::-webkit-scrollbar-thumb{
    background:#ff6b35;
    border-radius:10px;
}

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

header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    background:#050505;
}

.navbar{

    width:90%;
    max-width:1300px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 0;
}

.logo{

    font-size:30px;

    font-weight:700;

    color:#ff6b35;

    letter-spacing:2px;
}

.nav-links{

    display:flex;

    gap:35px;
}

.nav-links a{

    font-size:17px;

    transition:.3s;
}

.nav-links a:hover{

    color:#ff6b35;
}

.hire-btn{

    padding:12px 30px;

    border:2px solid #ff6b35;

    border-radius:30px;

    transition:.4s;
}

.hire-btn:hover{

    background:#ff6b35;
}

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

.hero{

    width:90%;

    max-width:1300px;

    margin:140px auto 80px;

    display:grid;

    grid-template-columns:350px 1fr;

    gap:40px;
}

.hero-left{

    background:#151515;

    border-radius:25px;

    padding:35px;

    text-align:center;

    transition:.4s;
}

.hero-left:hover{

    transform:translateY(-8px);
}

.hero-left img{

    height:420px;

    object-fit:cover;

    border-radius:20px;
}

.hero-left h2{

    margin-top:20px;

    font-size:34px;
}

.hero-left p{

    color:#ff6b35;

    margin-top:10px;

    font-size:18px;
}

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

.hero-right{

    background:#151515;

    border-radius:25px;

    padding:45px;
}

.hero-right h4{

    color:#bbbbbb;

    font-weight:500;

    margin-bottom:15px;
}

.hero-right h1{

    font-size:55px;

    line-height:70px;

    margin-bottom:10px;
}

.hero-right h1 span{

    color:#ff6b35;
}

.hero-right h2{

    font-size:32px;

    color:#3ea6ff;

    margin-bottom:25px;
}

.hero-right p{

    color:#cccccc;

    line-height:32px;

    font-size:18px;

    margin-bottom:30px;
}

/* ===========================
   AVAILABILITY
=========================== */

.availability{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:35px;

    color:#ddd;
}

.dot{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#00ff40;

    animation:blink 1s infinite;
}

@keyframes blink{

    0%{

        opacity:1;
    }

    50%{

        opacity:.3;
    }

    100%{

        opacity:1;
    }
}

/* ===========================
   BUTTONS
=========================== */

.buttons{

    display:flex;

    gap:20px;
}

.btn{

    padding:15px 35px;

    background:#ff6b35;

    border-radius:40px;

    transition:.3s;

    font-weight:600;
}

.btn:hover{

    transform:translateY(-5px);

    box-shadow:0 0 25px #ff6b35;
}

.btn-outline{

    padding:15px 35px;

    border:2px solid #ff6b35;

    border-radius:40px;

    transition:.3s;
}

.btn-outline:hover{

    background:#ff6b35;
}

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

.about {
    width: 100%;
    padding: 100px 10%;
    background: #0d0d0d;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #ff6b35;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50px;
}

.about-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-text {
    max-width: 900px;
    background: #161616;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #2c2c2c;
    transition: .4s;
}

.about-text:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255,107,53,.25);
}

.about-text p {
    color: #d6d6d6;
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-text p:last-child{
    margin-bottom:0;
}

/*==================== SKILLS SECTION ====================*/

.skills {
    width: 100%;
    padding: 100px 10%;
    background: #111111;
}

.skills-container {

    display: grid;

    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));

    gap: 25px;

}

.skill-card {

    background: #181818;

    border: 1px solid #2a2a2a;

    border-radius: 18px;

    padding: 35px 20px;

    text-align: center;

    font-size: 1.1rem;

    color: white;

    font-weight: 600;

    transition: .4s ease;

    cursor: pointer;

}

.skill-card:hover{

    transform: translateY(-10px);

    background:#ff6b35;

    color:white;

    box-shadow:0 20px 35px rgba(255,107,53,.35);

}

.skill-card i{

    font-size:42px;

    margin-bottom:15px;

    display:block;

}





/*==================== HOVER GLOW ====================*/

.skill-card::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:18px;

    background:linear-gradient(45deg,#ff6b35,#ff9b54);

    opacity:0;

    transition:.4s;

    z-index:-1;

}

.skill-card{

    position:relative;

    overflow:hidden;

}

.skill-card:hover::before{

    opacity:.12;

}

/*==================== PROJECTS ====================*/

.projects{
    width:100%;
    padding:100px 10%;
    background:#0d0d0d;
}

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

.project-card{
    background:#181818;
    border:1px solid #2a2a2a;
    border-radius:20px;
    padding:30px;
    transition:0.4s;
    cursor:pointer;
}

.project-card:hover{
    transform:translateY(-10px);
    border-color:#ff6b35;
    box-shadow:0 15px 30px rgba(255,107,53,0.25);
}

.project-card h3{
    color:#ffffff;
    margin-bottom:15px;
    font-size:22px;
}

.project-card p{
    color:#cfcfcf;
    line-height:1.7;
    margin-bottom:20px;
}

.project-btn{
    display:inline-block;
    padding:10px 20px;
    background:#ff6b35;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    transition:0.3s;
}

.project-btn:hover{
    background:#ff8c5a;
}


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

.contact{
    width:100%;
    padding:100px 10%;
    background:#111111;
}

.contact-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.contact-card{
    background:#181818;
    border-radius:18px;
    padding:30px;
    text-align:center;
    transition:0.4s;
    border:1px solid #2a2a2a;
}

.contact-card:hover{
    transform:translateY(-10px);
    border-color:#ff6b35;
    box-shadow:0 15px 30px rgba(255,107,53,0.25);
}

.contact-card i{
    font-size:40px;
    color:#ff6b35;
    margin-bottom:15px;
}

.contact-card h3{
    color:white;
    margin-bottom:10px;
}

.contact-card p{
    color:#d6d6d6;
    font-size:15px;
}

.contact-card a{
    color:#d6d6d6;
    text-decoration:none;
}

.contact-card a:hover{
    color:#ff6b35;
}


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

footer{
    background:#090909;
    padding:25px;
    text-align:center;
}

footer p{
    color:#bdbdbd;
    font-size:15px;
}

footer span{
    color:#ff6b35;
    font-weight:600;
}

/*==================== SMOOTH SCROLL ====================*/

html{
    scroll-behavior:smooth;
}

/*==================== SECTION SPACING ====================*/

section{
    scroll-margin-top:80px;
}

/*==================== IMAGE HOVER ====================*/

.hero-left img{
    transition:0.4s;
}

.hero-left img:hover{
    transform:scale(1.05);
    box-shadow:0 20px 40px rgba(255,107,53,.35);
}

/*==================== BUTTON HOVER ====================*/

.btn,
.btn-outline,
.hire-btn{
    transition:0.3s ease;
}

.btn:hover,
.hire-btn:hover{
    transform:translateY(-3px);
}

.btn-outline:hover{
    transform:translateY(-3px);
}

/*==================== NAVBAR LINKS ====================*/

.nav-links a{
    transition:.3s;
}

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

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

@media(max-width:992px){

    .hero{

        flex-direction:column;

        text-align:center;

        gap:50px;

    }

    .hero-left img{

        width:250px;

    }

    .hero-right h1{

        font-size:45px;

    }

    .hero-right h2{

        font-size:28px;

    }

}

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

@media(max-width:768px){

    .navbar{

        flex-direction:column;

        gap:20px;

    }

    .nav-links{

        flex-wrap:wrap;

        justify-content:center;

        gap:15px;

    }

    .hero{

        padding:120px 8%;

    }

    .hero-right h1{

        font-size:38px;

    }

    .hero-right h2{

        font-size:24px;

    }

    .buttons{

        justify-content:center;

        flex-wrap:wrap;

    }

    .section-title{

        font-size:2rem;

    }

}

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

@media(max-width:576px){

    .hero-left img{

        width:200px;

    }

    .hero-right h1{

        font-size:30px;

    }

    .hero-right h2{

        font-size:20px;

    }

    .hero-right p{

        font-size:15px;

    }

    .project-card{

        padding:20px;

    }

    .contact-card{

        padding:20px;

    }

    footer{

        font-size:14px;

    }

}

/*==================== STICKY NAVBAR ====================*/

.navbar.sticky{

    background:#111111;

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

    transition:.3s;

}


/*==================== ACTIVE NAV LINK ====================*/

.nav-links a.active{

    color:#ff6b35;

}