@media (max-width: 768px) {
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #000000;
    color: #ffffff;
    text-align: center;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background: #161b22;
    position: fixed;
    width: 98%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding-top: 0px;
}

/* Mobile view */

  .menu-toggle {
    display: block;
    margin-right: 8px;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    flex-direction: column;
    background: #222;
    display: none;
    padding: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #06cb6b;
}

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    background-size: contain;
    color: #06cb6b;
    text-align: center;
    flex-direction: column;
    padding: 30px 20px;
}

h1 {
    color: #06cb6b;
}

.hero img {
    width: 200px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 10px;
    margin-top: 80px;
    transition: transform 0.3s;
}

.hero img:hover {
    transform: scale(1.15);
}

.hero-content h1 {
    font-size: 20px;
    margin: 20px 0;
}

.hero-content .highlight {
    color: #06cb6b;
}

.btn {
    background: #06cb6b;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 60px;
    margin-bottom: 10px;
    transition: background 0.3s;
}

.btn:hover {
    background: #067e0e;
}

.cursor {
    width: 10px;
    height: 10px;
    background: #06cb6b;
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.1s ease-out;
    z-index: 9999;
}

@keyframes cursorGlow {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* About Section */
.about {
    background-color: #000000;
    min-height: auto;
    padding: 80px 20px;
    padding-bottom: 20px;
    margin-bottom: 0;
}

.about img {
    width: 150px;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 25px;
}

.left-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-links {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.social-links a img {
    width: 15px;
    height: auto;
    transition: transform 0.3s ease;
}

.social-links a img:hover {
    transform: scale(1.2);
}

.vertical-divider {
    width: 3px;
    height: 240px;
    background-color: #06cb6b;
    margin-top: 20px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 6px;
    margin-bottom: auto;
    margin-top: 20px;
    color: #06cb6b;
}

.about-text h4 p {
    color: #06cb6b;
    margin-right: auto;
    font-size: 6px;
    margin-top: 5px;
}

.about-text h3 b {
    color: #c9ecd7;
}

.about-text h4 b {
    color: #06cb6b;
    font-size: 8px;
    margin-right: auto;
}

/* Project Section */
.Experience {
    background-color: #000000;
    min-height: auto;
    padding: 60px 20px;
    padding-top: 20px;
    margin-top: 0;
}

.project-grid {
    height: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 130px));
    gap: 15px;
    justify-content: center;
    margin-top: 50px;
}

.project-card {
    background: #06cb6b;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.project-card h3 {
    font-size: 15px;
}

.project-card p {
    font-size: 7px;
}

.project-card:hover {
    transform: scale(1.05);
}

.project-card img {
    width: 80%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Contact Section */
.contact {
    text-align: center;
    padding: 50px 20px;
    background: #000000;
}

.contact-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.contact-note {
    flex: 1;
}

.contact-note h1 {
    font-size: 30px;
    margin-bottom: 22px;
    color: #06cb6b;
    margin-top: 20px;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.contact-form label {
    text-align: left;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid #06cb6b;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form textarea {
    resize: none;
}

.contact-form button {
    background: #06cb6b;
    color: white;
    padding: 10px 15px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #067e0e;
}

html {
    scroll-padding-top: 100px;
}

@keyframes floatEffect {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.logo {
    animation: floatEffect 3s infinite ease-in-out;
}

.parallax {
    background: url('your-image.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}
}
