:root {
    --bg-dark: #0b0c10;
    --neon-green: #00ff7f;
    --text-light: #ffffff;
    --text-muted: #cccccc;
    --hover-green: #008f5a;
    --glow-shadow: rgba(0, 255, 127, 0.6);
}

@font-face {
    font-family: "Agile";
    src: url("fonts/agile.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

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

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
video,
canvas,
svg {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding-inline: clamp(16px, 4vw, 50px);
}

html {
    scroll-behavior: smooth;
}

body {
    /* margin: 0; */
    background: var(--bg-dark);
    font-family: "Agile", sans-serif;
    color: var(--text-muted);
}

/* Navbar Base */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px clamp(16px, 4vw, 50px);
    background: var(--bg-dark);
    /* border-bottom: 1px solid var(--neon-green); */
    border-bottom: 1px solid #1f1f1f;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* Brand */
.brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--neon-green);
    text-shadow: 0 0 8px var(--glow-shadow), 0 0 16px var(--glow-shadow);
}

.brand span {
    color: var(--neon-green);
    text-shadow: 0 0 8px var(--glow-shadow), 0 0 16px var(--glow-shadow);
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links li a {
    position: relative;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;

}

.nav-links li a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    margin-top: 6px;
    background-color: #00ff7f;
    transition: width 0.3s ease-in-out;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* CV Button */


.CV {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bg-dark);
    background: var(--neon-green);
    border: 1px solid rgba(250, 204, 21, 0.4);
    border-radius: 6px;
    box-shadow: 0 0 10px var(--glow-shadow);
    transition: all 0.3s ease;
    text-decoration: none;

}

.CV:hover {
    transform: scale(1.05);
    color: var(--text-light);
    background: #00ff7f;
    box-shadow: 0 0 15px var(--glow-shadow);
}

.CV:focus {
    outline: none;
    box-shadow: 0 0 15px var(--glow-shadow);
}


/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--neon-green);
    cursor: pointer;
}


/* HERO SECTION */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px clamp(16px, 4vw, 50px);
    flex-wrap: wrap;
    overflow: hidden;
}

.hero-text {
    max-width: 500px;
}

.hero-text h2 {
    color: #00ff7f;
    font-size: 3.5rem;
    margin-bottom: 15px;
    overflow-wrap: anywhere;
}

.hero-text p {
    color: #cccccc;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.hero-text button {
    padding: 12px 25px;
    font-size: 16px;
    background-color: #00ff7f;
    border: none;
    border-radius: 5px;
    color: #0b0c10;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-text button:hover {
    /* background-color: ; */
    background: #00ffcc;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-image img {
    width: min(350px, 70vw);
    height: min(350px, 70vw);
    border-radius: 50%;
    border: 4px solid #00ff7f;
    box-shadow:
        0 0 15px rgba(0, 255, 127, 0.8),
        0 0 30px rgba(0, 255, 127, 0.6),
        0 0 50px rgba(0, 255, 127, 0.4),
        0 0 80px rgba(0, 255, 127, 0.3),
        inset 0 0 20px rgba(0, 255, 127, 0.1);
    object-fit: cover;
    object-position: center;
    animation: pulseZoom 4s infinite ease-in-out;
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.05), rgba(0, 255, 127, 0.02));
}

/* ABOUT SECTION */
.about {
    background: #0b0c10;
    color: #ffffff;
    padding: 80px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
}

/* Image */
.image-card {
    width: 100%;
    max-width: 380px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    border: 3px solid rgba(0, 255, 127, 0.18);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(0, 255, 127, 0.08) inset;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45));
    transition: transform .35s ease, box-shadow .35s ease;
}

.image-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transform-origin: center;
    transition: transform .6s cubic-bezier(.2, .9, .2, 1);
    filter: drop-shadow(0 6px 18px rgba(0, 255, 127, 0.12));
}

.image-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(0, 255, 127, 0.12);
}

.image-card:hover img {
    transform: scale(1.03);
    filter: drop-shadow(0 10px 40px rgba(0, 255, 127, 0.18));
}

/* small neon badge at bottom-left */
.image-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(0, 0, 0, 0.6);
    color: #0b0c10;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    background-image: linear-gradient(90deg, rgba(0, 255, 127, 1), rgba(0, 255, 127, 0.85));
    box-shadow: 0 6px 18px rgba(0, 255, 127, 0.18);
    color: #0b0c10;
}


