@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Intel+One+Mono:wght@400;700&display=swap');

:root {
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
}
header{
    background-color: rgb(10, 9, 9);
    border-style: ridge;
}
body {
    background: radial-gradient(circle, rgba(29, 184, 245, 1) 0%, rgba(140, 54, 173, 1) 47%, rgba(10, 10, 0, 1) 100%);
    position: relative;
    overflow-x: hidden;
}
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 115, 0.03));
    pointer-events: none;
    z-index: -1;
}

#greeting {
    font-family: "Intel One Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: rgb(245, 239, 84);
    font-size: 1.5em;
    text-align: center;
    background: linear-gradient(45deg, rgb(221, 221, 228), purple);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
#title{
    font-family:'Orbitron', sans-serif;
    font-weight: 500;
    color: red;
    text-align: center;
    font-size: 2em;
}
#name{
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    background: linear-gradient(30deg, blue, purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    font-size: 3em;
    /*Typing effect*/
    border-right: 2px solid rgb(255, 0, 115);
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 2s steps(17) 1s both, cursor 0.5s step-end infinite alternate;
}
@keyframes cursor{
    50% {border-color: transparent;}
}
@keyframes typing{
    from {width: 0;}
    to {width: 17ch;}
}

/* Dot grid background */
.dot-grid-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Behind navbar and hero content */
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fill, 35px);
  grid-template-rows: repeat(auto-fill, 35px);
  gap: 0;
  justify-content: center;
  align-content: center;
}

.dot-grid-container .dot{
  width: 0.5px;
  height: 0.5px;
  background: rgba(142, 139, 139, 0.4);
  border-radius: 50%;
  transition: all 0.2s ease-out;
  margin: auto;
}

.dot-grid-container .dot.bright {
  background: rgba(237, 235, 235, 0.9);
  box-shadow: 0 0 10px rgba(20, 18, 18, 0.9);
  transform: scale(2);
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-sm);
    background-color: rgba(20, 2, 16, 0.67);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(6, 6, 206, 0.2);
    border-bottom: 1px solid rgba(227, 68, 137, 0.3);
    box-sizing: border-box;
}

.navbar-brand{
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    flex: 0 0 auto;
    margin-right: 2rem;
}
.navbar-brand .logo-image{
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}
.navbar-brand .logo-image:hover{
    transform: scale(1.1);
}

.navbar-menu{
    display: flex;
    list-style: none;
    margin-right: 2rem;
}
.navbar-item{
    margin-left: var(--space-md);
}
.navbar-link{
    color: whitesmoke;
    text-decoration: none;
    font-family: 'Intel One Mono', monospace;
    font-size: 1.1rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.navbar-link:hover{
    color: #ff0073;
}

.navbar-link.active{
    color: #ff7ab8;
    text-shadow: 0 0 16px rgba(255, 0, 115, 0.32);
}

.navbar-toggle{
    display: none;
    color: whitesmoke;
    font-size: 1.5rem;
    cursor: pointer;
    background: transparent;
    border: 0;
    padding: 0.35rem;
}

html{
    scroll-behavior: smooth;
}

#footer{
    text-align: center;
}
/* Hero section styling */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: black;
    text-align: center;
    padding-top: 88px;
    box-sizing: border-box;
}

.hero-content{
    position: relative;
    z-index: 1;
    max-width: 700px;
    animation: fadeIn 1s ease-in;
}

/* CTA button styling */
.cta-button {
    font-family: 'Orbitron', sans-serif;
    display: inline-block;
    padding: 12px 24px;
    background-color: rgb(255, 0, 115);
    color: whitesmoke;
    text-decoration: none;
    border: 2px solid whitesmoke;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: whitesmoke;
    color: rgb(10, 9, 9);
    transform: scale(1.05);
}

section{
    padding: var(--space-xl) var(--space-md);
    margin-bottom: var(--space-lg);
}

/*Social Icons Class */
.social-links{
    margin-top: 20px;

}

.social-icon{
    color: whitesmoke;
    font-size: 2em;
    margin: 0 10px;
    text-decoration: none;
}

.social-icon:hover{
    color: rgb(255, 0, 115);
    transform: translateY(-10px);

}

