/* Common styling for all sections */
section {
    padding: 1.5rem;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

/* Header */
header {
    background-color: #343a40;
    color: white;
    padding: 1rem 0;
    text-align: center;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}

/* headerpic */
.headerpic {
   width: 180px; 
   height: 180px;
   object-fit: cover;
   box-shadow: 0 4px 8px rgba(0, 0, 0, .5);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Add a hover effect */
.headerpic:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

/* Footer */
footer {
    background-color: #343a40;
    color: white;
    padding: 1rem 0;
    text-align: center;
    border-top-left-radius: 8pc;
    border-top-right-radius: 8pc;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.bottom-box {
    background-color: #343a40; /* Same color as the navigation background */
    height: 100px; /* Adjust height as needed */
    width: 100%; /* Full-width */
	position: absolute;
	border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}


/* Navigation */
.navbar {
    background-color: #343a40;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px; 
    border-bottom-left-radius: 8px; 
    border-bottom-right-radius: 8px; 
    overflow: hidden;
    margin-bottom: 20px;
}

.navbar-collapse {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.navbar-text {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.navbar-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.navbar-role {
    font-size: 1rem;
    color: #ccc;
}

.navbar-nav .nav-link {
    color: white;
    font-size: 1rem;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover {
    color: #ffc107;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    outline: none;
}

/* Work Experience and Contact Section */
.resume-section,
.contact-section {
    padding: 1.5rem;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
#work-experience .container .resume-section.shadow {
}


/* Style for content within sections */
.section-content {
    outline: 2px solid #ccc;
    padding: 1rem;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
