/* ============================================================
   GOOGLE FONTS
============================================================ */

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

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

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

html{
    scroll-behavior:smooth;
}

body{
    overflow-x:hidden;
}

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

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

ul{
    list-style:none;
}

button,
input,
textarea{
    border:none;
    outline:none;
    font:inherit;
}

button{
    cursor:pointer;
    background:none;
}

/* ============================================================
   ROOT VARIABLES
============================================================ */

:root{

    /* COLORS */

    --bg:#030712;

    --bg-secondary:#111827;

    --card:#1b2435;

    --primary:#3b82f6;

    --primary-light:#60a5fa;

    --accent:#8b5cf6;

    --white:#f8fafc;

    --text:#d6deeb;

    --muted:#94a3b8;

    --border:rgba(255,255,255,.08);

    --success:#22c55e;

    /* SHADOWS */

    --shadow:

    0 15px 40px rgba(0,0,0,.35);

    --blue-glow:

    0 0 35px rgba(59,130,246,.18);

    /* BORDER */

    --radius:22px;

    /* TRANSITION */

    --transition:.35s ease;

    /* WIDTH */

    --container:1250px;

}

/* ============================================================
   BODY
============================================================ */

body{

    font-family:'Inter',sans-serif;

    background:var(--bg);

    color:var(--text);

    line-height:1.7;

    position:relative;

}

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

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:var(--bg);

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(

    var(--primary),

    var(--accent)

    );

    border-radius:50px;

}

/* ============================================================
   TEXT SELECTION
============================================================ */

::selection{

    background:var(--primary);

    color:white;

}

/* ============================================================
   CONTAINER
============================================================ */

.container{

    width:min(92%,var(--container));

    margin:auto;

}

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

.section{

    padding:140px 0;

    position:relative;

}

/* ============================================================
   SECTION HEADING
============================================================ */

.section-heading{

    text-align:center;

    max-width:760px;

    margin:0 auto 80px;

}

.section-heading span{

    display:inline-block;

    color:var(--primary);

    font-size:.9rem;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:15px;

}

.section-heading h2{

    font-family:'Poppins',sans-serif;

    font-size:3rem;

    color:var(--white);

    margin-bottom:20px;

}

.section-heading p{

    color:var(--muted);

    font-size:1.05rem;

}

/* ============================================================
   HEADINGS
============================================================ */

h1,
h2,
h3,
h4{

    font-family:'Poppins',sans-serif;

    color:var(--white);

    line-height:1.2;

}

/* ============================================================
   PARAGRAPH
============================================================ */

p{

    color:var(--muted);

}

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

.primary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 36px;

    border-radius:50px;

    background:linear-gradient(

    135deg,

    var(--primary),

    var(--accent)

    );

    color:white;

    font-weight:600;

    transition:var(--transition);

    box-shadow:var(--blue-glow);

}

.primary-btn:hover{

    transform:translateY(-5px);

}

.secondary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 36px;

    border-radius:50px;

    border:1px solid var(--primary);

    color:var(--white);

    transition:var(--transition);

}

.secondary-btn:hover{

    background:var(--primary);

}

/* ============================================================
   CARD
============================================================ */

.skill-card,
.project-card,
.contact-card,
.info-card,
.stat-card,
.lead-card,
.learning-box,
.github-box,
.profile-card,
.timeline-content{

    background:rgba(17,24,39,.82);

    border:1px solid var(--border);

    border-radius:var(--radius);

    backdrop-filter:blur(16px);

    transition:var(--transition);

}

.skill-card:hover,
.project-card:hover,
.contact-card:hover,
.info-card:hover,
.stat-card:hover,
.lead-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--blue-glow);

}

/* ============================================================
   BACKGROUND
============================================================ */

.background{

    position:fixed;

    inset:0;

    z-index:-10;

    overflow:hidden;

}

.gradient-one,
.gradient-two,
.gradient-three{

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    filter:blur(140px);

    opacity:.12;

}

.gradient-one{

    background:#2563eb;

    top:-180px;

    left:-140px;

}

.gradient-two{

    background:#8b5cf6;

    right:-200px;

    top:200px;

}

.gradient-three{

    background:#0ea5e9;

    bottom:-180px;

    left:30%;

}

.noise{

    position:absolute;

    inset:0;

    opacity:.03;

    background-image:

    radial-gradient(

    white 1px,

    transparent 1px

    );

    background-size:26px 26px;

}

/* ============================================================
   SCROLL PROGRESS
============================================================ */

.scroll-progress{

    position:fixed;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:linear-gradient(

    90deg,

    var(--primary),

    var(--accent)

    );

    z-index:9999;

}

/* ============================================================
   LOADER
============================================================ */

#loader{

    position:fixed;

    inset:0;

    background:#030712;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:20px;

    z-index:99999;

}

.loader-logo{

    display:flex;

    gap:12px;

}

.loader-logo span{

    width:70px;

    height:70px;

    border-radius:18px;

    display:grid;

    place-items:center;

    background:linear-gradient(

    135deg,

    var(--primary),

    var(--accent)

    );

    color:white;

    font-size:1.7rem;

    font-weight:700;

    font-family:'Poppins',sans-serif;

}

.loader-line{

    width:220px;

    height:4px;

    border-radius:50px;

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

    overflow:hidden;

}

.loader-line::before{

    content:"";

    display:block;

    width:40%;

    height:100%;

    background:linear-gradient(

    90deg,

    var(--primary),

    var(--accent)

    );

}
/* ============================================================
   GLOBAL UTILITIES
============================================================ */

