/* Base Styles */
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: white;
    border-bottom: 1px solid #ddd;
    padding: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* Ensure dropdown is positioned correctly */
    z-index: 1000; /* Ensure header is above other content */
    padding: 1em 2em;
    color: #0c6d3d;
}

header .logo img {
    height: 100px;
}

header nav {
    display: flex;
    align-items: center;
}

header .nav-list {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
}

header .nav-list li {
    margin: 0 1em;
    position: relative; /* Ensure dropdown content is positioned correctly */
}

header .nav-list li a {
    color: #0c6d3d;
    text-decoration: none;
}

header .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

header .hamburger span {
    background: #0c6d3d;
    margin: 4px 0;
    height: 2px;
    width: 25px;
}

nav ul .dropdown-content {
    display: none;
    position: absolute !important;
    top: 100%; /* Position directly below the menu item */
    left: 0;
    background-color: white;
    border: 1px solid #ddd;
    padding: 0;
    list-style: none;
    z-index: 1; /* Ensure dropdown is above other content */
}

.dropdown-content li {
    border-top: 1px solid #ddd;
}

.dropdown-content li a {
    color: #0c6d3d;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content li a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    display: block;
}

/* Make sure dropdown remains open when hovering over it */
header .nav-list li:hover .dropdown-content {
    display: block; 
}

#hero {
    position: relative;
    background: url('hero-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 6em 2em;
    overflow: hidden;
}

#hero .overlay-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#hero .hero-content {
    position: relative;
    z-index: 2;
    background-color: rgba(70, 73, 123, 0.8); /* RGBA for semi-transparent background */
    padding: 2em;
    border-radius: 8px;
    display: inline-block;
}

#hero .hero-content h1,
#hero .hero-content p {
    color: white; /* Ensure text is readable against the background */
    margin: 0.5em 0;
}

#hero .hero-content h1 {
    font-size: 3em;
    font-weight: bold;
    text-shadow: none;
  
}

#hero .hero-content p {
    font-size: 1.5em;
    margin: 0.5em 0;
}

.whowearep {
    max-width: 70%; /* Set a maximum width for the paragraphs */
    margin: 0 auto; /* Center the paragraphs */
    text-align: center;
    line-height: 1.6; /* Adjust line height for better readability */
    padding: 0 20px; /* Add some padding for better spacing on smaller screens */
    
}

@media (max-width: 1024px) {
    .whowearep {
        max-width: 100%; /* Full width */
        padding: 0 10px; /* Reduce padding to fit smaller screens */
    }
}

#hero button {
    padding: 1em 2em;
    background-color: white; /* White background for the button */
    color: black; /* Black text color */
    border: none;
    cursor: pointer;
    font-size: 1em;
    border-radius: 4px;
    margin-top: 0.5em;
}

#hero button:hover {
    background-color: #f0f0f0; /* Optional: Slightly darker background on hover */
}


#hero .overlay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
   
}

#hero .hero-content {
    position: relative;
    z-index: 2;
    background-color: rgba(70, 73, 123, 0.8); /* RGBA for semi-transparent background */
    padding: 2em;
    border-radius: 8px;
    display: inline-block;
    max-width: 90%; /* Ensures the content doesn't exceed the viewport width */
    margin: 0 auto; /* Centers the content */
}

#hero .hero-content h1 {
    
    font-size: 3em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0.5em 0;
   
}

#hero .hero-content p {
    font-size: 1.5em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin: 0.5em 0;
}


.product-item button {
    padding: 1em 2em;
    background-color: #79c142;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1em;
    border-radius: 4px;
    margin-top: 0.5em;
}

section {
    padding: 2em;
}

section h2 {
    text-align: center;
    margin-bottom: 1em;
    font-size: 2em;
    font-weight: bold;
   
    position: relative; /* Required for positioning the ::after element */
}

section h2::after {
    content: '';
    display: block;
    width: 60px; /* Adjust the width as needed */
    height: 5px; /* Adjust the thickness of the line */
    background-color: #79c142; /* The line color */
    margin: 0.5em auto 0; /* Center the line and add spacing */
}

#services {
    padding: 2em;
    background-color: #f9f9f9;
}

#services h2 {
    text-align: center;
    margin-bottom: 1em;
    font-size: 2em;
    font-weight: bold;
   
    position: relative;
}

#services h2::after {
    content: '';
    display: block;
    width: 60px; /* Adjust the width as needed */
    height: 5px; /* Adjust the thickness of the line */
    background-color: #79c142; /* The line color */
    margin: 0.5em auto 0; /* Center the line and add spacing */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1em;
    padding: 0 1em;
}