/* Text */
.about-text {
    flex: 1 1 50%;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #00ff7f;
    margin-bottom: 15px;
    /* text-shadow: 0 0 10px rgba(0, 255, 127, 0.6); */
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 400;

}

.about-text h3 span {
    color: #00ff7f;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 25px;
}

/* Button */
.about-text button {
    padding: 12px 25px;
    background: #00ff7f;
    color: #0b0c10;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 255, 127, 0.6);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.about-text button:hover {
    background: #00ffcc;
    transform: translateY(-3px);
    /* box-shadow: 0 0 30px rgba(0, 255, 127, 0.8); */
}




.skills {
    padding: 80px clamp(16px, 4vw, 50px);
    background: #0b0c10;
    text-align: center;
    overflow: hidden;
}

.skills h2 {
    font-size: 2.8rem;
    color: #00ff7f;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

/* Tabs */
.skills-tabs {
    margin-bottom: 30px;
}

.tab-btn {
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    background: transparent;
    color: #ccc;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: #00ffcc;
    border-bottom: 2px solid #00ffcc;
}

.tab-btn:hover {
    color: #00ffcc;
}

/* Skills Grid */
.skills-container {
    display: none;
    /* grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 20px;

    display: grid; */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.skills-container.active {
    display: grid;
}

/* Skill Card */
.skill-card {
    /* background: #111827;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 255, 204, 0.2);
    box-shadow: 0 0 12px rgba(0, 255, 204, 0.2);
    transition: all 0.3s ease;
    position: relative; */
    overflow: hidden;


    background: #0b0c10;
    border: 2px solid #00ff7f;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    color: #cccccc;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 255, 127, 0.3);
}

.skill-card i {
    font-size: 3rem;
    color: #00ff7f;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}


.skill-card:hover i {
    transform: rotate(10deg) scale(1.2);
}

.skill-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #00ffcc;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.6);
}

/* Neon Glow Effect on Hover */
.skill-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.15) 0%, transparent 70%);
    transform: rotate(25deg);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

/* Icon */
.skill-card i {
    font-size: 3rem;
    color: #00ffcc;
    margin-bottom: 15px;
    /* text-shadow: 0 0 8px rgba(0, 255, 204, 0.8); */
}

/* Title */
.skill-card h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 400;
}

.skill-card p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.5;
}


/* Education Section */
.education {
    padding: 80px clamp(16px, 4vw, 50px);
    background: #0b0c10;
    color: #fff;
    overflow: hidden;
}

.education .section-title {
    font-size: 2.8rem;
    color: #00ff7f;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* text-shadow: 0 0 12px rgba(0, 255, 127, 0.6); */
}

.education .section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 50px;
}

/* Timeline */
.edu-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Education Item */
.edu-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: #0b0c10;
    border: 2px solid #00ff7f;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 255, 127, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    flex-wrap: wrap;
}

.edu-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #00ffcc;
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.6);
}

/* Neon glow overlay */
.edu-item::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 127, 0.15) 0%, transparent 70%);
    transform: rotate(25deg);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.edu-item:hover::before {
    opacity: 1;
}

/* Logo */
.edu-logo {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(0, 255, 127, 0.4);
    transition: transform 0.4s ease;
}

.edu-item:hover .edu-logo {
    transform: scale(1.05);
}

/* Content */
.edu-content h3 {
    font-size: 1.5rem;
    color: #00ff7f;
    margin-bottom: 8px;
    /* text-shadow: 0 0 8px rgba(0, 255, 127, 0.7); */
    font-weight: 400;
}

.edu-content p {
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.6;
}

.edu-years {
    font-size: 0.95rem;
    color: #00ffcc;
    display: inline-block;
    margin-bottom: 10px;
}


.projects {
    padding: 80px clamp(16px, 4vw, 50px);
    background: #0b0c10;
    text-align: center;
    overflow: hidden;
}

.projects h2 {
    font-size: 2.8rem;
    color: #00ff7f;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* text-shadow: 0 0 12px rgba(0, 255, 127, 0.6); */
}

.projects p.section-subtitle {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0;
    justify-content: center;
}

.project-card {
    background: #0b0c10;
    border: 2px solid #00ff7f;
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    color: #ccc;
    box-shadow: 0 0 15px rgba(0, 255, 127, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    max-width: 100%;
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-content {
    padding: 20px;
}

.project-content h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 400;
}

.project-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #cccccc;
}

