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

:root {
    --bg-primary: #040B26;
    --bg-secondary: #081336;
    --color-purple: #9B5CFF;
    --color-pink: #FF2E88;
    --color-cyan: #00F5D4;
    --text-primary: #FFFFFF;
    --text-muted: #A9B3D1;
    --border-color: rgba(149, 92, 255, 0.3);
    --border-bright: rgba(149, 92, 255, 0.5);
    --font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(4, 11, 38, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1.5rem 0;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-cyan);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--color-cyan);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(155, 92, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.greeting {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.hero-title .pink {
    color: var(--color-pink);
}

.hero-title .cyan {
    color: var(--color-cyan);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s;
    cursor: pointer;
}

.social-icon:hover {
    border-color: var(--color-cyan);
    color: var(--color-cyan);
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--color-pink);
    color: var(--text-primary);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(255, 46, 136, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-muted);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--color-cyan);
    color: var(--color-cyan);
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.3);
}

/* Code Card */
.code-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(155, 92, 255, 0.1);
}

.code-header {
    background: linear-gradient(135deg, rgba(155, 92, 255, 0.1), rgba(0, 245, 212, 0.05));
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.traffic-lights {
    display: flex;
    gap: 0.5rem;
}

.light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.light.red {
    background: #FF5F57;
}

.light.yellow {
    background: #FFBD2E;
}

.light.green {
    background: #28C940;
}

.filename {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: auto;
}

.code-card pre {
    padding: 1.5rem;
    overflow-x: auto;
}

.code-card code {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.keyword {
    color: var(--color-purple);
    font-weight: 600;
}

.variable {
    color: var(--color-cyan);
}

.string {
    color: #00D084;
}

.function {
    color: #FFB86C;
}

.tag {
    color: var(--color-pink);
}

.property {
    color: var(--color-cyan);
}

/* About Section */
.about {
    padding: 100px 0;
    position: relative;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-purple), transparent);
    margin-bottom: 4rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15rem;
    align-items: center;
}

