/* Apply the Inter font to the whole page */
        body {
            font-family: 'Inter', sans-serif;
            overflow-x: hidden; /* Hide horizontal scrollbar */
        }


/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/
#nav-links{
    display: flex;
    border: 500;
}
#nav-links li {
    margin-left: 2rem; /* space-x-8 */
}

#nav-links a {
    color: #6b7280; /* text-gray-500 */
    transition: color 0.2s ease-in-out;
}

#nav-links a:hover {
    color: #2563eb; /* hover:text-blue-600 */
}

/* This is the ACTIVE state for the nav link */
#nav-links a.active {
    font-weight: 700; /* font-bold */
    color: #2563eb; /* text-blue-600 */
    border-bottom: 2px solid #2563eb; /* border-b-2 border-blue-600 */
    padding-bottom: 0.25rem; /* pb-1 */
}


/*--------------------------------------------------------------
# Content Section
--------------------------------------------------------------*/

.content-section {
    min-height: 100vh;
    padding: 3rem; /* p-12 */
}

.content-section h2 {
    font-size: 3rem; /* text-5xl */
    font-weight: 900; /* font-black */
    text-align: center;
}

.content-section.alt-bg {
    background-color: #f9fafb; /* bg-gray-50 */
}



/*--------------------------------------------------------------
# Home Section
--------------------------------------------------------------*/

.social-icons {
    display: flex;
    margin-top: 2.5rem; /* mt-10 */
}

.icon-link {
    width: 3rem; /* w-12 */
    height: 3rem; /* h-12 */
    background-color: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem; /* text-xl */
    margin-right: 1rem; /* space-x-4 */
    transition: background-color 0.2s ease-in-out;
}

.icon-link:hover {
    background-color: #1f2937; /* hover:bg-gray-800 */
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-background-circle {
    width: 450px;
    height: 450px;
    background-color: #facc15; /* bg-yellow-400 */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
}

.image-background-circle img {
    border-radius: 50%;
    border: 8px solid #ffffff;
}




/*--------------------------------------------------------------
# About me
--------------------------------------------------------------*/

.section-title {
    font-size: 3rem; 
    font-weight: 900; 
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    color: #1f2937; /* Dark title text */
}

.section-title i {
    color: #1f2937; /* Dark icon to match text */
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1000px; 
    margin: 0 auto; /* Centers the content */
}

.about-image img {
    width: 300px;
    border-radius: 1.5rem; /* 24px */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: filter 0.3s ease;
}

.about-image img:hover {
    filter: grayscale(0%);
}

.about-text {
    flex: 1; 
    max-width: 500px;
}

.about-text h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.about-text .subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    color: #6b7280; /* gray */
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151; /* slightly lighter text */
    margin-bottom: 1rem;
}

/* This is the new class for the blue labels */
.info-label {
    color: #2563eb; /* A nice blue */
    font-weight: 700; /* bold */
}

