body {
	background-image: url("images/lea.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	background-attachment:fixed;
    overflow-x: hidden;
    color: #333;
    font-family: Arial, sans-serif;
    display: flex
    flex-direction: column; /* Stack elements vertically */
    align-items: center; 
    justify-content: center;
    padding: 0px;
    margin: 0px;
}

.container {
    margin-top: 80px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center all content */
    text-align: center;
}
.main-title {
    position: relative; 
    top: -20px; 
    right: -900px;
    transform: translateX(-50%);
    font-size: 40px;
    text-align: center;
    font-weight: bolder;
    text-transform: uppercase;
    color: white;
    background-color: rgba(0,19,7,255); 
    padding: 10px 20px; 
    width: 1800px;
    box-shadow: 0 0 10px rgb(111, 112, 110);
    z-index: 10; 
}



/* Volunteer Programs Section */
.container-volunteer-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive */
    gap: 20px;
    justify-content: center;
    align-items: start;
    max-width: 1100px;
    width: 100%;
}

/******************************/
.container-volunteer-programs .card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: 560px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
}

.card:hover {
    transition: 0.5s;
    transform: scale(1.02); 
}
.location {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.location img {
    width: 20px;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
}

.details {
    font-size: 14px;
    margin: 10px 0;
}

.fee {
    background: #eee;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

.rates {
    font-size: 14px;
    color: #28a745;
    text-align: center;
    margin-top: 5px;
}

/***********************************/

.buttons {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.apply-btn {
    background: green;
    color: white;
    width: 130px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background 0.3s ease, transform 0.2s ease;
}

.apply-btn:hover {
    background: darkgreen;
    transform: scale(1.05);
}

.view-project-btn {
    background: lightgreen;
    color: white;
    width: 130px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background 0.3s ease, transform 0.2s ease;
}

.view-project-btn:hover {
    background: #1a3221; /* Slightly lighter black for hover effect */
    transform: scale(1.05);
}

/******************************************/

.pic {
    background: #eee;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

.container-reviews .card {
    background: #f1f1f1;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.container-reviews-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px; /* Space between reviews and feedback */
    width:1100px;
}


.reviews{
    flex: 1; /* Equal width */
    background: white;
    padding: 30px;

    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    height:400px;
}

/*/////////////////*/
.reviews {
    text-align: center;
    margin-bottom: 20px;
}

.review{
    background-color: #cdcdcd;
    border-radius:10px;
    padding:5px;
    margin-top: 10px;
}

.reviews h1 {
    color: green;
    font-size: 36px;
}

.reviews button {
    background-color: #0073e6;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}

.reviews {
    margin-bottom: 20px;
}

/*************************************/
.feedback{
    flex: 1; /* Equal width */
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    height:220px;
}

textarea {
    width: 100%;
    height: 80px;
    padding-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: none;
}

.actions {
    margin-top: 10px;
    display: flex;
    justify-content: center; /* Center buttons */
    gap: 10px; /* Space between buttons */
}

.cancel {
    background: red;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cancel:hover {
    background: darkred;
	transform: scale(1.05);
}

.submit-feedback {
    background: green;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}

.submit-feedback:hover {
    background: darkgreen;
	transform: scale(1.05);
}

.hidden-text {
    display: none;
}

.see-more {
    color: blue;
    cursor: pointer;
}

.review-box {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.emoji-layer {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}

.emoji {
    cursor: pointer;
    font-size: 24px;
    transition: transform 0.2s;
}

.emoji:hover {
    transform: scale(1.2);
}

footer{
    text-align: left;
}