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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#0A0F1C;
    background-image:
    radial-gradient(
    circle at top right,
    rgba(59,130,246,.15),
    transparent 30%),
    radial-gradient(
    circle at bottom left,
    rgba(59,130,246,.08),
    transparent 30%);
    color:white;
}
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 10%;
    position:fixed;
    width:100%;
    background:rgba(10,15,28,.7);
    backdrop-filter:blur(20px);
    border-bottom:1px solid rgba(255,255,255,.05);
    z-index:1000;
}
.nav-links{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
}
.nav-links a.active{
    color:#3B82F6;
}
.nav-links a{
    position:relative;
}
.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:#3B82F6;
    transition:.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after{
    width:100%;
}

.logo{
    font-size:1.5rem;
    font-weight:700;
    color:#3B82F6;
}
.logo{
    font-size:1.4rem;
    font-weight:700;
    color:#3B82F6;
}
.logo span{
    color:#3B82F6;
}

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

.nav-links a{
    text-decoration:none;
    color:white;
}
#typing-text::after{
    content:'|';
    color:#3B82F6;
    animation:blink .7s infinite;
}

@keyframes blink{
    50%{
        opacity:0;
    }
}
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:140px 10% 80px;
}
.hero-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
    width:100%;
}
.hero-text{
    flex:1.4;
}

.greeting{
    color:#3B82F6;
    margin-bottom:10px;
}

.hero h1{
    font-size:5rem;
    line-height:1.1;
    max-width: 700px;
    white-space: nowrap;
}
.hero h2{
    font-size:2rem;
    color:#cbd5e1;
    max-width: 700px}

.hero-description{
    max-width:650px;
    line-height:1.8;
    color:#94a3b8;
}

.hero-buttons{
    margin-top:30px;
    display:flex;
    gap:15px;
    margin-bottom:45px;
}
.reveal{
    opacity:0;
    transform:translateY(80px);
    transition:
    opacity 1s ease,
    transform 1s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}
.availability{
    display:inline-block;
    padding:8px 16px;
    border:1px solid #3B82F6;
    border-radius:30px;
    color:#3B82F6;
    margin-bottom:20px;
    font-size:.9rem;
}
.hero-stats{
    display:flex;
    gap:20px;
    margin-top:40px;
    flex-wrap:wrap;
}
.stat-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(59,130,246,.15);
    border-radius:16px;
    padding:20px;
    min-width:140px;
    transition:.3s ease;

    animation:fadeUp .8s ease forwards;
}

.stat-card:nth-child(2){
    animation-delay:.2s;
}

.stat-card:nth-child(3){
    animation-delay:.4s;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}
.stat-card:hover{
    transform:translateY(-5px);
    border-color:#3B82F6;
}

.stat-card h3{
    color:#3B82F6;
    font-size:2rem;
    margin-bottom:8px;
}

.stat-card p{
    color:#94A3B8;
    line-height:1.4;
}

.hero-stats h3{
    color:#3B82F6;
    font-size:2rem;
}

.hero-stats p{
    color:#94A3B8;
}
.btn-primary,
.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:52px;
    min-width:180px;
    padding:0 28px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:.3s ease;
}
.btn-primary:hover,
.btn-secondary:hover{
    transform:translateY(-3px);
}
.btn-primary{
    background:#3B82F6;
    color:white;
    box-shadow:
    0 0 20px
    rgba(59,130,246,.4);
    
    animation:
    pulseGlow 2s infinite;
}
@keyframes pulseGlow{
    0%{
        box-shadow:
        0 0 20px
        rgba(59,130,246,.4);
    }
    50%{
        box-shadow:
        0 0 35px
       rgba(59,130,246,.7);
    }
    100%{
        box-shadow:
        0 0 20px
       rgba(59,130,246,.4);
    }
}

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

.btn-secondary{
    border:1px solid #3B82F6;
    color:#fff;
}

.btn-secondary:hover{
    background:#3B82F6;
}
.hero-image img{
    width:300px;
    border-radius:20px;

    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }

}
.hero-image{
    flex:0.8;
    display:flex;
    justify-content:center;
    margin-top: 0.2px;
}
.hero-image{
    position:relative;
}

.hero-image::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:#3B82F6;
    filter:blur(120px);
    opacity:.25;
    z-index:-1;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

                /*ABOUT STYLE*/


.about{
    padding:120px 10%;
}

.container{
    max-width:1200px;
    margin:auto;
}

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

.section-tag{
    display:inline-block;
    padding:8px 18px;
    border:1px solid #3B82F6;
    border-radius:30px;
    color:#3B82F6;
    margin-bottom:20px;
}

