/* Updated styles.css */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    box-sizing: border-box;
}

header {
    background: linear-gradient(135deg, #003366, #0066cc); /* High-quality gradient for a modern look */
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    position: relative;
}

header h1 {
    font-size: 60px;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
}

header p {
    font-size: 22px;
    font-weight: 300;
    margin-top: 10px;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    background-color: #333;
    padding: 15px 0;
    margin: 0;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffcc00; /* Gold color on hover for a premium feel */
}

section {
    padding: 50px 10%;
    margin: 40px 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.banner-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    margin-top: 30px;
    border-radius: 10px;
}

.contact-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 30px;
}

.highlights {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.highlight {
    flex: 1;
    text-align: center;
    background: #fff;
    padding: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight:hover {
    transform: translateY(-10px);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
}

.highlight-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.fixed-height {
    height: 200px;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: 60px;
}

footer a {
    color: #ffcc00;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
