/**************************/
/* GENRAL REUSABLE COMPONENTS 0000000000000000000000000000000000000000000000000000000000000000000000*/
/**************************/


@font-face {
    font-family: Vazirmatn;
    src: url('../fonts/webfonts/Vazirmatn-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

@font-face {
    font-family: Vazirmatn;
    src: url('../fonts/webfonts/Vazirmatn-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }


:root{

    --bg:#020617;

    --surface:#111827;

    --text:#F8FAFC;

    --text-secondary:#94A3B8;
}

*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body{
    font-family: Vazirmatn , sans-serif;
    direction: rtl;
    text-align: right;
    /* background: linear-gradient(
        180deg,
        #020617,
        #0f172a
        ); */
    background: var(--bg);
    position: relative;
    line-height: 1;
    font-weight: 400;
    color: var(--text);
    overflow-x: hidden;
}

body.light{

    --bg:#FFFFFF;

    --surface:#F8FAFC;

    --text:#111827;

    --text-secondary:#475569;
}

.container{
    width: 100%;
    max-width: 128rem;
    margin-inline: auto;
    padding-inline: 2.4rem;
}


img {
    display: block;
    max-width: 100%;
  }
  
  ul,
  ol {
    list-style: none;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
  }
  
  figure {
    margin: 0;
  }

/* ============================================================
   2. UTILITY: Visually Hidden (Accessibility)
   ============================================================ */

   .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

/**************************/
/* BACK GROUND GLOW 1111111111111111111111111111111111111111111111111111111111111111111111*/
/**************************/

body::before{
    content:"";
    width:60rem;
    height:60rem;
    position:fixed;
    top:-25rem;
    right:-15rem;
    border-radius:50%;
    background:
    rgba(59,130,246,.12);
    filter:blur(120px);
    pointer-events:none;
}

body::after{
    content:"";
    width:60rem;
    height:60rem;
    position:fixed;
    bottom:-25rem;
    left:-20rem;
    border-radius:50%;
    background:
    rgba(139,92,246,.10);
    filter:blur(120px);
    pointer-events:none;
}


/**************************/
/* KEY FRAMES 2222222222222222222222222222222222222222222222222222222222222222222222222222222*/
/**************************/


@keyframes fadeUp{

    from{

        opacity:0;

        transform:
        translateY(40px);
    }

    to{

        opacity:1;

        transform:none;
    }
}

@keyframes fadeRight{

    from{

        opacity:0;

        transform:
        translateX(60px);
    }

    to{

        opacity:1;

        transform:none;
    }
}

@keyframes skillScroll{

    from{

        transform:
        translateX(0);
    }

    to{

        transform:
        translateX(-100%);
    }
}

@keyframes heartbeat{

    0%,100%{

        transform:scale(1);
    }

    50%{

        transform:scale(1.2);
    }

}

@keyframes fab-wiggle{

    0%,90%,100%{

        transform:rotate(0);
    }

    92%{

        transform:rotate(-10deg);
    }

    94%{

        transform:rotate(10deg);
    }

    96%{

        transform:rotate(-5deg);
    }

}

@keyframes progressGrow {
  from { width: 0; }
}


/* ============================================================
   8. BUTTONS
   ============================================================ */

   .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: inherit;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 1.6rem;
    padding: 0.9rem 1.8rem;
    cursor: pointer;
    transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s, background 0.35s;
    border: 1px solid transparent;
  }
  
  /* Primary Button */
  .btn--primary {
    background: #6366F1;
    color: #F8FAFC;
    border-color: #6366F1;
  }
  
  .btn--primary:hover {
    transform: translateY(-6px);
    box-shadow: 0 0.8rem 2.4rem rgba(99, 102, 241, 0.35);
    background: #818CF8;
    border-color: #818CF8;
  }
  
  /* Secondary Button */
  .btn--secondary {
    background: transparent;
    color: #CBD5E1;
    border-color: rgba(255, 255, 255, 0.12);
  }
  
  .btn--secondary:hover {
    transform: translateY(-6px);
    border-color: rgba(129, 140, 248, 0.4);
    color: #F8FAFC;
    box-shadow: 0 0.8rem 2.4rem rgba(99, 102, 241, 0.12);
  }
  
  .btn:focus-visible {
    outline: 2px solid #6366F1;
    outline-offset: 2px;
  }
  
  /* Icon Buttons (GitHub / External Link) */
  .project-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.8rem;
    height: 3.8rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94A3B8;
    background: transparent;
    transition: color 0.35s, border-color 0.35s, background 0.35s, transform 0.35s;
  }
  
  .project-icon-btn:hover {
    color: #818CF8;
    border-color: rgba(129, 140, 248, 0.3);
    background: rgba(99, 102, 241, 0.08);
    transform: translateY(-4px);
  }
  
  .project-icon-btn:focus-visible {
    outline: 2px solid #6366F1;
    outline-offset: 2px;
  }


/* ============================================================
   5. READING PROGRESS BAR (Fixed Top)
   ============================================================ */

   .reading-progress {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10000;
    height: 0.4rem;
    background: rgba(255, 255, 255, 0.06);
    /* display: flex;
    align-items: center; */
  }
  
  .reading-progress__bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #6366F1 0%, #818CF8 100%);
    border-radius: 0 999rem 999rem 0;
    transition: width 0.1s linear;
    box-shadow: 0 0 0.8rem rgba(99, 102, 241, 0.6);
  }

/**************************/
/* HEADER + NAVIGATION SECTION 3333333333333333333333333333333333333333333333333333333333333333*/
/**************************/

/* .navbar{
    width:100%;
    height:8.8rem;
    position:fixed;
    top:0;
    left:0;
    z-index:100;
} */
.navbar{
    position:fixed;
    top:0;
    right:0;
    left:0;
    width:100%;
    height:8.8rem;
    z-index:1000;
    backdrop-filter:blur(16px);
    background:rgba(2,6,23,.65);
    border-bottom:
    1px solid rgba(255,255,255,.05);
    transition:.3s;
}

.navbar__wrapper{
    width: 100%;
    height:8.8rem;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.navbar__logo{
    font-size: 2rem;
    width:5.2rem;
    height:5.2rem;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    color:white;
    font-weight:700;
    text-decoration:none;
    transition: .3s;
}
.navbar__logo:hover{

    transform:scale(1.06);

    border-color:
    rgba(59,130,246,.4);
}

.navbar__menu{
    display:flex;
    gap:4rem;
}

.navbar__menu a{
    text-decoration:none;
    color:#CBD5E1;
    font-size:2rem;
    position: relative;
    transition:.3s;
}
.navbar__menu a::after{
    content:"";
    position:absolute;
    bottom:-0.8rem;
    right:0;
    width:0;
    height:2px;
    background:#3B82F6;
    transition:.3s;
}
.navbar__menu a:hover{
    color:white;
}
.navbar__menu a:hover::after{
    width:100%;
}

/* mobile menu*/

.mobile-menu-btn{
    display:none;
    width:4.8rem;
    height:4.8rem;
    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;
    background:
    rgba(255,255,255,.05);
    color:white;
    cursor:pointer;
    transition: .3s;
}
.mobile-menu-btn:hover{

    transform:scale(1.06);

    border: 1px solid rgba(59,130,246,.4) ;
}

.mobile-menu{

    position:fixed;
    top:8.8rem;
    right:-100%;
    width:28.0rem;
    height:100vh;
    background:#0F172A;
    transition:.4s;
    padding:3.2rem;
    display:flex;
    flex-direction:column;
    gap:2.4rem;
    z-index:999;
}

.mobile-menu a{
    color: #CBD5E1;
    font-size: 2.4rem;
    position: relative;
    transition: .3s;
}
.mobile-menu a::after{
    content:"";
    position:absolute;
    bottom:-0.8rem;
    right:0;
    width:0;
    height:2px;
    background:#3B82F6;
    transition:.3s;
}
.mobile-menu a:hover{
    color:white;
}
.mobile-menu a:hover::after{
    width:100%;
}
.mobile-menu.active{

    right:0;
}

.mobile-overlay{

    position:fixed;
    inset:0;
    background:
    rgba(0,0,0,.65);
    backdrop-filter:blur(8px);
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:998;
}

.mobile-overlay.active{

    opacity:1;
    visibility:visible;
}



/* end mobile menu */

.navbar__actions{
    display:flex;
    align-items:center;
    gap:1.6rem;
}

.theme-btn{
    width:4.8rem;
    height:4.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius:50%;
    border:none;
    cursor:pointer;
    background:rgba(255,255,255,.04);
    transition: .3s;
}
.theme-btn:hover{
    transform:
    translateY(-5px);

    background:
    rgba(59,130,246,.12);

    border: 1px solid rgba(59,130,246,.3) ;
}

.resume-btn{
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.6rem;
    padding:1.4rem 2.4rem;
    border-radius:14px;
    text-decoration:none;
    color:white;
    background:
    linear-gradient(
    135deg,
    #3B82F6,
    #8B5CF6
    );
    transition: .3s;
}
.resume-btn:hover{
    transform:
    translateY(-4px);
    box-shadow:
    0 12px 35px
    rgba(59,130,246,.35);
}


/**************************/
/* BREAD CRUMB SECTION 11111111111111111111111111111111111111111111111111*/
/**************************/


.breadcrumb-section{

    padding-top:14.0rem;
    margin-bottom:6.0rem;
}

.breadcrumb{

    display:flex;
    align-items:center;
    gap:1.2rem;

    font-size:1.4rem;
}

.breadcrumb a{

    color:#94A3B8;
    transition:.3s;
}

.breadcrumb a:hover{

    color:#818CF8;
}

.breadcrumb span{

    color:#475569;
}

.breadcrumb p{

    color:#F8FAFC;
    line-height: 1.5;
}


/**************************/
/* CTA SECTION 10000000000000000000000000000000000000000000000000000000000000000000000000000000000000*/
/**************************/


.cta-section {
    padding-bottom: 12rem;
  }
  
  .cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.18) 0%, rgba(129, 140, 248, 0.08) 100%);
    border: 1px solid rgba(129, 140, 248, 0.2);
    border-radius: 3rem;
    padding: 5rem 6rem;
    backdrop-filter: blur(1.2rem);
    box-shadow: 0 0.8rem 4rem rgba(99, 102, 241, 0.12);
    animation: fadeUp 0.7s 0.2s ease both;
    overflow: hidden;
    position: relative;
  }
  
  /* Subtle background glow */
  .cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 60%);
    pointer-events: none;
  }
  
  .cta-content {
    position: relative;
    z-index: 1;
  }
  
  .cta-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #F8FAFC;
    line-height: 1.35;
    margin-bottom: 1.2rem;
  }
  
  .cta-desc {
    font-size: 1.55rem;
    color: #94A3B8;
    line-height: 1.75;
    margin-bottom: 3rem;
    max-width: 52rem;
  }
  
  /* CTA Button */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 1.6rem;
    padding: 1.1rem 2.6rem;
    cursor: pointer;
    transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s, background 0.35s;
    border: 1px solid transparent;
  }
  
  .btn--primary {
    background: #6366F1;
    color: #F8FAFC;
    border-color: #6366F1;
  }
  
  .btn--primary:hover {
    transform: translateY(-6px);
    box-shadow: 0 0.8rem 2.4rem rgba(99, 102, 241, 0.35);
    background: #818CF8;
    border-color: #818CF8;
  }
  
  .btn:focus-visible {
    outline: 2px solid #6366F1;
    outline-offset: 2px;
  }
  
  /* CTA Decorative Icon */
  .cta-icon-wrap {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }
  
  .cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10rem;
    height: 10rem;
    background: linear-gradient(135deg, #6366F1 0%, #818CF8 100%);
    border-radius: 2.8rem;
    color: #F8FAFC;
    box-shadow: 0 0.8rem 3.2rem rgba(99, 102, 241, 0.4);
    transition: transform 0.45s, box-shadow 0.45s;
  }
  
  .cta-card:hover .cta-icon {
    transform: translateY(-6px) rotate(6deg);
    box-shadow: 0 1.6rem 4.8rem rgba(99, 102, 241, 0.5);
  }


