
/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    position: relative;
    overflow: hidden;
}

/* Video Container */
.video-container {
    position: relative;
    width: 99%;
    height: 50vh;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.559);
}

/* Video Background */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay for better text visibility */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 143, 216, 0.286);
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

/* Animated Heading */
.animated-text {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    animation: fadeInUp 1.5s ease-in-out;
}

/* Description Text */
.hero-content p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Keyframe Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .animated-text {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}

/* About Us Section */
.about {
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
}

/* About Us Container */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 50px;
}

/* Text Content */
.about-content {
    flex: 1;
    text-align: left;
    animation: fadeInLeft 1.5s ease-in-out;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0092b7;
    margin-bottom: 10px;
}

.about-content p {
    font-size: 1.2rem;
    text-align: justify;
    color: #333;
    line-height: 1.6;
}

/* Image Styling */
.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 90%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

/* Image Hover Effect */
.about-image img:hover {
    transform: scale(1.05);
}

/* Keyframe Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .about-image img {
        width: 100%;
        max-width: 300px;
    }
}

/* Mission & Vision Section */
.mission-vision {
    text-align: center;
    padding: 50px 20px;
    background: #f9f9f9;
}

.mission-vision h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 300px;
    max-width: 400px;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.icon {
    font-size: 3rem; /* Larger icon */
    color: #ff6600;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333;
}

.card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
}


/* Meet the Team Section */
.team {
    padding: 80px 5%;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    color: #fff;
}

.team h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #01727e;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Team Container */
.team-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Team Card */
.team-card {
    background: #1e293b;
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    width: 300px;
    text-align: center;
    padding-bottom: 20px;
    position: relative;
}

/* Hover Effect */
.team-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 15px 40px rgba(0, 255, 127, 0.3);
}

/* Team Image */
.team-image {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.team-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

/* Overlay for Hover Effect */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

/* Hover Effect for Overlay */
.team-card:hover .overlay {
    opacity: 1;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #04a5bb;
}

/* Team Info */
.team-info {
    padding: 20px 10px;
}

.team-info h3 {
    font-size: 1.8rem;
    margin-top: 10px;
    color: #00b786;
}

.team-info p {
    font-size: 1rem;
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-container {
        flex-direction: column;
        align-items: center;
    }

    .team-card {
        width: 100%;
        max-width: 350px;
    }
}
