/* ===========================
   GLOBAL VARIABLES
=========================== */
:root{
    --primary:#2563EB;
    --secondary:#0EA5E9;
    --background:#F7F9FC;
    --surface:#FFFFFF;
    --text:#1F2937;
    --muted:#6B7280;
    --border:#E5E7EB;
    --shadow:0 8px 30px rgba(0,0,0,.08);
    --radius:16px;
    --transition:.3s ease;
}
/* =========================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html,
body{

    margin:0;

    padding:0;

}
html{
    scroll-behavior:smooth;
}
body{
    background:var(--background);
    color:var(--text);
    font-family:'Inter',sans-serif;
    transition:var(--transition);
    overflow-x:hidden;
}
/* section{
    padding:100px 0;
} */
.container{
    max-width:1200px;
}
a{
    text-decoration:none;
}
img{
    max-width:100%;
}
.btn-main{
    background:var(--primary);
    color:#fff;
    border-radius:50px;
    padding:14px 32px;
}
.btn-main:hover{
    background:var(--secondary);
}
.card-custom{
    background:var(--surface);
    border:none;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}
.section-title{
    font-size:42px;
    font-weight:700;
}
.section-subtitle{
    color:var(--muted);
}
#backToTop{
    position:fixed;
    right:25px;
    bottom:25px;
    display:none;
}
/* NAVBAR */
#navbar{
background:rgba(255,255,255,.80);
backdrop-filter:blur(15px);
padding:18px 0;
transition:.35s;
border-bottom:1px solid var(--border);
}
html[data-theme="dark"] #navbar{
background:rgba(15,23,42,.90);
}
.navbar-brand{
font-size:28px;
}
.nav-link{
margin-left:20px;
font-weight:500;
color:var(--text);
}
.nav-link:hover{
color:var(--primary);
}
/* #hero{
display:flex;
align-items:center;
} */
.hero-image{
    width:280px;
    height:280px;
    object-fit:cover;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    border-radius:50%;
    z-index:5;
}
.timeline{
position:relative;
padding-left:40px;
border-left:3px solid var(--primary);
}
.timeline-item{
position:relative;
margin-bottom:45px;
background:var(--surface);
padding:20px;
border-radius:15px;
box-shadow:var(--shadow);
}
.timeline-item::before{
content:"";
width:18px;
height:18px;
background:var(--primary);
border-radius:50%;
position:absolute;
left:-50px;
top:25px;
}
/* ==========================================================
   HERO SECTION
========================================================== */
/* #hero{
    position:relative;
    overflow:hidden;
    padding:120px 0 80px;
    min-height:100vh;
    display:flex;
    align-items:center;
} */
/* Background */
.hero-bg{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    opacity:.18;
    z-index:-2;
}
.hero-bg-1{
    width:380px;
    height:380px;
    background:var(--primary);
    top:-120px;
    left:-120px;
}
.hero-bg-2{
    width:450px;
    height:450px;
    background:var(--secondary);
    right:-180px;
    bottom:-180px;
}
/* Left */
.hero-left{
    z-index:5;
}
.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 20px;
    background:rgba(37,99,235,.08);
    color:var(--primary);
    border-radius:40px;
    font-size:14px;
    font-weight:600;
}
.hero-title{
    margin-top:25px;
    font-size:64px;
    font-weight:800;
    line-height:1.1;
}
.hero-title span{
    color:var(--primary);
}
.hero-role{
    margin-top:18px;
    font-size:30px;
    min-height:40px;
    font-weight:600;
}
.hero-text{
    margin-top:25px;
    color:var(--muted);
    line-height:1.9;
    font-size:18px;
    max-width:620px;
}
.hero-buttons{
    margin-top:40px;
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}
.hero-stats{
    margin-top:50px;
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}
.stat-box{
    width:170px;
    padding:22px;
    background:var(--surface);
    border-radius:18px;
    box-shadow:var(--shadow);
    text-align:center;
    transition:.35s;
}
.stat-box:hover{
    transform:translateY(-8px);
}
.stat-box h3{
    color:var(--primary);
    font-size:34px;
    font-weight:800;
}
.stat-box span{
    color:var(--muted);
    font-size:14px;
}
/* ==========================================================
   ORBIT
========================================================== */
.hero-right{
    display:flex;
    justify-content:center;
    align-items:center;
}
.architecture-orbit{
    position:relative;
    width:620px;
    height:620px;
}
.orbit-ring{
    position:absolute;
    width:560px;
    height:560px;
    border:2px dashed rgba(37,99,235,.18);
    border-radius:50%;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
}
.center-profile{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    z-index:50;
}
.center-profile img{
    width:280px;
    height:280px;
    object-fit:cover;
    border-radius:50%;
    border:8px solid var(--surface);
    box-shadow:0 25px 80px rgba(0,0,0,.18);
}
.orbit-card{
    position:absolute;
    left:50%;
    top:50%;
    width:170px;
    padding:14px;
    border-radius:16px;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(15px);
    text-align:center;
    box-shadow:var(--shadow);
    transition:.35s;
}
html[data-theme="dark"] .orbit-card{
    background:rgba(30,41,59,.90);
}
.orbit-card i{
    display:block;
    font-size:24px;
    color:var(--primary);
    margin-bottom:8px;
}
.orbit-card span{
    font-size:14px;
    font-weight:600;
    line-height:1.4;
}
.orbit-card:hover{
    box-shadow:
0 20px 50px rgba(37,99,235,.25);
border:1px solid rgba(37,99,235,.35);
}
.pulse-dot{
width:10px;
height:10px;
border-radius:50%;
background:#4ade80;
margin:10px auto 0;
animation:pulse 2s infinite;
}
@keyframes pulse{
0%{
box-shadow:0 0 0 0 rgba(74,222,128,.8);
}
70%{
box-shadow:0 0 0 12px rgba(74,222,128,0);
}
100%{
box-shadow:0 0 0 0 rgba(74,222,128,0);
}
}
/* =====================================================
   ENTERPRISE ORBIT ENGINE
===================================================== */
.architecture-orbit{
    position:relative;
    width:700px;
    height:700px;
    margin:auto;
}
.cloud{
transform:
translate(-50%,-50%)
rotate(0deg)
translateY(-280px)
rotate(0deg);
}
.security{
transform:
translate(-50%,-50%)
rotate(45deg)
translateY(-280px)
rotate(-45deg);
}
.api{
transform:
translate(-50%,-50%)
rotate(90deg)
translateY(-280px)
rotate(-90deg);
}
.scalability{
transform:
translate(-50%,-50%)
rotate(135deg)
translateY(-280px)
rotate(-135deg);
}
.payments{
transform:
translate(-50%,-50%)
rotate(180deg)
translateY(-280px)
rotate(-180deg);
}
.integration{
transform:
translate(-50%,-50%)
rotate(225deg)
translateY(-280px)
rotate(-225deg);
}
.docker{
transform:
translate(-50%,-50%)
rotate(270deg)
translateY(-280px)
rotate(-270deg);
}
.database{
transform:
translate(-50%,-50%)
rotate(315deg)
translateY(-280px)
rotate(-315deg);
}
/* ==========================================
TECH STACK
========================================== */
.hero-image-wrapper{
position:relative;
display:inline-block;
}
/* =====================================================
   HERO TECHNOLOGY NODES
===================================================== */
.hero-image-wrapper{
    position:relative;
    width:560px;
    height:560px;
    margin:auto;
}
.center-profile{
animation:profileFloat 5s ease-in-out infinite;
}
@keyframes profileFloat{
0%{
transform:translate(-50%,-50%);
}
50%{
transform:translate(-50%,-53%);
}
100%{
transform:translate(-50%,-50%);
}
}
html[data-theme="dark"] .hero-image{
    border:8px solid #1E293B;
}
/* ------------------------------- */
.tech-node{
    position:absolute;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-width:170px;
    padding:12px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.82);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.35);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    font-size:14px;
    font-weight:600;
    white-space:nowrap;
    cursor:default;
    transition:.35s;
    animation:floating 5s ease-in-out infinite;
}
html[data-theme="dark"] .tech-node{
    background:rgba(30,41,59,.80);
    border:1px solid rgba(255,255,255,.08);
}
.tech-node i{
    color:var(--primary);
    font-size:18px;
}
.tech-node:hover{
    margin-top:-5px;
    box-shadow:0 18px 40px rgba(37,99,235,.18);
}
/* =====================================================
   NODE POSITIONS
===================================================== */
.node-cloud{
    top:0;
    left:50%;
    transform:translateX(-50%);
}
.node-api{
    top:95px;
    left:-55px;
}
.node-security{
    top:95px;
    right:-55px;
}
.node-db{
    top:235px;
    left:-90px;
}
.node-sysscale{
    top:235px;
    right:-90px;
}
.node-docker{
    bottom:105px;
    left:-45px;
}
.node-entinteg{
    bottom:105px;
    right:-45px;
}
.node-k8s{
    bottom:0;
    left:28%;
}
.node-cloudflare{
    bottom:0;
    right:28%;
}
/* =======================================
CENTER GLOW
======================================= */
.center-glow{
position:absolute;
left:50%;
top:50%;
width:330px;
height:330px;
transform:translate(-50%,-50%);
border-radius:50%;
background:
radial-gradient(circle,
rgba(37,99,235,.22),
rgba(37,99,235,.05),
transparent);
filter:blur(25px);
animation:glow 4s infinite;
}
@keyframes glow{
0%{
transform:translate(-50%,-50%) scale(.95);
}
50%{
transform:translate(-50%,-50%) scale(1.06);
}
100%{
transform:translate(-50%,-50%) scale(.95);
}
}
.rotate-ring{
position:absolute;
left:50%;
top:50%;
width:610px;
height:610px;
border-radius:50%;
border:1px dashed rgba(37,99,235,.22);
transform:translate(-50%,-50%);
animation:rotateRing 45s linear infinite;
}
@keyframes rotateRing{
from{
transform:translate(-50%,-50%) rotate(0deg);
}
to{
transform:translate(-50%,-50%) rotate(360deg);
}
}
/* =====================================================
   ANIMATIONS
===================================================== */
@keyframes floating{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0px);
    }
}
@keyframes profileFloat{
    0%{
        transform:translate(-50%,-50%);
    }
    50%{
        transform:translate(-50%,calc(-50% - 10px));
    }
    100%{
        transform:translate(-50%,-50%);
    }
}
@media(max-width:992px){
.architecture-orbit{
width:100%;
height:auto;
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:15px;
}
.orbit-ring{
display:none;
}
.center-profile{
position:relative;
left:auto;
top:auto;
transform:none;
width:100%;
text-align:center;
margin-bottom:30px;
}
.orbit-card{
position:relative;
left:auto;
top:auto;
transform:none !important;
width:170px;
animation:none;
}
}
.orbit-card{
animation:cardFloat 5s ease-in-out infinite;
}
@keyframes cardFloat{
0%{
margin-top:0;
}
50%{
margin-top:-8px;
}
100%{
margin-top:0;
}
}
.cloud{
animation-delay:0s;
}
.security{
animation-delay:.5s;
}
.api{
animation-delay:1s;
}
.scalability{
animation-delay:1.5s;
}
.payments{
animation-delay:2s;
}
.integration{
animation-delay:2.5s;
}
.docker{
animation-delay:3s;
}
.database{
animation-delay:3.5s;
}
.hero-image{
animation:profileFloat 6s ease-in-out infinite;
}
@keyframes profileFloat{
0%{
transform:translateY(0px);
}
50%{
transform:translateY(-15px);
}
100%{
transform:translateY(0px);
}
}
/* ==========================================
PROFESSIONAL SNAPSHOT
========================================== */
/* #snapshot{
padding:100px 0;
background:var(--surface);
} */
.section-badge{
display:inline-block;
padding:10px 22px;
border-radius:30px;
background:rgba(37,99,235,.08);
color:var(--primary);
font-size:13px;
font-weight:700;
letter-spacing:1px;
}
.snapshot-card{
height:100%;
padding:35px 25px;
border-radius:20px;
background:var(--surface);
box-shadow:var(--shadow);
transition:.35s;
border:1px solid transparent;
}
.snapshot-card:hover{
transform:translateY(-10px);
border-color:rgba(37,99,235,.20);
}
.snapshot-icon{
width:70px;
height:70px;
display:flex;
align-items:center;
justify-content:center;
border-radius:18px;
background:rgba(37,99,235,.08);
margin-bottom:25px;
}
.snapshot-icon i{
font-size:30px;
color:var(--primary);
}
.snapshot-card h4{
font-size:22px;
font-weight:700;
margin-bottom:15px;
}
.snapshot-card p{
line-height:1.8;
color:var(--muted);
font-size:15px;
}
.career-strip{
display:flex;
justify-content:center;
align-items:center;
flex-wrap:wrap;
gap:18px;
padding:30px;
border-radius:20px;
background:var(--background);
box-shadow:var(--shadow);
margin-top:60px;
}
.career-item{
padding:12px 18px;
border-radius:12px;
background:var(--surface);
font-weight:600;
}
.career-item.active{
background:var(--primary);
color:#fff;
}
.career-strip i{
color:var(--primary);
font-size:20px;
}
/* ===========================================
ABOUT BLOCKS
=========================================== */
.about-block{
    margin-bottom:28px;
}
.about-block h5{
    font-size:20px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:10px;
}
.about-block p{
    margin:0;
    font-size:17px;
    line-height:1.9;
    color:var(--muted);
}
/* ===========================================
HIGHLIGHTS
=========================================== */
.about-highlights{
    margin-top:35px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}