html{
    scroll-padding-top:100px;
}

body.loaded #loader{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:.6s ease;
}

section{
    overflow:hidden;
}

.hidden{
    opacity:0;
    transform:translateY(70px);
    transition:.8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

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

.logo{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo-box{

    width:58px;
    height:58px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    color:#fff;

    font-weight:700;

    font-size:1.2rem;

    font-family:'Poppins',sans-serif;

    box-shadow:var(--blue-glow);

    transition:.35s ease;

}

.logo:hover .logo-box{

    transform:rotate(-8deg) scale(1.08);

}

.logo h3{

    font-size:1.15rem;

}

.logo p{

    font-size:.8rem;

    color:var(--muted);

}

/* ============================================================
   FLEX HELPERS
============================================================ */

.flex{

    display:flex;

}

.grid{

    display:grid;

}

.center{

    display:flex;

    align-items:center;

    justify-content:center;

}

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

.image-box{

    position:relative;

    overflow:hidden;

    border-radius:28px;

}

.image-box img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s ease;

}

.image-box:hover img{

    transform:scale(1.06);

}

/* ============================================================
   TAGS
============================================================ */

.skill-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:25px;

}

.skill-tags span{

    padding:8px 16px;

    border-radius:50px;

    background:rgba(59,130,246,.12);

    color:var(--primary-light);

    font-size:.85rem;

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

}

/* ============================================================
   ICON CIRCLE
============================================================ */

.skill-icon,
.contact-card i,
.info-card i,
.lead-card i{

    width:65px;

    height:65px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:rgba(59,130,246,.12);

    color:var(--primary);

    font-size:1.4rem;

}

/* ============================================================
   COMMON GRID GAP
============================================================ */

.skills-grid,
.projects-grid,
.stats-grid,
.leadership-grid{

    gap:30px;

}

/* ============================================================
   KEYFRAMES
============================================================ */

@keyframes float{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0px);

    }

}

@keyframes glow{

    0%{

        box-shadow:0 0 20px rgba(59,130,246,.15);

    }

    50%{

        box-shadow:0 0 45px rgba(59,130,246,.35);

    }

    100%{

        box-shadow:0 0 20px rgba(59,130,246,.15);

    }

}

@keyframes blink{

    50%{

        opacity:0;

    }

}

@keyframes moveGradient{

    0%{

        transform:translateX(0);

    }

    50%{

        transform:translateX(40px);

    }

    100%{

        transform:translateX(0);

    }

}

@keyframes loader{

    0%{

        transform:translateX(-100%);

    }

    100%{

        transform:translateX(250%);

    }

}

.loader-line::before{

    animation:loader 1.4s linear infinite;

}

.gradient-one{

    animation:moveGradient 12s infinite ease-in-out;

}

.gradient-two{

    animation:moveGradient 15s infinite ease-in-out reverse;

}

.gradient-three{

    animation:moveGradient 18s infinite ease-in-out;

}

/* ============================================================
   CURSOR
============================================================ */

.cursor{

    color:var(--primary);

    animation:blink .8s infinite;

    font-weight:700;

}

/* ============================================================
   RESPONSIVE UTILITIES
============================================================ */

@media(max-width:992px){

    .section{

        padding:110px 0;

    }

    .section-heading h2{

        font-size:2.4rem;

    }

}

@media(max-width:768px){

    .section{

        padding:90px 0;

    }

    .section-heading{

        margin-bottom:60px;

    }

    .section-heading h2{

        font-size:2rem;

    }

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

#header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    transition:.35s ease;

}

#header.scrolled{

    background:rgba(3,7,18,.82);

    backdrop-filter:blur(18px);

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

}

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

#header .container{

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

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

.logo{

    display:flex;

    align-items:center;

    gap:15px;

    z-index:2000;

}

.logo-box{

    width:58px;

    height:58px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    color:#fff;

    font-size:1.2rem;

    font-weight:700;

    box-shadow:var(--blue-glow);

    transition:.35s;

}

.logo:hover .logo-box{

    transform:rotate(-8deg) scale(1.08);

}

.logo-box::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        transparent,
        rgba(255,255,255,.2)
    );

    opacity:0;

    transition:.35s;

}

.logo:hover .logo-box::before{

    opacity:1;

}

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

.navbar ul{

    display:flex;

    align-items:center;

    gap:35px;

}

.navbar a{

    position:relative;

    color:var(--muted);

    font-weight:500;

    transition:.35s;

}

.navbar a:hover{

    color:white;

}

.navbar a.active{

    color:white;

}

.navbar a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    border-radius:50px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--accent)
    );

    transition:.35s;

}

.navbar a:hover::after,

.navbar a.active::after{

    width:100%;

}

/* ============================================================
   RIGHT SIDE
============================================================ */

.header-right{

    display:flex;

    align-items:center;

    gap:15px;

}

#theme-toggle,

#menu-btn{

    width:48px;

    height:48px;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

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

    color:white;

    transition:.35s;

}

#theme-toggle:hover,

#menu-btn:hover{

    background:var(--primary);

    transform:translateY(-3px);

}

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

#menu-btn{

    display:none;

}

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

