
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #181456;
    padding: 10px 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
}

.logo {
    color: white;
    font-size: 1.5em;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
}

.nav-links a:hover {
    background-color: #0a296a;
    border-radius: 5px;
}

.hamburger {
    display: none;
    font-size: 2em;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        background-color: #181456;
        display: none;
    }

    .nav-links li {
        text-align: center;
        margin: 10px 0;
    }

    .nav-links a {
        width: 100%;
        display: block;
    }

    .toggle:checked ~ .nav-links {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}

.toggle {
    display: none;
}
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Full viewport height */
    background-image: url(bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}
.hero2{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #252525;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
}
.hero-content {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image {
    flex: 1;
    padding: 10px;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}



.hero-text h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #ffffff;
}

.hero-text2 h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
}

.hero-text h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-text2 p {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #1e89e7;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #0a528a;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        height: auto;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-image {
        margin-bottom: 20px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text h2 {
        font-size: 20px;
    }

    .hero-text p {
        font-size: 16px;
    }
}


.team {
    padding: 40px 20px;
    background-color: #fff;
}

.team h2 {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-member {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 22px;
    margin: 10px 0;
    text-align: justify;

}

.team-memberp2{
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 15px;
    }

.team-member p {
    font-size: 16px;
    color: #3b3a3a;
    text-align: left;
   
    

}

footer {
    background-color: #007bff;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 0 20px;
    margin-bottom: 20px;
}

.footer-bottom {
    border-top: 1px solid #fff;
    padding: 10px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        margin: 20px 0;
    }
}
