/* Base Styles */
:root {
    --primary-color: #00a8ff; /* Glowing blue */
    --primary-glow: 0 0 10px #00a8ff, 0 0 20px #00a8ff, 0 0 30px #00a8ff;
    --primary-dark: #0084c8;
    --secondary-color: #a0a9b1;
    --dark-color: #e0e0e0;
    --light-color: #050505;
    --success-color: #ffcc00; /* Glowing yellow */
    --success-glow: 0 0 10px #ffcc00, 0 0 20px #ffcc00;
    --danger-color: #ff3366; /* Glowing red */
    --danger-glow: 0 0 10px #ff3366, 0 0 20px #ff3366;
    --white: #0c0c0c;
    --true-white: #ffffff;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
    --transition: all 0.3s ease;
    --card-bg: #111111;
    --section-bg: #0a0a0a;
    --border-color: #222222;
    --neon-text-shadow: 0 0 5px rgba(0, 168, 255, 0.7), 0 0 10px rgba(0, 168, 255, 0.5);
    /* --yellow-text-shadow: 0 0 5px rgba(255, 204, 0, 0.7), 0 0 10px rgba(255, 204, 0, 0.5); */
    /* --red-text-shadow: 0 0 5px rgba(255, 51, 102, 0.7), 0 0 10px rgba(255, 51, 102, 0.5); */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #030303; /* Darker background */
}

a {
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    font-size: 32px;
    font-weight: 700;
    color: var(--true-white);
    text-shadow: var(--neon-text-shadow);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
    box-shadow: var(--primary-glow);
}

section {
    padding: 100px 0;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    border: none;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--true-white);
    box-shadow: 0 0 10px rgba(0, 168, 255, 0.5);
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--primary-glow);
}

.secondary-btn {
    background-color: transparent;
    color: var(--success-color);
    border: 2px solid var(--success-color);
    box-shadow: 0 0 5px rgba(255, 204, 0, 0.3);
}

.secondary-btn:hover {
    background-color: var(--success-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--success-glow);
}

/* Navbar Styles */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(3, 3, 3, 0.9);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 168, 255, 0.2);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

#navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    text-shadow: var(--neon-text-shadow);
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    box-shadow: var(--primary-glow);
    transition: var(--transition);
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(0, 168, 255, 0.5);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: radial-gradient(circle at center, rgba(0, 168, 255, 0.1) 0%, rgba(3, 3, 3, 1) 70%);
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--true-white);
    text-shadow: var(--neon-text-shadow);
}

.hero-content h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--danger-color);
    text-shadow: var(--red-text-shadow);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    text-align: center;
}

.image-container {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 168, 255, 0.5);
    margin: 0 auto;
    border: 2px solid var(--primary-color);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--success-color);
    text-shadow: var(--yellow-text-shadow);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
}

.personal-info {
    margin: 30px 0;
}

.info-item {
    display: flex;
    margin-bottom: 10px;
}

.info-label {
    min-width: 120px;
    font-weight: 600;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--true-white);
    font-size: 18px;
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(0, 168, 255, 0.3);
}

.social-links a:hover {
    transform: translateY(-3px);
    background-color: var(--primary-dark);
    box-shadow: var(--primary-glow);
}

/* Projects Section Styling */
#projects {
    background-color: #080808;
    padding: 80px 0;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background-color: #0d0d0d;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 168, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 168, 255, 0.3);
    border: 1px solid rgba(0, 168, 255, 0.3);
}

.project-img {
    height: 200px;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.project-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--danger-color);
    text-shadow: var(--red-text-shadow);
}

.project-info p {
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.5;
}

.project-skills {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    gap: 8px;
}

.project-skills span {
    background-color: rgba(255, 51, 102, 0.1);
    color: var(--danger-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 0 5px rgba(255, 51, 102, 0.1);
}

.project-links {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: var(--true-white);
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 168, 255, 0.3);
}

.btn:hover {
    background-color: var(--primary-dark);
    box-shadow: var(--primary-glow);
}