.resume-button {
    display: inline-block;
    background-color: #4f46e5; /* indigo-600 */
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.resume-button:hover {
    background-color: #4338ca; /* indigo-700 */
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skill-category-box {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 0.5rem; /* 8px */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.skill-category-title {
    font-size: 1.75rem; /* 28px */
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937; /* gray-800 */
}

.skill-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.5rem; /* More space between logos */
}

.skill-logos img {
    height: 56px; /* 3.5rem */
    width: auto;
    object-fit: contain;
}





/*--------------------------------------------------------------
# Education Section
--------------------------------------------------------------*/
.education-card {
    background-color: #ffffff;
    border-radius: 0.75rem; 
    padding: 2rem; 
    margin-bottom: 2.5rem; 
    display: flex;
    flex-direction: column; /* Start as column for mobile */
    align-items: center;
    /* This creates the nice shadow from the image */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

/* On medium screens and up, switch to row */
@media (min-width: 768px) {
    .education-card {
        flex-direction: row;
    }
}

/* This is the style for the main green degree title */
.education-title {
    font-size: 1.5rem; 
    font-weight: 700; 
    color: #006400; 
}

/* This is the style for the green "Pursuing" text */
.education-status-pursuing {
    font-weight: 600; 
    color: #16a34a; 
}

/* This is the style for the gray "Completed" text */
.education-status-completed {
    font-weight: 600; 
    color: #4b5563; 
}






/*--------------------------------------------------------------
# Experience Section
--------------------------------------------------------------*/

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

/* The vertical line */
.timeline-line {
    position: absolute;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: #4f46e5; /* Indigo */
    transform: translateX(-50%);
}

/* Each item (row) in the timeline */
.timeline-item {
    padding: 1rem 0;
    position: relative;
}

/* The orange content box */
.timeline-content {
    position: relative;
    width: 45%;
    padding: 1.5rem;
    background-color: #f97316; /* Tailwind orange-500 */
    color: white;
    border-radius: 0.5rem; /* 8px */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

/* Alternating sides */
.timeline-item:nth-child(odd) .timeline-content {
    left: 0;
    margin-left: 2.5%; /* Small gap from center */
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    left: 52.5%; /* 50% + 2.5% gap */
    text-align: left;
}

/* The circular icon on the line */
.timeline-icon {
    position: absolute;
    left: 50%;
    top: 1.5rem;
    width: 2.5rem; /* 40px */
    height: 2.5rem; /* 40px */
    background-color: #4f46e5; /* Indigo */
    border: 4px solid #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Triangle arrows pointing to the line (optional but nice) */
.timeline-content::after {
    content: '';
    position: absolute;
    top: 1.8rem;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    right: -10px;
    border-left: 10px solid #f97316;
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -10px;
    border-right: 10px solid #f97316;
}

/* Responsive: Stack on small screens */
@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }
    .timeline-item .timeline-content {
        width: 85%;
        left: 15%; /* 20px line + 20px gap */
        text-align: left;
    }
    .timeline-item:nth-child(odd) .timeline-content {
        left: 15%;
        text-align: left;
    }
    .timeline-item:nth-child(even) .timeline-content {
        left: 15%;
    }
    .timeline-icon {
        left: 20px;
    }
    .timeline-item:nth-child(odd) .timeline-content::after {
        left: -10px;
        border-right: 10px solid #f97316;
        border-left: 0;
    }
}


/*--------------------------------------------------------------
# Contact Section 
--------------------------------------------------------------*/
.contact-card {
    background-color: #fff;
    border-radius: 0.75rem; /* 12px */
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
    .contact-card {
        flex-direction: row;
        padding: 3rem;
    }
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280; /* gray-500 */
}

.form-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem; /* Left padding for icon */
    border: 1px solid #d1d5db; /* gray-300 */
    border-radius: 0.5rem; /* 8px */
    background-color: #f9fafb; /* gray-50 */
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
    outline: none;
    border-color: #4f46e5; /* indigo-600 */
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.3);
}


/*--------------------------------------------------------------
# Footer 
--------------------------------------------------------------*/
.footer-container {
    background-color: #0d0d2b; /* Very dark navy */
    color: #d1d5db; /* gray-300 */
    padding: 4rem 2rem 1rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}
/* Responsive grid for medium screens and up */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-col h3 {
    font-size: 1.25rem; /* 20px */
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #9ca3af; /* gray-400 */
}

/* Quick Links column */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.75rem;
}
.footer-links a {
    color: #9ca3af; /* gray-400 */
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    display: flex;
    align-items: center;
}
.footer-links a:hover {
    color: #fff;
    padding-left: 0.5rem;
}
.footer-links .fas {
    margin-right: 0.5rem;
    width: 16px;
}

/* Contact Info column */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #9ca3af; /* gray-400 */
}
.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.contact-info .fas {
    margin-right: 0.75rem;
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

/* Social media icons */
.footer-social-links {
    display: flex;
    gap: 0.75rem; /* 12px */
    margin-top: 1.5rem;
}
.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem; /* 40px */
    height: 2.5rem; /* 40px */
    background-color: #fff;
    color: #0d0d2b;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.2s, color 0.2s;
}
.footer-social-links a:hover {
    background-color: #4f46e5; /* indigo-600 */
    color: #fff;
}

/* Bottom bar ("Designed by...") */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151; /* gray-700 */
    color: #9ca3af; /* gray-400 */
    font-size: 0.9rem;
}
.footer-bottom a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}