/**************************/
/* FOOTER 11 1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111*/
/**************************/


.footer{

    padding-bottom:4rem;
}

.footer-grid{

    display:grid;
    grid-template-columns:
    1.8fr 1fr 1fr;
    gap:8.0rem;
    padding:4.8rem;
    border-radius:32px;
    background:
    rgba(255,255,255,.02);
    border:
    1px solid rgba(255,255,255,.06);
}

/* لوگو */

.footer-logo{

    width:6.4rem;
    height:6.4rem;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2.8rem;
    font-weight:700;
    color:#F8FAFC;
    background:
    rgba(255,255,255,.04);
    border:
    1px solid rgba(255,255,255,.08);
    margin-bottom:2.4rem;
}

/* متن */

.footer-brand p{

    font-size: 1.2rem;
    color:#94A3B8;
    line-height:2;
    margin-bottom:1.6rem;
}

.footer-brand span{
    
    color:#64748B;
    font-size:1.4rem;
}

.footer-links a{
    font-size: 1.2rem;
}

.heart{
    display: inline-block;
    animation:
    heartbeat 1.8s infinite;
}

/* تیتر ستون‌ها */

.footer h4{

    color:#F8FAFC;
    margin-bottom:2.4rem;
    font-size:1.8rem;
}

/* لینک‌ها */