@media(max-width:992px){

    #menu-btn{

        display:flex;

    }

    .navbar{

        position:fixed;

        top:90px;

        right:-100%;

        width:320px;

        height:calc(100vh - 90px);

        background:rgba(10,15,28,.98);

        backdrop-filter:blur(18px);

        transition:.45s ease;

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

        padding:50px 40px;

    }

    .navbar.active{

        right:0;

    }

    .navbar ul{

        flex-direction:column;

        align-items:flex-start;

        gap:30px;

    }

}

@media(max-width:500px){

    .navbar{

        width:100%;

        border-left:none;

    }

}
/* ============================================================
   HERO SECTION
============================================================ */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    padding-top:120px;

}

.hero-container{

    display:grid;

    grid-template-columns:1.15fr .85fr;

    gap:80px;

    align-items:center;

}

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

.hero-left{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.hero-intro{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--primary);

    font-size:.9rem;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:22px;

}

.hero-intro::before{

    content:"";

    width:55px;

    height:2px;

    border-radius:50px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--accent)
    );

}

.hero-left h1{

    font-size:4.6rem;

    font-weight:800;

    line-height:1.1;

    margin-bottom:12px;

}

.hero-left h1 span{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    background-clip:text;

}

.hero-left h2{

    font-size:1.6rem;

    font-weight:600;

    color:var(--text);

    margin-bottom:30px;

}

/* ============================================================
   TYPING TEXT
============================================================ */

.typing-wrapper{

    display:flex;

    align-items:center;

    gap:4px;

    min-height:40px;

    margin-bottom:28px;

    font-size:1.25rem;

    font-weight:600;

    color:var(--primary-light);

}

#typing-text{

    white-space:nowrap;

}

/* ============================================================
   DESCRIPTION
============================================================ */

.hero-description{

    max-width:650px;

    font-size:1.08rem;

    color:var(--muted);

    margin-bottom:40px;

    line-height:1.9;

}

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

.hero-buttons{

    display:flex;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:55px;

}

.hero-buttons .primary-btn{

    min-width:210px;

}

.hero-buttons .secondary-btn{

    min-width:190px;

}

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

.hero-info{

    display:flex;

    flex-wrap:wrap;

    gap:40px;

}

.hero-info div{

    min-width:120px;

}

.hero-info h3{

    font-size:2rem;

    color:var(--white);

    margin-bottom:6px;

}

.hero-info span{

    color:var(--muted);

    font-size:.95rem;

}

/* ============================================================
   HERO INFO DIVIDER
============================================================ */

.hero-info div{

    position:relative;

}

.hero-info div:not(:last-child)::after{

    content:"";

    position:absolute;

    right:-20px;

    top:10px;

    width:1px;

    height:42px;

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

}

/* ============================================================
   SCROLL INDICATOR
============================================================ */

.scroll-down{

    position:absolute;

    left:50%;

    bottom:35px;

    transform:translateX(-50%);

}

.scroll-down a{

    width:38px;

    height:65px;

    border-radius:30px;

    border:2px solid rgba(255,255,255,.18);

    display:flex;

    justify-content:center;

    padding-top:10px;

}

.scroll-down span{

    width:8px;

    height:8px;

    border-radius:50%;

    background:var(--primary);

    animation:scrollMove 1.8s infinite;

}

@keyframes scrollMove{

    0%{

        transform:translateY(0);

        opacity:1;

    }

    100%{

        transform:translateY(28px);

        opacity:0;

    }

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

.hero-right{

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

}

/* ============================================================
   PROFILE CARD
============================================================ */

.profile-card{

    width:420px;

    padding:35px;

    border-radius:30px;

    text-align:center;

    position:relative;

    overflow:hidden;

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

}

.profile-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(59,130,246,.12),
        transparent,
        rgba(139,92,246,.12)
    );

    pointer-events:none;

}

.profile-card::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    background:rgba(59,130,246,.12);

    filter:blur(80px);

    top:-70px;

    right:-70px;

}

/* ============================================================
   PROFILE IMAGE
============================================================ */

.profile-circle{

    width:240px;

    height:240px;

    margin:auto;

    border-radius:50%;

    overflow:hidden;

    position:relative;

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

    box-shadow:var(--blue-glow);

}

.profile-circle img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s ease;

}

.profile-circle:hover img{

    transform:scale(1.08);

}

/* ============================================================
   PROFILE CONTENT
============================================================ */

.profile-content{

    margin-top:30px;

}

.profile-content h3{

    font-size:2rem;

    margin-bottom:10px;

}

.profile-content p{

    color:var(--primary-light);

    font-size:1rem;

}

/* ============================================================
   SOCIAL ICONS
============================================================ */

.social-icons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    margin-top:35px;

}

.social-icons a{

    width:55px;

    height:55px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

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

    color:var(--white);

    font-size:1.2rem;

    transition:.35s ease;

}

.social-icons a:hover{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    transform:translateY(-8px) rotate(-6deg);

    box-shadow:var(--blue-glow);

}

/* ============================================================
   FLOATING DECORATION
============================================================ */

.hero-right::before{

    content:"";

    position:absolute;

    width:140px;

    height:140px;

    border-radius:30px;

    border:2px solid rgba(59,130,246,.25);

    top:10%;

    left:-40px;

    transform:rotate(20deg);

}

.hero-right::after{

    content:"";

    position:absolute;

    width:90px;

    height:90px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    opacity:.15;

    bottom:8%;

    right:-25px;

    filter:blur(8px);

}

/* ============================================================
   PROFILE BADGE
============================================================ */

