body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Logo container */
.logo-container {
    text-align: center;
    padding: 20px 0;
    background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Logo styling */
.logo img {
    height: 150px;
    /* width: 250px; */
}

/* Header container for tab bar */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 10px 0;
    margin: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Tab bar container */
.tab-bar {
    display: flex;
    background-color: transparent; /* Transparent to merge with the header */
    margin: 10px;
    padding: 0px 0px 0px 0px; /* Space inside the tab-bar */
}

/* Tab links */
.tab-bar a {
    /* padding: 10px 20px; */
    text-decoration: none;
    color: #333;
    position: relative;
    margin: 0 10px;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Hover effect: underline appears */
.tab-bar a:hover {
    color: #007bff;
}

/* Active tab with animated underline */
.tab-bar a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #007bff;
    border-radius: 2px;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

/* Default underline is hidden */
.tab-bar a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #007bff;
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

/* Show underline on hover or active tab */
.tab-bar a:hover::after,
.tab-bar a.active::after {
    transform: scaleX(1);
}

/* Tab content styling */
.tab-content {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    display: none; /* Hide all content sections by default */
}

.tab-content.active {
    display: block;
}

 /* Make the image cover the entire viewport */
 .full-screen-image {
     display: flex;
    width: 150px;
    height: 150px;
    object-fit: cover; /* Ensures the image covers the area while cropping if necessary */
     border-radius: 25px;
}

.container {
    padding: 0px;
}