/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body and general styles */
  body {
    font-family: 'Merriweather', serif;  /* Luxury font for body text */
    line-height: 1.6;
    background: #f4f4f4;
    color: #333;
    scroll-behavior: smooth; /* Smooth scrolling */
  }
  
  a {
    text-decoration: none;
  }
  
  button {
    padding: 10px 20px;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  button:hover {
    background: #2980b9;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0); /* Transparent background */
    color: #fff;
    position: absolute; /* Makes the navbar fixed at the top */
    width: 100%; /* Ensure it spans the full width */
    top: 0;
    left: 0;
    z-index: 10; /* Ensures it stays on top of other content */
}

.navbar-container {
  width: 100%;
  justify-content: center;
    display: flex;
    align-items: center;
}

.navbar .logo {
    color: white;
    font-size: 25px;
    font-weight: bold;
    text-decoration: none;
    margin-right: 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    padding-right: 30px;
    font-size: larger;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f4a261; /* Change to your desired hover color */
}
  

.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* or a fixed height like 600px */
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 20px;
  top: 100px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}





  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    animation: fadeIn 2s ease-in-out;
  }

  .hero1 {
    position: relative;
    width: 100%;
    height: 80vh;
    padding-top: 80px; /* Adjust this value based on your navbar's height */
    box-sizing: border-box; /* Ensure padding is accounted for in the layout */
  }
  
  .hero1-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensure the video stays behind the text */
    overflow: hidden;
  }
  
  .hero1-video video {
    object-fit: cover; /* Ensures the video covers the section without distortion */
    width: 100%;
    height: 100%;
  }
  
  .hero1-content {
    position: relative;
    z-index: 1; /* Make sure the content appears above the video */
    padding: 20px;
    text-align: center;
    color: white;
    font-size: 4.2rem;
    padding-top: 90px;
  }
  
    
    .hero1-content p {
      font-size: 1.2rem;
      margin-bottom: 10px;
      animation: fadeIn 2s ease-in-out;
    }

  .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay with 40% opacity */
  z-index: 1; /* Ensure the overlay stays above the video */
}
  
.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000; /* Background to fill around the video */
  margin-top: 10px;
  max-width: 50vw;
}

