body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f4f8;
    scroll-behavior: smooth;
}

.header {
    background: linear-gradient(90deg, #ff6f61, #ffca3a);
    color: #fff;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header h1 {
    margin: 0;
    font-size: 2em;
}

.container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    animation: fadeIn 1s ease-in-out;
}

.tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.tab-link {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.tab-link:hover, .tab-link.active {
    background-color: #0056b3;
}

.about-section {
    display: none;
    margin-bottom: 40px;
}

.about-section.active {
    display: block;
}

h2 {
    color: #ff6f61;
    border-bottom: 2px solid #ff6f61;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

h3 {
    color: #007BFF;
    margin-top: 0;
}

p {
    color: #555;
    line-height: 1.8;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
    font-size: 16px;
    background: #ff6f61;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    transition: transform 0.3s;
}

ul li:hover {
    transform: scale(1.05);
}

.team {
    display: flex;
    justify-content: space-between;
}

.team-member {
    text-align: center;
    width: 30%;
    transition: transform 0.3s;
}

.team-member img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.team-member:hover {
    transform: scale(1.05);
}

button.back-to-top, .back-to-home {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 16px;
    background: #ff6f61;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

button.back-to-top:hover, .back-to-home:hover {
    background: #ff3d3d;
}
#home-btn{
    text-decoration: none;
}
.bottom-btn{
    display: flex;
    justify-content: space-between;
    width: 70vw;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}