.btn-details {
    background-color: transparent;
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

.btn-details:hover {
    background-color: rgba(255, 204, 0, 0.1);
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background-color: #0d0d0d;
    margin: 10% auto;
    padding: 30px;
    border-radius: 8px;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 0 30px rgba(255, 51, 102, 0.3);
    position: relative;
    transform: translateY(-30px);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 51, 102, 0.2);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #888;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--true-white);
    text-shadow: 0 0 5px rgba(255, 51, 102, 0.7);
}

.modal-project-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--danger-color);
    text-shadow: var(--red-text-shadow);
}

.modal-project-description {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 25px;
}

.modal-project-skills {
    margin: 20px 0;
}

.modal-project-skills h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--true-white);
    text-shadow: var(--red-text-shadow);
}

.modal-project-link {
    margin-top: 20px;
}

.modal-project-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--success-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.modal-project-link a:hover {
    color: var(--success-color);
    text-decoration: underline;
    text-shadow: var(--yellow-text-shadow);
}

/* Skills Section */
.skills {
    background-color: #030303;
}

.skills-category {
    margin-bottom: 40px;
}

.skills-category h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--danger-color);
    position: relative;
    padding-left: 15px;
    text-shadow: var(--red-text-shadow);
}

.skills-category h3:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 20px;
    background-color: var(--danger-color);
    border-radius: 3px;
    box-shadow: var(--danger-glow);
}

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

.skill-item {
    background-color: #0d0d0d;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 168, 255, 0.1);
}

.skill-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 51, 102, 0.1);
    color: var(--true-white);
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.3);
    border: 1px solid rgba(255, 51, 102, 0.3);
}

.skill-item i {
    font-size: 30px;
    margin-bottom: 10px;
    color: var(--success-color);
    transition: var(--transition);
}

.skill-item:hover i {
    color: var(--success-color);
    text-shadow: var(--success-glow);
}

.skill-item span {
    font-size: 14px;
    font-weight: 500;
}

/* Experience Section */
.experience {
    background-color: #080808;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 10px;
    height: calc(100% - 20px);
    width: 2px;
    background-color: var(--danger-color);
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.5);
}

.timeline-item {
    padding-left: 60px;
    position: relative;
    margin-bottom: 50px;
}

.timeline-dot {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #0d0d0d;
    border: 3px solid var(--danger-color);
    z-index: 1;
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.7);
}

.timeline-date {
    font-weight: 600;
    color: var(--success-color);
    margin-bottom: 10px;
    text-shadow: var(--yellow-text-shadow);
}

.timeline-content {
    background-color: #0d0d0d;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--danger-color);
    text-shadow: var(--red-text-shadow);
}

.timeline-content h4 {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.timeline-content ul {
    list-style-type: disc;
    padding-left: 20px;
    color: var(--dark-color);
}

.timeline-content ul li {
    margin-bottom: 8px;
}

/* Education Section */
.education {
    background-color: #030303;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.education-item {
    display: flex;
    background-color: #0d0d0d;
    border-radius: 10px;
    padding: 25px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 168, 255, 0.1);
}

.education-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 168, 255, 0.3);
    border: 1px solid rgba(0, 168, 255, 0.3);
}

.education-icon {
    margin-right: 20px;
}

.education-icon i {
    font-size: 40px;
    color: var(--primary-color);
    text-shadow: var(--neon-text-shadow);
}

.education-details h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--success-color);
    text-shadow: var(--yellow-text-shadow);
}

.education-details .institution {
    font-weight: 500;
    margin-bottom: 5px;
}

.education-details .location {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.education-details .years {
    font-weight: 600;
    color: var(--primary-color);
    text-shadow: var(--neon-text-shadow);
}

/* Certifications Section */
.certifications {
    background-color: #080808;
}

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

.cert-item {
    background-color: #0d0d0d;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 204, 0, 0.1);
}

.cert-header {
    display: flex;
    padding: 20px;
    background-color: rgba(255, 204, 0, 0.05);
}

.cert-icon {
    margin-right: 20px;
}

.cert-icon i {
    font-size: 40px;
    color: var(--success-color);
    text-shadow: var(--yellow-text-shadow);
}

.cert-title h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--success-color);
    text-shadow: var(--yellow-text-shadow);
}

