body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
    width:100%;

}

header {
    background: #333;
    color: #fff;
    padding: 40px;  
    text-align: center;
    font-family: cursive;
}



nav a {
    color: #fff;
    margin: 0 1rem;
    text-decoration: none;
    font-size: large;
    font-family: cursive;
    font-weight: bolder;
    transition: transform 0.3s ease; /* Smooth scaling */
}


nav a:hover {
    transform: scale(1.1);
    color:#007BFF; /* Gold */
    text-shadow: 1px 1px 5px #fff;
}


section {
    margin: 2rem;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    padding: 1rem;
    background: #333;
    color: #fff;
    position: relative;
    bottom: 0;
}

.hero {
    height: 100vh; /* Full screen height */
    background: url('../assets/Images/Image1.jpeg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
    z-index: 1;
}

.hero-content {
    z-index: 2; /* Ensure text is above the overlay */
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    color: white;
    background: #007BFF;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #015077;
}   