.about-left {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.image-container {
    position: relative;
    display: inline-block;
}

.profile-image {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    /* filter: grayscale(100%); */
    transition: all 0.3s;
}

.profile-image:hover {
    border-color: var(--color-cyan);
    filter: grayscale(0%);
}

.badge {
    position: absolute;
    background: var(--color-purple);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10;
}

.badge-vertical {
    left: -60px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    white-space: nowrap;
}

/* Experience Section */
.experience {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--color-purple), var(--color-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.experience-illustration img {
    width: 320px;
    max-width: 100%;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(155, 92, 255, 0.3));
}

.laptop {
    width: 200px;
    height: 150px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-cyan));
    border-radius: 12px;
    position: relative;
    box-shadow: 0 20px 60px rgba(155, 92, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.experience-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.exp-card {
    background: var(--bg-secondary);
    border-left: 3px solid var(--color-purple);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.exp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(155, 92, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.exp-card:hover {
    transform: translateX(10px);
    border-left-color: var(--color-cyan);
    box-shadow: 0 10px 30px rgba(155, 92, 255, 0.2);
}

.exp-card:hover::before {
    opacity: 1;
}

.exp-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.exp-card .company {
    color: var(--color-pink);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.exp-card .description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Skills Section */
/* .skills {
    padding: 100px 0;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.skill-card {
    background: rgba(8, 19, 54, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.skill-card:hover {
    background: rgba(8, 19, 54, 0.9);
    border-color: var(--color-cyan);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 245, 212, 0.2);
}

.skill-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.skill-card p {
    font-weight: 600;
    font-size: 0.95rem;
} */
.skill-category {
    margin-bottom: 50px;
}

.skill-category h3 {
    color: var(--color-cyan);
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-align: left;
    border-left: 4px solid var(--color-purple);
    padding-left: 15px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 20px;
}

.skill-card {
    background: rgba(8, 19, 54, 0.8);
    border: 1px solid rgba(155, 92, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-cyan);
    box-shadow: 0 0 20px rgba(155, 92, 255, 0.3);
}

.skill-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Projects Section */
/* .projects {
    padding: 100px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(155, 92, 255, 0.1);
}

.project-card:hover {
    border-color: var(--color-cyan);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 245, 212, 0.2);
} */
.projects {
    padding: 100px 0;
}

.project-card {
    background: #081336;
    border: 1px solid rgba(155, 92, 255, 0.35);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(155, 92, 255, 0.12);
}

.project-header {
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 25px;
    border-bottom: 1px solid rgba(155, 92, 255, 0.3);
    background: rgba(5, 12, 35, 0.8);
}

.traffic-lights {
    display: flex;
    gap: 10px;
    margin-right: 20px;
}

.light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #ff5f57;
}

.yellow {
    background: #febc2e;
}

.green {
    background: #28c840;
}

.filename {
    color: #00f5d4;
    font-size: 1.4rem;
    font-weight: 600;
}

.project-terminal {
    padding: 30px;
}

.terminal-section {
    margin-bottom: 28px;
}

.label {
    display: inline-block;
    color: #00f5d4;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.terminal-section p {
    color: #c7d0e3;
    line-height: 1.8;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-tags span {
    background: rgba(155, 92, 255, 0.15);
    border: 1px solid rgba(155, 92, 255, 0.3);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 0.9rem;
}

.terminal-section ul {
    list-style: none;
    padding: 0;
}

.terminal-section ul li {
    color: #c7d0e3;
    margin-bottom: 10px;
    position: relative;
    padding-left: 22px;
}

.terminal-section ul li::before {
    content: "▸";
    color: #00f5d4;
    position: absolute;
    left: 0;
}

.projects {
    padding: 120px 0;
    position: relative;
}

.projects-stack {
    position: relative;
}

.project-card {
    position: sticky;
    top: 100px;

    background: #081336;
    border: 1px solid rgba(155,92,255,.3);

    border-radius: 18px;

    overflow: hidden;

    margin-bottom: 120px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.45),
        0 0 25px rgba(155,92,255,.12);

    transition: all .4s ease;
}

.project-card:hover {
    border-color: rgba(0,245,212,.6);

    box-shadow:
        0 20px 70px rgba(0,0,0,.55),
        0 0 40px rgba(0,245,212,.18);
}
.project-card:nth-child(1) {
    top: 100px;
    z-index: 1;
}

.project-card:nth-child(2) {
    top: 120px;
    z-index: 2;
}

.project-card:nth-child(3) {
    top: 140px;
    z-index: 3;
}

.project-card:nth-child(4) {
    top: 160px;
    z-index: 4;
}

.project-card:nth-child(5) {
    top: 180px;
    z-index: 5;
}

.project-card:nth-child(6) {
    top: 200px;
    z-index: 6;
}
.project-header {
    height: 80px;

    display: flex;
    align-items: center;

    padding: 0 30px;

    background:
        linear-gradient(
            90deg,
            rgba(5,11,45,.95),
            rgba(10,20,70,.95)
        );

    border-bottom: 1px solid rgba(155,92,255,.25);
}

.filename {
    color: #00f5d4;

    font-size: 1.3rem;
    font-weight: 600;

    margin-left: 20px;
}
.project-terminal {
    padding: 35px;
}

.terminal-section {
    margin-bottom: 25px;
}

.label {
    display: inline-block;

    color: #00f5d4;

    font-size: 1rem;
    font-weight: 600;

    margin-bottom: 12px;
}

.terminal-section p {
    color: #b9c5df;
    line-height: 1.8;
}

.terminal-section ul {
    list-style: none;
    padding: 0;
}

.terminal-section ul li {
    color: #b9c5df;
    margin-bottom: 12px;
    position: relative;
    padding-left: 22px;
}

.terminal-section ul li::before {
    content: "▸";
    color: #00f5d4;

    position: absolute;
    left: 0;
}
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tags span {
    background: rgba(155,92,255,.12);

    border: 1px solid rgba(155,92,255,.35);

    color: #fff;

    padding: 8px 14px;

    border-radius: 30px;

    font-size: .9rem;

    transition: .3s;
}

.tech-tags span:hover {
    background: rgba(0,245,212,.15);

    border-color: #00f5d4;

    transform: translateY(-2px);
}
@media (max-width:768px){

    .project-card{
        position: relative;
        top: auto !important;
        margin-bottom: 40px;
    }

}

/* Education Section */
.education {
    padding: 120px 0;
    position: relative;
}

.section-heading {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    background: rgba(155,92,255,.15);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1.8rem;
    font-weight: 500;
}

.education-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.education-illustration img {
    width: 100%;
    max-width: 450px;
    display: block;
    margin: auto;
}

.education-cards {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.edu-card {
    background: rgba(8,19,54,.8);

    border: 1px solid rgba(155,92,255,.25);

    border-radius: 20px;

    padding: 35px;

    backdrop-filter: blur(10px);

    transition: .3s ease;
}

.edu-card:hover {
    transform: translateY(-5px);

    border-color: #00f5d4;

    box-shadow: 0 0 30px rgba(0,245,212,.15);
}

.edu-year {
    text-align: center;

    color: #00f5d4;

    font-size: 1.2rem;

    font-weight: 200;

    margin-bottom: 25px;
}

.edu-info {
    display: flex;
    gap: 25px;
    align-items: center;
}

.edu-icon {
    width: 60px;
    height: 60px;

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

    border: 2px solid #9b5cff;

    border-radius: 12px;

    color: #9b5cff;

    font-size: 1.8rem;
}

.edu-info h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.edu-info p {
    color: #e8e8e8;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.edu-info span {
    color: #b8c0d8;
}

/* Blogs Section */
.blogs {
    padding: 100px 0;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

.blog-card {
    background: #07133d;
    border: 1px solid rgba(138, 92, 246, 0.25);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.35s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: #00e5ff;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
}



.achievement-icon {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;

    padding: 12px;
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
}

.blog-meta {
    padding: 18px 20px 0;
}

.blog-category {
    color: #ff3ea5;
    font-size: 0.95rem;
    font-weight: 600;
}

.blog-card h3 {
    padding: 15px 20px 0;
    color: #ffffff;
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: 700;
}

.blog-card p {
    padding: 15px 20px 25px;
    color: #a9b3d1;
    line-height: 1.8;
    font-size: 1.05rem;
}



.blog-card:hover .achievement-icon i {
    transform: scale(1.1);
}
.blog-image {
    height: 220px;

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

    background:
        radial-gradient(
            circle at center,
            rgba(155, 92, 255, 0.25) 0%,
            rgba(10, 15, 45, 0.95) 70%
        );

    border-bottom: 1px solid rgba(155, 92, 255, 0.2);

    position: relative;
    overflow: hidden;
}

.blog-image::before {
    content: "";
    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(0, 229, 255, 0.18),
        transparent 70%
    );

    filter: blur(25px);

    animation: pulseGlow 4s ease-in-out infinite;
}

.achievement-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.achievement-icon i {
    font-size: 5rem;

    color: #ffffff;

    z-index: 2;

    transition: all 0.35s ease;

    text-shadow:
        0 0 15px rgba(155, 92, 255, 0.7),
        0 0 30px rgba(0, 229, 255, 0.4);
}



@keyframes pulseGlow {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.5;
    }
}
.blog-card {
    background: linear-gradient(
        180deg,
        #07133d 0%,
        #091a4f 100%
    );

    border: 1px solid rgba(138, 92, 246, 0.25);

    border-radius: 18px;

    overflow: hidden;

    transition: all 0.35s ease;

    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);

    border-color: #00e5ff;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.4),
        0 0 25px rgba(0,229,255,0.12);
}
@media (max-width: 768px) {

    .blogs-grid {
        grid-template-columns: 1fr;
    }

    .blog-card h3 {
        font-size: 1.4rem;
    }

    .blog-image {
        height: 180px;
    }

    .blog-card::after {
        top: 180px;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-left h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-cyan);
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.2);
}

.contact-right {
    position: relative;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item .label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.info-item .value {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.social-icons-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-icon-large {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.social-icon-large:hover {
    color: var(--color-cyan);
    transform: translateX(10px);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-cyan);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .experience-content,
    .education-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .badge-vertical {
        left: 20px;
        top: 20px;
        transform: rotate(0deg);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-menu a {
        font-size: 0.65rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .greeting {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .social-icons {
        flex-wrap: wrap;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .footer .container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.75rem;
    }
}