.highlight-box{
    display:flex;
    align-items:center;
    gap:15px;
    padding:18px;
    border-radius:16px;
    background:var(--surface);
    box-shadow:var(--shadow);
    transition:.3s;
}
.highlight-box:hover{
    transform:translateY(-6px);
}
.highlight-box i{
    width:50px;
    height:50px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(37,99,235,.08);
    color:var(--primary);
    font-size:20px;
}
.highlight-box span{
    font-weight:600;
}
/*==================================================
ABOUT
==================================================*/
/* #about{
    padding:110px 0;
} */
.about-content{
    padding-right:40px;
}
.about-content p{
    font-size:18px;
    line-height:2;
    color:var(--muted);
    margin-bottom:25px;
}
/* Strength Card */
.strength-card{
    padding:35px;
    background:var(--surface);
    border-radius:24px;
    box-shadow:var(--shadow);
    height:100%;
}
.strength-card h4{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:24px;
    font-weight:700;
    margin-bottom:30px;
}
.strength-card h4 i{
    color:var(--primary);
}
.strength-list{
    display:flex;
    flex-direction:column;
    gap:15px;
}
.strength-item{
    display:flex;
    align-items:center;
    gap:15px;
    padding:14px 18px;
    border-radius:14px;
    background:rgba(37,99,235,.05);
    transition:.3s;
}
.strength-item:hover{
    transform:translateX(8px);
    background:rgba(37,99,235,.10);
}
.strength-item i{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:#fff;
    color:var(--primary);
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}
.strength-item span{
    font-weight:600;
}
/* #journey{
padding:120px 0;
} */
.journey-card{
background:var(--surface);
border-radius:20px;
box-shadow:var(--shadow);
overflow:hidden;
transition:.3s;
}
.journey-card:hover{
transform:translateY(-8px);
}
.journey-header{
padding:24px;
display:flex;
align-items:center;
cursor:pointer;
gap:15px;
}
.journey-header h4{
flex:1;
margin:0;
font-size:22px;
}
.journey-header>i:first-child{
font-size:26px;
color:var(--primary);
}
.toggle-icon{
transition:.3s;
}
.journey-body{
max-height:0;
overflow:hidden;
transition:max-height .4s ease;
padding:0 24px;
}
.journey-card.active .journey-body{
max-height:350px;
padding:0 24px 24px;
}
.journey-card.active .toggle-icon{
transform:rotate(45deg);
}
.journey-body p{
line-height:1.8;
margin-bottom:18px;
color:var(--muted);
}
.journey-body ul{
padding-left:18px;
line-height:2;
color:var(--muted);
}
.journey-card.active{
    transform:translateY(-8px);
    border:2px solid var(--primary);
}
.journey-body{
    opacity:0;
    transition:.35s;
}
.journey-card.active .journey-body{
    opacity:1;
}
/*==============================
PROJECT CARD (NEW STYLE)
==============================*/

