body {
    margin: 0;
    padding: 0;
    background-image: url('');
    background-size: cover; /* Makes the image cover the entire background */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-attachment: fixed; /* Makes the background stay fixed while scrolling */
    background-position: center; /* Centers the background image */
}


/* Styling for the header */
header {
    background-color: #0044cc; /* Dark blue */
    color: white; /* White text */
    padding: 20px 0; /* Padding for spacing */
    text-align: center; /* Center the header text */
}

/* Styling for navigation */
.navbar {
    background-color: rgba(0, 68, 204, 0.8); /* Transparent dark blue */
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar a {
    color: white; /* Text color */
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
}

.navbar a:hover {
    color: #ffcc00; /* Highlight color on hover */
}

/* Styling for sections */

/* Specific section backgrounds */




#contact {
    background-color: rgba(238, 246, 253, 0.9); /* Light blue */
    padding: 50px;
}

/* Footer styling */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Responsive background adjustments */
@media (max-width: 1200px) {
    body {
        background-size: 100% auto; /* Adjust background size */
    }

    #landing {
        background-size: cover; /* Full coverage on smaller screens */
    }

    .navbar {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    body {
        background-size: cover;
    }

    section {
        padding: 30px;
    }

    #landing {
        padding: 60px 15px; /* Adjust for smaller screens */
    }
}

/* Full-screen background option */
.fullscreen-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Send it behind other content */
    background-image: url('../images/fullscreen-bg.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8; /* Optional transparency */
}

/* Buttons */
button {
    background-color: #0044cc; /* Blue */
    color: white; /* White text */
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #0033aa; /* Darker blue on hover */
}

/* Links */
a {
    color: #0044cc; /* Link color */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Adjust image sizes */
img {
    max-width: 100%;
    height: auto;
}

/* Utility classes */
.transparent-background {
    background-color: rgba(255, 255, 255, 0.6); /* Semi-transparent */
}

.box {
    border: 2px solid #0044cc; /* Blue border */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