.profile-card .status{

    position:absolute;

    top:25px;

    left:25px;

    padding:8px 18px;

    border-radius:50px;

    background:rgba(34,197,94,.15);

    color:var(--success);

    font-size:.85rem;

    font-weight:600;

    border:1px solid rgba(34,197,94,.25);

}

/* ============================================================
   PROFILE HOVER
============================================================ */

.profile-card:hover{

    transform:translateY(-10px);

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

}

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

.profile-circle::before{

    content:"";

    position:absolute;

    inset:-8px;

    border-radius:50%;

    border:2px solid rgba(59,130,246,.25);

    animation:glow 3s infinite;

    pointer-events:none;

}

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

@media(max-width:1100px){

    .hero-container{

        gap:50px;

    }

    .profile-card{

        width:370px;

    }

    .profile-circle{

        width:210px;

        height:210px;

    }

}

@media(max-width:992px){

    .hero-right{

        margin-top:60px;

    }

    .profile-card{

        width:100%;

        max-width:420px;

    }

}

@media(max-width:600px){

    .profile-card{

        padding:25px;

    }

    .profile-circle{

        width:180px;

        height:180px;

    }

    .profile-content h3{

        font-size:1.6rem;

    }

    .social-icons{

        gap:14px;

    }

    .social-icons a{

        width:48px;

        height:48px;

        font-size:1rem;

    }

}
/* ============================================================
   HERO RESPONSIVE
============================================================ */

@media (max-width: 1200px){

    .hero-left h1{

        font-size:4rem;

    }

    .hero-container{

        gap:60px;

    }

}