.cert-title p {
    color: var(--secondary-color);
}

.cert-title .cert-date {
    font-weight: 600;
    color: var(--success-color);
    margin-top: 5px;
    text-shadow: var(--yellow-text-shadow);
}

.cert-details {
    padding: 20px;
}

.cert-details h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--danger-color);
    text-shadow: var(--red-text-shadow);
}

.cert-details ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.cert-details ul li {
    margin-bottom: 8px;
}

.tools-used {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tools-used span {
    padding: 5px 15px;
    background-color: rgba(255, 204, 0, 0.1);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--success-color);
    box-shadow: 0 0 5px rgba(255, 204, 0, 0.1);
}

/* Achievements Section */
.achievements {
    background-color: #030303;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.achievement-item {
    background-color: #0d0d0d;
    border-radius: 10px;
    padding: 30px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    text-align: center;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.3);
    border: 1px solid rgba(255, 51, 102, 0.3);
}

.achievement-icon {
    margin-bottom: 20px;
}

.achievement-icon i {
    font-size: 40px;
    color: var(--danger-color);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 51, 102, 0.05);
    text-shadow: var(--red-text-shadow);
}

.achievement-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--danger-color);
    text-shadow: var(--red-text-shadow);
}

.achievement-item p {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Contact Section */
.contact {
    background-color: #080808;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--success-color);
    text-shadow: var(--yellow-text-shadow);
}

.contact-info > p {
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 204, 0, 0.1);
    color: var(--success-color);
    font-size: 20px;
    margin-right: 15px;
    text-shadow: var(--yellow-text-shadow);
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--success-color);
    text-shadow: var(--yellow-text-shadow);
}

.contact-item p a {
    color: var(--secondary-color);
}

.contact-item p a:hover {
    color: var(--success-color);
    text-shadow: var(--yellow-text-shadow);
}

.contact-form {
    background-color: #0d0d0d;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #333333;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background-color: #0a0a0a;
    color: var(--dark-color);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--danger-color);
    outline: none;
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.3);
}

/* Footer */
.footer {
    background-color: #020202;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 168, 255, 0.1);
}

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

.footer-nav {
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
}


@media (max-width: 576px) {
    section {
        padding: 70px 0;
    }

    .hero-content h1 {
        font-size: 30px;
    }

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

    .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .about-text h3 {
        font-size: 24px;
    }

    .achievement-item {
        padding: 20px;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-item i {
        margin-bottom: 10px;
        margin-right: 0;
    }
}
/* Add this to your existing CSS */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(3, 3, 3, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Hero Section */
    .hero {
        height: auto;
        padding: 120px 0 60px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content h2 {
        font-size: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .image-container {
        width: 250px;
        height: 250px;
    }

    /* Skills Section */
    .skills-grid {
        grid-template-columns: 1fr;
    }

    /* Experience Section */
    .timeline::before {
        left: 10px;
    }

    .timeline-item {
        padding-left: 40px;
    }

    .timeline-date {
        font-size: 14px;
    }

    .timeline-content {
        padding: 15px;
    }

    /* Projects Section */
    .project-grid {
        grid-template-columns: 1fr;
    }

    .project-img {
        height: 180px;
    }

    /* Education Section */
    .education-item {
        flex-direction: column;
        text-align: center;
    }

    .education-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        margin-top: 20px;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content h2 {
        font-size: 18px;
    }

    .section-title {
        font-size: 24px;
    }

    .about-text h3 {
        font-size: 22px;
    }

    .timeline-content h3 {
        font-size: 18px;
    }

    .modal-content {
        width: 90%;
        padding: 20px;
    }
}