/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Fixed Need Assistance Line */
#assistance-line {
    background-color: #d6b554; /* Still keeping this for a warm yellowish tone */
    color: #333;
    text-align: center;
    padding: 10px 0;
    font-size: 1.2em;
    font-weight: bold;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

#assistance-line p {
    margin: 0;
}

/* Fixed Navigation Bar */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    background-color: #f1c232; /* Uluru Red */
    color: white;
    padding: 10px 20px;
    z-index: 1000;
}

/* Logo Container */
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff9900;
}

.logo img {
    height: 70px;
    width: auto;
    background: transparent;
    display: block;
}

/* Navigation Menu */
header nav ul {
    display: flex;
    list-style-type: none;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    text-decoration: none;
    color: white;  /* Default text color */
    font-size: 1.1em;
    font-weight: bold; /* Make text bold */
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effects */
    display: block; /* Ensure it takes full width */
    padding: 10px 15px;
    width: 120px; /* Fixed width for all boxes */
    margin: 5px 0; /* Optional: vertical spacing between items */
    border: 2px solid transparent; /* Border for box effect */
    border-radius: 5px; /* Rounded corners */
    background-color: rgba(255, 255, 255, 0.2); /* Slight transparency */
}

/* Hover effect for Box-style Navigation */
header nav ul li a:hover {
    color: #ffbf00; /* Bright yellow text on hover */
    background-color: rgba(255, 255, 255, 0.5); /* Slightly more visible background */
    border: 2px solid #ffbf00; /* Highlight border on hover */
    transform: scale(1.1); /* Slightly scale the link on hover for emphasis */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4); /* Optional: add text shadow for emphasis */
}



header nav ul li a:hover {
    color: #ffbf00;
}

/* Hamburger Menu for Mobile */
.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    header {
        justify-content: space-between;
        align-items: center;
    }
     header nav ul li a {
        width: 120px; /* Fixed width for mobile menu items */
    }
    header nav ul {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #f1c232; /* Deep blue for contrast on mobile */
        width: 100%;
        padding: 20px;
        z-index: 999;
    }

    header nav ul li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    #navbar.active ul {
        display: flex;
    }
}












































/* Footer Section Styling */
.footer-section {
    background-color: #333; /* Dark background for the footer section */
    color: white; /* White text for contrast */
    padding: 120px 40; /* Vertical padding for spacing */
    text-align: center; /* Center all footer content */
    font-family: Arial, sans-serif; /* Consistent font family */
}

/* Footer Tagline */
.footer-tagline {
    margin-bottom: 20px; /* Adds space below the tagline */
}

.footer-tagline p {
    font-size: 1.2em; /* Font size for the tagline */
    margin: 10px 0; /* Space above and below the tagline */
    font-weight: bold; /* Bold text for emphasis */
    color: #ff9900; /* Color for the tagline text */
}

/* Footer Social Media Links */
.footer-social-media {
    margin: 20px 0; /* Vertical spacing for social media icons */
}

.footer-social-media a {
    margin: 0 15px; /* Horizontal spacing between icons */
    display: inline-block; /* Ensure icons are aligned inline */
}

.footer-social-media img {
    height: 40px; /* Icon size */
    width: auto; /* Maintain aspect ratio */
    transition: transform 0.3s ease; /* Smooth hover effect */
}

.footer-social-media img:hover {
    transform: scale(1.1); /* Slightly enlarge icons on hover */
}

/* Footer Copyright */
.footer-copyright p {
    font-size: 0.9em; /* Slightly smaller font size for copyright */
    color: #ccc; /* Lighter color for copyright text */
    margin-top: 10px; /* Space above copyright text */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-section {
        padding: 20px 0; /* Less padding for mobile */
    }

    .footer-tagline p {
        font-size: 1em; /* Smaller tagline font on mobile */
    }

    .footer-social-media {
        margin: 10px 0; /* Adjust social media icon spacing on mobile */
    }

    .footer-social-media a {
        margin: 0 8px; /* Less space between icons on mobile */
    }

    .footer-social-media img {
        height: 30px; /* Smaller icons on mobile */
    }

    .footer-copyright p {
        font-size: 0.8em; /* Smaller copyright text on mobile */
    }
}






















/* Contact Section Styling */
/* Contact Section Styling */
.contact-section {
    background-color: #f4f4f4; /* Light background color */
    padding: 120px 0 40px; /* Increased top padding to avoid overlap with fixed header */
    text-align: center;
    font-family: Arial, sans-serif;
    position: relative; /* Ensure the section is positioned properly */
    z-index: 10; /* Ensures it's above other sections */
    overflow: visible; /* Prevent clipping of content */
}


/* Ensure heading is not hidden */
.contact-section h2 {
    display: block; /* Ensure it's displayed */
    color: #333; /* Text color */
    margin: 20px 0; /* Space above and below */
    font-size: 2em; /* Size of the heading */
    font-weight: bold; /* Make it bold */
    z-index: 20; /* Ensure heading is above other layers */
    position: relative; /* Ensures it's positioned correctly */
}

/* Ensure paragraph text is not hidden */
.contact-section p {
    display: block; /* Ensure it's displayed */
    color: #555; /* Text color */
    margin: 10px 0; /* Space above and below */
    font-size: 1.2em; /* Size of the paragraph text */
}

/* Contact Info Styling */
.contact-info {
    background-color: #fff; /* White background for contact info */
    padding: 20px;
    margin: 20px auto;
    max-width: 600px; /* Limit the width of the contact info */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 20;
    visibility: visible; /* Ensure the contact info is visible */
}

/* Contact Form Styling */
.contact-form {
    background-color: #fff; /* White background for form */
    padding: 20px;
    margin: 20px auto;
    max-width: 600px; /* Limit the width of the form */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 20;
}

/* Footer Section Styling */


/* Ensure no content is hidden */
.contact-section, .contact-info, .contact-form {
    overflow: visible; /* Ensure no content is hidden */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-section {
        padding: 120px 0 30px; /* Adjusted top padding for mobile */
    }

    .contact-info, .contact-form {
        padding: 15px;
    }

    .contact-info h3, .contact-form h3 {
        font-size: 1.3em; /* Slightly smaller titles on mobile */
    }
}