.project-desc{

    font-size:14px;

    line-height:1.6;

    color:var(--text-muted);

    margin-bottom:18px;

}

.project-tags{

    display:flex;

    flex-wrap:wrap;

    gap:8px;

    margin-bottom:18px;

}

.skill-tag{

    padding:6px 12px;

    border-radius:30px;

    background:rgba(37,99,235,.08);

    color:var(--primary);

    font-size:12px;

    font-weight:600;

}

.project-divider{

    width:100%;

    height:1px;

    background:rgba(255,255,255,.08);

    margin:18px 0;

}

.project-platforms{

    list-style:none;

    padding:0;

    margin:0;

}

.project-platforms li{

    position:relative;

    padding-left:18px;

    margin-bottom:10px;

    font-size:14px;

}

.project-platforms li::before{

    content:"";

    width:7px;

    height:7px;

    border-radius:50%;

    background:var(--primary);

    position:absolute;

    left:0;

    top:8px;

}

.project-status{

    display:inline-flex;

    align-items:center;

    gap:8px;

    margin-top:18px;

    font-size:13px;

    font-weight:600;

    color:var(--primary);

}
/* ==========================================================
   KEY CONTRIBUTIONS / PROJECTS
========================================================== */
/* #projects{
    padding:110px 0;
    position:relative;
} */
#projects .section-title{
    margin-bottom:15px;
}
#projects .section-subtitle{
    max-width:760px;
    margin:auto;
    color:var(--text-muted);
}
/*==========================
GRID
===========================*/
.project-card{
    background:var(--surface);
    border-radius:20px;
    padding:22px;
    border:1px solid rgba(0,0,0,.06);
    position:relative;
    overflow:hidden;
    transition:.35s;

    /* Remove fixed heights */
    height:auto;
    min-height:320px;

    /* Remove flex too */
    display:block;
}
.project-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:var(--primary);
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}
.project-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}
.project-card:hover::before{
    transform:scaleX(1);
}
/*==========================
HEADER
===========================*/
.project-header{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
}
.project-icon{
    width:68px;
    height:68px;
    border-radius:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(37,99,235,.08);
    color:var(--primary);
    font-size:28px;
    flex-shrink:0;
}
.project-title{
    flex:1;
}
.project-category{
    display:inline-block;
    margin-bottom:6px;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:var(--primary);
    font-weight:700;
}
.project-title h4{
    margin:0;
    font-size:22px;
    font-weight:700;
}
/*==========================
DESCRIPTION
===========================*/
.project-body{
    display:flex;
    flex-direction:column;
    flex:none;
}
.project-body>p{
    line-height:1.8;
    color:var(--text-muted);
    margin-bottom:22px;
}
/*==========================
SECTION TITLE
===========================*/
.project-block{
    margin-top:18px;
}
.project-block h6{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:14px;
    font-size:15px;
    font-weight:700;
    color:var(--primary);
}
/*==========================
LIST
===========================*/
.project-list{
    list-style:none;
    padding:0;
    margin:0;
}
.project-list li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:10px;
    line-height:1.7;
    color:var(--text-muted);
}
.project-list li i{
    color:var(--primary);
    margin-top:5px;
    width:18px;
}
/*==========================
BUSINESS VALUE
===========================*/
.project-impact{
    margin-top:auto;
    padding-top:22px;
    border-top:1px solid rgba(0,0,0,.08);
}
.project-impact h6{
    color:var(--primary);
    font-weight:700;
    margin-bottom:10px;
}
.project-impact p{
    margin:0;
    line-height:1.8;
    color:var(--text-muted);
}
/*==========================
HOVER
===========================*/
.project-card:hover .project-icon{
    transform:rotate(-8deg) scale(1.08);
    transition:.35s;
}
.project-card:hover .project-category{
    letter-spacing:2px;
}
/*==========================
DARK MODE
===========================*/
body.dark .project-card{
    border:1px solid rgba(255,255,255,.08);
}
body.dark .project-impact{
    border-color:rgba(255,255,255,.08);
}
body.dark .project-icon{
    background:rgba(59,130,246,.15);
}
/*==========================
RESPONSIVE
===========================*/
@media(max-width:992px){
.project-card{
    min-height:auto;
}
}
@media(max-width:768px){
.project-card{
    padding:24px;
}
.project-header{
    align-items:flex-start;
}
.project-icon{
    width:60px;
    height:60px;
    font-size:24px;
}
.project-title h4{
    font-size:20px;
}
}
/*=========================================================
  CARD ICON COLORS
=========================================================*/
.project-card:nth-child(1) .project-icon{
    background:rgba(37,99,235,.10);
}
.project-card:nth-child(2) .project-icon{
    background:rgba(16,185,129,.10);
}
.project-card:nth-child(3) .project-icon{
    background:rgba(249,115,22,.10);
}
.project-card:nth-child(4) .project-icon{
    background:rgba(168,85,247,.10);
}
.project-card:nth-child(5) .project-icon{
    background:rgba(14,165,233,.10);
}
.project-card:nth-child(6) .project-icon{
    background:rgba(236,72,153,.10);
}
/*=========================================================
CARD SPACING
=========================================================*/
.project-block:first-of-type{
    margin-top:10px;
}
.project-block:last-of-type{
    margin-bottom:20px;
}
/*=========================================================
LIST HOVER
=========================================================*/
.project-list li{
    transition:.25s;
}
.project-list li:hover{
    padding-left:8px;
    color:var(--primary);
}
/*=========================================================
HEADINGS
=========================================================*/
.project-block h6 i{
    width:18px;
    text-align:center;
}
/*=========================================================
SCROLL ANIMATION READY
=========================================================*/
.project-card{
    opacity: 1;
    transform: none;
}
.project-card.show{
    opacity:1;
    transform:translateY(0);
    transition:
        opacity .7s ease,
        transform .7s ease;
}
/*=========================================================
SMALL DEVICES
=========================================================*/
@media(max-width:576px){
.project-card{
    border-radius:18px;
    padding:22px;
}
.project-icon{
    width:54px;
    height:54px;
    font-size:22px;
}
.project-category{
    font-size:11px;
}
.project-title h4{
    font-size:18px;
}
.project-body p{
    font-size:14px;
}
.project-list li{
    font-size:14px;
}
.project-impact p{
    font-size:14px;
}
}

