/* ==========================================================
   AMINOFY v2.0
   Main Stylesheet
========================================================== */

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

html{
    scroll-behavior:smooth;
}

body{

    background:#0B0B0B;
    color:#F5F5F5;

    font-family:Inter,sans-serif;

    line-height:1.6;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    color:inherit;

    text-decoration:none;

}

button{

    border:none;

    background:none;

    font:inherit;

    cursor:pointer;

}

ul{

    list-style:none;

}

.container{

    width:min(1280px,92%);

    margin:auto;

}

section{

    position:relative;

    padding:110px 0;

}

::selection{

    background:#FDBA2D;

    color:#111;

}

/* ==========================================================
   HEADER
========================================================== */

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    height:90px;

    background:#0B0B0B;

    border-bottom:1px solid rgba(255,255,255,.05);

    z-index:9999;

}

.header.scrolled{

    backdrop-filter:blur(18px);

    background:rgba(11,11,11,.88);

}

.header .container{

    height:100%;

}

.header-inner{

    height:100%;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

/* ==========================================================
   LOGO
========================================================== */

.logo{

    display:flex;

    align-items:center;

    gap:2px;

    font-size:44px;

    font-weight:900;

    letter-spacing:-2px;

}

.logo span{

    color:#FDBA2D;

}

/* ==========================================================
   NAVIGATION
========================================================== */

.nav{

    display:flex;

    align-items:center;

    gap:46px;

}

.nav a{

    font-size:16px;

    font-weight:500;

    color:#CFCFCF;

    transition:.25s;

}

.nav a:hover{

    color:#FDBA2D;

}

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

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    height:56px;

    padding:0 34px;

    border-radius:999px;

    font-size:15px;

    font-weight:600;

    transition:.35s;

    cursor:pointer;

}

.btn-primary{

    background:#FDBA2D;

    color:#111;

    box-shadow:0 12px 40px rgba(253,186,45,.28);

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 50px rgba(253,186,45,.38);

}

.btn-outline{

    border:1px solid rgba(255,255,255,.12);

    color:#FFF;

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

    backdrop-filter:blur(10px);

}

.btn-outline:hover{

    border-color:#FDBA2D;

    color:#FDBA2D;

    transform:translateY(-4px);

}

/* ==========================================================
   THEME SWITCH
========================================================== */

.theme-switch{

    position:relative;

    width:70px;

    height:38px;

    border-radius:999px;

    background:#181818;

    border:1px solid rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 9px;

    cursor:pointer;

    transition:.35s;

}

.theme-switch:hover{

    border-color:#FDBA2D;

}

.theme-switch i{

    position:relative;

    z-index:2;

    color:#FDBA2D;

    font-size:14px;

}

.theme-switch-thumb{

    position:absolute;

    left:4px;

    top:4px;

    width:28px;

    height:28px;

    border-radius:50%;

    background:#FDBA2D;

    transition:.35s;

}

[data-theme="light"] .theme-switch-thumb{

    transform:translateX(32px);

}

[data-theme="light"] .theme-switch{

    background:#F2F2F2;

}

[data-theme="light"] .theme-switch i{

    color:#111;

}

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

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:90px;

    overflow:hidden;

}

.hero-wrap{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:80px;

}

.hero-content{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

}

.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    margin-bottom:28px;

    border-radius:999px;

    background:rgba(253,186,45,.08);

    border:1px solid rgba(253,186,45,.15);

    color:#FDBA2D;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

}

.hero-title{

    font-size:78px;

    line-height:.95;

    font-weight:900;

    letter-spacing:-4px;

    margin-bottom:28px;

}

.hero-title span{

    color:#FDBA2D;

}

.hero-role{

    font-size:28px;

    font-weight:600;

    color:#E5E5E5;

    margin-bottom:24px;

}

.hero-description{

    max-width:620px;

    font-size:18px;

    line-height:1.9;

    color:#A7A7A7;

    margin-bottom:42px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

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

.hero-image{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:28px;

}

.hero-image img{

    width:420px;

    max-width:100%;

    display:block;

}

.hero-skills{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    width:100%;

    max-width:430px;

}

.hero-skill{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    height:62px;

    border-radius:18px;

    background:#161616;

    border:1px solid rgba(255,255,255,.08);

    position:static;

}

.hero-skill i{

    color:var(--color-primary);

    font-size:22px;

}


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

.about{

    background:#0F0F10;

    border-top:1px solid rgba(255,255,255,.04);

}

.section-head{

    text-align:center;

    margin-bottom:80px;

}

.section-head span{

    display:inline-block;

    color:#FDBA2D;

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:18px;

}

.section-head h2{

    font-size:56px;

    font-weight:900;

    letter-spacing:-2px;

}

.about-wrap{

    display:grid;

    grid-template-columns:1.3fr .9fr;

    gap:80px;

    align-items:center;

}

/* ==========================================================
   ABOUT CONTENT
========================================================== */

.about-content h3{

    font-size:42px;

    line-height:1.25;

    margin-bottom:28px;

}

.about-content p{

    color:#A8A8A8;

    font-size:18px;

    line-height:2;

    margin-bottom:22px;

}

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

.about-skills{

    display:flex;

    flex-wrap:wrap;

    gap:16px;

    margin-top:40px;

}

.about-skills span{

    display:flex;

    align-items:center;

    justify-content:center;

    height:48px;

    padding:0 22px;

    border-radius:999px;

    background:#171717;

    border:1px solid rgba(255,255,255,.08);

    font-size:15px;

    font-weight:600;

    transition:.35s;

}

.about-skills span:hover{

    transform:translateY(-4px);

    border-color:#FDBA2D;

    color:#FDBA2D;

}

/* ==========================================================
   INFO CARDS
========================================================== */

.about-cards{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

}

.about-card{

    padding:34px;

    border-radius:24px;

    background:#171717;

    border:1px solid rgba(255,255,255,.06);

    transition:.35s;

}

.about-card:hover{

    transform:translateY(-8px);

    border-color:#FDBA2D;

    box-shadow:0 18px 50px rgba(0,0,0,.35);

}

.about-card small{

    display:block;

    color:#7A7A7A;

    font-size:14px;

    margin-bottom:16px;

}

.about-card h3{

    color:#FDBA2D;

    font-size:38px;

    font-weight:800;

    margin-bottom:12px;

}

.about-card p{

    color:#D6D6D6;

    font-size:16px;

    line-height:1.7;

}

/* ==========================================================
   SERVICES
========================================================== */

.services{

    background:#0B0B0B;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    position:relative;

    padding:42px;

    border-radius:28px;

    background:#151515;

    border:1px solid rgba(255,255,255,.06);

    overflow:hidden;

    transition:.35s;

}

.service-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(253,186,45,.08),
        transparent 55%
    );

    opacity:0;

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:#FDBA2D;

}