.section-header h2{
    font-size:3rem;
    max-width:800px;
    margin:auto;
}

.about-content{
    display:flex;
    align-items:center;
    gap:80px;
}

.about-image{
    flex:1;
}
.about-image img{
    width:100%;
    max-width:400px;
    border-radius:20px;
}

.about-text{
    flex:1.5;
}

.about-text p{
    color:#94A3B8;
    line-height:1.9;
    margin-bottom:20px;
}

.about-highlights{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:30px;
}

.highlight{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(59,130,246,.15);
    padding:15px;
    border-radius:12px;
    transition:.3s ease;
}

.highlight:hover{
    transform:translateY(-4px);
    border-color:#3B82F6;
}

                        /*SKILLS*/
.skills{
    padding:120px 10%;
}

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

.skill-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(59,130,246,.15);
    border-radius:20px;
    padding:30px;
    transition:.3s ease;
}

.skill-card:hover{
    transform:translateY(-8px);
    border-color:#3B82F6;
}

.skill-card h3{
    color:#3B82F6;
    margin-bottom:20px;
    font-size:1.2rem;
}

.skill-card ul{
    list-style:none;
}

.skill-card li{
    color:#CBD5E1;
    margin-bottom:12px;
    position:relative;
    padding-left:20px;
}

.skill-card li::before{
    content:"•";
    color:#3B82F6;
    position:absolute;
    left:0;
}
                        /*PROJECTS SECTIONS*/
.projects{
    padding:120px 10%;
}

.projects-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
}
.project-card:hover img{
    transform:scale(1.05);
}
.project-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(59,130,246,.15);
    border-radius:20px;
    overflow:hidden;
    transition:.3s ease;
}

.project-card:hover{
    transform:
    translateY(-12px)
    scale(1.02);
    box-shadow:
    0 20px 40px
    rgba(59,130,246,.15);
}

.project-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition: 0.5s ease;
}

.project-content{
    padding:25px;
}

.project-content h3{
    margin-bottom:15px;
    color:white;
}

.project-content p{
    color:#94A3B8;
    line-height:1.8;
    margin-bottom:20px;
}

.project-tech{
    color:#3B82F6;
    font-size:.9rem;
    margin-bottom:20px;
}

.project-btn{
    display:inline-block;
    padding:12px 22px;
    border-radius:10px;
    background:#3B82F6;
    color:white;
    text-decoration:none;
}
.project-buttons{
    display:flex;
    gap:10px;
    margin-top:15px;
    flex-wrap:wrap;
}
.project-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:20px;
}

.project-tags span{
    background:rgba(59,130,246,.15);
    color:#3B82F6;
    padding:6px 12px;
    border-radius:20px;
    font-size:.85rem;
}

                /*EXPEREINCE*/
.experience{
    padding:120px 10%;
}

.timeline{
    position:relative;
    max-width:900px;
    margin:auto;
}

.timeline::before{
    content:'';
    position:absolute;
    left:20px;
    top:0;
    width:2px;
    height:100%;
    background:#3B82F6;
}

.timeline-item{
    position:relative;
    padding-left:70px;
    margin-bottom:50px;
}

.timeline-item::before{
    content:'';
    position:absolute;
    left:12px;
    top:10px;
    width:18px;
    height:18px;
    border-radius:50%;
    background:#3B82F6;
}

.timeline-content{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(59,130,246,.15);
    border-radius:16px;
    padding:25px;
}

.timeline-year{
    color:#3B82F6;
    font-size:.9rem;
    font-weight:600;
}

.timeline-content h3{
    margin:10px 0;
}

.timeline-content p{
    color:#94A3B8;
    line-height:1.8;
}

                            /*EDUCATION SECTION*/
.education{
    padding:120px 10%;
}

.education-card{
    display:flex;
    justify-content:space-between;
    gap:40px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(59,130,246,.15);

    border-radius:20px;

    padding:40px;
}

.education-left h3{
    font-size:1.5rem;
    margin-bottom:10px;
}

.education-left h4{
    color:#3B82F6;
    margin-bottom:10px;
}

.education-right h4{
    color:#3B82F6;
    margin-bottom:10px;
}

.education-right p,
.education-left p{
    color:#94A3B8;
    line-height:1.8;
}

/* CONTACT INFORMATION */

.contact{
    padding:120px 10%;
}

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

.contact-item{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(59,130,246,.15);
    border-radius:20px;
    padding:30px;
    transition:.3s ease;
}

.contact-item:hover{
    transform:translateY(-6px);
    border-color:#3B82F6;
}

.contact-item h3{
    color:#3B82F6;
    margin-bottom:10px;
}

