/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#0f172a;
}

/* Header */
header{
    width:100%;
    padding:20px 80px;
    background:#1e293b;
}

/* Navbar */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* Logo */
.logo h2{
    color:#fff;
    font-size:30px;
}

/* Menu */
.navbar ul{
    display:flex;
    list-style:none;
}

.navbar ul li{
    margin-left:35px;
}

.navbar ul li a{
    color:white;
    text-decoration:none;
    font-size:18px;
    font-weight:500;
    transition:0.3s;
}

/* Active Link */
.navbar ul li .active{
    color:#39ff14;
}

/* Hover */
.navbar ul li a:hover{
    color:#39ff14;
}
/* Hero Section */

.Hero-container{
    width:100%;
    margin:40px auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#1f2937;
    padding:70px;
    border-radius:20px;
}

/* Left Side */

.hero-text{
    width:50%;
}

.hero-text h3{
    color:white;
    font-size:30px;
    margin-bottom:10px;
}

.hero-text h1{
    color:white;
    font-size:55px;
    margin-bottom:10px;
}

.hero-text h1:last-of-type{
    color:#39ff14;
    font-size:45px;
}

.hero-text p{
    color:#d1d5db;
    font-size:18px;
    line-height:30px;
    margin:25px 0;
}

.hero-text strong{
    color:#39ff14;
}

/* Button */

button{
    border:none;
    background:none;
}

.btn{
    display:inline-block;
    background:#39ff14;
    color:#111827;
    text-decoration:none;
    padding:14px 35px;
    border-radius:30px;
    font-size:18px;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    background:white;
    color:black;
}

.hero-image{
    width:40%;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.circle{
    position:absolute;
    width:380px;
    height:380px;
    border:4px solid #39ff14;
    border-radius:50%;
    z-index:1;
}

.hero-image img{
    width:;
    height:
    border-radius:50%;
    object-fit:cover;
    position:relative;
    z-index:2;
}

/* ================= ABOUT SECTION ================= */

.About-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:90%;
    margin:80px auto;
    gap:60px;
}

.about-image{
    width:40%;
}

.about-text{
    width:60%;
}

.about-image img{
    width:350px;
    height:350px;
    border-radius:50%;
    object-fit:cover;
}

.about-text h2{
    color:#39ff14;
    font-size:45px;
}

.about-text p{
    color:white;
    font-size:20px;
    line-height:35px;
}
/* ================= SKILLS ================= */

.Skill{
    width: 90%;
    margin: 80px auto;
    text-align: center;
}

.Skill h2{
    font-size:50px;
    color: #44de41;
    margin-bottom: 40px;
}

.Skills-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.Skillbox{
    background: #222b38;
    color: white;
    width: 180px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.Skillbox:hover{
    background: #4ce63e;
    color: #111;
    transform: translateY(-8px);
}
/* ================= PROJECTS ================= */

.Projects{
    width: 90%;
    margin: 80px auto;
    text-align: center;
}

.Projects h2{
    font-size: 40px;
    color: #25e845;
    margin-bottom: 40px;
}

.projects-container{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.Project{
    width: 320px;
    min-height:555px;
    background: #222b38;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.Project:hover{
    transform: translateY(-10px);
}

.Project img{
    width: 100%;
    height:300px;
    object-fit: cover;
}

.Project h3{
    color: #25e845;;
    margin: 20px 0 10px;
    font-size:20px;
    font-weight: 300px;
}

.Project p{
    color: #ddd;
    padding: 0 20px;
    line-height: 1.6;
}

.project-btn{
    display: inline-block;
    margin: 20px 0 25px;
    padding: 10px 25px;
    background: #25e845;
    color: #111;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.project-btn:hover{
    background: white;
    color:  #25e845;
}
/* ================= CONTACT SECTION ================= */

.Contact-container{
    width: 90%;
    max-width: 700px;
    margin: 80px auto;
    text-align: center;
}

.Contact-container h2{
    font-size: 40px;
    color: #25e845;
    margin-bottom: 40px;
}

.contact-form{
    background: #222b38;
    padding: 35px;
    border-radius: 15px;
}

.contact-form input,
.contact-form textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #444;
    border-radius: 10px;
    background: #111827;
    color: white;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color: #25e845;
}

.contact-form textarea{
    resize: none;
}

.contact-form button{
    background: #25e845;
    color: #111827;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover{
    background: white;
    color: #111827;
}

/* ================= FOOTER ================= */

.footer{
    background: #111827;
    padding: 25px;
    text-align: center;
    margin-top: 60px;
    border-top: 2px solid #25e845;
}

.footer p{
    color: white;
    font-size: 16px;
    margin: 0;
}