.project-content button {
    padding: 10px 20px;
    background: #00ff7f;
    color: #0b0c10;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 255, 127, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-content button:hover {
    transform: translateY(-3px);
    /* box-shadow: 0 0 25px rgba(0, 255, 127, 0.9); */
    background: #00ffcc;
}

.project-content button a {
    text-decoration: none;
    color: #0b0c10;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 0 25px rgba(0, 255, 127, 0.6);
}

.view-all-container {
    margin-top: 40px;
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #00ff7f;
    color: #0b0c10;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 255, 127, 0.6);
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    /* background: #008f5a; */
    background: #00ffcc;
    /* color: #ffffff; */
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 255, 127, 0.9);
}

/* ======================
   EXPERIENCE SECTION
====================== */
.experience {
    padding: 80px clamp(16px, 4vw, 50px);
    background: #0b0c10;
    color: #fff;
    overflow: hidden;
}

.experience .section-title {
    font-size: 2.8rem;
    color: #00ff7f;
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
    /* text-shadow: 0 0 10px rgba(0, 255, 127, 0.6); */
}

.experience .section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 50px;
}

/* Timeline Container */
.exp-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Individual Item */
.exp-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: #111418;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 127, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 127, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    flex-wrap: wrap;
}

/* Neon glow hover */
.exp-item:hover {
    transform: translateY(-8px);
    border-color: #00ff7f;
    box-shadow: 0 0 25px rgba(0, 255, 127, 0.6);
}

/* Company/Project Logo */
.exp-logo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #00ff7f;
    box-shadow: 0 0 15px rgba(0, 255, 127, 0.4);
    flex-shrink: 0;
}

/* Content */
.exp-content h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 400;
}

.exp-content p {
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 8px;
    line-height: 1.6;
}

.exp-content .exp-years {
    display: inline-block;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 0.9rem;
    color: #00ff7f;
    background: rgba(0, 255, 127, 0.1);
    padding: 5px 12px;
    border-radius: 999px;
    box-shadow: 0 0 8px rgba(0, 255, 127, 0.5);
}

.exp-desc {
    font-size: 0.95rem;
    color: #bbbbbb;
    line-height: 1.6;
}


/* ======================
   CONTACT SECTION
====================== */
.contact {
    padding: 80px clamp(16px, 4vw, 50px);
    background: #0b0c10;
    overflow: hidden;

}

.contact .section-title {
    font-size: 2.8rem;
    color: #00ff7f;
    margin-bottom: 10px;
    text-transform: uppercase;
    /* text-shadow: 0 0 12px rgba(0, 255, 127, 0.6); */
    text-align: center;
}

.contact .section-subtitle {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 40px;
    text-align: center;
}

.contact-side {
    margin: clamp(16px, 4vw, 30px);
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

/* Contact Form */
.contact-form {
    width: auto;
    flex: 1 1 320px;
    max-width: 520px;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-radius: 8px;
    border: 1px solid #008f5a;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #00ff7f;
    border-radius: 8px;
    background: #111418;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00ff7f;
    /* box-shadow: 0 0 15px rgba(0, 255, 127, 0.6); */
}

.contact-form textarea {
    resize: none;
    min-height: 120px;
}

/* Button */
.contact-form .btn {
    padding: 14px;
    background: #00ff7f;
    color: #0b0c10;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 12px rgba(0, 255, 127, 0.5);
    margin-top: 50px;
}

.contact-form .btn:hover {
    transform: translateY(-3px);
    background: #00ffcc;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;

    flex: 1 1 260px;
    max-width: 420px;

}

/* 🧱 Shared Card Style */
.contact-area,
.contact-link {
    width: 100%;
    max-width: 400px;
    border: 1px solid #008f5a;
    /* background-color: #fff; */
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-radius: 8px;
}

/* 🧾 Text */
.contact-area-h4 {
    color: #fff;
    font-weight: 400;
    margin-bottom: 10px;
}

.contact-info {
    margin-bottom: 10px;
    line-height: 26px;
}

.contact-info h4 {
    color: #fff;
    font-weight: 400;
}

.contact-info p {
    color: #ccc;
}

/* 🔗 Social Links */
.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    /* background-color: #f8faf; */
    padding: 10px 14px;
    border: 1px solid #008f5a;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    gap: 16px;
    flex-wrap: wrap;
}

