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

/* Smooth Scrolling */

html{
    scroll-behavior:smooth;
}

/* Body */

body{

    background:#121212;
    color:#ffffff;
    font-family:'Inter',sans-serif;

}

/* Header */

header{

    background:#1d1d1d;

    position:sticky;

    top:0;

    z-index:1000;

}

/* Navigation */

.navbar{

    width:90%;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 0;

}

/* Logo */

.logo{

    font-size:28px;

    font-weight:bold;

    color:#00ADB5;

}

/* Navigation Links */

.nav-links{

    display:flex;

    list-style:none;

}

/* List Items */

.nav-links li{

    margin-left:30px;

}

/* Links */

.nav-links a{

    color:white;

    text-decoration:none;

    font-size:18px;

    transition:0.3s;

}

/* Hover Effect */

.nav-links a:hover{

    color:#00ADB5;

}

/* Mobile Responsive */

@media(max-width:768px){

.navbar{

flex-direction:column;

}

.nav-links{

flex-direction:column;

text-align:center;

margin-top:20px;

}

.nav-links li{

margin:10px 0;

}

}




/* HERO SECTION */



.hero{

    width:90%;

    margin:auto;

    min-height:90vh;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/* Left Side */

.hero-content{

    flex:1;

}

.hero-content h3{

    font-size:28px;

    color:#cccccc;

}

.hero-content h1{

    font-size:65px;

    margin:15px 0;

    color:#00ADB5;

}

.hero-content h2{

    font-size:35px;

    margin-bottom:20px;

}

.hero-content p{

    font-size:18px;

    line-height:1.8;

    max-width:600px;

}

/* Typing Text */

#typing{

    color:#00ADB5;

    font-weight:bold;

}

/* Buttons */

.hero-buttons{

    margin-top:35px;

}

.btn{

    background:#00ADB5;

    color:white;

    padding:14px 35px;

    text-decoration:none;

    border-radius:5px;

    margin-right:15px;

    transition:0.3s;

}

.btn:hover{

    background:#008C93;

}

.btn-secondary{

    border:2px solid #00ADB5;

    color:#00ADB5;

    padding:12px 30px;

    text-decoration:none;

    border-radius:5px;

    transition:0.3s;

}

.btn-secondary:hover{

    background:#00ADB5;

    color:white;

}

/* Right Side */

.hero-image{

    flex:1;

    display:flex;

    justify-content:center;

}

.hero-image img{

    width:350px;

    height:350px;

    border-radius:50%;

    object-fit:cover;

    border:6px solid #00ADB5;

}

/* Mobile Responsive */

@media(max-width:768px){

.hero{

flex-direction:column-reverse;

text-align:center;

padding:40px 0;

}

.hero-image img{

width:220px;

height:220px;

margin-bottom:30px;

}

.hero-content h1{

font-size:45px;

}

.hero-content h2{

font-size:26px;

}

.hero-content p{

font-size:16px;

}

.hero-buttons{

display:flex;

flex-direction:column;

gap:15px;

}

}


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

.about{

    width:90%;
    margin:auto;
    padding:80px 0;

}

.section-title{

    text-align:center;
    font-size:40px;
    color:#00ADB5;
    margin-bottom:60px;

}

.about-container{

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;

}

/* Left Side */

.about-image{

    flex:1;
    text-align:center;

}

.about-image img{

    width:320px;
    border-radius:15px;
    border:5px solid #00ADB5;

}

/* Right Side */

.about-content{

    flex:2;

}

.about-content h3{

    font-size:35px;
    margin-bottom:20px;

}

.about-content p{

    line-height:1.8;
    margin-bottom:20px;
    color:#dddddd;

}

/* Information Grid */

.about-info{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:30px;

}

.about-info div{

    background:#1d1d1d;
    padding:20px;
    border-radius:10px;
    transition:0.3s;

}

.about-info div:hover{

    transform:translateY(-8px);
    background:#232323;

}

.about-info strong{

    color:#00ADB5;

}

/* Mobile */

@media(max-width:768px){

.about-container{

flex-direction:column;

}

.about-image img{

width:220px;

}

.about-info{

grid-template-columns:1fr;

}

.about-content{

text-align:center;

}

}

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

.skills{

    width:90%;
    margin:auto;
    padding:80px 0;

}

.section-description{

    text-align:center;
    color:#cccccc;
    margin-bottom:50px;
    font-size:18px;

}

.skills-container{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;

}

.skill-card{

    background:#1d1d1d;
    padding:25px;
    border-radius:12px;
    transition:0.3s;

}

.skill-card:hover{

    transform:translateY(-8px);
    box-shadow:0 0 20px rgba(0,173,181,0.3);

}

.skill-card h3{

    margin-bottom:15px;
    color:#00ADB5;

}

/* Progress Bar */

.progress-bar{

    width:100%;
    background:#333;
    border-radius:30px;
    overflow:hidden;
    height:22px;

}