/* Fade-in animation*/
@keyframes fadeIn{
    from{
        opacity: 0;
        transform: translateY(20px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsiveness design*/
@media (max-width:600px){
    #name {
        font-size: 2.25em;
        white-space: normal;
        border-right: 0;
        animation: none;
    }
    #title { font-size: 1.35em; }
    #greeting { font-size: 1.05em; }
    #tagline { font-size: 1em; }
    .hero-content {
        padding: 0 18px;
        max-width: 100%;
    }
    .cta-button {
        padding: 10px 20px;
        width: min(100%, 260px);
    }
}

.projects-grid{
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;

}

.project-card {
  background:
    linear-gradient(145deg, rgba(20, 17, 29, 0.96), rgba(32, 28, 46, 0.94));
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition: all 0.3s ease;
  font-family: "Intel One Mono", monospace;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 400px;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 46px rgba(61, 86, 255, 0.18);
}

.featured-project {
    background:
        radial-gradient(circle at top right, rgba(28, 192, 132, 0.16), transparent 35%),
        linear-gradient(145deg, rgba(16, 16, 20, 0.96), rgba(28, 25, 41, 0.96));
    border: 1px solid rgba(65, 229, 167, 0.22);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
}

.featured-project:hover {
    box-shadow: 0 24px 56px rgba(22, 204, 135, 0.18);
}

.project-card:nth-child(even){
    flex-direction: row-reverse;
}

.project-card:nth-child(even) .project-type-label{
    position: absolute;
    left: auto;
    right: 0;
    transform: none;
}

.project-card .project-visual{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

.project-card .card-content{
    flex: 1;
    padding: 30px;
}

.project-card:not(.featured-project) .card-content h3,
.project-card:not(.featured-project) .card-content p {
    color: #f4f6fb;
}

.project-card:not(.featured-project) .card-content p {
    line-height: 1.65;
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content{
    padding: 20px;
}

.project-kicker {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(65, 229, 167, 0.14);
    color: #79f2c0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.featured-project .card-content h3,
.featured-project .card-content p,
.featured-project .tech,
.featured-project .project-status {
    color: #f5f7fb;
}

.featured-project .card-content p {
    line-height: 1.65;
}

.featured-project code {
    color: #79f2c0;
}

.project-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 10px;
}

.highlight-pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(121, 242, 192, 0.18);
    color: #d8fff0;
    font-size: 0.82rem;
}

.tech-stack{
    display: flex;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
    
}

.tech{
    padding: 8px 16px;
    border-radius: 15px;
    color: #edf1fa;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
}

.tech-logos{
    width: 34px !important;
    height: 30px !important;
    margin-right: 10px;
    vertical-align: middle;
}

.tech-logo{
    width: 24px !important; 
    height: 24px !important;
    margin-right: 8px;
    object-fit: contain;
}

#projects h2{
    text-align: center;
    font-family:'Orbitron', sans-serif;

}

#contact{
    padding: 80px 20px;
}

#contact h2{
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    font-family: 'Orbitron', sans-serif;
}

.contact-grid{
    display:flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;

}

.contact-card{
    background: thistle;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    font-family: "Intel One Mono", monospace;
}

.contact-card:hover{
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rebeccapurple;
}

.contact-card a{
    color: black;
    text-decoration: none;
}

.contact-card i{
    color: #ff0073;
}

.contact-card:hover i{
    transform: scale(1.1);
}

.email-icon{
    
}

footer{
    text-align: center;
    background-color: #ff0073;
    padding: 30px 20px;
    font-family: 'Orbitron', sans-serif;

}

footer h3{
    font-size: 1em;
    font-weight: 400;
    
}

#tsparticles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.project-links{
    display: flex;
    gap: 15px;
    margin-top: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.project-link{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(8, 8, 12, 0.72);
    color: whitesmoke;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 115, 0.72);
    transition: all 0.3s;
}

.project-link:hover{
    background-color: #ff0073;
    transform: translateY(-2px);
}

.project-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #1b1b1b;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.slider-dots{
    text-align: center;
    margin-top: 20px;
    padding: 0 20px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 6px;
    background-color: #ddd;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover{
    background-color: #bbb;
    transform: scale(1.1);
}