.contact-item a{
    text-decoration:none;
    color:#CBD5E1;
}

.contact-form-container{
    margin-top:60px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(59,130,246,.15);
    border-radius:20px;
    padding:40px;
    max-width:850px;
    margin-left:auto;
    margin-right:auto;
}

.contact-form-container form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form-container input,
.contact-form-container textarea{
    width:100%;
    background:#111827;
    border:1px solid rgba(59,130,246,.15);
    border-radius:12px;
    padding:18px;
    color:white;
    font-size:1rem;
    transition:.3s ease;
}

.contact-form-container input::placeholder,
.contact-form-container textarea::placeholder{

    color:#94A3B8;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus{
    border-color:#3B82F6;
    box-shadow:0 0 10px rgba(59,130,246,.2);
    outline:none;
}

.contact-form-container button{
    background:#3B82F6;
    color:white;
    border:none;
    padding:16px 24px;
    border-radius:12px;
    font-weight:600;
    cursor:pointer;
    transition:.3s ease;
}

.contact-form-container button:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(59,130,246,.3);
}

.form-title{
    text-align:center;
    font-size:2rem;
    margin-bottom:10px;
}

.form-subtitle{
    text-align:center;
    color:#94A3B8;
    margin-bottom:30px;
}

.footer{
    text-align:center;
    padding:30px;
    border-top:
    1px solid rgba(255,255,255,.05);
    color:#94A3B8;
}
.footer-socials{
    display:flex;
    justify-content:center;
    gap:25px;
    margin-bottom:20px;
}

.footer-socials a{
    color:#94A3B8;
    font-size:1.4rem;
    transition:.3s ease;
}

.footer-socials a:hover{
    color:#3B82F6;

}
.contact-item i{
    font-size:2rem;
    color:#3B82F6;
    margin-bottom:15px;
}


/*MOBILE RESPONSIVENESS*/
/* =========================
   TABLETS
========================= */

@media (max-width: 992px){

    .hero-content,
    .about-content{
        flex-direction:column;
        text-align:center;
    }

    .hero-text{
        order:2;
    }

    .hero-image{
        order:1;
        margin-top:0;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-stats{
        justify-content:center;
    }

    .about-highlights{
        grid-template-columns:1fr;
    }

    .education-card{
        flex-direction:column;
    }

}

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

@media (max-width: 768px){

    .navbar{
        padding:20px 5%;
    }

    .nav-links{
        gap:15px;
    }

    .hero{
        padding:120px 5% 80px;
    }

    .about,
    .skills,
    .projects,
    .experience,
    .education,
    .contact{
        padding:90px 5%;
    }

    .hero h1{
        font-size:3rem;
        white-space:normal;
    }

    .hero h2{
        font-size:1.5rem;
    }

    .section-header h2{
        font-size:2rem;
    }

    .hero-image img{
        width:250px;
    }

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

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

    .contact-card{
        grid-template-columns:1fr;
    }

}

/* =========================
   SMALL PHONES
========================= */

@media (max-width: 480px){

    .logo{
        font-size:1rem;
    }

    .hero h1{
        font-size:2.4rem;
    }

    .hero h2{
        font-size:1.2rem;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
    }

    .hero-image img{
        width:220px;
    }

}
.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:white;
    font-size:1.8rem;
    z-index:1000;
    box-shadow:0 0 25px rgba(37,211,102,.4);
    transition:.3s ease;
}
.whatsapp-float:hover{
    transform:translateY(-5px) scale(1.1);
}
/* =========================
   MOBILE NAVIGATION
========================= */

.menu-toggle{
    display:none;
    font-size:2rem;
    cursor:pointer;
    color:white;
}

@media (max-width:768px){

    .navbar{
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
        padding:15px 5%;
    }

    .logo{
        font-size:1rem;
    }

    .menu-toggle{
        display:block;
    }

    .nav-links{
        display:none;
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#0A0F1C;
        flex-direction:column;
        text-align:center;
        gap:20px;
        padding:20px 0;
        border-top:1px solid rgba(255,255,255,.05);
    }

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

    .nav-links a{
        font-size:1rem;
    }
}
.project-card{
    opacity:0;
    transform:translateY(50px);
    animation:projectFade 1s forwards;
}

.project-card:nth-child(1){
    animation-delay:.2s;
}

.project-card:nth-child(2){
    animation-delay:.4s;
}

.project-card:nth-child(3){
    animation-delay:.6s;
}

.project-card:nth-child(4){
    animation-delay:.8s;
}

@keyframes projectFade{
    from{

        opacity:0;
        transform:translateY(50px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}