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

:root {
            --bg-color: #f7f8fa;
            --card-bg: #ffffff;
            --text-primary: #1a202c;
            --text-secondary: #4a5568;
            --border-color: #e2e8f0;
            --accent-color: #3b82f6; /* A nice blue for accent */
            --accent-light: #eff6ff;
        }


body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    overflow-x: hidden;
    
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a9b8e;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4a9b8e;
}

.nav-links a:focus,
.btn:focus {
    outline: 2px solid #4a9b8e;
    outline-offset: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/*

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-text .description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.8;
}

.hero-image {
    text-align: center;
    position: relative;
}

.profile-container {
    position: relative;
    display: inline-block;
}

.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}

.floating-badges {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #3b82f6;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: floatBadge 6s ease-in-out infinite;
}

.badge:nth-child(1) {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.badge:nth-child(2) {
    bottom: 20%;
    left: -15%;
    animation-delay: 2s;
}

.badge:nth-child(3) {
    top: 60%;
    right: -5%;
    animation-delay: 4s;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

*/

#hero {

    color: #1a202c;
    /* Dark text for contrast */
    overflow: hidden;
    padding: 6rem 1rem;
}

#hero .container {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

/* Left Column: Text Content */
#hero .hero-text {
    max-width: 38rem;
    z-index: 10;
}

#hero .greeting {
    color: #2d3748;
    /* A nice, professional blue */
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

#hero .name {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

/* Style for the typing effect */
#hero .typing-effect {
    font-size: 1.25rem;
    font-weight: 500;
    color: #475569;
    /* A softer gray */
    margin-bottom: 1.5rem;
    height: 2.25rem;
    /* Reserve space to prevent layout shift */
}

#hero .typing-effect .cursor {
    display: inline-block;
    width: 3px;
    height: 1.75rem;
    background-color: #475569;
    animation: blink 1s infinite;
    vertical-align: bottom;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

#hero.hero-text .description {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* Action Buttons */
#hero .actions {
    display: flex;
    gap: 1rem;
}

#hero .btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

#hero .btn-primary {
    background-color: #2563eb;
    color: #ffffff;
}

#hero .btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Right Column: Image and Animated Tags */
#hero .hero-image-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero .profile-picture {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 5px solid #ffffff;
    object-fit: cover;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Orbiting Skill Tags */
#hero .skill-tag {
    position: absolute;
    background: #ffffff;
    color: #475569;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    animation: orbit 15s linear infinite;
}

#hero .tag-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -10s;
}

#hero .tag-2 {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: -5s;
}

#hero .tag-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

#hero .tag-4 {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: -12s;
    animation-duration: 12s;
}


@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(160px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(160px) rotate(-360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    #hero .name {
        font-size: 3.5rem;
    }

    #hero .hero-image-wrapper {
        transform: scale(0.85);
    }
}

@media (max-width: 768px) {
    #hero .container {
        flex-direction: column-reverse;
        /* Image on top on mobile */
        text-align: center;
    }

    #hero .actions {
        justify-content: center;
    }

    #hero .hero-image-wrapper {
        margin-bottom: 3rem;
    }
}

/* Section Styles */
.section {
    padding: 5rem 0;
    background: white;
}

.section:nth-child(even) {
    background: #ffffff;
}

.section:nth-child(odd) {
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2d3748;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #4a9b8e, #2c5282);
    border-radius: 2px;
}

/* Education Section */
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.education-card {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #4a9b8e;
    border-bottom: 5px solid #2c5282;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-card:nth-child(even) {
    border-left: 5px solid #2c5282;
    border-bottom: 5px solid #4a9b8e;
}

.education-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.education-card h3 {
    color: #284b63;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.education-card .institution {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.education-card .year {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    background: #2c5282;
    color: white;
    padding: 8px;
    margin: 16px 0;
    border-radius: 50px;
}

.year {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.education-type {
    background-color: #e0f2fe;
    padding: 4px 16px;
    border-top-right-radius: 15px;

    position: absolute;
    top: 0;
    right: 0;
    color: #0369a1;
}

.education-type.certification{
    background-color: #fef3c7;
     color: #92400e;
}
.education-card .details {
    color: #4a5568;
    line-height: 1.6;
}

.education-card .details strong {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 8px;
    color: #2c5282;
    font-weight: 700;
}

/* Main Container for this section */
#experience .container {
    max-width: 56rem;
    /* 896px */
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    /* Adjust padding as needed */
}

/* Section Title (assuming you have a global .section-title style) */
#experience .section-title {
    font-size: 2.25rem;
    /* 36px */
    font-weight: 700;
    color: #111827;
    /* gray-900 */
    margin-bottom: 3rem;
    /* 48px */
    text-align: center;
}

/* Spacing between company blocks */
#experience .experience-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* 48px */
}

/* Container for a single company's experience block */
#experience .company-block {
    position: relative;
    padding-left: 3.5rem;
    /* 56px */
}

/* The main vertical line connecting all roles within a company */
#experience .company-block::before {
    content: '';
    position: absolute;
    left: 18px;
    /* Aligns with the center of the logo */
    top: 44px;
    /* Starts just below the company logo */
    bottom: 1rem;
    /* 16px */
    width: 2px;
    background-color: #e2e8f0;
    /* slate-200 */
}

/* Company Header (Logo + Name) */
#experience .company-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    /* 16px */
    margin-bottom: 1.5rem;
    /* 24px */
}

#experience .company-logo {
    width: 44px;
    height: 44px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    /* 20px */
    outline: 4px solid #f8fafc;
    /* Use your page's background color */
}

#experience .company-logo img{
    width: 44px;
    height: 44px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    /* 20px */
    outline: 4px solid #f8fafc;
    /* Use your page's background color */
}

