body {
    font-family: 'Poppins', sans-serif;
    background-color: #2E2E2E;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
}

h2, h3 {
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);   
}

form {
    color: white;
}

.header {
    position: relative;
    height: 100vh;
    text-align: center;
    overflow: hidden;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-icon {
    width: 40px;
    height: auto;
    margin-right: 10px;
}

.parallax-scene {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.layer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.waves-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 140vw;
    height: 250px;
    z-index: 3;
    transform: scale(1.1);
    object-fit: cover;
}

.waves-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120vw;
    height: 160px;
    z-index: 2;
    transform: scale(1.1);
    object-fit: cover;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3;
}

.foreground {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: auto;
    z-index: 2;
}

.header-content {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.highlight {
    color: #FFD700;
    font-weight: bold;
    font-size: 3rem;
}

.btn {
    padding: 15px 30px;
    font-size: 1.2rem;
    background-color: #FF6B35;
    color: white;
    border: none;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: scale(1.1);
    background-color: #FFD700;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.2rem; 
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-lg:hover {
    background: linear-gradient(135deg, #FFD700, #FFB347);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    transition: background-color 0.3s ease-in-out;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFD700;
}

.navbar-brand:hover {
    color: #fff;
}

.nav-link {
    font-size: 1.1rem;
    color: #FFFFFF;
    transition: color 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
}

.nav-link i {
    margin-right: 8px;
}

.nav-link:hover {
    color: #FFD700;
    transform: translateY(-3px);
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}

.about {
    background-color: #1E1E1E;
    padding: 60px 0;
    color: #FFFFFF;
}

ul li {
    list-style: none;
    margin-bottom: 10px;
}

ul li strong {
    color: #FFD700;
    margin-right: 10px;
}

.interest-item i {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 10px;
}

.contact-link {
    color: #FF6B35;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.contact-link:hover {
    color: #FFD700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.skills {
    background-color: #292929;
    padding: 60px 0;
}

.progress {
    background-color: #3C3C3C;
    border-radius: .25rem;
    height: 25px;
    margin-bottom: 15px;
}

.progress-bar {
    font-weight: bold;
    padding: 5px;
    line-height: 30px;
    transition: width 1.5s ease-in-out;
    color: #FFD700;
    background-color: #FF6B35;
    border-radius: 15px;
}

.progress-bar.bg-success {
    background-color: #28a745;
}

.progress-bar.bg-info {
    background-color: #17a2b8;
}

.skill-bar {
    border-radius: 10px;
    position: relative;
    transition: width 1.5s ease-in-out;
    color: white;
    line-height: 20px;
    padding-left: 10px;
    font-weight: bold;
}

.skill-bar::after {
    content: attr(data-skill);
    position: absolute;
    top: 0;
    right: 10px;
    color: white;
    font-weight: bold;
}

#curriculum {
    background-color: #1E1E1E;
    padding: 60px 0;
    color: #FFFFFF;
}

.timeline-item {
    border-left: 3px solid #FFD700;
    padding-left: 20px;
}

.timeline-item h4 {
    color: #FFD700;
}

.custom-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background-color: #010e1f;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    text-align: center;
}

.custom-button:hover {
    background-color: #02336a;
    color: white;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

#portfolio {
    background-color: #292929;
}

.card {
    background-color: #FFFFFF;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    border-radius: 8px 8px 0 0;
}

#contact {
    background-color: #212529;
}

.map-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

footer {
    background-color: #0A2A43;
    color: #FFFFFF;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #FFFFFF;
}

button {
    background-color: #FF6B35;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
    background-color: #FFD700;
    transform: scale(1.05);
}

.card-equal {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.text-dark {
    color: #000 !important;
}

.custom-button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.custom-button:hover {
    background-color: #0056b3;
}

.cta-button {
    background-color: #FF6B35;
    color: #FFFFFF;
    padding: 10px 20px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #FFD700;
    color: #000000;
    transform: translateY(-5px);
}
