* {
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    margin: 0;
  }
  
  header {
    background-color: #ffffff;
    color: #2C3639;
    display: flex;
    justify-content: space-between;
    padding: 15px;
  }

  
  .banner {
    background-color: #2C3639 ;
    color: #e92b1dd5;
    height: 50px;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  
  .banner-text {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 10px;
    padding: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  

  
  nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  nav li {
    margin-right: 20px;
  }
  
  nav a {
    color: #2C3639;
    text-decoration: none;
  }
  
  main {
    margin: 0px;
  }
  


  #hero {
    position: relative;
    padding: 240px;
    text-align: center;
    color: #f3f3f3;
    border-radius: 15px;
    max-width: 100%;
    height: 80vh;
  }
  
  #hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/IMG-5-5.jpg');
    background-size: cover;
    filter: blur(4px);
    -webkit-filter: blur(5px);
    z-index: -1;
  }
  
  #hero h2 {
    font-size: 48px;
    margin: 0;
    position: relative;
    z-index: 1;
  }
  
  #hero p {
    font-size: 24px;
    margin: 20px 0;
    position: relative;
    z-index: 1;
  }
  
  

  #about {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-color: #f4f4f4d3;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 150px 30px 100px 30px;
    
    margin: 0 auto; /* center the container */
  } 

  #about h2 {
    font-size: 40px;
  }

  #about p {
    font-size: 20px;
  }
  


  .column-text {
    width: 70%;
    padding-right: 100px;
    padding-left: 100px;
  }
  
  .column-image {
    width: 30%;
    
    
  }
  


  .button {
  display: inline-block;
  background-color: #5d2e56;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  }

  .button:hover {
    background-color: #4a2444;
  }


#services {
  padding: 120px;
}




/* Contact Section Enhancements */
#contact {
  padding: 60px 0;
  max-width: 1200px;
  margin: 0 auto;
}

#contact h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  position: relative;
}

#contact h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #ad9fab;
}

/* Contact Info Cards */
.contact-info-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 40px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 8px;
  min-width: 250px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  background-color: #5d2e56;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  font-size: 20px;
}

.contact-details h3 {
  margin: 0 0 5px 0;
  font-size: 18px;
  color: #333;
}

.contact-details p {
  margin: 0;
  color: #666;
}

.contact-details a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-details a:hover {
  color: #5d2e56;
}

/* Form Heading */
.form-heading {
  text-align: center;
  margin: 30px 0;
  font-size: 1.5rem;
  color: #444;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f4f4f4d3;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 10px;

}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  width: 100%;
  max-width: 600px;
  background-color: #f4f4f4d3;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 10px;
}

label {
  font-weight: bold;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="address"],
textarea {
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  border: none;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  resize: vertical;
}

textarea {
  height: 150px;
}

button[type="submit"] {
  padding: 10px 20px;
  background-color: 
#5d2e56;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

button[type="submit"]:hover {
  background-color: 
#4a2444;
}



#gallery {
  margin: 20px;
}

#gallery h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.service-container {
  width: 60%;
  margin: 0 auto;
  padding: 20px;
  background-color: #f5f5f5;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.service-text {
  font-family: Arial, sans-serif;
  font-size: 25px;
  color: #333;
  line-height: 1.5;
  white-space: pre-line;
  text-align: center;
  padding: 30px;

}

/* New CSS for the centered image */
.image-container {
  text-align: center;
  margin: 20px 0;
}

.centered-image {
  max-width: 30%;
  height: auto;
  display: inline-block;
}


* {box-sizing: border-box;}

/* Position the image container (needed to position the left and right arrows) */
.slideshow-container {
  position: relative;
  max-width: 1000px;
  margin: auto;
  border: 15px;
}

/* Hide the images by default */
.slide-images {
  display: none;
  border: 15px;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.back,
.forward {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.forward {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.back:hover,
.forward:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

/* Thumbnail container with horizontal scroll */
.thumbnail-container {
  position: relative;
  margin-top: 10px;
  display: flex;
  align-items: center;
}

/* Convert row to scrollable */
.thumbnail-row {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 100%;
  padding: 0 5px;
  flex-wrap: nowrap; /* Prevent wrapping */
}

/* Thumbnail navigation buttons */
.thumb-prev, .thumb-next {
  cursor: pointer;
  padding: 10px;
  color: #333;
  font-weight: bold;
  font-size: 18px;
  user-select: none;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  z-index: 10;
  min-width: 20px; /* Ensure minimum width */
}

.thumb-prev {
  margin-right: 5px;
}

.thumb-next {
  margin-left: 5px;
}

.thumb-prev:hover, .thumb-next:hover {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
}

/* Modify column for scrolling */
.thumbnail-row .column {
  min-width: calc(100% / 6); /* Show 6 thumbnails at a time */
  flex: 0 0 auto;
}





  
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  header {
    padding: 10px;
  }

  .banner-text {
    font-size: 6px;
  }

  nav li {
    margin-right: 10px;
  }

  #hero {
    padding: 120px;
  }

  #hero h2 {
    font-size: 32px;
  }

  #hero p {
    font-size: 18px;
  }

  #logo {
    width: 35%
  }

  #about {
    padding: 100px 15px;
  }

  #about h2 {
    font-size: 32px;
  }

  #about p {
    font-size: 16px;
  }

  .column-text {
    width: 100%;
    padding: 0;
  }

  .column-image {
    width: 100%;
    margin-top: 20px;
  }

  #services {
    padding: 60px;
  }

  .service-container {
    width: 95%;
  }
  
  .service-text {
    font-size: 18px;
  }

  .thumbnail-row .column {
    min-width: calc(100% / 4); /* Show 4 thumbnails on smaller screens */
  }

  .toggle-icon {
    width: 15px;
    height: 15px;
  }

  .footer-images img {
    height: 30px;
    margin-left: 5px;
  }

    .contact-info-container {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-info-card {
    width: 100%;
    max-width: 400px;
  }
}




#footer {
  color: #f3f3f3;
  background-color: #383f3de0;
  margin-top: 40px;
  padding: 10px 15px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

.footer-images {
  display: flex;
}

.footer-images img {
  height: 50px;
  margin-left: 10px;
}



@media (max-width: 500px) {
body {
  font-size: 14px;
}

header {
  padding: 10px;
}

#hero::before {
  background-image: url('images/IMG-BGR.jpg');
}


.banner {
  display: none;
}

.banner-text {
  font-size: 6px;
}

nav li {
  margin-right: 10px;
}

nav ul li a {
  font-size: 8px; /* Adjust the smaller font size for smaller screens */
}

#hero {
  padding: 90px 40px 160px 40px;
}

#hero h2 {
  font-size: 32px;
}

#hero p {
  font-size: 18px;
  text-shadow: 2px 2px 4px;
  padding: 50px 40px 90px 40px;
}

#logo {
  width: 35%
}

#about {
  padding: 100px 15px;
}

#about h2 {
  font-size: 32px;
}ho

#about p {
  font-size: 16px;
}

.column-text {
  width: 100%;
  padding: 0;
}

.column-image {
  width: 100%;
  margin-top: 20px;
}

.service-text {
  font-size: 16px;
}


.toggle-icon {
  width: 15px;
  height: 15px;
}

#services {
  padding: 30px;
}


.service-container{
  width: 100%;
}

.service-text {
  font-size: 16px;
}

.thumbnail-row .column {
  min-width: calc(100% / 3); /* Show 3 thumbnails on mobile */
}

.form-group {
  width: 90%;
  font-size: 12px;
  padding: 17px
}

.footer-images img {
  height: 30px;
  margin-left: 5px;
}
}


