body {
  /* Removed background-attachment fixed to improve LCP */
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

#logo {
  float: left;
  height: 50px; /* Added 'px' for proper height */
  margin: 5px;
  border-radius: 15px 10px 50px 20px;
}

/* Enhanced Navbar Styles */
.topnav {
  display: flex;
  flex-direction: row;
  align-items: first baseline;
  justify-content:left;
  background: linear-gradient(270deg, #b91bb1, #6a1b9a, #b91bb1);
  background-size: 600% 600%;
  animation: gradientShift 15s ease infinite;
  padding: 10px 20px;
  position: relative;
  z-index: 1000;
  border:solid 2px purple;
  box-shadow: 0 2px 5px rgba(54, 0, 65, 0.918);
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.topnav a {
  color: #000000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 4px;
}

.topnav a:hover {
  background-color: rgba(0, 0, 0, 0.034);
  color: white;
}

.topnav .icon {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: #000000;
  padding: 10px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown .dropbtn {
  font-size: 17px;
  border: none;
  outline: none;
  color: rgb(0, 0, 0);
  padding: 14px 16px;
  background-color: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.dropdown .dropbtn:hover {
  background-color: rgba(132, 68, 148, 0.8);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 180px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1001;
  border-radius: 4px;
  top: 100%;
  left: 0;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  border-radius: 0;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.social-icons a {
  margin: 0 8px;
}

.social-icons img {
  vertical-align: middle;
}

#customAlert {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: #e39aec;
  color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* Initially hide the iframe container */
#formContainer.hidden {
  display: none;
}

/* Style for the button */
button {
  padding: 10px 15px;
  background-color: #4caf50; /* Changed to a visible color */
  color: rgb(0, 0, 0);
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #45a049; /* Changed to a visible color */
}

/* Popup Styles */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
}

.popup-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  width: 80%;
  max-width: 600px;
  height: auto;
  max-height: 80%;
  overflow-y: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 10px;
}

.popup-content h3 {
  color: #333;
}

.popup-content p {
  color: #555;
}

.popup-content .close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #aaa;
  font-size: 24px;
  cursor: pointer;
}

.popup-content .social-icons img {
  width: 30px;
  margin: 10px;
}

.img {
  width: 250px;
  aspect-ratio : 2/1;
  margin: 10px;
  border: 5px solid #fefae0;
  -webkit-filter: sepia(50%);
  filter: sepia(50%);
  transition-duration: 1s;
  border-radius: 10px;
}

.img:hover {
  border: 5px solid #fff;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: none;
  filter: none;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 10px; /* Adjust as needed */
}

/* Responsive heading sizes using viewport units */
h1 {
  text-align: center;
  font-size: calc(2.5vw + 1.5rem); /* Example calculation for h1 */
}

h2 {
  font-size: calc(1.5vw + 1rem); /* Minimum: 1.5rem, responsive growth using 5vw, Maximum: 2rem */
  text-align: center;
  margin: 0;
}

h3 {
  font-size: calc(1vw + 0.5rem); /* Example calculation for h3 */
}

.title-info {
  padding: 5% 15%; /* Adjust padding for top/bottom and left/right */
  font-size: 1.4rem; /* Increase paragraph text size slightly */
  line-height: 1.8; /* Further increase line spacing for readability */
  text-align: center; /* Center the text */
  margin: 10% auto; /* Add space around the info section */
  max-width: 80%; /* Limit the width of the text */
}

/* Fade-in Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Styling for the list image and the reasons container */
.reasons {
  background-color: rgba(255, 255, 255, 0.623); /* Semi-transparent background */
  padding: 20px;
  border: solid black 2px;
  max-width: 600px;
  margin: 20px auto; /* Centers the container */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.reasons h2 {
  text-align: center;
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 15px;
}

.reasons ul {
  list-style: none; /* Remove the default list-style */
  padding-left: 0; /* Remove extra indentation */
  font-size: 1.1rem;
  color: #222;
}

.reasons ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 40px; /* Space for the image */
  background-image: url('Photos/dune.png'); /* Add your dune.png image */
  background-size: 30px; /* Adjust size of the image */
  background-repeat: no-repeat; /* Prevent repeating the image */
  background-position: left top; /* Position the image */
}

/* Apply the animation to the sections */
.reasons h2,
.reasons ul {
  animation: fadeIn 1s ease-in-out;
  opacity: 0; /* Initially hidden */
  animation-fill-mode: forwards; /* Keep the final state of the animation */
}

.reasons h2:nth-child(1) {
  animation-delay: 0.3s; /* Delays for staggered effect */
}

.reasons ul:nth-child(2) {
  animation-delay: 0.5s;
}

.reasons h2:nth-child(3) {
  animation-delay: 0.7s;
}

.reasons ul:nth-child(4) {
  animation-delay: 0.9s;
}

.popup-content {
  background: #fafafa;
  padding: 20px;
  border-radius: 10px;
  color: rgb(250, 246, 246);
  text-align: center;
}

.close {
  cursor: pointer;
  font-size: 20px;
  float: right;
  margin-top: -10px;
  margin-right: -10px;
}

.site-footer {
  background-color: #1a1a1a; /* Very dark background color */
  color: #fff; /* White text color */
  max-width: 100%;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-top {
  display: flex; /* Use flexbox for layout */
  flex-wrap: nowrap; /* No wrap to keep columns in one row */
  justify-content: space-between; /* Space between columns */
  max-width: 100%;
  margin: 0 auto 30px;
}

.footer-column {
  width: 280px;
  color: #ccc;
}

.footer-column h6 {
  font-size: 18px;
  color: #f57c00; /* Orange heading */
  margin-bottom: 15px;
}

.footer-column p, .footer-column a {
  color: #eee;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-follow {
  width: 280px;
  text-align: left;
}

.footer-follow h6 {
  font-size: 18px;
  color: #f57c00; /* Orange heading */
  margin-bottom: 15px;
}

.social-icons {
  display: flex; /* Horizontal layout */
  gap: 15px;
  align-items: center;
}

.social-icons a img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #444;
  font-size: 13px;
  color: #888;
}

.container {
  max-width: 100%; /* Adjust as necessary for your layout */
  margin: 0 auto; /* Center the container */
}

.footer-top {
  display: flex; /* Use flexbox for layout */
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.footer-column {
  width: 280px;
}

.footer-column h6 {
  font-size: 24px;
}

.footer-column ul {
  list-style: none; /* Remove default list styling */
}

.footer-column a {
  color: #fff; /* White link color */
  text-decoration: none; /* Remove underline from links */
}

.footer-column a:hover {
  text-decoration: underline; /* Underline on hover */
}

.footer-follow {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.footer-follow h6 {
  font-size: 20px;
}

.social-icons {
  display: flex; /* Use flexbox for alignment */
  flex-wrap: wrap;
  justify-content: center; /* Center align the icons */
}

.social-icons img {
  width: 10vw; /* Width relative to the viewport width */
  max-width: 50px; /* Maximum size */
  min-width: 30px; /* Minimum size */
  height: auto; /* Maintain aspect ratio */
  margin: 0 5px; /* Space between icons */
}

.back-to-top a {
  color: #007bff; /* Blue color for back to top link */
  text-decoration: none; /* Remove underline */
}

.back-to-top a:hover {
  text-decoration: underline; /* Underline on hover */
}

.footer-bottom {
  text-align: center; /* Center align copyright notice */
  padding: 10px; /* Padding for the bottom section */
  border-top: 1px solid #444; /* Top border for separation */
}


.pricing {
  background-color: #332f3273; /* White background for the pricing section */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  padding: 20px;
  margin: 20px auto; /* Center the pricing section */
  max-width: 600px; /* Max width for better readability */
  text-align: left; /* Left align text */
}
.pricing h2 {
  color: #ffffff; /* Primary color for headings */
  font-size: 1.8em; /* Larger font size for headings */
  margin-bottom: 15px; /* Spacing below headings */
  border-bottom: 2px solid #8100a1; /* Underline effect */
  padding-bottom: 5px; /* Padding below heading */
}
.pricing p {
  color: #ffffff; /* Dark text color for readability */
  line-height: 1.6; /* Increased line height for better readability */
}
.pricing strong {
  color: #ffffff; /* Highlight price in a different color */
  font-size: 1.5em; /* Larger font size for emphasis */
}
.pricing em {
  color: #b6b6b6; /* Italic text color */
}
.pricing ul {
  list-style-type: disc; /* Default bullet points */
  padding-left: 20px; /* Indentation for list */
}
.pricing li {
  margin-bottom: 10px; /* Spacing between list items */
}
.pricing b {
  color: #f04cb9; /* Color for contact number */
  cursor: pointer; /* Pointer cursor for interactivity */
  text-decoration: underline; /* Underline for emphasis */
}
.pricing b:hover {
  color: #0056b3; /* Darker shade on hover */
}


/* Responsive Design */
@media only screen and (max-width: 480px) {
  .topnav {
    display: flex;
  flex-direction: row;
  align-items: first baseline;
  justify-content:left;
  }
}

.top-bar {
  background-color: #222;
  color: #eee;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  padding: 5px 20px;
  font-family: Arial, sans-serif;
  white-space: nowrap;
  overflow: hidden;
}

@media only screen and (max-width: 600px) {
  .top-bar {
    display: none;
  }
}

/* Responsive menu animation */
@keyframes menuExpand {
  0% {
    max-height: 0;
    opacity: 0;
  }
  100% {
    max-height: 500px; /* large enough to show menu */
    opacity: 1;
  }
}

.topnav.responsive {
  animation: menuExpand 0.8s ease forwards;
  overflow: hidden;
  max-height: 500px; /* large enough to show menu */
}


.top-bar-left span {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.top-bar-right a {
  margin-left: 15px;
}

.icon {
  width: 16px;
  height: 16px;
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
  }

  .modal-content {
    max-width: 90%;
    max-height: 80%;
  }

  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition:  0.6s ease;
    transform: translateY(-50%);
  }

  .prev {
    left: 20px;
  }

  .next {
    right: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .img {
    width: 200px;
    height: 100px;
    margin: 10px;
    border: 5px solid #fefae0;
    -webkit-filter: sepia(50%);
    filter: sepia(50%);
    transition-duration: 0.5s;
  }

  .img:hover {
    border: 5px solid #fff;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-filter: none;
    filter: none;
  }

  .containerimg {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  ul {
    list-style-type: disc;
    font-size: 16px;
  }

  .title-info {
    padding: 5px 50px 50px 50px;
  }

  .reasons {
    text-align: left; /* Keeps the text left-aligned but container centered */
    max-width: 80%; /* Optional: Adjust width on larger screens */
  }
}

@media only screen and (max-width: 800px) {
  .topnav {
    display: flex;
  flex-direction: column;
  align-items: first baseline;
  justify-content:left;
  }

  .topnav a:not(:first-child),
  .dropdown .dropbtn {
    display: none;
  }

  .topnav a.icon {
    display: block;
  }

  .topnav.responsive {
    position: relative;
  }

  .topnav.responsive a.icon {
    position: absolute;
    right: 10px;
    top: 10px;
  }

  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
    padding: 12px 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }

  .topnav.responsive .dropdown {
    float: none;
    width: 100%;
  }

  .topnav.responsive .dropdown-content {
    position: relative;
    background-color: transparent;
    box-shadow: none;
    min-width: 100%;
  }

  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    border-radius: 0;
  }

  .topnav.responsive .dropdown-content a {
    color: #3b3b3b;
    padding-left: 30px;
    background-color: rgba(247, 211, 244, 0.966);
    border-radius: 0;
  }

  .topnav.responsive .dropdown-content a:hover {
    background-color: rgba(233, 144, 225, 0.8);
  }
}
