header {
    background: #0066cc; /* Blue background */
    color: white;
    text-align: center;
    padding: 0 1rem; /* No top padding to start from top */
    position: relative;
    overflow: hidden;
    min-height: 200px; /* Adjusted to reduce excess space */
    margin-bottom: 0; /* Remove margin to control space with menu */
}

.orange-section {
    background: #ffbd59; /* Orange section */
    width: 350px; /* Reduced width to give more space to contact details */
    height: 100%; /* Fit to header height */
    position: absolute;
    top: -30px; /* Updated to your specified value */
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    z-index: 1;
    border-bottom-left-radius: 120px; /* Highest radius */
    border-bottom-right-radius: 120px; /* Highest radius */
    overflow: hidden;
}

.orange-section h1 {
    font-size: 2rem; /* Adjusted for section size */
    font-weight: 900; /* Bolder text */
    text-transform: uppercase;
    margin-bottom: -0.5rem;
    letter-spacing: 2px;
    color: #0066cc; /* Blue title */
    -webkit-text-stroke: 1px white; /* Restore white border */
    text-stroke: 1px white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Restore white shadow */
}

.orange-section p {
    font-size: 0.9rem; /* Adjusted for section size */
    color: #000000; /* Restored black tagline */
    text-align: center;
    margin: 0;
    padding: 0 1rem;
}

.banner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items to top */
    min-height: 200px; /* Adjusted to reduce excess space */
    padding: 1rem 1rem 1rem; /* Reduced bottom padding to minimize space */
    width: 100%; /* Ensure full width */
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* Small gap between items */
    align-items: flex-end;
    margin-top: -0rem; /* Updated to your specified value */
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3; /* Ensure it’s above the orange section */
}

/* Updated Menu Styling */
.menu {
    background: #0066cc;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

    /* Updated shadow to emphasize a fuller middle with thinning edges */
    box-shadow: 
        0 4px 12px -2px rgba(0, 0, 0, 0.35),  /* Updated Main shadow with edge thinning */
        0 8px 24px -4px rgba(0, 0, 0, 1.25);   /* Increased blur and offset for fuller middle */

    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    border-radius: 4px; /* Slight curve */
    transform: perspective(400px) rotateX(0.6deg); /* Minimal lift */
}

.menu .nav-links {
    display: flex;
    gap: 1.5rem; /* Increased gap for style */
}

.menu .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem; /* Slightly larger text */
    transition: color 0.3s; /* Smooth transition */
}

.menu .nav-links a:hover {
    color: #ffbd59; /* Orange on hover */
    text-decoration: underline;
}

.menu .social-links {
    display: flex;
    gap: 0.75rem; /* Increased gap for style */
}

.menu .social-links::before {
    content: "Follow us";
    color: white;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.menu .social-links a {
    color: #ffbd59; /* Orange for social icons */
    font-size: 1.3rem; /* Slightly larger icons */
    text-decoration: none;
    transition: color 0.3s; /* Smooth transition */
}

.menu .social-links a:hover {
    color: #ffffff; /* White on hover */
}