     /* Global Styles */
     body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        overflow-x: hidden !important;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    /* Header Section */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        background-color: #f8f9fa;
    }

    .navbar-brand img {
        height: auto;
        max-height: 84px;
        width: auto;
        max-width: 100%;
        margin-top: -45px;
        margin-bottom: -30px;
    }

    .navbar-nav .nav-link {
        font-size: 18px;
        font-weight: bold;
    }

    .social-icons a {
        color: #333;
        font-size: 18px;
        margin-right: 15px;
        transition: color 0.3s;
    }

    .social-icons a:hover {
        color: #007bff;
    }

    /* Contact Section */
    .header {
        text-align: center;
        padding: 50px 20px;
        background-color: #f8f9fa;
    }
    .container {
width: 80%;
margin: auto;
overflow: hidden;
}
.main-content {
display: flex;
justify-content: space-between;
margin-top: 20px;
}
.main-content .left {
width: 65%;
}
.main-content .right {
width: 30%;
}
.main-image img {
width: 100%;
height: auto;
border-radius: 10px;
}
.gallery {
display: flex;
margin-top: 10px;
gap: 10px;
}
.gallery img {
width: calc(20% - 10px);
height: 100px;
object-fit: cover;
border-radius: 5px;
}
.info {
margin-top: 20px;
}
.info h1 {
margin: 0;
font-size: 2em;
}
.info p {
margin: 5px 0;
color: #777;
}
.description {
margin-top: 20px;
/*  background: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

/* Base styles for desktop */
.recent-projects {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 20px; /* Add space between cards */
  }
  
  .recent-project {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 30%;
  }
  
  .recent-project img {
    width: 100%;
    border-radius: 5px;
  }
  
  .recent-project .project-info {
    margin-top: 10px;
  }
  
  .recent-project .project-info h3 {
    margin: 0;
  }
  
  h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  /* Mobile View Adjustments */
  @media (max-width: 768px) {
    .recent-projects {
      flex-direction: column; /* Stack cards vertically */
      align-items: center;
      gap: 15px; /* Reduce gap between stacked items */
    }
  
    .recent-project {
      width: 80%; /* Increase width to fill the screen */
    }
  
    h2 {
      font-size: 20px; /* Adjust the font size of the heading */
    }
  }
  
  /* Small mobile view (less than 480px) */
  @media (max-width: 480px) {
    .recent-projects {
      gap: 10px; /* Further reduce gap on very small screens */
    }
  
    .recent-project {
      width: 100%; /* Make each project card full width on small screens */
      padding: 15px; /* Increase padding for better touch interaction */
    }
  
    .recent-project .project-info p {
      font-size: 14px; /* Adjust the text size for smaller screens */
    }
  
    h2 {
      font-size: 18px; /* Adjust the heading font size for very small screens */
    }
  }
  

/* =====================================================
   Calendar, Booking & Date Picker Styles
====================================================== */
.date-range {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 14px;
}

.month-selector {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  margin-bottom: 10px;
  cursor: pointer;
}

#calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  padding: 10px;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.weekday {
  font-weight: bold;
  text-align: center;
  padding: 5px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
}

.day {
  padding: 12px;
  /* width: auto ensures the button scales with the grid cell */
  text-align: center;
  cursor: pointer;
  border: 1px solid #ccc;
  transition: background-color 0.3s;
  border-radius: 4px;
}

.day:hover {
  background-color: #d7a3a3;
}

.day.selected {
  background-color: #FF6F61;
  color: white;
}

.actions {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.dates {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-size: 14px;
}

.date-type-selection {
  margin-top: 10px;
  text-align: center;
}

.date-type-selection label {
  margin-right: 10px;
  padding: 2px;
  background-color: #b3b3d3;
  border-radius: 5px;
}

.date-label {
  font-weight: bold;
  background-color: #836f5885;
  border-radius: 5px;
  padding: 5px;
}

#cancelButton,
#setDatesButton {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 4px;
}

#cancelButton {
  background-color: #f44336;
  color: white;
}

#cancelButton:hover {
  background-color: #d32f2f;
}

#setDatesButton {
  background-color: #4CAF50;
  color: white;
}

#setDatesButton:hover {
  background-color: #45a049;
}

/* =====================================================
   Modal Styles & Loader Spinner
====================================================== */
.modal {
display: none; /* Hidden by default */
position: fixed;
z-index: 1001;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
background-color: #fefefe;
padding: 20px;
border: 1px solid #888;
border-radius: 10px;
width: 32%;
position: absolute;  /* Changed from relative */
top: 50%;
left: 50%;
transform: translate(-50%, -50%); /* Shifts the element back by 50% of its width/height */
}

.close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 25px;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.spinner {
  border: 8px solid rgba(255, 255, 255, 0.3);
  border-top: 8px solid #ff5733;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1.5s linear infinite, colorChange 3s infinite ease-in-out;
}

