html, body {
    height: 100%; /* Full height */
    margin: 0; /* Remove default margin */
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex; /* Use flexbox */
    flex-direction: column; /* Stack children vertically */
}

a {
    text-decoration: none;
    color: #00bfa6;
}

/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(10, 37, 64, 0.8);
    padding: 20px 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.navbar li {
    margin-left: 20px;
}

.navbar a {
    color: white;
    font-weight: 600;
    padding: 10px 15px;
    text-transform: uppercase;
}

.navbar a:hover {
    background-color: #00bfa6;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

#hero-gif {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.primary-btn {
    background-color: #00bfa6;
    color: white;
}

.primary-btn:hover {
    background-color: #00e0bf;
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid #00bfa6;
    color: white;
}

.secondary-btn:hover {
    background-color: #00bfa6;
    color: white;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-image img {
    width: 500px;
    border-radius: 10px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #f4f4f4;
}

.features-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.feature {
    width: 30%;
}

.feature img {
    width: 100%;
    border-radius: 10px;
}

.feature:hover img {
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Team Section Styles */
.team-section {
    padding: 100px 20px; /* Adjusted for spacing */
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto; /* Center container */
}

h1 {
    margin-bottom: 40px;
    font-size: 2.5rem; /* Adjust heading size */
}

/* Team Grid Styles */
.team-grid {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping of team members */
    justify-content: center; /* Center the items */
    gap: 20px; /* Space between items */
}

.team-member {
    background-color: white; /* White background for team member boxes */
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 220px; /* Fixed width for each box */
    text-align: center;
    transition: transform 0.3s; /* Smooth hover effect */
}

.team-member img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Round the corners of images */
}

.team-member h3 {
    margin: 10px 0; /* Space above and below the name */
    font-size: 1.5rem; /* Adjust name font size */
}

.team-member p {
    font-size: 1rem; /* Adjust description font size */
}

/* Hover Effect */
.team-member:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
}

/* Footer Section */
footer {
    background-color: #0a2540;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: auto; /* Push footer to bottom */
}

footer p {
    margin: 0;
    font-size: 1rem;
}

footer a {
    color: #00bfa6;
    text-decoration: none;
}

footer a:hover {
    color: #00e0bf;
    text-decoration: underline;
}