/* Grid Tablet View */
@media (min-width: 768px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablet view */
    }
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1em;
    border: 1px solid #ddd;
    text-align: center;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-item img {
    width: 80px; /* Adjust icon size */
    height: 80px;
   
}

.service-item h3 {
    margin: 0.5em 0;
    font-size: 1.5em;
    font-weight: bold;
}

.service-item p {
    font-size: 1em;
    color: #666;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    #services h2 {
        font-size: 2em; /* Adjust font size for smaller screens */
    }

    .services-grid {
        padding: 0;
    }

    .service-item {
        padding: 1em;
    }
}

/* Base Styles for Sections */
section {
    padding: 2em;
    margin-bottom: 2em; /* Add margin below each section */
}

/* Header, Hero, and Footer Section Padding Adjustments */
header, #hero, footer {
    padding: 1em 2em; /* Consistent padding for header */
}

#hero {
    padding: 6em 2em; /* Adjust padding for hero section */
}

/* Remove Margin from Last Section */
section:last-of-type {
    margin-bottom: 0; /* Remove margin from the last section to prevent extra space at the bottom */
}

/* Ensure consistent spacing between sections in responsive designs */
@media (max-width: 768px) {
    section {
        padding: 1em; /* Adjust padding for smaller screens */
        margin-bottom: 1em; /* Adjust margin for smaller screens */
    }
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1em;
    padding: 0 1em;
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1em;
    border: 1px solid #ddd;
    text-align: center;
    margin-bottom: 1em;
    position: relative;
}

.product-item img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
}

.product-item h3 {
    margin: 0.5em 0;
}

footer {
    background-color: #f1f1f1;
    padding: 2em;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}

.footer-links a {
    margin: 0 0.5em;
    color: #0c6d3d;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.social-media {
    display: flex;
    gap: 1em;
}

.social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-bottom {
    margin-top: 1em;
}

/* Base Styles for Footer */
footer {
    background-color: #f1f1f1;
    padding: 2em;
    text-align: center;
}

/* Center-align footer content on mobile */
@media (max-width: 768px) {
    footer {
        padding: 1em; /* Adjust padding for mobile */
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center; /* Center align items */
        text-align: center; /* Ensure text is centered */
    }

    .footer-links a {
        margin: 0.5em 0; /* Add margin around links */
    }

    .social-media {
        display: flex;
        gap: 1em;
        margin: 1em 0; /* Add margin around social media icons */
    }

    .footer-bottom {
        margin-top: 1em; /* Adjust margin for bottom text */
    }
}



@media (max-width: 768px) {
    header .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: white;
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 10;
        padding: 1em;
    }

    header .logo img {
        height: 25px;
    }

    header .nav-list.active {
        display: flex;
    }

    header .nav-list li {
        margin: 0;
    }

    header .nav-list li a {
        padding: 1em;
        border-bottom: 1px solid #ddd;
        display: block;
    }

    header .hamburger {
        display: flex;
    }

    header .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        width: 100%;
        list-style: none;
    }

    header .dropdown:hover .dropdown-content,
    header .dropdown-content:hover {
        display: block;
    }

    .dropdown-content.show {
        display: block;
    }

    #section-logo {
        text-align:center;
    }

    /* Responsive Styles for Hero Section */
@media (max-width: 768px) {
    #hero {
        padding: 4em 1em; /* Reduces padding to fit smaller screens */
    }

    #hero .hero-content {
        padding: 1.5em;
        max-width: 100%; /* Allow the content to use full width on smaller screens */
    }

    #hero .hero-content h1 {
        font-size: 2em; /* Smaller font size for mobile */
     
    }

    #hero .hero-content p {
        font-size: 1.2em; /* Smaller font size for mobile */
    }

    #hero button {
        padding: 0.8em 1.5em; /* Adjust padding for mobile */
        font-size: 0.9em; /* Smaller font size for mobile */
    }
}
}


@media (max-width: 1024px) {
    footer .footer-content {
        flex-direction: column;
        align-items: center;
    }
}

/* Showroom Info Section */
#showroom-info {
    padding: 2em;
    background-color: #f9f9f9;
    text-align: center;
}

#showroom-info h1 {
    margin-bottom: 0.5em;
}

#showroom-info p {
    margin: 0.5em 0;
    font-size: 1.1em;
}

/* Google Maps Section */
#google-maps {
    padding: 2em;
    text-align: center;
}

#google-maps h2 {
    margin-bottom: 1em;
}

.map-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* Gallery Section - Full Width */
#gallery {
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

/* Swiper container should take full width */
.swiper-container {
    width: 100%;
    height: auto;
    position: relative;
}

