/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
body {
    color: #333;
    background-color: #f0f0f0; /* Light background for better contrast */
}

/* Navigation Bar */
.nav {
    background-color: #2C3E50; /* Darker shade for navigation */
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
}
.nav .items a {
    color: #ecf0f1; /* Light color for text */
    text-decoration: none;
    font-size: 16px;
    padding: 10px 20px;
    transition: background 0.3s, transform 0.3s; /* Add transform for hover */
}
.nav .items a:hover {
    background-color: #4CAF50;
    border-radius: 5px;
    transform: scale(1.05); /* Slightly enlarge on hover */
}

/* Header with Video Background */
.header {
    position: relative;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.header-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: bold;
}
.header-content h3 {
    font-size: 24px;
    font-weight: lighter;
}

/* About Section */
.about {
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(to right, #ff7e5f, #feb47b); /* Gradient background */
    color: #fff;
}
.about h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}
.testimonials h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.testimonial {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s; /* Smooth scale on hover */
}
.testimonial:hover {
    transform: scale(1.02); /* Slight scale on hover */
}
.testimonial p {
    font-size: 18px;
    line-height: 1.5;
}

/* FAQs Section */
.faqs {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
}
.faqs h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.faq {
    margin: 20px 0;
}
.faq h3 {
    font-size: 24px;
    cursor: pointer;
    color: #4CAF50; /* Green color for questions */
}
.faq p {
    font-size: 18px;
}

/* Blog Section */
.blog {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}
.blog h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.blog-post {
    margin: 20px 0;
}
.blog-post h3 a {
    text-decoration: none;
    color: #4CAF50;
    transition: color 0.3s; /* Smooth color change on hover */
}
.blog-post h3 a:hover {
    color: #2C3E50; /* Change color on hover */
}
.blog-post p {
    font-size: 18px;
}

/* Partnerships Section */
.partnerships {
    padding: 40px 20px;
    text-align: center;
}
.partnerships h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.partner {
    display: inline-block;
    margin: 20px;
}
.partner img {
    max-width: 150px;
    transition: transform 0.3s; /* Scale on hover */
}
.partner img:hover {
    transform: scale(1.1); /* Slightly enlarge logos on hover */
}
.partner p {
    font-size: 18px;
}

/* Social Media Feed Section */
.social-feed {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
}
.social-feed h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.social-links a {
    margin: 0 10px;
    text-decoration: none;
    color: #4CAF50;
    transition: color 0.3s; /* Smooth color change on hover */
}
.social-links a:hover {
    color: #2C3E50; /* Change color on hover */
}

/* News and Events Section */
.news-events {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}
.news-events h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.event {
    margin: 20px 0;
}
.event h3 {
    font-size: 24px;
}

/* Footer Section */
footer {
    background-color: #2C3E50; /* Darker shade for footer */
    color: white;
    text-align: center;
    padding: 20px 0;
}
.footer-content {
    margin: 0 auto;
    max-width: 800px;
}
.footer-content .social a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}
.footer-content p {
    margin: 10px 0;
}
