.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 60px;
    background-color: #00000071;
}
.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.contact-button {
    background-color: #F7AB23;
    padding: 8px 12px;
    border-radius: 5px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}
.logo{
    width: 74px;
height: 48px;
flex-shrink: 0;
background-image: url('./assets/image/ABRlogo.svg');
background-size: cover;
background-repeat: no-repeat;
}   
.site-section{
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align to the top */
    min-height: 120vh;
}
.container {
    width: 100%;
    max-width: 1000px; /* Max width for desktop view, adjust as needed */
    padding: 20px;
    box-sizing: border-box; /* Include padding in the element's total width and height */
    text-align: center; /* Center the heading */
}

.container h1 {
    font-size: 2.5em; /* Adjust size as needed */
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.container .image-grid {
    display: grid;
    gap: 24px; /* Space between images */
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* Responsive grid */
    justify-content: center; /* Center grid items */
}

.container .grid-item {
    background-color: #fff; /* White background for each image card */
    border-radius: 8px; /* Slightly rounded corners */
    overflow: hidden; /* Ensures image doesn't overflow rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .grid-item img {
    width: 100%;
    height: 100%; /* Make images fill their container */
    object-fit: cover; /* Crop images to fit without distortion */
    display: block; /* Remove extra space below image */
}
/* Footer styles */

.site-footer {
    background-color: #333; /* Dark background as per image */
    padding: 40px 20px 20px; /* Top, sides, bottom padding */
    color: #ccc;
    font-size: 0.95em;
}

.footer-container {
    max-width: 1200px; /* Limit width for desktop */
    margin: 0 auto; /* Center the container */
    display: flex; /* Use flexbox for layout */
    flex-wrap: wrap; /* Allow items to wrap to the next line on smaller screens */
    justify-content: space-between; /* Distribute sections */
    gap: 30px; /* Space between flex items */
}

.footer-section {
    padding: 0 15px; /* Inner padding for sections */
    margin-bottom: 20px; /* Space below each section before responsive wrap */
    flex-grow: 1; /* Allow sections to grow */
}

/* Specific section widths for desktop */
.footer-about {
    flex-basis: 35%; /* Larger share for about section */
    min-width: 280px; /* Minimum width before wrapping */
}

.footer-links,
.footer-contact,
.footer-social {
    flex-basis: 20%; /* Smaller share for other sections */
    min-width: 180px; /* Minimum width before wrapping */
}

/* Logo Styling */
.footer-logo {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px; /* Space between logo image and text */
}

.footer-logo img {
    height: 72px; /* Adjust as needed for your logo */
    width: auto;
}

.footer-logo .logo-text {
    font-size: 1.5em;
    font-weight: bold;
    color: #ff9800; /* Orange color for the ABR text */
    letter-spacing: 1px;
}

.footer-logo .logo-tagline {
    font-size: 0.7em;
    color: #aaa;
    align-self: flex-end; /* Align tagline to the bottom of the logo row */
    margin-bottom: 2px;
}

/* Headings in Footer */
.footer-section h3 {
    color: #ff9800; /* Orange color for headings */
    font-size: 1.1em;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 152, 0, 0.3); /* Subtle orange underline */
    padding-bottom: 5px;
    display: inline-block; /* Make border-bottom fit content */
}

/* Paragraphs in Footer */
.footer-section p {
    margin-bottom: 10px;
}

/* List Styling (Menu) */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px; /* Space between icons */
    margin-top: 10px;
}

.social-icons a {
    color: #ccc; /* Default icon color */
    font-size: 1.6em; /* Size of the icons */
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #fff; /* Hover color */
    transform: translateY(-3px); /* Subtle hover effect */
}

/* Specific icon colors (optional, matches common brand colors) */
.social-icons .fa-whatsapp:hover { color: #25D366; }
.social-icons .fa-google-plus-g:hover { color: #DB4437; } /* Note: Google+ is deprecated, but icon styling included */
.social-icons .fa-linkedin-in:hover { color: #0077B5; }
.social-icons .fa-instagram:hover { color: #E1306C; }


/* Footer Bottom (Copyright) */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Separator line */
    color: #aaa;
    font-size: 0.9em;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack sections vertically */
        align-items: center; /* Center items for mobile */
        text-align: center; /* Center text within sections */
    }

    .footer-section {
        width: 100%; /* Full width for each section */
        max-width: 400px; /* Limit max width for readability on wide mobiles */
        padding: 0; /* Remove inner padding as now full width */
    }

    .footer-logo {
        justify-content: center; /* Center logo for mobile */
    }

    .social-icons {
        justify-content: center; /* Center social icons for mobile */
    }

    .footer-section h3 {
        /* Remove underline for mobile headings if desired, or make it full width */
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 30px 15px 15px;
    }

    .footer-logo .logo-text {
        font-size: 1.3em;
    }
    .footer-logo .logo-tagline {
        font-size: 0.6em;
    }
    .social-icons a {
        font-size: 1.4em;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(66, 66, 66, 0.13);
        border-radius: 16px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(7.4px);
        -webkit-backdrop-filter: blur(7.4px);
        border: 1px solid rgba(66, 66, 66, 0.3);
        position: absolute;
        top: 48px;
        right: 0;
        width: 100%;
        height: 100%;
        padding: 10px;
        border-radius: 16px;
    }
    .nav-links li {
        text-align: center;
        padding: 10px 0;
    }
    .menu-toggle {
        display: block;
    }
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 30px;
    }  
    .hero .cta-button {
       width: 74%;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    
    } 
    .container h1 {
        font-size: 2em;
    }

    .container .image-grid {
        grid-template-columns:repeat(auto-fit, minmax(160px, 1fr)); /* Single column for smaller screens */
    }
}