.dot.active {
    background: #ff0073;
    transform: scale(1.2);
}

.project-card .project-visual{
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

.project-card .card-content{
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-images {
    position: relative;
    margin: 20px auto;
}

.project-images .image-slider {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
}

.project-images .project-image {
    display: none;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.project-images .project-image.active {
    display: block;
}

/* MOBILE APP SPECIFIC STYLING */
.project-images.mobile-app {
    max-width: 280px; /* Constrained for mobile */
    background: linear-gradient(145deg, #161722, #24283a);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 77, 154, 0.14);
}

.project-images.mobile-app .image-slider {
    border-radius: 15px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    background: #0a0c11;
}

/* WEB APP SPECIFIC STYLING */
.project-images.web-app {
    max-width: 500px; /* Wider for web apps */
    background: linear-gradient(145deg, #161922, #212634);
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(93, 182, 255, 0.14);
}

.project-images.web-app .image-slider {
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    background: #0a0c11;
}

.project-images.web-app .project-image {
    object-fit: cover; 
    max-height: 300px;
}

.project-images.trading-platform {
    max-width: 700px;
    background: linear-gradient(145deg, #101217, #1a1d24);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(92, 255, 191, 0.12);
}

.project-images.trading-platform .image-slider {
    border-radius: 14px;
    background: #060709;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.project-images.trading-platform .project-image {
    object-fit: cover;
    max-height: 360px;
}

/* WEBSITE STYLING */
.project-images.website {
    max-width: 650px; 
    background: linear-gradient(145deg, #171826, #23263a);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(198, 178, 255, 0.18);
}

.project-images.website .image-slider {
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    background: #0b0d12;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.project-images.website .project-image {
    object-fit: cover;
    max-height: 400px;
    border-radius: 11px;
}

.project-images.cli {
    max-width: 650px;
    background: linear-gradient(145deg, #151821, #222734);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(87, 214, 140, 0.16);
}

.project-images .slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0;
    pointer-events: none;
    z-index: 10;
}

.project-images .slider-button {
    background: rgba(232, 236, 245, 0.9);
    color: #181a20;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    pointer-events: all;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.project-images .slider-button:hover {
    background: #ffffff;
    transform: scale(1.05);
    opacity: 1;
}

/* Adjust button positioning per project type */
.project-images.mobile-app .slider-button.prev { margin-left: -60px; }
.project-images.mobile-app .slider-button.next { margin-right: -20px; }

.project-images.web-app .slider-button.prev { margin-left: -25px; }
.project-images.web-app .slider-button.next { margin-right: -20px; }

.project-images.website .slider-button.prev { margin-left: -40px; }
.project-images.website .slider-button.next { margin-right: -5px; }

.project-images.trading-platform .slider-button.prev { margin-left: -30px; }
.project-images.trading-platform .slider-button.next { margin-right: -10px; }

/* Project type labels */
.project-type-label {
    position: absolute;
    top: -6px;
    left: 0px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 0 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: transparent;
    border-radius: 0;
    border-bottom: 1px solid currentColor;
    box-shadow: none;
}

.project-type-label.mobile {
    color: #ff4d9a;
}

.project-type-label.web-app {
    color: #5db6ff;
}

.project-type-label.website {
    color: #c6b2ff;
}

.project-type-label.cli {
    color: #57d68c;
}

.project-type-label.platform {
    color: #79f2c0;
}

/* Video styling */
.project-video {
    display: none;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.project-video.active {
    display: block;
}

@media (max-width: 768px){
    .navbar{
        padding: 0.85rem 1rem;
    }
    .navbar-toggle{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        z-index: 1002;
    }
    .navbar-menu{
        position: absolute;
        top: calc(100% + 10px);
        right: 1rem;
        left: 1rem;
        margin: 0;
        padding: 1rem;
        flex-direction: column;
        gap: 0.4rem;
        background: rgba(14, 10, 22, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(18px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }
    .navbar-menu.is-open{
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .navbar-item{
        margin-left: 0;
    }
    .navbar-link{
        display: block;
        padding: 0.8rem 0.85rem;
        border-radius: 10px;
        font-size: 1rem;
        text-align: left;
    }
    .navbar-link.active{
        background: rgba(255, 255, 255, 0.06);
    }
    body.menu-open{
        overflow: hidden;
    }
    section{
        padding: 3rem 1rem;
        margin-bottom: 2rem;
    }
    .hero{
        padding-top: 96px;
        min-height: 100svh;
    }
    .social-links{
        display: flex;
        justify-content: center;
        gap: 0.5rem;
    }
    .project-card{
        flex-direction: column !important;
        min-height: auto;
        border-radius: 18px;
    }
    .project-card:nth-child(even){
        flex-direction: column !important;
    }
    .project-card .project-visual, 
    .project-card .card-content{
        flex: none;
        max-width: 100%;
        width: 100%;
    }
    .project-card .card-content{
        padding: 20px;
    }
    .project-type-label,
    .project-card:nth-child(even) .project-type-label{
        position: static;
        align-self: flex-start;
        margin-bottom: 0.85rem;
    }
    .project-images .slider-controls{
        padding: 0 12px;
        box-sizing: border-box;
    }
    .project-images.mobile-app .slider-button.prev,
    .project-images.web-app .slider-button.prev,
    .project-images.website .slider-button.prev,
    .project-images.trading-platform .slider-button.prev {
        margin-left: 0;
    }
    .project-images.mobile-app .slider-button.next,
    .project-images.web-app .slider-button.next,
    .project-images.website .slider-button.next,
    .project-images.trading-platform .slider-button.next {
        margin-right: 0;
    }
    .contact-grid{
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .contact-card{
        padding: 24px 20px;
    }
}

@media (max-width: 480px){
    .navbar-brand .logo-image{
        height: 42px;
    }
    #projects h2,
    #skills h2,
    #contact h2{
        font-size: 1.9rem;
    }
    .skills-intro{
        font-size: 0.88rem;
        margin-bottom: 1.5rem;
    }
    .project-card .project-visual{
        padding: 16px;
    }
    .project-card .card-content{
        padding: 18px 16px 20px;
    }
    .project-images.mobile-app{
        max-width: 240px;
        padding: 14px;
    }
    .project-images.web-app{
        max-width: 100%;
        padding: 12px;
    }

    .project-images.website{
        max-width: 100%;
        padding: 12px;
    }

    .project-images.trading-platform{
        max-width: 100%;
        padding: 12px;
    }
    .project-images.cli{
        max-width: 100%;
        padding: 12px;
    }
    .project-images .slider-button{
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .project-highlights{
        gap: 8px;
    }
    .highlight-pill,
    .tech,
    .project-status,
    .skill-chip{
        font-size: 0.74rem;
    }
    .contact-card a{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .projects-grid{
        gap: 20px;
    }
}
/* Skills Section */
#skills {
    padding: var(--space-xl) var(--space-md);
    font-family: 'Intel One Mono', monospace;
}

#skills h2 {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 0.75rem;
    letter-spacing: 0.06em;
}

.skills-intro {
    max-width: 640px;
    margin: 0 auto 2.25rem;
    text-align: center;
    font-family: 'Intel One Mono', monospace;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
}

.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 860px;
    margin: 0 auto;
}

.skills-group {
    background: rgba(13, 10, 19, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.1rem 1.15rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(10px);
}

.skills-group-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 12px;
    padding-left: 2px;
}

.skills-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    padding: 7px 12px;
    font-family: 'Intel One Mono', monospace;
    font-size: 0.8rem;
    color: #111827;
    transition: all 0.3s ease;
    cursor: default;
    line-height: 1;
}

.skill-chip:hover {
    background: #ffffff;
    border-color: rgba(255, 0, 115, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 0, 115, 0.14);
}

.skill-icon {
    width: 14px !important;
    height: 14px !important;
    object-fit: contain;
    flex-shrink: 0;
}

.skill-chip-text {
    padding-left: 11px;
}

@media (max-width: 600px) {
    .skills-group {
        padding: 1rem;
    }
    .skills-chips {
        gap: 7px;
    }
    .skill-chip {
        font-size: 0.76rem;
        padding: 6px 10px;
    }
}