/* Ensure slides take full width */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Fix image width to stay within viewport */
.swiper-slide img {
    width: 100%;   /* Ensures the image fills the container */
    height: auto;  /* Maintains aspect ratio */
    object-fit: cover;
    max-width: 100vw; /* Prevents overflow */
}
/* Swiper Navigation Buttons - All White */
.swiper-button-next,
.swiper-button-prev {
    color: #fff !important; /* Ensure the icons are white */
    background: rgba(255, 255, 255, 0.8); /* White semi-transparent background */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Remove default arrows and use FontAwesome for full white effect */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    color: #fff; /* Ensure arrows are white */
}

/* Positioning Fix */
.swiper-button-prev {
    left: 15px;
}

.swiper-button-next {
    right: 15px;
}

/* Swiper Pagination Dots - All White */
.swiper-pagination .swiper-pagination-bullet {
    background: #fff !important; /* Ensure white color */
    opacity: 1; /* Make them fully visible */
}

.swiper-pagination .swiper-pagination-bullet-active {
    background: #fff !important; /* Ensure active dot is also white */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
    }
}

/* Navigation buttons styling */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure buttons are within viewport */
.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
    }
}




/* Contact Us Section */
#contact-us {
    padding: 2em;
    background-color: #f9f9f9;
}

#contact-us .container {
    max-width: 800px;
    margin: 0 auto;
}

#contact-us h1 {
    text-align: center;
    margin-bottom: 1em;
}

#contact-us p {
    text-align: center;
    margin-bottom: 2em;
}

form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1em;
}

.form-group label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group textarea {
    resize: vertical;
}

button {
    background-color: #79c142;
    color: white;
    border: none;
    padding: 1em;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #1b1a4a;
}

/* Consistent style for both headings */
h1.showroom-heading {
   
    font-size: 2.5em; /* Ensure the size matches */
    font-weight: bold;
   
   
    margin-bottom: 1em;
}

/* Adjust the section padding for mobile */
@media (max-width: 768px) {
    h1.showroom-heading {
        font-size: 2em; /* Adjust for smaller screens */
    }
}

/* Style for the heading underline */
.heading-underline {
    width: 200px; /* Adjust width as needed */
    height: 5px; /* Adjust thickness as needed */
    background-color: #464b7b; /* Match the color */
    margin: 10px auto 20px; /* Adjust spacing around the line */
}

/* Consistent style for headings */
h1.showroom-heading,
h2 {
   
    font-size: 2.5em; /* Ensure the size matches */
    font-weight: bold;
    text-transform: uppercase;
    
   
    margin-bottom: 0.5em; /* Adjust bottom margin as needed */
}

/* Adjustments for mobile devices */
@media (max-width: 768px) {
    h1.showroom-heading,
    h2 {
        font-size: 2em; /* Adjust font size for smaller screens */
    }
    .heading-underline {
        width: 80px; /* Adjust the line width for mobile */
    }
}

/* Project Section Styles */
#projects {
    padding: 2em;
    background-color: #f9f9f9;
}

#projects h2 {
    text-align: center;
    margin-bottom: 1em;
    font-size: 2em;
    font-weight: bold;
   
    position: relative;
}

#projects h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background-color: #79c142;
    margin: 0.5em auto 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1em;
    padding: 0 1em;
}

.project-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1em;
    border: 1px solid #ddd;
    text-align: center;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.project-item img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.project-item h3 {
    margin: 0.5em 0;
    font-size: 1.5em;
    font-weight: bold;
    color: #79c142;
}

.project-item p {
    font-size: 1em;
    color: #666;
    margin: 0.5em 0 1em;
    padding: 0 1em;
}

.project-item button {
    padding: 1em 2em;
    background-color: #c7ffd9;
    border: none;
    color: #79c142;
    cursor: pointer;
    font-size: 1em;
    border-radius: 4px;
    margin-top: 0.5em;
}



#project-details .gallery-grid, #related-projects .related-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

#project-details .gallery-item img, #related-projects .related-project-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
#testimonials {
    padding: 2em;
    background-color: #f9f9f9; /* Light background to distinguish section */
    text-align: center;
    margin-top: 2em;
}

#testimonials h2 {
    font-size: 2em;
    font-weight: bold;
   
    position: relative;
    margin-bottom: 1em;
}

#testimonials h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background-color: #79c142;
    margin: 0.5em auto 0;
}

.testimonials-content {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    margin-bottom: 2em;
}

.testimonial-text {
    font-size: 1.2em;
    font-style: italic;
    line-height: 1.6;
    margin: 0 auto 1em;
    max-width: 100%;
}