#loader {
  display: none;
  text-align: center;
  margin-top: 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes colorChange {
  0% { border-top-color: #ff5733; }
  25% { border-top-color: #ffb733; }
  50% { border-top-color: #33bfff; }
  75% { border-top-color: #75ff33; }
  100% { border-top-color: #ff5733; }
}

/* =====================================================
   Form Elements
====================================================== */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 90%;
  padding: 10px;
  margin: 5px 0 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button[type="submit"] {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

button[type="submit"]:hover {
  background-color: #45a049;
}

.selected {
  background-color: #4caf50;
  /* Green background for selected dates */
}

/* =====================================================
   Gallery Styles
====================================================== */
.gallery {
  display: flex;
  flex-wrap: wrap;
}

.gallery img {
  width: 100px; /* Default width for gallery images */
  margin: 5px;
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery img:hover {
  transform: scale(1.1);
}

/* The close button used inside the gallery modal (if needed) */
.close {
  position: absolute;
  color: #000;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  top: 0px;
  right: 0px;
}

/* =====================================================
   Contact Section (if applicable)
====================================================== */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
  gap: 20px;
}

.info, .form {
  flex: 1;
  min-width: 300px;
}

.info h2, .form h2 {
  margin-bottom: 20px;
}

.info p {
  margin-bottom: 15px;
}

.form input, .form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.form button:hover {
  background-color: #0056b3;
}

/* =====================================================
   Layout: Container & Main Content
====================================================== */
.container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
}

.main-content {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.main-content .left {
  width: 65%;
}

.booking-container {
  
  margin-left: 30px;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  height: fit-content;
}

.main-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* =====================================================
   Responsive Adjustments
====================================================== */
@media (max-width: 768px) {
  /* Make container nearly full width on small screens */
  .container {
    width: 95%;
  }
  
  /* Stack main content vertically */
  .main-content {
    flex-direction: column;
  }
  .main-content .left,
  .booking-container {
    width: 100%;
    margin: 0;
  }
  .booking-container {
    margin-top: 20px;
  }
  
  /* Gallery images: make them a bit larger and wrap */
  .gallery img {
    width: calc(48% - 10px);
    margin: 5px;
  }
  
  /* Calendar grid: reduce number of columns if needed */
  #calendar {
    grid-template-columns: repeat(4, 1fr);
  }
  
  /* Modal: increase width to fill available space */
  .modal-content {
    width: 90%;
  }
  
  /* Adjust contact section if visible */
  .contact-section {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  /* Smaller padding and font sizes on very small devices */
  .day {
    padding: 8px;
  }
  .month-selector {
    font-size: 14px;
  }
  .navbar-nav {
    flex-direction: column;
  }
}
    /* Map Section */
    .map-section {
        padding: 20px;
        text-align: center;
    }

    .map-section iframe {
width: 100% !important;
height: 400px !important;
border: 0;
}

/* Footer Section */
.footer {
background-color: #25425e;
color: white;
padding: 50px 20px;
text-align: center;
font-size: 14px;
}

.footer-container {
display: flex;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
padding: 0 5%;
gap: 30px;
}

.footer-logo img {
max-height: 60px;
margin-bottom: 10px;
}

.footer-column h4 {
font-size: 18px;
margin-bottom: 37px;
color: #fff;
font-weight: bold;
}

.footer-column p,
.footer-column a {
color: #d1d1d1;
font-size: 14px;
line-height: 1.6;
text-decoration: none;
margin-bottom: 10px;
}

.footer-column a:hover {
color: #00aaff;
text-decoration: underline;
}

.footer-column {
flex: 1;
text-align: left;  /* Ensure text is aligned to the left */
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
.footer-container {
    flex-direction: column;  /* Stack the columns vertically */
    align-items: flex-start;  /* Align items to the left */
}

.footer-column {
    margin-bottom: 20px;  /* Add spacing between columns */
}

.footer-logo img {
    max-height: 50px;  /* Adjust logo size */
}

.footer-social a {
    margin: 0 10px;  /* Adjust social icons spacing */
}

.footer-bottom {
    font-size: 12px;
    margin-top: 10px;
    text-align: left;  /* Align footer text to the left */
}
}

/* Ensure footer text is left-aligned even on larger screens */
.footer-column p, .footer-column a {
text-align: left;  /* Ensure left-alignment for text and links */
}

    /* Mobile View Adjustments */
    @media (max-width: 768px) {
        .navbar-nav {
            flex-direction: column;
            align-items: flex-start;
        }

        .navbar-nav .nav-item {
            margin-bottom: 10px;
        }

        .social-icons {
            margin-top: 10px;
        }

        .contact-section {
            flex-direction: column;
            margin-left: 66px;
        }

        .map-section iframe {
            height: 300px;
        }
    }
    
.fix-icon {
display: inline-block;  
position: fixed;
bottom: 100px;
left: 20px;
z-index: 999999;
}

.fix-icon-whataap {
display: inline-block;
position: fixed;
bottom: 30px;
left: 20px;
z-index: 999999;
transition: all0 .5s ease-in-out;
}
.fix-icon-whataap-item img {
border-radius: 50%;
box-shadow: 1px 1px 4px rgba(60, 60, 60, .4);
transition: box-shadow .2s;
cursor: pointer;
overflow: hidden;
width: 55px !important;
height: 55px !important;
background: #25d366 !important;
}