body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('99.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
}

.logo {
    font-size: 36px;
    font-weight: bold;
}

.tagline {
    font-size: 18px;
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 400px;
    background-color: rgba(0, 0, 0, 0.5);
    position: relative;
    padding: 0 20px;
}

.hero-content {
    text-align: left;
    z-index: 2;
    flex: 1;
}

.hero-image {
    width: 40%;
    height: 300px;
    border-radius: 10px;
}

.about-us {
    padding: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    text-align: center;
}

.about-images {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.about-images img {
    width: 200px;
    height: auto;
    border-radius: 10px;
}

.objectives, .future-scope, .contact {
    padding: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
}

.future-scope-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.future-scope-content img {
    width: 20%;
    size:300px;
    height: auto;
    border-radius: 10px;
}

.future-scope-text {
    text-align: left;
    flex: 1;
}

footer {
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}