.client-name {
    font-size: 1.1em;
    font-weight: bold;
    color: #79c142;
}

/* Product Range Page Styles */
#product-range {
    padding: 2em;
    background-color: #f9f9f9;
}

#product-range h1 {
    text-align: center;
    margin-bottom: 0.5em;
    font-size: 2.5em;
    font-weight: bold;
  
}

.heading-underline {
    width: 200px; /* Adjust width as needed */
    height: 5px; /* Adjust thickness as needed */
    background-color: #79c142; /* Match the color */
    margin: 10px auto 20px; /* Adjust spacing around the line */
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1em;
    padding: 0 1em;
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1em;
    border: 1px solid #ddd;
    text-align: center;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-item img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.product-item h3 {
    margin: 0.5em 0;
    font-size: 1.5em;
    font-weight: bold;
    color: #0c6d3d;
}

.product-item p {
    font-size: 1em;
    color: #666;
    margin: 0.5em 0 1em;
    padding: 0 1em;
}

.product-item button {
    padding: 1em 2em;
    background-color: #c7ffd9;
    border: none;
    color: #79c142;
    cursor: pointer;
    font-size: 1em;
    border-radius: 4px;
    margin-top: 0.5em;
}



/* Responsive Styles for Product Range Page */
@media (max-width: 768px) {
    #product-range h1 {
        font-size: 2em; /* Adjust for smaller screens */
    }

    .heading-underline {
        width: 80px; /* Adjust the line width for mobile */
    }
}

/* Product Grid - 4 Items per Row */
#product-range {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 items per row */
    gap: 20px; /* Space between items */
    max-width: 1200px;
    margin: auto;
}

/* Product Item Styling */
.product-item {
    background: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Make Whole Item Clickable */
.product-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Product Images */
.product-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Product Titles */
.product-item h3 {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}

/* Responsive - Adjust to 2 per row on smaller screens */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row */
    }
}

/* Responsive - Adjust to 1 per row on mobile */
@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: repeat(1, 1fr); /* 1 item per row */
    }
}

/* Welcome Section Styling */
#welcome-section {
    padding: 60px 20px;
    background-color: #f4f4f4;
}

.welcome-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

/* Left Side - Text */
.welcome-text {
    flex: 1;
    max-width: 600px;
}

.welcome-text h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

.welcome-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

/* Right Side - Image */
.welcome-image {
    flex: 1;
}

.welcome-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    display: block;
}

/* Responsive - Stack on Mobile */
@media (max-width: 768px) {
    .welcome-container {
        flex-direction: column;
        text-align: center;
    }

    .welcome-text, .welcome-image {
        max-width: 100%;
    }

    .welcome-image img {
        max-width: 100%;
    }
}

/* Map Section */
#map-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f4f4f4;
}

#map-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.map-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .map-container iframe {
        height: 350px;
    }
}

/* Ticker Section */
#ticker {
    background-color: #0c6d3d; /* Green background */
    color: white;
    width: 100%;
    padding: 10px 0;
    text-align: center;
}

.ticker-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 1200px; /* Adjust as needed */
    margin: 0 auto;
    padding: 10px;
    flex-wrap: wrap;
}

.ticker-logo {
    height: 70px; /* Adjust as needed */
    width: auto;
}

@media (max-width: 768px) {
    .ticker-container {
        flex-direction: column;
        text-align: center;
    }
    .ticker-logo {
        height: 30px;
    }
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 images per row */
    gap: 15px; /* Space between images */
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.gallery-item img {
    width: 100%; /* Make images responsive */
    height: auto;
    border-radius: 5px; /* Optional: adds rounded corners */
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr); /* Show 3 images per row on medium screens */
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* Show 2 images per row on tablets */
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(1, 1fr); /* Show 1 image per row on small screens */
    }
}

/* Insulation Brands Section */
#insulation-brands {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 40px 0;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
}

/* Brand Container */
.brand-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

/* Individual Brand Box */
.brand-item {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 48%; /* Prevents them from taking full width */
}

/* Brand Header */
.brand-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

/* Brand Logo */
.brand-logo {
    width: 50px; /* Adjust logo size */
    height: auto;
}

/* PDF Links */
.pdf-links {
    list-style: none;
    padding: 0;
}

.pdf-links li {
    margin: 10px 0;
}

.pdf-links a {
    text-decoration: none;
    color: #0073e6;
    font-weight: bold;
    transition: 0.3s ease;
}

.pdf-links a:hover {
    text-decoration: underline;
    color: #005bb5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-container {
        flex-direction: column;
        align-items: center;
    }

    .brand-item {
        max-width: 100%;
    }
}