* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background:transparent;
    color: black;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #4f7cff, #6aa7ff);
    color: white;
    text-align: center;
    padding: 80px 20px;
}
.hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: black;
}

/* About Section */
.about-section {
    padding: 50px 20px;
}

.about-section .container {
    max-width: 900px;
    margin: auto;
    text-align: center;
    color: black;
}

.about-section h2 {
    color: #08cf6f;
    margin-bottom: 10px;
}

/* Cards Section */
.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 40px 20px;
    
}

.card {
    background: whitesmoke;
    width: 300px;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
    border: 2px solid blue;
}

.card:hover {
    transform: translateY(-8px);
}

.card h3 {
    color: #c0c2c8;
    margin-bottom: 10px;
}

/* Team Section */
.team {
    text-align: center;
    padding: 50px 20px;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.team-card {
    background: white;
    padding: 20px;
    width: 220px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.team-card:hover {
    transform: scale(1.05);
}


.team-card h3 {
    color: #a5acc2;
}

footer {
    margin-top: 40px;
    background: #4f7cff;
    color: white;
    text-align: center;
    padding: 15px;
}