body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
}
p {
    text-align: justify;
    color: rgb(85, 85, 85);
    font-family: sans-serif;
  }

h1 {
    text-align: center;
    color: #333;
}

.experience-sub-title {
    color: rgb(85, 85, 85);
    font-weight: 600;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.experience-details-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.article-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.about-containers {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.details-container {
    padding: 1rem; /* Reduced padding */
    flex: 1;
    background: white;
    border-radius: 1.5rem; /* Smaller border radius */
    border: 0.1rem solid rgb(163, 163, 163);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 300px; /* Set a max-width to make it smaller */
}

.article-container {
    gap: 2rem; /* Reduced the gap between project cards */
}

.project-img {
    width: 85%; /* Slightly smaller width for project images */
    height: auto;
    border-radius: 1.5rem; /* Consistent smaller border radius */
    transition: transform 0.3s ease;
}

.about-containers {
    gap: 1.5rem; /* Reduced gap between containers */
    margin: 1.5rem 0;
}

.btn-container {
    gap: 0.8rem; /* Smaller gap between buttons */
}

.btn {
    padding: 0.8rem; /* Reduced padding */
    width: 7rem; /* Smaller button width */
    font-size: 0.9rem; /* Slightly smaller text size */
    border-radius: 1.5rem; /* Consistent with container changes */
}


.details-container:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    cursor: pointer;
    background: rgb(53, 53, 53);
    color: white;
    transform: scale(1.05);
}

.color-container {
    background: rgb(250, 250, 250);
}

.project-img {
    border-radius: 2rem;
    width: 90%;
    height: auto;
    transition: transform 0.3s ease;
}

.project-img:hover {
    transform: scale(1.05);
}

.project-title {
    margin: 1rem 0;
    color: black;
}

.project-btn {
    color: black;
    border: 0.1rem solid rgb(163, 163, 163);
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 17vh;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    font-size: 1.5rem;
}

a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

a:hover {
    color: grey;
    text-decoration: underline;
    text-underline-offset: 0.5rem;
    text-decoration-color: rgb(181, 181, 181);
}

.logo-img {
    width: 120px; /* Adjust width as needed */
    height: auto; /* Maintain aspect ratio */
  }
  