@media (max-width:992px){

    .hero{

        padding-top:150px;

        padding-bottom:80px;

    }

    .hero-container{

        grid-template-columns:1fr;

        text-align:center;

        gap:70px;

    }

    .hero-left{

        align-items:center;

    }

    .hero-description{

        margin-inline:auto;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-info{

        justify-content:center;

    }

    .hero-intro::before{

        display:none;

    }

}

@media (max-width:768px){

    .hero{

        min-height:auto;

        padding-top:140px;

        padding-bottom:60px;

    }

    .hero-left h1{

        font-size:3.2rem;

    }

    .hero-left h2{

        font-size:1.35rem;

    }

    .typing-wrapper{

        justify-content:center;

        font-size:1.1rem;

    }

    .hero-description{

        font-size:1rem;

        max-width:100%;

    }

    .hero-buttons{

        flex-direction:column;

        width:100%;

    }

    .hero-buttons .primary-btn,

    .hero-buttons .secondary-btn{

        width:100%;

        max-width:320px;

    }

    .hero-info{

        gap:25px;

    }

    .hero-info div{

        min-width:100px;

    }

    .hero-info h3{

        font-size:1.6rem;

    }

    .scroll-down{

        display:none;

    }

}

@media (max-width:576px){

    .hero{

        padding-top:130px;

    }

    .hero-left h1{

        font-size:2.6rem;

    }

    .hero-left h2{

        font-size:1.15rem;

    }

    .hero-intro{

        font-size:.8rem;

        letter-spacing:1px;

    }

    .hero-description{

        line-height:1.8;

    }

    .hero-info{

        display:grid;

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

        gap:20px;

        width:100%;

    }

    .hero-info div{

        text-align:center;

    }

    .hero-info div::after{

        display:none !important;

    }

}

@media (max-width:400px){

    .hero-left h1{

        font-size:2.2rem;

    }

    .profile-card{

        padding:20px;

    }

    .hero-buttons .primary-btn,

    .hero-buttons .secondary-btn{

        padding:15px 20px;

        font-size:.95rem;

    }

}

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

.hero-left{

    animation:fadeLeft 1s ease forwards;

}

.hero-right{

    animation:fadeRight 1s ease forwards;

}

@keyframes fadeLeft{

    from{

        opacity:0;

        transform:translateX(-60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes fadeRight{

    from{

        opacity:0;

        transform:translateX(60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

/* ============================================================
   HERO BUTTON EFFECTS
============================================================ */

.primary-btn,

.secondary-btn{

    position:relative;

    overflow:hidden;

}

.primary-btn::before,

.secondary-btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:100%;

    height:100%;

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

    transform:skewX(-25deg);

    transition:.7s;

}

.primary-btn:hover::before,

.secondary-btn:hover::before{

    left:120%;

}

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

.profile-circle{

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

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

.about{

    position:relative;

}

.about-wrapper{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:80px;

    align-items:center;

}

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

.about-image{

    position:relative;

}

.about-image .image-box{

    width:100%;

    border-radius:30px;

    overflow:hidden;

    background:var(--card);

    border:1px solid var(--border);

    box-shadow:var(--shadow);

}

.about-image img{

    width:100%;

    display:block;

    transition:.45s ease;

}

.about-image:hover img{

    transform:scale(1.05);

}

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

.experience-card{

    position:absolute;

    bottom:-30px;

    right:-30px;

    width:150px;

    height:150px;

    border-radius:30px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    color:#fff;

    box-shadow:var(--blue-glow);

}

.experience-card h3{

    font-size:3rem;

    color:#fff;

}

.experience-card span{

    color:#fff;

    font-size:.95rem;

    text-align:center;

}

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

.about-content h3{

    font-size:2.5rem;

    margin-bottom:25px;

}

.about-content h3 span{

    color:var(--primary);

}

.about-content p{

    margin-bottom:20px;

    font-size:1.03rem;

    line-height:1.9;

}

/* ============================================================
   INFO GRID
============================================================ */

.about-info{

    display:grid;

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

    gap:22px;

    margin:45px 0;

}

.info-card{

    display:flex;

    align-items:center;

    gap:18px;

    padding:22px;

}

.info-card h4{

    font-size:1rem;

    margin-bottom:5px;

}

.info-card p{

    margin:0;

    font-size:.95rem;

}

/* ============================================================
   STRENGTHS
============================================================ */

.strengths{

    margin-top:20px;

}

.strengths h4{

    margin-bottom:20px;

}

.strength-grid{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

}

.strength-grid span{

    padding:12px 22px;

    border-radius:50px;

    background:rgba(59,130,246,.12);

    color:var(--primary-light);

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

    transition:.35s;

}

.strength-grid span:hover{

    transform:translateY(-5px);

    background:var(--primary);

    color:#fff;

}

/* ============================================================
   QUOTE
============================================================ */

blockquote{

    margin-top:45px;

    padding:28px;

    border-left:5px solid var(--primary);

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

    border-radius:18px;

    color:var(--white);

    font-size:1.05rem;

    font-style:italic;

}

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

@media(max-width:1100px){

    .about-wrapper{

        grid-template-columns:1fr;

        gap:70px;

    }

    .about-image{

        max-width:450px;

        margin:auto;

    }

}

@media(max-width:768px){

    .about-content{

        text-align:center;

    }

    .about-content h3{

        font-size:2rem;

    }

    .about-info{

        grid-template-columns:1fr;

    }

    .strength-grid{

        justify-content:center;

    }

    blockquote{

        text-align:left;

    }

}

@media(max-width:500px){

    .experience-card{

        width:120px;

        height:120px;

        right:-10px;

        bottom:-20px;

    }

    .experience-card h3{

        font-size:2.2rem;

    }

    .about-content h3{

        font-size:1.8rem;

    }

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

.education{

    position:relative;

}

/* ============================================================
   TIMELINE
============================================================ */

.timeline{

    position:relative;

    max-width:900px;

    margin:80px auto 0;

    padding-left:50px;

}

.timeline::before{

    content:"";

    position:absolute;

    left:16px;

    top:0;

    width:3px;

    height:100%;

    background:linear-gradient(
        to bottom,
        var(--primary),
        var(--accent)
    );

    border-radius:20px;

}

/* ============================================================
   TIMELINE ITEM
============================================================ */

.timeline-item{

    position:relative;

    margin-bottom:55px;

}

.timeline-item:last-child{

    margin-bottom:0;

}

/* ============================================================
   DOT
============================================================ */

.timeline-dot{

    position:absolute;

    left:-42px;

    top:28px;

    width:24px;

    height:24px;

    border-radius:50%;

    background:var(--primary);

    border:5px solid var(--bg);

    box-shadow:0 0 20px rgba(59,130,246,.45);

}

/* ============================================================
   CARD
============================================================ */

.timeline-content{

    padding:35px;

}

.timeline-content:hover{

    transform:translateX(10px);

}

.timeline-year{

    display:inline-block;

    margin-bottom:18px;

    padding:8px 18px;

    border-radius:50px;

    background:rgba(59,130,246,.12);

    color:var(--primary-light);

    font-size:.85rem;

    font-weight:600;

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

}

/* ============================================================
   TEXT
============================================================ */

.timeline-content h3{

    font-size:1.45rem;

    margin-bottom:12px;

}

.timeline-content h4{

    color:var(--primary);

    margin-bottom:12px;

    font-size:1.05rem;

}

.timeline-content p{

    line-height:1.8;

    margin-bottom:22px;

}

/* ============================================================
   GPA BADGE
============================================================ */

.timeline-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 18px;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    color:#fff;

    font-weight:600;

    font-size:.9rem;

}

/* ============================================================
   FUTURE CARD
============================================================ */

.timeline-item.future .timeline-dot{

    background:var(--success);

    box-shadow:0 0 25px rgba(34,197,94,.35);

}

.timeline-item.future .timeline-year{

    background:rgba(34,197,94,.12);

    color:var(--success);

    border:1px solid rgba(34,197,94,.25);

}

/* ============================================================
   HOVER EFFECT
============================================================ */

.timeline-content{

    transition:.35s ease;

}

.timeline-content:hover{

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

}

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

@media(max-width:768px){

    .timeline{

        padding-left:35px;

    }

    .timeline::before{

        left:10px;

    }

    .timeline-dot{

        left:-27px;

        width:20px;

        height:20px;

    }

    .timeline-content{

        padding:28px;

    }

}

@media(max-width:500px){

    .timeline{

        padding-left:25px;

    }

    .timeline::before{

        left:6px;

    }

    .timeline-dot{

        left:-18px;

        width:18px;

        height:18px;

    }

    .timeline-content h3{

        font-size:1.2rem;

    }

    .timeline-content{

        padding:22px;

    }

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

.skills{

    position:relative;

}

.skills-grid{

    display:grid;

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

    gap:30px;

}

.skill-card{

    padding:35px;

    position:relative;

    overflow:hidden;

}

.skill-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(59,130,246,.06),
        transparent
    );

    opacity:0;

    transition:.4s;

}

.skill-card:hover::before{

    opacity:1;

}

.skill-card:hover{

    transform:translateY(-10px);
}

.skill-icon{

    margin-bottom:25px;
}

.skill-card h3{

    font-size:1.5rem;

    margin-bottom:15px;

}

.skill-card p{

    line-height:1.8;

    margin-bottom:25px;

}

/* ============================================================
   LEARNING SECTION
============================================================ */

.learning{

    padding-top:40px;

}

.learning-box{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    padding:45px;

}

.learning-left span{

    display:inline-block;

    color:var(--primary);

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:18px;

}

.learning-left h2{

    font-size:2.3rem;

    margin-bottom:20px;

}

.learning-left p{

    line-height:1.9;

}

.learning-right{

    display:flex;

    flex-direction:column;

    justify-content:center;

    gap:20px;

}

.learning-item{

    display:flex;

    align-items:center;

    gap:18px;

    padding:18px 22px;

    border-radius:18px;

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

    transition:.35s;

}

.learning-item:hover{

    background:rgba(59,130,246,.08);

    transform:translateX(10px);

}

.learning-item i{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(34,197,94,.15);

    color:var(--success);

    font-size:1rem;

}

.learning-item span{

    color:var(--white);

    font-weight:500;

}

/* ============================================================
   STATS SECTION
============================================================ */

.stats{

    padding-top:50px;

}

.stats-grid{

    display:grid;

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

    gap:30px;

}

.stat-card{

    text-align:center;

    padding:45px 25px;

}

.stat-card h2{

    font-size:3rem;

    color:var(--primary);

    margin-bottom:10px;

}

.stat-card p{

    color:var(--muted);

}

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

@media(max-width:992px){

    .skills-grid{

        grid-template-columns:1fr;

    }

    .learning-box{

        grid-template-columns:1fr;

    }

    .stats-grid{

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

    }

}

@media(max-width:576px){

    .learning-box{

        padding:30px;

    }

    .learning-left h2{

        font-size:1.9rem;

    }

    .stats-grid{

        grid-template-columns:1fr;

    }

    .stat-card h2{

        font-size:2.4rem;

    }

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

.projects{

    position:relative;

}

.projects-grid{

    display:grid;

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

    gap:35px;

    margin-top:70px;

}

/* ============================================================
   PROJECT CARD
============================================================ */

.project-card{

    overflow:hidden;

    position:relative;

    border-radius:28px;

    transition:.4s ease;

}

.project-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.35);

}

/* ============================================================
   PROJECT IMAGE
============================================================ */

.project-image{

    position:relative;

    height:240px;

    overflow:hidden;

}

.project-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s ease;

}

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

    transform:scale(1.08);

}

/* ============================================================
   IMAGE OVERLAY
============================================================ */

.project-overlay{

    position:absolute;

    inset:0;

    display:flex;

    align-items:flex-start;

    justify-content:flex-end;

    padding:20px;

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

}

.project-overlay span{

    padding:8px 18px;

    border-radius:50px;

    background:rgba(34,197,94,.18);

    border:1px solid rgba(34,197,94,.35);

    color:var(--success);

    font-size:.82rem;

    font-weight:600;

}

/* ============================================================
   PROJECT CONTENT
============================================================ */

.project-content{

    padding:32px;

}

.project-content h3{

    font-size:1.5rem;

    margin-bottom:15px;

}

.project-content p{

    line-height:1.8;

    margin-bottom:24px;

}

/* ============================================================
   TECH STACK
============================================================ */

.tech-stack{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:28px;

}

.tech-stack span{

    padding:8px 18px;

    border-radius:50px;

    background:rgba(59,130,246,.12);

    color:var(--primary-light);

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

    font-size:.85rem;

    transition:.3s;

}

.tech-stack span:hover{

    background:var(--primary);

    color:#fff;

}

/* ============================================================
   FUTURE PROJECT
============================================================ */

.future-project{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.project-image.future{

    display:flex;

    align-items:center;

    justify-content:center;

    height:240px;

    background:linear-gradient(
        135deg,
        rgba(59,130,246,.12),
        rgba(139,92,246,.12)
    );

}

.project-image.future i{

    font-size:4rem;

    color:var(--primary);

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

}
/* ============================================================
   PROJECT BUTTONS
============================================================ */

.project-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

.project-btn{

    flex:1;

    min-width:130px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:14px 20px;

    border-radius:14px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    color:#fff;

    font-weight:600;

    transition:.35s ease;

    position:relative;

    overflow:hidden;

}

.project-btn.secondary{

    background:transparent;

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

    color:var(--white);

}

.project-btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:100%;

    height:100%;

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

    transform:skewX(-25deg);

    transition:.7s;

}

.project-btn:hover::before{

    left:120%;

}

.project-btn:hover{

    transform:translateY(-5px);

    box-shadow:var(--blue-glow);

}

.project-btn.secondary:hover{

    background:rgba(59,130,246,.12);

    border-color:var(--primary);

}

/* ============================================================
   PROJECT CARD DECORATION
============================================================ */

.project-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        180deg,
        transparent,
        rgba(59,130,246,.04)
    );

    pointer-events:none;

    opacity:0;

    transition:.35s ease;

}

.project-card:hover::before{

    opacity:1;

}

.project-card::after{

    content:"";

    position:absolute;

    top:-120px;

    right:-120px;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(59,130,246,.08);

    filter:blur(70px);

    opacity:0;

    transition:.4s;

}

.project-card:hover::after{

    opacity:1;

}

/* ============================================================
   GITHUB SECTION
============================================================ */

.github{

    padding-top:70px;

}

.github-box{

    display:grid;

    grid-template-columns:180px 1fr;

    gap:40px;

    align-items:center;

    padding:50px;

    position:relative;

    overflow:hidden;

}

.github-box::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(59,130,246,.05),
        transparent,
        rgba(139,92,246,.05)
    );

    pointer-events:none;

}