.progress{

    height:100%;
    color:white;
    text-align:center;
    line-height:22px;
    font-size:14px;
    font-weight:bold;
    background:#00ADB5;

}

/* Individual Widths */

.html{

    width:90%;

}

.css{

    width:85%;

}

.javascript{

    width:75%;

}

.sql{

    width:80%;

}

.networking{

    width:85%;

}

.security{

    width:80%;

}

/* Responsive */

@media(max-width:768px){

.skills-container{

grid-template-columns:1fr;

}

}

/* ================= EDUCATION SECTION ================= */

.education{

    width:90%;
    margin:auto;
    padding:80px 0;

}

/* Timeline */

.timeline{

    position:relative;
    margin-top:50px;
    padding-left:40px;
    border-left:4px solid #00ADB5;

}

/* Each Item */

.timeline-item{

    position:relative;
    margin-bottom:50px;

}

/* Circle */

.timeline-dot{

    position:absolute;
    left:-52px;
    top:8px;

    width:20px;
    height:20px;

    background:#00ADB5;
    border-radius:50%;
    border:4px solid #121212;

}

/* Card */

.timeline-content{

    background:#1d1d1d;
    padding:25px;
    border-radius:12px;
    transition:0.3s;

}

.timeline-content:hover{

    transform:translateX(10px);
    box-shadow:0 0 20px rgba(0,173,181,0.3);

}

.year{

    color:#00ADB5;
    font-weight:bold;
    font-size:16px;

}

.timeline-content h3{

    margin-top:10px;
    font-size:26px;

}

.timeline-content h4{

    margin:10px 0;
    color:#cccccc;
    font-weight:500;

}

.timeline-content p{

    line-height:1.8;
    color:#dddddd;

}

/* Mobile */

@media(max-width:768px){

.timeline{

padding-left:25px;

}

.timeline-dot{

left:-37px;

}

.timeline-content h3{

font-size:22px;

}

}

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

.projects{

    width:90%;
    margin:auto;
    padding:80px 0;

}

.projects-container{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:50px;

}

.project-card{

    background:#1d1d1d;
    border-radius:15px;
    overflow:hidden;
    transition:0.4s;

}

.project-card:hover{

    transform:translateY(-10px);
    box-shadow:0 0 20px rgba(0,173,181,.3);

}

.project-card img{

    width:100%;
    height:220px;
    object-fit:cover;

}

.project-content{

    padding:25px;

}

.project-content h3{

    color:#00ADB5;
    margin-bottom:15px;

}

.project-content p{

    line-height:1.7;
    color:#dddddd;

}

/* Technology Tags */

.project-tags{

    margin:20px 0;

}

.project-tags span{

    display:inline-block;
    background:#00ADB5;
    color:white;
    padding:6px 12px;
    margin:5px;
    border-radius:20px;
    font-size:14px;

}

/* Buttons */

.project-buttons{

    display:flex;
    gap:15px;
    margin-top:20px;

}

/* Mobile */

@media(max-width:768px){

.project-buttons{

flex-direction:column;

}

}

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

.contact{

    width:90%;
    margin:auto;
    padding:80px 0;

}

.contact-container{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    margin-top:50px;

}

/* Contact Cards */

.contact-card{

    background:#1d1d1d;
    padding:25px;
    margin-bottom:20px;
    border-radius:12px;
    transition:.3s;

}

.contact-card:hover{

    transform:translateY(-5px);

}

.contact-card h3{

    color:#00ADB5;
    margin-bottom:10px;

}

/* Form */

.contact-form input,
.contact-form textarea{

    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:none;
    border-radius:8px;
    background:#1d1d1d;
    color:white;
    font-size:16px;

}

.contact-form textarea{

    resize:none;

}

.contact-form input:focus,
.contact-form textarea:focus{

    outline:2px solid #00ADB5;

}

/* Footer */

footer{

    background:#1d1d1d;
    text-align:center;
    padding:40px 20px;
    margin-top:50px;

}

footer h3{

    color:#00ADB5;
    margin-bottom:10px;

}

.social-links{

    margin:20px 0;

}

.social-links a{

    color:white;
    text-decoration:none;
    margin:0 15px;
    transition:.3s;

}

.social-links a:hover{

    color:#00ADB5;

}

.copyright{

    color:#bbbbbb;
    margin-top:20px;

}



/* ================= HAMBURGER MENU ================= */

.menu-toggle{

    display:none;
    font-size:30px;
    color:#ffffff;
    cursor:pointer;

}

/* Mobile View */

@media(max-width:768px){

.menu-toggle{

display:block;

}

.nav-links{

display:none;
flex-direction:column;
width:100%;
background:#1d1d1d;
margin-top:20px;

}

.nav-links.active{

display:flex;

}

.nav-links li{

margin:15px 0;
text-align:center;

}

}