* {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

.navbar {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
}

.logo {
    font-size: 35px;
    color: green;
}

.menu {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: auto;
    margin-right: 20px;
}

.menu p {
    cursor: pointer;
    font-size: 15px;
}

.signin {
    background: black;
    color: white;
    padding: 10px; 
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

.hero {
    background: #34e0a1;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 60px;
    margin-bottom: 25px;
}

.hero-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.hero-menu p {
    font-size: 18px;
    cursor: pointer;
    padding-bottom: 8px;
}

.hero-menu p:hover {
    border-bottom:solid black 2px;
}

.hero input {
    width: 75%;
    padding: 18px;
    border: none;
    border-radius: 35px;
    font-size: 18px;
    outline: none;
}

.section {
    padding: 20px;
}

.section h2 {
    margin-bottom: 20px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.card {
    flex-basis: 22%;
    box-shadow: 0 0 10px #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.5s;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    height: 180px;
}

.card h3,
p {
    padding: 10px;
}

.interest {
    padding: 40px;
}

.interest h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.interest p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

.interest-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.interest-card {
    flex-basis: 23%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.interest-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 15px;
}

.interest-card h2 {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    font-size: 32px;
}

.award-banner {
    background: black;
    color: white;
    margin: 40px;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.award-left {
    flex-basis: 45%;
}

.award-left h1 {
    font-size: 45px;
    margin-bottom: 20px;
}

.award-left p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #ddd;
}

.award-left button {
    background: white;
    color: black;
    border: none;
    padding: 14px 22px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
}

.award-right {
    flex-basis: 45%;
}

.award-right img {
    width: 100%;
    border-radius: 20px;
}

.footer {
    background: #f5f5f5;
    padding: 40px; 
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.footer-section p {
    margin: 8px 0;
    font-size: 16px;
    color: #555;
    cursor: pointer;
}

.footer-section p:hover {
    color: black;
}

@media screen and (max-width:600px) {

    .menu {
        display: none;
    }

    .hero-menu {
        display: none;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero input {
        width: 90%;
    }

    .card {
        flex-basis: 45%;
    }

    .interest-card {
        flex-basis: 100%;
    }

    .interest h1 {
        font-size: 28px;
    }

    .award-left,
    .award-right {
        flex-basis: 100%;
    }

    .award-left h1 {
        font-size: 32px;
    }

}