.github-left{

    display:flex;

    justify-content:center;

    align-items:center;

}

.github-left i{

    font-size:7rem;

    color:var(--primary);

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

}

.github-right span{

    display:inline-block;

    color:var(--primary);

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:15px;

}

.github-right h2{

    font-size:2.4rem;

    margin-bottom:20px;

}

.github-right p{

    line-height:1.9;

    margin-bottom:30px;

}

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

@media(max-width:992px){

    .github-box{

        grid-template-columns:1fr;

        text-align:center;

        padding:40px;

    }

    .github-left{

        margin-bottom:10px;

    }

}

@media(max-width:768px){

    .projects-grid{

        grid-template-columns:1fr;

    }

    .project-buttons{

        flex-direction:column;

    }

    .project-btn{

        width:100%;

    }

    .github-right h2{

        font-size:2rem;

    }

}

@media(max-width:480px){

    .project-content{

        padding:24px;

    }

    .project-content h3{

        font-size:1.3rem;

    }

    .github-box{

        padding:30px 22px;

    }

    .github-left i{

        font-size:5rem;

    }

}
/* ============================================================
   LEADERSHIP SECTION
============================================================ */

.leadership{

    position:relative;

}

.leadership-grid{

    display:grid;

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

    gap:30px;

    margin-top:70px;

}