/*=========================================================
PRINT
=========================================================*/
@media print{
#projects{
    padding:40px 0;
}
.project-card{
    box-shadow:none;
    border:1px solid #ddd;
    page-break-inside:avoid;
}
}

/*=====================================
TECHNOLOGY STACK
=====================================*/

/* #skills{
    padding:90px 0;
    overflow:hidden;
} */

.skills-marquee{
    width:100%;
    overflow:hidden;
    position:relative;
    margin:25px 0;
}

.skills-track{
    display:flex;
    align-items:center;
    gap:18px;
    width:max-content;
    animation:marquee 35s linear infinite;
}

.skills-marquee.reverse .skills-track{
    animation-direction:reverse;
}

.skill-chip{
    display:flex;
    align-items:center;
    gap:10px;

    padding:12px 22px;

    background:var(--surface);

    border:1px solid rgba(0,0,0,.08);

    border-radius:50px;

    white-space:nowrap;

    font-size:14px;

    font-weight:600;

    color:var(--text);

    transition:.3s;
}

.skill-chip i{
    color:var(--primary);
    font-size:16px;
}

.skill-chip:hover{
    transform:translateY(-3px);
    border-color:var(--primary);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

@keyframes marquee{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

@media(max-width:768px){

    #skills{
        padding:70px 0;
    }

    .skills-track{
        animation-duration:25s;
        gap:12px;
    }

    .skill-chip{

        padding:10px 18px;

        font-size:13px;

    }

}


/*====================================
Education
====================================*/
/* 
#education{

    padding:90px 0;

} */

.edu-card{

    background:var(--surface);

    border:1px solid rgba(0,0,0,.08);

    border-radius:22px;

    padding:35px;

    height:100%;

    transition:.35s;

}

.edu-card:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.edu-block{

    display:flex;

    gap:22px;

    align-items:flex-start;

}

.edu-icon{

    width:60px;

    height:60px;

    border-radius:50%;

    background:rgba(37,99,235,.10);

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    flex-shrink:0;

}

.edu-block h4,
.right-section h4{

    font-size:20px;

    font-weight:700;

    margin-bottom:12px;

}

.edu-block h5{

    font-size:18px;

    margin-bottom:6px;

}

.edu-block p{

    color:var(--text-muted);

    margin-bottom:12px;

}

.edu-year{

    display:inline-block;

    background:rgba(37,99,235,.08);

    color:var(--primary);

    padding:6px 14px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.edu-card hr{

    margin:30px 0;

    opacity:.12;

}

.learning-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

}

.learning-tags span{

    padding:8px 14px;

    background:rgba(37,99,235,.08);

    color:var(--primary);

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.right-section{

    margin-bottom:5px;

}

.right-section h4 i{

    color:var(--primary);

    margin-right:8px;

}

.cert-list{

    margin:0;

    padding-left:20px;

}

.cert-list li{

    margin-bottom:10px;

    color:var(--text-muted);

    line-height:1.6;

}

.cert-list li:last-child{

    margin-bottom:0;

}

@media(max-width:991px){

    #education{

        padding:70px 0;

    }

    .edu-card{

        padding:28px;

    }

}

@media(max-width:768px){

    .edu-block{

        flex-direction:column;

        gap:18px;

    }

}

/*======================================
Footer
======================================*/
#contact .container{

    margin-bottom:0;

}
#contact{

    padding:70px 0 30px;

}
/* 
#contact{

    padding:90px 0;

} */

