/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3 {
    margin-bottom: 20px;
}




/* Animated Gradient */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: white;
    padding: 20px;
    background: linear-gradient(-45deg, #34a853, #4285f4, #fbbc05, #ea4335);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background-color: #ffd700;
    color: #333;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: #ffc107;
    transform: scale(1.1);
}








/* About Section */
.about {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}



/* About Section */
.about {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}










/* Projects Section */
.projects {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

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

.project-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.project-item img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.project-item h3 {
    font-size: 1.5rem;
    margin: 15px 0;
}

.project-item p {
    padding: 0 15px;
    font-size: 1rem;
    color: #555;
}

.project-link {
    display: block;
    background-color: #4285f4;
    color: white;
    padding: 10px;
    font-weight: bold;
    border-radius: 0 0 10px 10px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.project-link:hover {
    background-color: #3367d6;
}





/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

.navbar-menu li {
    display: inline;
}

.navbar-menu a {
    text-decoration: none;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.navbar-toggler {
    display: none; /* Hide the hamburger by default */
    background: none;
    border: none;
    font-size: 30px;
    color: #333;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .navbar-menu {
        display: none; /* Hide the menu items by default */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px; /* Position the menu below the navbar */
        left: 0;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .navbar-menu.show {
        display: flex; /* Show the menu items when toggled */
    }

    .navbar-toggler {
        display: block; /* Show the hamburger icon on small screens */
    }
}













/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #ccc;
}

footer .social-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

footer .social-links li {
    display: inline-block;
}

footer .social-links a {
    color: #ffd700;
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

footer .social-links a:hover {
    color: #fff;
    transform: scale(1.1);
}

footer span {
    color: #ffd700;
    font-weight: bold;
}












































/* Hero Section for About Page */
.hero-about {
    text-align: center;
    padding: 20px 10px;
    background: rgba(0, 0, 0, 0.6); /* Slightly transparent for subtle effect */
    border-radius: 8px;
    margin-bottom: 30px;
    color: white;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.hero-about h1 {
    font-size: 2rem; /* Smaller font size than home page */
    margin-bottom: 10px;
    color: #ffd700;
}

.hero-about p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 800px; /* Limit width for better readability */
}




/* General Page Layout */
.about-page {
    padding: 60px 20px;
    background: linear-gradient(-45deg, #34a853, #4285f4, #fbbc05, #ea4335);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
}

/* Two-Column Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Equal columns */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Left Column: About Content */
.about-left {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: white;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: space-between; /* Spread content evenly */
}

.about-left h2, .about-left h3 {
    color: #ffd700;
    font-size: 1.8rem;
}

.about-left p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.skills-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skills-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.skill-icon {
    margin-right: 10px;
    font-size: 1.5rem;
}

.fun-facts {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
}

.fun-facts li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Right Column: Timeline */
.timeline {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: white;
    display: flex;
    flex-direction: column; /* Stack timeline items */
    justify-content: space-between; /* Spread timeline items evenly */
}

.timeline-container {
    position: relative;
    padding: 20px 0;
    border-left: 4px solid rgba(255, 255, 255, 0.5); /* Vertical timeline line */
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Adjust Marker and Content for Timeline */
.marker {
    position: absolute;
    top: 0;
    left: -12px;
    width: 20px;
    height: 20px;
    background-color: #ffd700;
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.timeline-item .content {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
    }

    .about-left, .timeline {
        justify-content: flex-start; /* Align content at the top */
    }
}


/* Call-to-Action Section at the Bottom */
.cta-bottom {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cta-bottom p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}

.cta-bottom .cta-button {
    display: inline-block;
    background-color: #ffd700;
    color: #333;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.cta-bottom .cta-button:hover {
    background-color: #ffc107;
    transform: scale(1.1);
}


/* Call-to-Action Button */
.cta p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.cta-button {
    display: inline-block;
    background-color: #ffd700;
    color: #333;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: #ffc107;
    transform: scale(1.1);
}





























/* Resume Page Background and Layout */
.resume-page {
    padding: 40px 20px;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(-45deg, #34a853, #4285f4, #fbbc05, #ea4335);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
}

/* Header Section */
.resume-header {
    text-align: center;
    margin-bottom: 40px;
    color: white;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Box shadow */
}

/* Section Styling */
.resume-section {
    margin-bottom: 40px;
    background: rgba(0, 0, 0, 0.6); /* Dark semi-transparent background */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Box shadow for sections */
}

.resume-section h2 {
    font-size: 1.8rem;
    color: #ffd700; /* Golden headings for contrast */
    margin-bottom: 10px;
}

/* Interactive Boxes */
.interactive-box {
    background: rgba(0, 0, 0, 0.5); /* Dark semi-transparent background */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Consistent box shadow */
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.interactive-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4); /* Enhanced shadow on hover */
}

/* Text Styling */
.resume-section p,
.resume-section ul li,
.interactive-box h3,
.interactive-box p {
    color: white; /* Regular text is white */
    font-size: 1rem;
    line-height: 1.6;
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

/* Skills Section */
.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.skill-item {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    border-radius: 6px;
    color: white;
    font-size: 1rem;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Shadow for skills */
}

.skill-item:hover {
    background: #ffd700;
    color: black;
    transform: scale(1.1);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .resume-header p {
        font-size: 0.9rem;
    }

    .resume-section h2 {
        font-size: 1.5rem;
    }

    ul li {
        font-size: 0.9rem;
    }
}



















/* Projects Page Background and Layout */
.projects-page {
    padding: 40px 20px;
    width: 100%;
    min-height: 100vh; /* Ensure it fills the full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content to the top */
    background: linear-gradient(-45deg, #34a853, #4285f4, #fbbc05, #ea4335);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
}

/* Header Section */
.projects-header {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.projects-header h1 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.projects-header p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 800px;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px;
    width: 100%;
    align-items: start; /* Ensure items align at the top */
    padding-bottom: 20px;
}

/* Project Card */
.project-card {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto; /* Allow proportional sizing */
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.project-card h2 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.project-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

/* Project Button */
.project-button {
    display: inline-block;
    background-color: #ffd700;
    color: black;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.project-button:hover {
    background-color: #ffc107;
    transform: scale(1.1);
}

/* Remove White Space from Body and HTML */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .projects-header h1 {
        font-size: 2rem;
    }

    .projects-header p {
        font-size: 1rem;
    }

    .project-card h2 {
        font-size: 1.2rem;
    }

    .project-card p {
        font-size: 0.9rem;
    }
}



















/* Contact Page Background and Layout */
.contact-page {
    padding: 40px 20px;
    width: 100%;
    min-height: 100vh; /* Full-screen height */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    background: linear-gradient(-45deg, #34a853, #4285f4, #fbbc05, #ea4335);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
}

/* Contact Page Header */
.contact-header {
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 2.5rem; /* Adjust the size for header */
    color: #ffd700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Added shadow */
}

.contact-header p {
    font-size: 1.5rem; /* Reduce the size for description */
    line-height: 1.8;
    margin: 0 auto;
    max-width: 800px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Added shadow */
}

/* Contact Information Section */
.contact-info {
    text-align: center;
    margin-top: 40px;
    color: white;
}

.contact-info h3 {
    font-size: 2.5rem; /* Larger font size */
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Added shadow */
}

.contact-info p {
    font-size: 1.5rem; /* Larger font size */
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Added shadow */
}

.contact-info a {
    color: #ffd700;
    font-weight: bold;
    font-size: 1.5rem; /* Larger font size for links */
    text-decoration: none;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Added shadow */
}

.contact-info a:hover {
    color: #ffc107;
    transform: scale(1.05);
}

/* Contact Form Section */
.contact-form {
    text-align: left; /* Align labels and inputs to the left */
    margin-top: 40px;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 600px; /* Adjust form width */
}

.contact-form h3 {
    font-size: 2rem; /* Adjust the size for form title */
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Added shadow */
}

.contact-form label {
    display: block;
    font-size: 1.1rem;
    color: white;
    margin-top: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Added shadow */
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem; /* Adjust font size for input fields */
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #4285f4; /* Highlight with blue on focus */
    outline: none;
}

.contact-form button {
    margin-top: 20px;
    background-color: #ffd700;
    color: black;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2rem; /* Larger font size */
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Added shadow */
}

.contact-form button:hover {
    background-color: #ffc107;
    transform: scale(1.1);
}

/* Hero Section Background Animation */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Layout for Mobile */
@media screen and (max-width: 768px) {
    .contact-info a {
        font-size: 1.2rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 1rem;
    }

    .contact-form button {
        font-size: 1.1rem;
    }

    .contact-header h2 {
        font-size: 2rem; /* Adjust for smaller screens */
    }

    .contact-header p {
        font-size: 1.2rem;
    }
}













