* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background: linear-gradient(to bottom right, #28a745, #ffffff);
    color: #333;
}

/* Header Section */
header {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 60px;
    height: auto;
    margin-right: 10px;
}

.logo h1 {
    font-size: 2rem;
    color: #28a745;
    font-weight: 600;
}

/* Navigation Menu */
nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

nav ul li a {
    text-decoration: none;
    color: #28a745;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid #28a745;
    border-radius: 7px;
    transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover {
    background-color: #28a745;
    color: white;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Full height */
    overflow: hidden;
}

video {
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    object-fit: cover; /* Cover the entire area */
}
.content-section {
    padding: 50px 20px;
    background: rgba(255, 255, 255, 0.8);
    margin-top: -20px; /* Adjusts the overlap with the video */
    position: relative; /* Ensure it sits over the video */
    z-index: 10; /* Bring this section above the video */
    text-align: center; /* Center-align text */
}

.content-section h2 {
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 20px;
}

.content-section p {
    font-size: 1rem;
    margin-bottom: 30px;
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between cards */
    flex-wrap: wrap; /* Allows cards to wrap on smaller screens */
}

.card {
    background: #ffffff;
    border: 1px solid #28a745;
    border-radius: 10px;
    padding: 20px;
    width: 300px; /* Fixed width for cards */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05); /* Slightly enlarge the card on hover */
}

.card h3 {
    color: #28a745;
    margin-bottom: 10px;
}

.card p {
    color: #333;
}
.empower-text {
    font-size: 1.5rem; /* Increased font size */
    font-weight: 400; /* Normal font weight */
    font-style: italic; /* Italic style */
    color: #555; /* Darker color for better contrast */
    line-height: 1.8; /* Increase line height for better readability */
    margin: 0 auto 30px; /* Center alignment and bottom margin */
    max-width: 800px; /* Limit width for better text alignment */
}
/* Hover effect for card titles */
.card h3 {
    color: #28a745;
    margin-bottom: 10px;
    transition: color 0.3s, transform 0.3s;
}

.card:hover h3 {
    color: #ff5722; /* Change color on hover */
    transform: scale(1.1); /* Slightly enlarge the text */
}

/* Hover effect for card paragraphs */
.card p {
    color: #333;
    opacity: 1;
    transition: opacity 0.3s ease-in-out, transform 0.3s;
}

.card:hover p {
    opacity: 0.8; /* Slight fade on hover */
    transform: translateY(-5px); /* Slight upward movement */
}

/* Shadow effect for the entire card */
.card {
    background: #ffffff;
    border: 1px solid #28a745;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: scale(1.05); /* Slightly enlarge the card */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2); /* Enhance shadow */
}
