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

.banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #2c3e75;
    color: #fff;
    padding: 15px;
    height: 150px;
}

.banner-item {
    flex: 1;
    min-width: 250px;
    margin: 10px;
    text-align: center;
}

.banner-item i {
    font-size: 24px;
    margin-bottom: 5px;
}

.banner-item span {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.banner-item p {
    margin: 0;
}

@media (max-width: 768px) {
    .banner-item {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .banner {
        flex-direction: column;
        text-align: center;
    }

    .banner-item {
        text-align: center;
    }
}

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

header {
    background-color: #ffffff;
    padding: 10px 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    z-index: 999;
    top: 0px;
    width: 100%;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    margin-bottom:30px ;
    
}

.logo img {
    width: 150px;
    height: 100px;

}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #007bff;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        margin: 10px 0;
    }
}
.hero {
    background: url('./backimg.jpg') no-repeat center center/cover;
    position: relative;
    color: white;
    padding: 100px 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 2s ease-in-out; 
}
.hero-loaded .hero {
    opacity: 1; /* Full visibility after fade-in */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    margin: 0;
}

.hero p {
    margin: 10px 0 0;
    font-size: 18px;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        margin: 10px 0;
    }

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

    .hero p {
        font-size: 16px;
    }
}
.xyz{
    text-decoration: none;
    color: black;
}
.xyz:hover{
    color: yellow;
}




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

footer {
    background-color: #1c1c1c;
    color: #ffffff;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.footer-section {
    width: 20%;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-section p, .footer-section a {
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
    text-decoration: none;
}

.footer-section a:hover {
    color: #ffa500;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding: 10px;
    border-top: 1px solid #333;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}
