body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f5f5, #ffffff);
}

section h1, h4 {
    color: #8B5E3C;
}

.navbar {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.navbar-hide {
    transform: translateY(-100%);
    opacity: 0;
}

.navbar-custom {
    background-color: #B0A695 ;
    transition: all 0.4s ease;
}

.navbar-nav .nav-link {
    margin-left: 15px;
    font-weight: 600;
    transition: 0.3s;
    color: #000;
}

.navbar-nav .nav-link:hover {
    color: #fff;
}

.hero {
    height: 100vh;
    background: linear-gradient(180deg, #EBE3D5, #fff);
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.profile-img:hover {
    transform: scale(1.05);
}

.title-skills {
    color: #8C5A3C;
    font-weight: bold;
}

.skill-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.skill-card h5 {
    margin-bottom: 15px;
    font-weight: 600;
    color: #8C5A3C;
}

.skill-card ul {
    list-style: none;
    padding: 0;
}

.skill-card ul li {
    margin-bottom: 8px;
    color: #555;
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    /* background: linear-gradient(135deg, #ffffff, #f1f1f1); */
}

.project-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.project-card h5 {
    font-weight: 600;
}

.project-card p {
    font-weight: 400;
    font-size: 14px;
}

.project-card img {
    height: 200px;
    object-fit: cover;
    transition: 0.3s;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff, #f1f1f1);
}

/* .card {
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
} */

.project-hero {
    margin-top: 100px;
    display: flex;
    justify-content: left;
    align-items: left;
}

.project-hero h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.project-hero h2 {
    font-size: 25px;
    margin-bottom: 20px
}

.project-hero img {
    margin-top: 20px;
    display: block;
}


.btn-brown {
    background-color: #A98B76;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-brown:hover {
    background-color: #8C5A3C;
    color: white;
}