.video-container video {
  height: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  max-height: 100%;
  max-width: 60%;
  border-radius: 8px; /* Optional: adds rounded corners */
}
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .map-container,
  .video-container {
    flex: none;
    height: 50vh;
  }
}
  /* About Us Section */
  .about-us1 {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 40px;
  }
  
  .about-content, .video-content1 {
    position: relative;
    flex: 1 1 500px;
    padding: 20px;
    box-sizing: border-box;
  }

  .video-content1 video {
        position: relative;

    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  @media (max-width: 768px) {
    .about-us1 {
      flex-direction: column;
    }
    .about-content, .video-content1 {
      padding: 10px 0;
    }
  }

  video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .unmute-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    padding: 12px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
  }

  .unmute-btn:hover {
    background: rgba(0, 0, 0, 0.8);
  }

  .about-us h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .about-us p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.8;
  }
  
  #learn-more-btn {
    padding: 10px 20px;
    background: #3498db;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  #learn-more-btn:hover {
    background: #2980b9;
  }
  
  /* Services Section */
  .services {
    padding: 50px 20px;
    text-align: center;
    background:  linear-gradient(180deg, #4e7961, #f1f1f1);
  }

  .services1 {
    padding: 50px 20px;
    text-align: center;
    background:  linear-gradient(to top, #4e7961, #f1f1f1);
  }
  
  
  .service-card {
    display: inline-block;
    width: 30%;
    padding: 20px;
    background:  white;
    margin: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  }
  
  .service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
  }
  
  .service-card:hover img {
    transform: scale(1.05);
  }
  
  .service-card h2 {
    font-family: 'Playfair Display', serif;  /* Luxury font for headings */
    font-size: 1.8rem;
    margin-top: 15px;
  }
  
  .service-card p {
    font-size: 1.1rem;
    font-weight: 300;
  }
  
  /* Projects Section */
  .projects {
    padding: 50px 20px;
    text-align: center;
    background: #f4f4f4;
  }
  
  .projects h2 {
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    animation: fadeIn 2s ease-in-out;
  }
  
  .project-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .project-card {
    width: 30%;
    height: 300px;
    background: #3498db;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  }
  
  .project-card:hover img {
    transform: scale(1.1);
  }
  
  /* Contact Section */
  .contact {
    padding: 50px 20px;
    background: linear-gradient(180deg, lightblue, white);
    text-align: center;
  }
  
  .contact form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact input, .contact textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .contact button {
    align-self: center;
    margin-top: 20px;
    background: black;
    color: white;

  }

  .contact  label {
    font-weight: bold;
    color: #333;
}

.form-container {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

input[type="submit"] {
  background-color: #1d011d;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  width: 100%;
}

input[type="submit"]:hover {
  background-color: #0ce655;
}
  
  /* Footer */
  .footer {
    background-color: black; /* Dark background color for footer */
    color: white;
    padding: 20px;
    text-align: center;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .contact-logos {
    display: flex;
    justify-content: center; /* Center the icons */
    gap: 20px; /* Space between icons */
    margin-top: 10px;
  }
  
  .contact-icon {
    font-size: 30px; /* Adjust size of icons */
    color: white; /* Icon color */
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .contact-icon:hover {
    transform: scale(1.1); /* Slightly enlarge icon on hover */
    color: #f39c12; /* Change color on hover (you can choose any color) */
  }
  
  footer a {
    text-decoration: none; /* Remove underline */
  }
  
  /* Reset some basic styles */


/* Apply styles to all headings */
h2, h4, h5, h6 {
  font-family: Arial, sans-serif; /* Add a default font family */
  position: relative; /* Required to position the underline */
  margin-bottom: 20px; /* Space below the title */
}

/* Add the two-color underline effect */
 h2::after, h4::after, h5::after, h6::after {
  content: ''; /* No text, just the underline */
  position: absolute; /* Position it below the text */
  left: 50%;
  bottom: 0;
  width: 20%; /* Make the underline span the entire width of the title */
  height: 3px; /* Set the height of the underline */
  background: linear-gradient(90deg, green, indigo); /* Gradient with two colors (red and blue) */
  transform: translateX(-50%)
}

h3{
  font-family: Arial, sans-serif; /* Add a default font family */
  position: relative; /* Required to position the underline */
  margin-bottom: 10px;
  margin-top: 20px;

}

h3::after {
  content: ''; /* No text, just the underline */
  position: absolute; /* Position it below the text */
  left: 50%;
  bottom: 0;
  width: 50%; /* Make the underline span the entire width of the title */
  height: 3px; /* Set the height of the underline */
  
}

/* Optional: Add some space between the title and the underline */
h1, h2, h3, h4, h5, h6 {
  padding-bottom: 10px; /* Adds space between text and the underline */
}


.services {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  padding: 20px;
}

@media (max-width: 1200px) {
  .services {
      flex-direction: column;
      align-items: center;
  }

  .service-card {
      width: 80%;
      margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
      font-size: 2rem;
  }

  .hero p {
      font-size: 1rem;
  }

  nav ul {
      flex-direction: column;
  }

  .service-card {
      width: 90%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
      font-size: 1.5rem;
  }

  .hero p {
      font-size: 0.9rem;
  }

  .services {
      padding: 10px;
  }

  .service-card {
      width: 100%;
  }
}

#whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

#whatsapp-btn img {
  width: 70px;
  height: 70px;
}


.accordion {
  background: linear-gradient(45deg, white, grey);  color: black;
  cursor: pointer;
  padding: 15px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
  transition: 0.4s;
  border-radius: 5px;
  margin-bottom: 5px;
}

.container {
    width: 80%; /* Adjusted the width to 60% */
    max-width: 600px; /* Adjusted max-width to make it smaller */
    margin: 50px auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.accordion:hover {
  background-color: #45a049;
}

/* Style for the panel (hidden by default) */
.panel {
  padding: 0 15px;
  display: none;
  background-color: #f1f1f1;
  overflow: hidden;
  margin-bottom: 10px;
  border-left: 3px solid #4CAF50;
}

/* Active button style */
.active, .accordion:focus {
  background-color: #45a049;
}

.full-screen-image {
  position: relative;
  margin: 0 auto;
  width: 60%;
  height: 100vh; /* 100% of the viewport height */
  background-image: url('promo.jpeg'); /* Replace with your image URL */
  background-size: cover; /* Ensures the image covers the whole area */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  display: flex;
  justify-content: center; /* Centers content horizontally */
  align-items: center; /* Centers content vertically */
  color: white; /* Text color (optional) */
  text-align: center; /* Aligns text to the center */
  font-size: larger;
  z-index: 1;
}

.full-screen-image h1,
.full-screen-image p {
  z-index: 2; /* Ensures text stays on top of the image */
}

.container1{
  position: relative;
  width: 100%;
  height: 100vh;
  background: #2980b9;
  background-size: cover;
}

@media (max-width: 768px) {
  .full-screen-image {
    background-attachment: scroll; /* Disable fixed background on mobile */
    height: 90vh; /* Adjust the height for mobile, if needed */
    width: 90%;
  }
}

.map-container {
  display: flex;
  justify-content: center; /* Centers the map horizontally */
  align-items: center; /* Centers the map vertically (optional, if you want it centered vertically as well) */
  height: 100vh;
  width: 100%; /* Make sure the container takes the full height of the viewport, optional */
}

.map {
  display: flex;
  justify-content: center; /* Centers the map horizontally */
  align-items: center; /* Centers the map vertically (optional, if you want it centered vertically as well) */
  height: 90vh;
  width: 80%;
  margin-left: 30px;
}

iframe {
  max-width: 100%; /* Ensures responsiveness */
  height: 450px; /* Fixed height for the map */
}

.hero .logo {
  position: absolute;
  top: -100px; /* Adjust this value to position vertically */
  left: -70px; /* Adjust this value to position horizontally */
  width: 400px; /* Adjust the size of the logo */
  height: auto; /* Maintain aspect ratio */
}

@media (max-width: 768px) {
  .navbar {
      display: none;
  }
}
.img-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}



.flyer-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}

.flyer-container {
  flex: 1 1 300px;
  max-width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 10px;
}

.flyer-container img {
  width: 60vw;
  height: 80vh;
  margin-right: 100px;
  object-fit: contain;
  border-radius: inherit;
}

.flyer-container video {
  width: 60%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

/* 🔁 Mobile adjustments */
@media (max-width: 768px) {
  .flyer-section {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .flyer-image {
    width: 100vw;
    height: auto;
    aspect-ratio: 9 / 16;
  }

  .flyer-video {
    width: 100vw;
    height: 100vh; /* 🟢 Make the video fill the screen */
    max-width: none;
    aspect-ratio: auto;
    border-radius: 0;
  }

  .flyer-video video {
    object-fit: cover; /* Optional: makes it fill fully (crop edges) */
  }
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin: -25px 0 0 -25px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 10;
}

.loader-container {
  --uib-size: 35px;
  --uib-color: black;
  --uib-speed: .9s;
  --uib-stroke: 3.5px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--uib-size);
  width: var(--uib-size);
}

.line {
  position: absolute;
  top: calc(50% - var(--uib-stroke) / 2);
  left: 0;
  height: var(--uib-stroke);
  width: 100%;
  border-radius: calc(var(--uib-stroke) / 2);
  background-color: var(--uib-color);
  animation: rotate var(--uib-speed) ease-in-out infinite;
  transition: background-color 0.3s ease;
}

.line:nth-child(1) {
  animation-delay: calc(var(--uib-speed) * -0.375);
}

.line:nth-child(2) {
  animation-delay: calc(var(--uib-speed) * -0.375);
  opacity: 0.8;
}

.line:nth-child(3) {
  animation-delay: calc(var(--uib-speed) * -0.3);
  opacity: 0.6;
}

.line:nth-child(4) {
  animation-delay: calc(var(--uib-speed) * -0.225);
  opacity: 0.4;
}

.line:nth-child(5) {
  animation-delay: calc(var(--uib-speed) * -0.15);
  opacity: 0.2;
}

.line:nth-child(6) {
  animation-delay: calc(var(--uib-speed) * -0.075);
  opacity: 0.1;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(180deg);
  }
}

.about-content1{
  flex: 1 1 500px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.hero-content{
  font-size: 10vw;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 600px) {
  .hero-content {
    font-size: 15vw; /* smaller for mobile */
     line-height: 1.2;
  }
}

/* General styles */
.site-plans-section {
  position: relative;
  padding: 10px 10px;
  background-color: #f9f9f9;
  height: 500px;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.text-content {
  flex: 1 1 45%;
}

.text-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.gallery {
  flex: 1 1 45%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Lightbox Modal Styling */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  display: block;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }

  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}

 .text-carousel-section {
  position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10rem;
    max-width: 100vw;
    margin: auto;
        margin-bottom: -25px;
        padding-left: 60px;
        padding-right: 60px;
            background:  linear-gradient(90deg, #f1f1f1, #4e7961);



  }

  .text-content1 {
    flex: 1;
    text-align: left;
        margin-bottom: 75px;
        margin-top: 10px;

       

  }

  .carousel {
    flex: 1;
    max-width: 500px;
    height: 500px;
    overflow: hidden;
    padding-top: 10px;
  }

  .carousel img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
    transition: opacity 0.5s ease-in-out;
    }

    @media (max-width: 768px) {
    .text-carousel-section {
      flex-direction: column;
      padding: 20px;
    }
    .carousel,  .text-content1 {
      padding: 10px 0;
    }
  }

  @media (max-width: 768px) {
    .text-carousel-section {
      flex-direction: column;
    }
    .video-content1,  .about-content1 {
      padding: 0px 0;
    }
  }

 