#experience .company-name {
    font-size: 1.5rem;
    /* 24px */
    font-weight: 600;
    color: #111827;
    /* gray-900 */
}

#experience .company-name span{
    color: #2c5282;
}

/* List of roles within a company */
#experience .roles-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* 32px */
}

/* Styling for an individual role item */
#experience .role-item {
    position: relative;
}

/* The circle on the timeline for each role */
#experience .role-item::before {
    content: '';
    position: absolute;
    left: -42px;
    top: 8px;
    /* Vertically aligns with the role title */
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cbd5e1;
    /* slate-300 */
    z-index: 1;
}

/* Highlight the circle for the most recent role in a block */
#experience .role-item:first-child::before {
    background: linear-gradient(135deg, #4a9b8e, #2c5282);
    box-shadow: 0 0 0 4px rgba(74, 155, 142, 0.2);
}

#experience .role-title {
    font-size: 1.125rem;
    /* 18px */
    font-weight: 600;
    color: #1f2937;
    /* gray-800 */
}

#experience .role-meta {
    font-size: 0.875rem;
    /* 14px */
    color: #6b7280;
    /* gray-500 */
    margin-bottom: 0.75rem;
    /* 12px */
}

#experience .role-description {
    list-style-type: disc;
    list-style-position: outside;
    color: #4b5563;
    /* gray-600 */
    padding-left: 0.25rem;
    /* 4px */
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    /* 6px */
}

#experience .check-icon {
    color: #16a34a;
    /* green-600 */
    width: 1.1rem;
    height: 1.1rem;
    display: inline-block;
    margin-left: 0.3rem;
    vertical-align: text-bottom;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    #experience .section-title {
        font-size: 1.875rem;
        /* 30px */
    }
}

/* Project temporary CSS */

/* Main Container for this section */
#projects-under-construction .container {
    max-width: 1200px;
    /* 896px */
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    /* Adjust padding as needed */
    text-align: center;

}

/* Section Title (assuming you have a global .section-title style) */
#projects-under-construction .section-title {
    font-size: 2.25rem;
    /* 36px */
    font-weight: 700;
    color: #111827;
    /* gray-900 */
    margin-bottom: 3rem;
    /* 48px */
    text-align: center;
}

/* The main "coming soon" box */
#projects-under-construction .coming-soon-box {
    background-color: white;
    /* slate-50 */
    border: 3px solid #e2e8f0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* slate-200 */
    border-radius: 0.75rem;
    /* 12px */
    padding: 4rem 2rem;
    /* 64px top/bottom, 32px left/right */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    /* 24px */
}

/* Icon styling */
#projects-under-construction .construction-icon, #achievments .construction-icon {
    width: 4rem;
    /* 64px */
    height: 4rem;
    /* 64px */
    color: #f59e0b;
    /* amber-500 */
}

/* Heading inside the box */
#projects-under-construction .coming-soon-title {
    font-size: 1.5rem;
    /* 24px */
    font-weight: 600;
    color: #1f2937;
    /* gray-800 */
}

/* Paragraph text inside the box */
#projects-under-construction .coming-soon-text {
    color: #6b7280;
    /* gray-500 */
    max-width: 36rem;
    /* 576px */
    line-height: 1.6;
}

/* Projects Section */

#projects {
    display: none;
}

/*
.projects-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid #4a9b8e;
    color: #4a9b8e;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
    background: #4a9b8e;
    color: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.project-image {
    height: 200px;
    background: linear-gradient(45deg, #4a9b8e, #2c5282);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.project-content {
    padding: 1.5rem;
}

.project-category {
    background: #4a9b8e;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.project-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.project-description {
    color: #718096;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
}

*/

/* Skills Section */
.skills-section {
            padding: 5rem 1.5rem;
        }

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

        /* Header Styles */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

       

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Skills Grid Layout */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
        }

        /* Skill Card Styles */
        .skill-card {
            background: var(--card-bg);
            padding: 1.5rem 2rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .skill-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
        }

        .skill-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            color: var(--accent-color);
        }

        .skill-card-icon {
            background-color: var(--accent-light);
            border-radius: 8px;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }
        
        .skill-card:hover .skill-card-icon {
             background-color: #dbeafe; /* A slightly darker blue on hover */
        }

        .skill-card-icon svg {
            width: 24px;
            height: 24px;
        }

        .skill-card-title {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        /* Skill Tags/Pills */
        .skills-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            /*/margin-top: auto; /* Pushes tags to the bottom */
        }

        .skill-tag {
            font-family: 'Roboto Mono', monospace;
            background-color: #f1f5f9; /* slate-100 */
            color: #475569; /* slate-600 */
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 500;
            cursor: default;
            transition: background-color 0.2s ease, color 0.2s ease;
        }
        
        .skill-tag:hover {
            background-color: #e2e8f0; /* slate-200 */
            color: #1e293b; /* slate-800 */
        }

/* Achievements */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 5px solid #4a9b8e;
}

.achievement-card:hover {
    transform: translateY(-5px);
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3,
.contact-info h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a9b8e;
}

.btn-primary {
    background: linear-gradient(45deg, #4a9b8e, #2c5282);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(74, 155, 142, 0.3);
}

.contact-info {
    text-align: center;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #4a9b8e;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 3rem 0 1rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #4a9b8e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2c5282;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {

    .hero-content,
    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        /* Consider implementing a hamburger menu */
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-item {
        flex-direction: row !important;
    }

    .timeline-content {
        margin-left: 3rem;
        margin-right: 0;
    }

    .timeline-dot {
        left: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

}

/* Loading Animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #4a9b8e, #2c5282);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}