/* ============================================================
   LEADERSHIP CARD
============================================================ */

.lead-card{

    position:relative;

    padding:40px 30px;

    text-align:center;

    overflow:hidden;

    transition:.4s ease;

}

.lead-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(59,130,246,.06),
        transparent
    );

    opacity:0;

    transition:.4s;

}

.lead-card:hover::before{

    opacity:1;

}

.lead-card:hover{

    transform:translateY(-12px);

}

.lead-card i{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:22px;

    background:rgba(59,130,246,.12);

    color:var(--primary);

    font-size:2rem;

    transition:.35s;

}

.lead-card:hover i{

    transform:rotate(-8deg) scale(1.08);

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    color:#fff;

}

.lead-card h3{

    margin-bottom:18px;

    font-size:1.45rem;

}

.lead-card p{

    line-height:1.8;

}

/* ============================================================
   ROADMAP SECTION
============================================================ */

.roadmap{

    padding-top:70px;

}

.roadmap-box{

    position:relative;

    overflow:hidden;

    padding:60px;

    border-radius:30px;

    background:rgba(17,24,39,.82);

    border:1px solid var(--border);

    backdrop-filter:blur(18px);

}

.roadmap-box::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(59,130,246,.08),
        transparent,
        rgba(139,92,246,.08)
    );

    pointer-events:none;

}

.roadmap-box span{

    display:inline-block;

    color:var(--primary);

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:18px;

}

.roadmap-box h2{

    font-size:2.5rem;

    margin-bottom:35px;

}

/* ============================================================
   ROADMAP LIST
============================================================ */

.roadmap-list{

    display:grid;

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

    gap:22px;

}

.roadmap-list div{

    display:flex;

    align-items:center;

    gap:15px;

    padding:20px 24px;

    border-radius:18px;

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

    transition:.35s ease;

    font-weight:500;

}

.roadmap-list div:hover{

    background:rgba(59,130,246,.08);

    transform:translateX(10px);

}

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