.footer-links,
.footer-social{

    display:flex;
    flex-direction:column;
    gap:1.4rem;
}

.footer-social-icons{

    font-size: 2rem;
    display:flex;
    align-items: center;
    gap:1.4rem;
}

.footer a{

    color:#94A3B8;
    transition:.3s;
}

.footer a:hover{

    color:#818CF8;

    transform:
    translateX(-4px);
}


/**************************/
/* CALL BTN 122222222222222222222222222222222222222222222222222222222222222222222222222222222222222222*/
/**************************/


.contact-fab{

    position:fixed;
    left:24px;
    bottom:24px;
    z-index:999;
}

/* دکمه اصلی */

.fab-toggle{

    width:6.4rem;
    height:6.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border:none;
    cursor:pointer;
    border-radius:50%;
    color:white;
    background:#6366F1;
    box-shadow:
    0 10px 35px
    rgba(99,102,241,.35);
}

/* انیمیشن توجه */

.fab-toggle{

    animation:
    fab-wiggle 5s infinite;
}

/* منوی بازشونده */

.fab-menu{

    position:absolute;
    bottom:8.0rem;
    left:0;
    display:flex;
    flex-direction:column;
    gap:1.2rem;
    opacity:0;
    visibility:hidden;
    transform:
    translateY(15px);

    transition:.3s;
}