.service-card:hover::before{

    opacity:1;

}

.service-icon{

    width:72px;

    height:72px;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(253,186,45,.10);

    color:#FDBA2D;

    font-size:34px;

    margin-bottom:30px;

}

.service-card h3{

    font-size:28px;

    margin-bottom:18px;

}

.service-card p{

    color:#A7A7A7;

    line-height:1.9;

}

/* ==========================================================
   EXPERIENCE
========================================================== */

.experience{

    background:#101010;

}

.timeline{

    position:relative;

    max-width:900px;

    margin:auto;

}

.timeline::before{

    content:"";

    position:absolute;

    left:22px;

    top:0;

    width:2px;

    height:100%;

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

}

.timeline-item{

    position:relative;

    padding-left:90px;

    margin-bottom:70px;

}

.timeline-dot{

    position:absolute;

    left:10px;

    top:8px;

    width:24px;

    height:24px;

    border-radius:50%;

    background:#FDBA2D;

    border:5px solid #101010;

}

.timeline-year{

    color:#FDBA2D;

    font-weight:700;

    margin-bottom:12px;

}

.timeline-item h3{

    font-size:28px;

    margin-bottom:12px;

}

.timeline-item p{

    color:#A5A5A5;

    line-height:1.9;

}

/* ==========================================================
   ANIMATIONS
========================================================== */

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes glow{

    0%{

        opacity:.25;

    }

    50%{

        opacity:.55;

    }

    100%{

        opacity:.25;

    }

}

.hero-image::before{

    animation:glow 6s ease infinite;

}

.hero-skill{

    animation:float 5s ease-in-out infinite;

}

.skill-1{

    animation-delay:0s;

}

.skill-2{

    animation-delay:.8s;

}

.skill-3{

    animation-delay:1.4s;

}

.skill-4{

    animation-delay:2s;

}

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

.projects{

    background:#0B0B0B;

}

.projects-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.project-card{

    position:relative;

    overflow:hidden;

    border-radius:28px;

    background:#151515;

    border:1px solid rgba(255,255,255,.06);

    transition:.4s;

}

.project-card:hover{

    transform:translateY(-10px);

    border-color:#FDBA2D;

}

.project-image{

    position:relative;

    overflow:hidden;

}

.project-image img{

    width:100%;

    aspect-ratio:16/10;

    object-fit:cover;

    transition:.6s;

}

.project-card:hover .project-image img{

    transform:scale(1.08);

}

.project-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.9),
        transparent
    );

    opacity:0;

    transition:.35s;

}

.project-card:hover .project-overlay{

    opacity:1;

}

.project-content{

    padding:28px;

}

.project-category{

    color:#FDBA2D;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:12px;

}

.project-title{

    font-size:28px;

    margin-bottom:14px;

}

.project-description{

    color:#A7A7A7;

    line-height:1.8;

    margin-bottom:24px;

}

.project-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#FDBA2D;

    font-weight:600;

}

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

.contact{

    background:#101010;

}

.contact-wrap{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.contact-info h2{

    font-size:58px;

    line-height:1.1;

    margin-bottom:28px;

}

.contact-info p{

    color:#A8A8A8;

    line-height:2;

    margin-bottom:40px;

}

.contact-list{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.contact-item{

    display:flex;

    align-items:center;

    gap:20px;

}

.contact-icon{

    width:60px;

    height:60px;

    border-radius:18px;

    background:#181818;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#FDBA2D;

    font-size:24px;

}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.contact-form input,

.contact-form textarea{

    width:100%;

    padding:18px 22px;

    border-radius:18px;

    background:#151515;

    border:1px solid rgba(255,255,255,.06);

    color:#FFF;

    font-size:16px;

    transition:.3s;

}

.contact-form textarea{

    min-height:180px;

    resize:none;

}

.contact-form input:focus,

.contact-form textarea:focus{

    outline:none;

    border-color:#FDBA2D;

}

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

.footer{

    padding:40px 0;

    border-top:1px solid rgba(255,255,255,.05);

    background:#080808;

}

.footer-wrap{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.footer p{

    color:#8A8A8A;

}

.social{

    display:flex;

    gap:16px;

}

.social a{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#151515;

    border:1px solid rgba(255,255,255,.06);

    transition:.3s;

}

.social a:hover{

    background:#FDBA2D;

    color:#111;

    transform:translateY(-5px);

}