@media(max-width:992px){

    .leadership-grid{

        grid-template-columns:1fr;

    }

    .roadmap-list{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .roadmap-box{

        padding:40px 30px;

    }

    .roadmap-box h2{

        font-size:2rem;

    }

}

@media(max-width:480px){

    .lead-card{

        padding:30px 22px;

    }

    .roadmap-box{

        padding:30px 20px;

    }

    .roadmap-box h2{

        font-size:1.7rem;

    }

}
/* ============================================================
   CONTACT SECTION
============================================================ */

.contact{

    position:relative;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    margin-top:70px;

}

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

.contact-info{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.contact-card{

    display:flex;

    align-items:center;

    gap:22px;

    padding:28px;

    transition:.35s ease;

}

.contact-card:hover{

    transform:translateX(12px);

}

.contact-card i{

    flex-shrink:0;

}

.contact-card h3{

    margin-bottom:6px;

    font-size:1.15rem;

}

.contact-card a,

.contact-card p{

    color:var(--muted);

    transition:.3s;

}

.contact-card a:hover{

    color:var(--primary);

}

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

.contact-box{

    padding:45px;

    border-radius:28px;

    background:rgba(17,24,39,.82);

    border:1px solid var(--border);

    backdrop-filter:blur(18px);

}

.contact-box h3{

    font-size:2rem;

    margin-bottom:18px;

}

.contact-box p{

    line-height:1.8;

    margin-bottom:35px;

}

/* ============================================================
   SOCIAL LINKS
============================================================ */

.contact-social{

    display:flex;

    gap:18px;

    margin-bottom:35px;

}

.contact-social a{

    width:58px;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

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

    color:var(--white);

    font-size:1.3rem;

    transition:.35s ease;

}

.contact-social a:hover{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    transform:translateY(-8px);

    box-shadow:var(--blue-glow);

}

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

.footer{

    margin-top:120px;

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

    padding-top:70px;

    background:rgba(3,7,18,.75);

}

.footer-content{

    display:grid;

    grid-template-columns:1.2fr 1fr 1fr;

    gap:40px;

    align-items:start;

}

.footer-logo{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

.footer-logo h3{

    margin-bottom:10px;

}

.footer-links{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.footer-links a{

    color:var(--muted);

    transition:.3s;

}

.footer-links a:hover{

    color:var(--primary);

    padding-left:8px;

}

.footer-social{

    display:flex;

    gap:16px;

}

.footer-social a{

    width:50px;

    height:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:16px;

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

    transition:.35s ease;

}

.footer-social a:hover{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    transform:translateY(-6px);

}

.footer-bottom{

    margin-top:60px;

    padding:25px 0;

    text-align:center;

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

}

.footer-bottom p{

    color:var(--muted);

    font-size:.95rem;

}

/* ============================================================
   SCROLL TO TOP BUTTON
============================================================ */

#scrollTopBtn{

    position:fixed;

    right:30px;

    bottom:30px;

    width:56px;

    height:56px;

    border-radius:18px;

    border:none;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    color:#fff;

    font-size:1.1rem;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.35s ease;

    box-shadow:var(--blue-glow);

    z-index:999;

}

#scrollTopBtn.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

#scrollTopBtn:hover{

    transform:translateY(-6px);

}

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

@media(max-width:992px){

    .contact-wrapper{

        grid-template-columns:1fr;

    }

    .footer-content{

        grid-template-columns:1fr;

        text-align:center;

    }

    .footer-logo{

        justify-content:center;

    }

    .footer-links{

        align-items:center;

    }

    .footer-social{

        justify-content:center;

    }

}

@media(max-width:576px){

    .contact-box{

        padding:30px 22px;

    }

    .contact-social{

        justify-content:center;

        flex-wrap:wrap;

    }

    .contact-card{

        padding:22px;

    }

    #scrollTopBtn{

        width:50px;

        height:50px;

        right:20px;

        bottom:20px;

    }

}
/* ============================================================
   FINAL UTILITIES
============================================================ */

.fade-up{

    opacity:0;

    transform:translateY(60px);

    transition:opacity .8s ease, transform .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

.fade-left{

    opacity:0;

    transform:translateX(-60px);

    transition:opacity .8s ease, transform .8s ease;

}

.fade-left.show{

    opacity:1;

    transform:translateX(0);

}

.fade-right{

    opacity:0;

    transform:translateX(60px);

    transition:opacity .8s ease, transform .8s ease;

}

.fade-right.show{

    opacity:1;

    transform:translateX(0);

}

/* ============================================================
   GLASS EFFECT
============================================================ */

.glass{

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

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

    backdrop-filter:blur(18px);

}

/* ============================================================
   HOVER EFFECTS
============================================================ */

.hover-lift{

    transition:.35s ease;

}

.hover-lift:hover{

    transform:translateY(-10px);

}

.hover-glow:hover{

    box-shadow:0 20px 60px rgba(59,130,246,.22);

}

/* ============================================================
   COMMON SPACING
============================================================ */

.mt-20{margin-top:20px;}
.mt-30{margin-top:30px;}
.mt-40{margin-top:40px;}
.mt-60{margin-top:60px;}

.mb-20{margin-bottom:20px;}
.mb-30{margin-bottom:30px;}
.mb-40{margin-bottom:40px;}
.mb-60{margin-bottom:60px;}

.text-center{

    text-align:center;

}

/* ============================================================
   FOCUS STATES
============================================================ */

a:focus,

button:focus{

    outline:2px solid var(--primary);

    outline-offset:4px;

}

/* ============================================================
   SMOOTH IMAGE EFFECT
============================================================ */

img{

    transition:.4s ease;

}

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

@media (prefers-reduced-motion: reduce){

    *{

        animation:none !important;

        transition:none !important;

        scroll-behavior:auto !important;

    }

}

/* ============================================================
   LARGE SCREENS
============================================================ */

@media(min-width:1600px){

    .container{

        max-width:1400px;

    }

}

/* ============================================================
   TABLETS
============================================================ */

@media(max-width:992px){

    h1{

        font-size:3rem;

    }

    h2{

        font-size:2.2rem;

    }

    .section{

        padding:100px 0;

    }

}

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

@media(max-width:768px){

    .container{

        width:92%;

    }

    .section{

        padding:80px 0;

    }

    .section-heading{

        margin-bottom:50px;

    }

    .section-heading h2{

        font-size:2rem;

    }

    .section-heading p{

        font-size:.98rem;

    }

}

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

@media(max-width:480px){

    body{

        font-size:15px;

    }

    h1{

        font-size:2.2rem;

    }

    h2{

        font-size:1.7rem;

    }

    h3{

        font-size:1.2rem;

    }

    .primary-btn,

    .secondary-btn{

        width:100%;

        justify-content:center;

    }

}

/* ============================================================
   EXTRA SMALL DEVICES
============================================================ */

@media(max-width:360px){

    .container{

        width:94%;

    }

    h1{

        font-size:2rem;

    }

    h2{

        font-size:1.5rem;

    }

}

/* ============================================================
   PRINT
============================================================ */

@media print{

    body{

        background:#fff;

        color:#000;

    }

    .navbar,

    #scrollTopBtn,

    .background,

    #loader{

        display:none !important;

    }

}

/* ============================================================
   END OF STYLE.CSS
============================================================ */