.contact-card{

    background:var(--surface);

    border:1px solid rgba(0,0,0,.08);

    border-radius:26px;

    padding:45px 35px;

    text-align:center;

}

.social-links{

    display:flex;

    justify-content:center;

    gap:18px;

    margin:25px 0;

    flex-wrap:wrap;

}

.social-links a{

    width:58px;

    height:58px;

    border-radius:50%;

    background:rgba(37,99,235,.08);

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    transition:.35s;

    text-decoration:none;

}

.social-links a:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-6px);

}

.contact-divider{

    width:100px;

    height:1px;

    background:rgba(0,0,0,.12);

    margin:30px auto;

}

.footer-mini h5{

    font-weight:700;

    margin-bottom:8px;

}

.footer-mini p{

    color:var(--text-muted);

    margin-bottom:25px;

}

.footer-links{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

    margin-bottom:25px;

}

.footer-links a{

    color:var(--text);

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:var(--primary);

}

.footer-mini small{

    color:var(--text-muted);

}

@media(max-width:768px){

    .contact-card{

        padding:40px 25px;

    }

    .footer-links{

        gap:18px;

    }

}

#contact{

    padding:0;

}

.contact-wrapper{

    background:var(--surface);

    padding:90px 0 50px;

    border-top:1px solid rgba(0,0,0,.08);

}

.contact-card{

    background:transparent;

    border:none;

    box-shadow:none;

    padding:0;

}

/* ===== Global Section Spacing ===== */

section{
    padding:40px 0;
}

@media(max-width:768px){

    section{
        padding:50px 0;
    }

}

#backToTop{

    position:fixed;

    right:25px;

    bottom:25px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-size:18px;

    cursor:pointer;

    display:none;

    z-index:999;

    transition:.35s;

    box-shadow:0 10px 25px rgba(37,99,235,.35);

}

#backToTop:hover{

    transform:translateY(-5px) scale(1.08);

    box-shadow:0 18px 35px rgba(37,99,235,.45);

}

#backToTop i{

    transition:.35s;

}

#backToTop:hover i{

    transform:translateY(-2px);

}

@media(max-width:768px){

    #backToTop{

        width:45px;

        height:45px;

        right:18px;

        bottom:18px;

        font-size:16px;

    }

}