* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, sans-serif;
}

body, html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: #ffff;
}

body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: url('./assets/background.png');
    background-size: auto 100%;
    background-position: center;
    background-repeat: repeat-x;
}

#background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#model-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 100vh;
    background-color: rgba(26, 42, 58, 0.7);
    z-index: 1;
}

#content-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    overflow: hidden;
    background-color: rgba(26, 42, 58, 0.7);
    z-index: 2;
}
.section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #ffff;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffff;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffff;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.tagline {
    font-size: 1.2rem;
    color: #bdc3c7;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
}

.skill-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.skill-tag:hover {
    transform: scale(1.05);
}
.soft-skill-tag {
    display: inline-block;
    background-color: #179BAE;
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.soft-skill-tag:hover {
    transform: scale(1.05);
}


.experience-item, .education-item, .project {
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.experience-item:hover, .education-item:hover, .project:hover {
    transform: translateY(-5px);
}

.date {
    font-style: italic;
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.project-link {
    display: inline-block;
    margin-right: 1rem;
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #2980b9;
    text-decoration: underline;
}


a {
    color: #3498db; /* Set a base color for all links */
    text-decoration: none; /* Remove underline from links */
    transition: color 0.3s ease, text-decoration 0.3s ease; /* Smooth transition for hover effects */
}

a:hover {
    color: #2980b9; /* Darker shade on hover */
    text-decoration: underline; /* Underline on hover for better visibility */
}

.project-link {
    margin-right: 1rem; /* Space between project links */
    font-weight: bold; /* Make project links bold */
}


#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    background: #3498db;
}

@media (max-width: 768px) {
    #model-container {
        display: none;
    }
    #content-wrapper {
        width: 100%;
    }
}