html,body{
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    
}
body {
    font-family: Arial, sans-serif;
   
    line-height: 1.6;
    background-color: #fff7e6;
    color: #333;
}
#home, #about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}
/* Sticky Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ff6600;
    color: white;
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional for a subtle shadow effect */
}

header .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

header .logo {
    width: 50px;
    height: 50px;
    border-radius: 5px;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    text-decoration: underline yellow 5px ;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

section h2 {
    color: #ff6600;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.gallery img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border: 2px solid #ff6600;
    border-radius: 5px;
}

form {
    max-width: 400px;
    margin: 0 auto;
}

form label {
    display: block;
    margin-bottom: 5px;
}

form input, form textarea, form button {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    background-color: #ff6600;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

form button:hover {
    background-color: #e65c00;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #ff6600;
    color: white;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 5px; /* Optional for slightly rounded corners */
}

/* Carousel Styles */
.carousel {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    
}

.carousel .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel .slide.active {
    opacity: 1;
}

.carousel .prev, .carousel .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.carousel .prev {
    left: 10px;
}

.carousel .next {
    right: 10px;
}

/* Caption Styling */
.carousel .caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 5px;
    max-width: 80%;
}

.carousel .caption h3 {
    margin: 0;
    font-size: 1.5rem;
}

.carousel .caption p {
    margin: 5px 0 0;
    font-size: 1rem;
}

/* Team Section Styles */
.team {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    border: 10px double #ff6600;
    object-fit:contain;
}

.team-member h3 {
    margin: 10px 0 5px;
    color: #ff6600;
}

team-member p {
    color: #555;
}
/* Donate Section Styles */
#donate {
    background-color: #fff2e6;
    padding: 20px;
    border: 2px solid #ff6600;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
}

#donate h2 {
    color: #ff6600;
    margin-bottom: 15px;
}

#donate p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #333;
}

#donate ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#donate ul li {
    font-size: 1rem;
    margin: 5px 0;
    color: #555;
}

#donate ul li strong {
    color: #ff6600;
}