/* .links a:hover {
    background-color: #00ff7f;
} */

.links a span {
    color: #ccc;
    font-weight: 400;
    font-size: 14px;
    overflow-wrap: anywhere;
}

.links a span:first-child {
    flex: 0 0 auto;
    min-width: 90px;
    white-space: nowrap;
}

.links a span:last-child {
    flex: 1 1 220px;
    text-align: right;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    font-size: 1.8rem;
    color: #00ff7f;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
    color: #008f5a;
    /* text-shadow: 0 0 20px rgba(0, 255, 127, 0.8); */
}


/* ======================
   FOOTER SECTION
====================== */
.footer {
    background: #0b0c10;
    padding: 50px 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 255, 127, 0.2);
    overflow: hidden;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer .brand {
    font-size: 2rem;
    color: #00ff7f;
    margin-bottom: 10px;
    text-shadow: 0 0 12px rgba(0, 255, 127, 0.6);
}

.footer .tagline {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 25px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links li a {
    text-decoration: none;
    color: #cccccc;
    font-size: 1rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-links li a:hover {
    color: #00ff7f;
    text-shadow: 0 0 10px rgba(0, 255, 127, 0.7);
}

/* Social Icons */
.social-icons {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    font-size: 1.6rem;
    color: #cccccc;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.social-icons a:hover {
    color: #00ff7f;
    transform: scale(1.2);
    text-shadow: 0 0 15px rgba(0, 255, 127, 0.8);
}

/* Copyright */
.footer .copyright {
    margin-top: 25px;
    font-size: 0.9rem;
    color: #888888;
}




@keyframes pulseZoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}


.tiktok::-webkit-scrollbar {
    display: none;
}

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

/* Small devices (phones, max-width: 600px) */
@media (max-width: 600px) {
    .navbar {
        padding: 15px 20px;
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        text-align: center;
        background: var(--bg-dark);
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px 0;
        border-top: 1px solid #008f5a;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero {
        flex-direction: column;
        padding: 120px 20px 50px 20px;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-image img {
        width: 250px;
        height: 250px;
        margin-top: 30px;
    }

    .about {
        padding: 60px 5%;
        flex-direction: column;
        text-align: center;
    }

    .about-container {
        flex-direction: column;
        gap: 30px;
    }

    .skills {
        padding: 60px 20px;
    }

    .skills-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .education,
    .experience,
    .projects,
    .contact {
        padding: 60px 20px;
    }

    .edu-timeline,
    .exp-timeline,
    .projects-grid {
        flex-direction: column;
        gap: 25px;
    }

    .edu-item,
    .exp-item,
    .project-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .edu-logo,
    .exp-logo,
    .project-card img {
        width: 100px;
        height: 100px;
    }

    .contact-side {
        flex-direction: column;
        gap: 20px;
    }

    .contact-form {
        width: 100%;
    }

    .projects-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .project-card {
        flex: 1 1 100%;
        min-width: auto;
    }
}

/* Medium devices (tablets, max-width: 900px) */
@media (max-width: 900px) {
    .hero {
        padding: 100px 30px;
    }

    .hero-text h2 {
        font-size: 3rem;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-image img {
        width: 300px;
        height: 300px;
    }

    .about-container {
        flex-direction: column;
    }

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

    .projects-grid {
        flex-wrap: wrap;
    }
    
    .project-card {
        flex: 1 1 calc(50% - 15px);
    }

    .edu-item,
    .exp-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .edu-logo,
    .exp-logo {
        width: 100px;
        height: 100px;
    }

    .contact-side {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-form {
        max-width: none;
    }

    .contact-cards {
        max-width: none;
        align-items: stretch;
    }

    .contact-area,
    .contact-link {
        max-width: none;
    }
}

/* Large devices (laptops/desktops, max-width: 1200px) */
@media (max-width: 1200px) {
    .hero {
        padding: 100px 40px;
    }

    .hero-text h2 {
        font-size: 3.2rem;
    }

    .hero-image img {
        width: 320px;
        height: 320px;
    }

    .about {
        padding: 70px 8%;
    }

    .projects-grid {
        flex-wrap: wrap;
    }
    
    .project-card {
        flex: 1 1 calc(33.333% - 20px);
    }
}