body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff; 
    color: #fff; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.hero-section {
    position: relative;
    min-height: 400px; 
    overflow: hidden;
    border-radius: 15px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    width: calc(100% - 40px);
    color: #fff; 
    text-align: center; 
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    box-sizing: border-box;
    padding: 0 20px; 
}

.hero-content {
    position: relative; 
    z-index: 3;
    padding: 0 20px; 
    max-width: 800px; 
    flex-grow: 1; 
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    background: none;
    padding-top: 0;
    padding-bottom: 0;
    bottom: auto;
    width: auto;
    border-radius: 0;
}

.hero-section h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-align: center;
    color: #fff;
}

.hero-section p { 
    font-size: 1.1em;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    color: #fff;
}



.content-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content-card h3 {
    text-align: center;
    font-size: 1.8em;
    color: #00FF00; 
    margin-bottom: 25px;
    font-weight: 600;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.facility-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.facility-item:hover {
    transform: translateY(-5px);
}

.facility-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.facility-item p {
    padding: 15px;
    margin: 0;
    font-weight: 500;
    color: #555;
}

.description-section p {
    font-size: 1.1em;
    line-height: 1.6;
    text-align: center;
    color: #FFFFFF; 
}

.description-section .content-card {
    margin-top: 10px !important;
}

.testimonial-section {
    background-color: #006400;
    color: #fff;
    padding: 40px 0;
    margin: 20px auto;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.testimonial-header h4 {
    margin: 0;
    font-size: 2em;
    font-weight: 700;
}

.testimonial-header .fas {
    font-size: 1.5em;
    color: #FFD700;
}

.testimonial-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: #fff;
    color: #333;
    border-radius: 10px;
    padding: 25px;
    width: 45%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.testimonial-header-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-header-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #006400;
}

.user-info .user-name {
    font-weight: 600;
    margin: 0;
    font-size: 1.1em;
}

.user-info .rating .fas,
.user-info .rating .far {
    color: #FFD700;
    font-size: 0.9em;
}

.testimonial-text {
    font-size: 0.95em;
    line-height: 1.5;
    margin: 0;
}

.news-promo-section {
    padding: 40px 0;
    background-color: #8B6B00; 
    color: #fff;
}

.news-promo-section h3 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    font-weight: 700;
    color: #00FF00;
}

.container.content-card {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #8B6B00; 
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.news-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.news-promo-item {
    background-color: #fff; 
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding-bottom: 15px;
}

.news-promo-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    margin-bottom: 10px;
}

.news-promo-item p {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    padding: 0 10px;
}

.footer {
    background-color: #006400; 
    color: #fff;
    padding: 40px 0;
    margin-top: 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-us {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column; 
    gap: 10px; 
}

.follow-us {
    flex: 1;
    min-width: 280px;
}

.footer h4 {
    font-size: 1.4em;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.contact-item {
    background-color: #007B00; 
    color: #fff; 
    padding: 10px 15px; 
    border-radius: 25px; 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    font-weight: 500;
    font-size: 1em; 
    line-height: 1.2;
    margin-bottom: 0; 
    transition: background-color 0.3s ease; 
}

.contact-item:hover {
    background-color: #008D00; 
}

.contact-item i {
    font-size: 1.3em; 
    margin-top: 0; 
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-item {
    background-color: #007B00; 
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.social-item:hover {
    background-color: #008D00; 
}

.social-item i {
    font-size: 1.3em;
}

@media (max-width: 992px) {
    
    .facilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .testimonial-cards-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .testimonial-card {
        width: 80%;
    }
    .news-promo-item {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    
    .hero-section {
        width: calc(100% - 40px);
    }
    .hero-section h2 {
        font-size: 2em;
    }
    .hero-section p { 
        font-size: 1em;
    }
    .facilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .testimonial-card {
        width: 90%;
    }
    .news-promo-item {
        flex: 0 0 calc(100% - 0px);
        max-width: 100%;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .contact-us, .follow-us {
        min-width: unset;
        width: 90%;
    }
    .contact-item {
        justify-content: center;
    }
    .social-links {
        align-items: center;
    }
}

@media (max-width: 480px) {
    
   
    .hero-section {
        min-height: 300px; 
    }
    .hero-section h2 {
        font-size: 1.8em;
    }
    .hero-section p { 
        font-size: 0.9em;
    }
    .content-card {
        padding: 20px;
    }
    .content-card h3 {
        font-size: 1.5em;
    }
    .testimonial-header h4 {
        font-size: 1.5em;
    }
}