.contact-fab.active .fab-menu{

    opacity:1;

    visibility:visible;

    transform:
    translateY(0);
}

/* آیتم‌ها */

.fab-menu a{

    width:5.2rem;
    height:5.2rem;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2.0rem;
    color:#CBD5E1;
    background:
    rgba(15,23,42,.92);
    border:
    1px solid rgba(255,255,255,.06);
    backdrop-filter:blur(16px);
    transition:
    transform .3s ease,
    color .3s ease,
    border-color .3s ease,
    box-shadow .3s ease;
}

.fab-menu a:hover{

    transform:
    translateY(-4px)
    scale(1.08);

    color:#818CF8;

    border-color:
    rgba(129,140,248,.4);

    box-shadow:
    0 12px 30px
    rgba(99,102,241,.25);
}

.fab-menu a img{

    transition:.3s;
}
.fab-menu a:hover img{

    transform:
    scale(1.15);
}


/**************************/
/* SCROLL UP BTN 133333333333333333333333333333333333333333333333333333333333333333333333333333333333*/
/**************************/



.scroll-top{

    position:fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    right:24px;
    bottom:24px;
    width:5.6rem;
    height:5.6rem;
    border:none;
    cursor:pointer;
    border-radius:18px;
    background:
    rgba(15,23,42,.92);
    border:
    1px solid rgba(255,255,255,.08);
    color:#818CF8;
    backdrop-filter:blur(20px);
    opacity:0;
    visibility:hidden;
    transform:
    translateY(20px);
    transition:.35s;
    z-index:999;
}

/* نمایش دکمه */

.scroll-top.show{

    opacity:1;

    visibility:visible;

    transform:
    translateY(0);
}

/* Hover */

.scroll-top:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 10px 30px
    rgba(99,102,241,.25);
}



/**************************/
/* EXTRA ANIMATIONS 144444444444444444444444444444444444444444444444444444444444444444444444444444444*/
/**************************/


.reveal{

    opacity:0;

    transform:
    translateY(40px);

    transition:
    opacity .8s ease,
    transform .8s ease;
}

/* وقتی دیده شد: */

.reveal.active{

    opacity:1;

    transform:
    translateY(0);
}


/* ============================================================
   7B. PROJECTS GRID
   ============================================================ */

   .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
    animation: fadeUp 0.65s 0.15s ease both;
  }
  
  
  /* ============================================================
     7C. PROJECT CARD
     ============================================================ */
  
  .project-card {
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2.8rem;
    overflow: hidden;
    backdrop-filter: blur(1.2rem);
    box-shadow: 0 0.4rem 2.4rem rgba(99, 102, 241, 0.06);
    transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
    display: flex;
    flex-direction: column;
  }
  
  .project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(129, 140, 248, 0.25);
    box-shadow: 0 1.6rem 4rem rgba(99, 102, 241, 0.15);
  }
  
  /* Project Image */
  .project-image-wrap {
    overflow: hidden;
    border-radius: 0; /* only card has radius */
    aspect-ratio: 16 / 9;
  }
  
  .project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
  }
  
  .project-card:hover .project-image {
    transform: scale(1.05);
  }
  
  /* Project Content */
  .project-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  
  .project-title {
    font-size: 2rem;
    font-weight: 700;
    color: #F8FAFC;
    margin-bottom: 1.4rem;
    line-height: 1.4;
  }
  
  .project-desc {
    font-size: 1.45rem;
    color: #94A3B8;
    line-height: 1.75;
    margin-bottom: 2rem;
    flex: 1;
  }
  
  /* Tags */
  .project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.6rem;
  }
  
  .project-tag {
    font-size: 1.2rem;
    font-weight: 500;
    color: #818CF8;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(129, 140, 248, 0.15);
    border-radius: 999rem;
    padding: 0.4rem 1.2rem;
    white-space: nowrap;
    transition: background 0.35s, border-color 0.35s;
  }
  
  .project-card:hover .project-tag {
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(129, 140, 248, 0.25);
  }
  
  /* Project Actions */
  .project-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }


/* ============================================================
   7C. ARTICLES GRID
   ============================================================ */

   .articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
    animation: fadeUp 0.65s 0.15s ease both;
  }
  
  
  /* ============================================================
     7D. ARTICLE CARD
     ============================================================ */
  
  .article-card {
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2.8rem;
    overflow: hidden;
    backdrop-filter: blur(1.2rem);
    box-shadow: 0 0.4rem 2.4rem rgba(99, 102, 241, 0.06);
    transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
    display: flex;
    flex-direction: column;
  }
  
  .article-card:hover {
    transform: translateY(-8px);
    border-color: rgba(129, 140, 248, 0.25);
    box-shadow: 0 1.6rem 4rem rgba(99, 102, 241, 0.15);
  }
  
  /* Article Image */
  .article-image-wrap {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    position: relative;
  }
  
  .article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
  }
  
  .article-card:hover .article-image {
    transform: scale(1.05);
  }
  
  /* Category Badge روی تصویر */
  .article-category-badge {
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
    z-index: 1;
    font-size: 1.15rem;
    font-weight: 600;
    color: #F8FAFC;
    background: rgba(99, 102, 241, 0.75);
    border: 1px solid rgba(129, 140, 248, 0.35);
    border-radius: 999rem;
    padding: 0.4rem 1.1rem;
    backdrop-filter: blur(0.6rem);
    letter-spacing: 0.02em;
  }
  
  /* Article Content */
  .article-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  
  .article-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: #F8FAFC;
    line-height: 1.45;
    margin-bottom: 1.4rem;
  }
  
  .article-desc {
    font-size: 1.45rem;
    color: #94A3B8;
    line-height: 1.75;
    margin-bottom: 2rem;
    flex: 1;
  }
  
  /* Meta: date + reading time */
  .article-meta {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    margin-bottom: 2.4rem;
  }
  
  .article-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    color: #94A3B8;
  }
  
  .article-meta__item svg {
    color: #6366F1;
    flex-shrink: 0;
  }
  
  /* Read More Link */
  .article-read-link {
    display: inline-flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: #818CF8;
    gap: 0.4rem;
    transition: color 0.35s, gap 0.35s;
    margin-top: auto;
  }
  
  .article-read-link:hover {
    color: #A5B4FC;
    gap: 0.8rem;
  }
  
  .article-read-link:focus-visible {
    outline: 2px solid #6366F1;
    outline-offset: 2px;
    border-radius: 0.4rem;
  }


/**************************/
/* MEDIA QUERIES 15555555555555555555555555555555555555555555555555555555555555555555555555555555555*/
/**************************/

@media (max-width:1200px){

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
      }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
      }

    .cta-card {
        padding: 4rem 4.8rem;
      }
}


@media (max-width:992px){

    .navbar__menu{
        display:none;
    }

    .mobile-menu-btn{
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .footer-grid{

        grid-template-columns:
        1.5fr 1fr 1fr;

        gap:4rem;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 4rem 3.2rem;
      }
    
    .cta-desc {
        margin-inline: auto;
      }

}

@media (max-width:768px){

    .resume-btn{
        display:none;
    }

    .cta-title {
        font-size: 2rem;
      }
    
    .cta-card {
        padding: 3.2rem 2.4rem;
      }
    
    .cta-icon {
        width: 8rem;
        height: 8rem;
      }

    .projects-grid {
        grid-template-columns: 1fr;
      }

    .articles-grid {
        grid-template-columns: 1fr;
      }

    .footer-grid{

        grid-template-columns:1fr;

        gap:4.8rem;

        text-align:center;
    }

    .footer-logo{

        margin-inline: auto;
    }

    .footer-social-icons{

        justify-content: center;
    }


}

@media (max-width:480px){
   

    .project-content {
        padding: 2.4rem;
      }

    .article-content {
        padding: 2.4rem;
      }
    
    .article-title {
        font-size: 1.7rem;
      }

}