body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
html, body {
    width: 100%;
    overflow-x: hidden;
}
body {
    font-size: 16px; /* Adjust this to match other pages */
}

header {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    display: flex;  
}

.contact-info p {
    margin: 0; /* Remove default margin */
}

.header-content {
    display: flex; /* Use flexbox */
    align-items: center; /* Center items vertically */
    justify-content: space-between; /* Logo on left, nav on right */
    width: 100%; /* Ensure full-width alignment */
    max-width: 1200px; /* Adjust this based on your layout */
    margin: 0 auto; /* Center the content */
}

.logo {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Keep the original text color */
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
        
}
  .logo a {  /*this is for logo decoration */
    text-decoration: none; /* Removes the underline */
    color: inherit; /* Keeps the original text color */
    font-weight: bold; /* Optional: makes the text bold */
    
}
nav ul {
    list-style: none;
    padding: 0;
    gap: 20px;
    display: flex;
    
        
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 1450px; /* Set a fixed max width */
    height: 500px; /* Ensure the container stays fixed */
    margin: auto; /* Center the slideshow */
    border: 5px solid #000000;
    border-radius: 10px;
    padding: 6px;
    background-color: #d4d4d4;
    overflow: hidden; /* Prevents overflow issues */
}

.mySlides {
    display: block;
    display: flex; /* Flex ensures images align properly */
    justify-content: center;
    
}

.mySlides img { 
  width: 100%; /* Makes the image stretch within the container */
  max-width: 1450px; /* Set a fixed maximum width */
  height: 500px; /* Keep height fixed */
  object-fit: contain; /* Ensure images fill the area properly */
}

.text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: black;
    font-size: 20px; /* Adjust font size for better visibility */
    animation: slideIn 1s forwards;
}

@keyframes slideIn {
    from {
        transform: translate(-50%, 50%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

section { 
    padding: 20px;
    background-color: #d4d4d4;
}
.pre-footer {
    background-color: #3a3a3a;
    color: white;
    padding: 30px 0;
}

.container {
    width: 90%;
    margin: auto;
}

.pre-footer-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about, .useful-links, .opening-hours {
    width: 30%;
}

h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

p, ul {
    font-size: 14px;
    line-height: 1.5;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 5px;
}

ul li a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

ul li a:hover {
    color: #007BFF;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}
.gallery-page {
    background-color: #f4f4f4;
    
}

.pre-footer {
    background-color: #3a3a3a;
    color: white;
    padding: 30px 0;
}

.container {
    width: 90%;
    margin: auto;
}

.pre-footer-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.gallery-page {
    background-color: #f4f4f4;
    
}

.gallery-page .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}


.gallery-page .gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    background: white;
}

.gallery-page .gallery-item:hover {
    transform: scale(1.05);
}

.gallery-page .gallery-item img {
    width: 100%;
    height: 315px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    display: block;
}

.gallery-page .gallery-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    display: block;
}

.video-caption {
    padding: 10px;
    margin: 0;
    text-align: center;
    background: white;
    border-radius: 0 0 10px 10px;
    color: #333;
    font-size: 14px;
}


.contact-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    background-color: #f4f4f4; /* Light gray background */
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-container h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.contact-info {
    background-color: #121212;
    color: white;
    padding: 10px;
    border-radius: 0px;
    margin-bottom: 0px;
}

.contact-info p {
    font-size: 16px;
    margin: 5px 0;
}

.contact-info a {
    color: #007BFF;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-size: 16px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form button {
    background-color: #007BFF;
    color: white;
    font-size: 16px;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.contact-form button:hover {
    background-color: #0056b3;
}
.about-us {
    background-color: #d4d4d4; /* Light background */
    padding: 50px 0;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
}

.about-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.about-content {
    max-width: 600px;
}

.about-content h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.about-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}
/* Customers Page Styling */
.customer-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.customer-container h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.customer-lists {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.customer-column {
    flex: 1;
    padding: 15px;
    background: #d4d4d4;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
}

.customer-column h3 {
    text-align: center;
    font-size: 1.5rem;
    color: #444;
    margin-bottom: 10px;
}

.customer-column ul {
    list-style: none;
    padding: 0;
}

.customer-column li {
    padding: 8px;
    font-size: 1rem;
    border-bottom: 1px solid #ddd;
}

.customer-column li:last-child {
    border-bottom: none;
}

/* Responsive: Stack columns on smaller screens */
@media (max-width: 768px) {
    .customer-lists {
        flex-direction: column;
    }
}
.whatsapp-icon {
    position: fixed;
    left: 20px; /* Adjust as needed */
    bottom: 20px; /* Adjust as needed */
    z-index: 1000;
}

.whatsapp-icon img {
    width: 50px; /* Adjust size */
    height: auto;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.whatsapp-icon img:hover {
    transform: scale(1.1);
}
@media (max-width: 768px) {
    nav ul {
        gap: 10px;
    }
    nav a {
        font-size: 14px; /* Slightly smaller text for mobile */
    }
}
@media (max-width: 768px) {
    .slideshow-container {
        max-width: 90%;
        padding: 6px 10px;
    }
}
@media (max-width: 768px) {
    .about-image img {
        max-width: 90%; /* Make sure it doesn't become too small */
    }
}
@media (max-width: 768px) {
    .about-content {
        max-width: 95%; /* Gives extra room */
        padding: 15px; /* Increases padding for breathing space */
    }
    .about-content p {
        font-size: 14px; /* Slightly smaller text for better fit */
        word-wrap: break-word; /* Prevents long words from overflowing */
    }
}
@media (max-width: 768px) {
    .about-image {
        display: none;
    }
}
@media (max-width: 768px) {
    .about-section {
        display: block;  /* or adjust as needed for your layout */
        text-align: center;
    }
}

