/* General CSS */
* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
     overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', Arial, sans-serif;
   font-display: swap; /* Ensures text is displayed immediately */
}
body.no-scroll {
  overflow: hidden;
}

/* Navbar CSS */
.navtop {
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: grey;
  position: static;
}

.tekstas {
  margin-left: 150px;
  font-size: 1.2em;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.navtop-contact {
  margin-right: 150px;
  font-size: 1em;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;

}

.tekstasdu {
font-size: 1.2em;
  color:  #F5C000;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;


}
.tekstasdu a {
  color: #009688;
  letter-spacing: 1px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;

}

.tekstasdu a:hover {
  color: #009688;
}

.line {
  border: 1px solid #BFBFBF;
}

@media (max-width: 1100px) {
  .navtop,
  .tekstas {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: 0;
  }

  .tekstas {
    font-size: 1.5vw;
  }

  .navtop-contact {
    margin-right: 0;
  }

  .tekstasdu {
    font-size: 0.8em;
  }
}

@media (max-width: 770px) {
  .navtop,
  .tekstas {
    font-size: 0.9em;
    margin-left: 0;
  }

  .tekstasdu {
    font-size: 0.9em;

  }
  .tekstasdu a {
font-size: 0.9em;

  }
}

/* Second Navbar */
/* Second Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  flex-wrap: nowrap; /* Prevent wrapping */
  gap: 10px; /* Avoid unintentional overlaps */
}

.tekstinis_logo {
  font-size: 2.5em;
  font-weight: bold;
  background: linear-gradient(90deg, #009688, #ffd700); /* Add a gradient for a modern look */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3); /* Enhance the text shadow for more depth */
  text-decoration: none;
  transition: transform 0.3s ease, text-shadow 0.3s ease; /* Smooth hover animations */
  z-index: 2000; /* Ensure it's above other elements */
}



/* Fallback for unsupported browsers */
.no-background-clip .tekstinis_logo {
  color: #009688; /* Solid fallback color with good contrast */
}

.navbar-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1; /* Allow links to take up available space */
  gap: 20px;
  flex-shrink: 1; /* Allow shrinking when necessary */
}

.navbar-links ul {
  display: flex;
  margin: 0 auto; /* Center it horizontally */
  padding: 0;
  list-style: none;
  transform: translateX(15px); /* Adjust for centering */
}

.navbar-links li {
  display: inline-block;
}

.navbar-links li a {
  text-decoration: none;
  color: #333;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

.navbar-links li a:hover {
  background-color: #ffdb4d;
  color: #009688;
  transform: scale(1.05);
}

.toggle-button {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  position: absolute;
  right: 10px; /* Adjusted for better alignment */
top: 10px;
  z-index: 1500; /* Ensure above dropdown */
}

.toggle-button .bar {
  height: 3px;
  width: 100%;
  background-color: black;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.toggle-button.active .bar:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.toggle-button.active .bar:nth-child(2) {
  opacity: 0;
}

.toggle-button.active .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

.navbar-links.active {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #ffffff;
  width: 100%;
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 1000; /* Keep it below the logo */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.navbar-links.active ul {
  flex-direction: column;
  width: 100%;
}

.nav-btn {
  margin-left: auto;
  flex-shrink: 0; /* Prevent breaking into multiple lines */
}

.nav-btn a {
  background: #ffd700;
  color: black;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap; /* Prevent wrapping */
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-family: 'Poppins', sans-serif;
}

.nav-btn a:hover {
  background-color: #f5c000;
  transform: translateY(-5px);
  color: white;
}

/* Banner */
#banner {
  height: 100vh; /* Use a percentage of the viewport height */
  max-height: 800px; /* Limit the max height */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.2) 10%,
    rgba(255, 219, 77, 0.6) 30%,
    rgba(119, 168, 140, 0.6) 70%
  );
  background-size: cover;
}

.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%; /* Allow scaling while maintaining aspect ratio */
  max-height: 100%;
  z-index: -1;
  opacity: 0.8;
  background-color: #f0f0f0;
}

.banner-text {
  position: absolute;
  z-index: 1;
  color: #fff;
  text-align: center;
  max-width: 70%;
  margin: 0 auto;
}

.banner-text h1 {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 1.2rem; /* Slightly increased spacing for better separation */
  color: #ffffff; /* Ensure high contrast for better readability */
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8); /* Slightly darker shadow for clarity */
  letter-spacing: 1px; /* Add spacing for better readability */
  line-height: 1.2; /* Improve vertical alignment of text */
}

.banner-text p {
  font-size: 1.4em; /* Increased font size for better readability */
  margin-bottom: 1.2rem;
  font-weight: 500; /* Slightly lighter for comfortable reading */
  color: #fff; /* Use a soft white for less strain on the eyes */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Enhance readability by increasing shadow contrast */
  line-height: 1.8; /* Increased line height for better text flow */
  letter-spacing: 0.5px; /* Minor spacing to improve legibility */
  max-width: 800px; /* Limit width for easier reading on larger screens */
  text-align: center; /* Align text to the center */
  margin-left: auto; /* Center the paragraph block */
  margin-right: auto; /* Center the paragraph block */
}

.banner-btn {
  margin-top: 2rem;
  text-align: center;
}

.banner-btn a {
  background: #ffd700;
  color: black;
  padding: 20px 40px;
  border-radius: 15px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.banner-btn a:hover {
  background-color: #f5c000;
  transform: translateY(-5px);
  color: white;
}

/* Logo for Banner */
.logo_banner {
  width: 98px;
  height: 98px;
  position: absolute; /* Positioned relative to the banner */
  top: 30px; /* Add spacing from the top of the banner */
  left: 30px; /* Add spacing from the left of the banner */
  z-index: 2; /* Ensure it appears above the banner background */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Optional: Add hover effect for the logo */
.logo_banner img {
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.3s ease;
}




/* Media Queries */
@media screen and (max-width: 1200px) {
  .banner-text h1 {
    font-size: 2em;
    text-align: left; /* Aligns the text to the left */
  }
  .navbar {
     flex-direction: row;
     padding: 10px 30px;
   }

   .tekstinis_logo {
     flex: 1;
     font-size: 2em;
     text-align: left;
   }


   .toggle-button {
     display: flex;
     right: 20px;
     top: 0;
     margin-top: 15px;
   }

   .navbar-links {
     display: none;
   }

    .navbar-links.active {
      display: flex;
    }

    .navbar-links ul {
      flex-direction: column;
      width: 100%;
    }

    .navbar-links li {
      margin: 10px 0;
      text-align: center;
      width: 100%;
    }

    .nav-btn {
      display: none;
    }
  .banner-text p {
    font-size: 1em;
  }


  #banner {
    height: 90vh; /* Slightly smaller height */
    padding: 10px;
  }
}

@media screen and (max-width: 768px) {

  #banner {
    height: 90vh; /* Slightly smaller height */
    padding: 10px;
  }

  .banner-text h1 {
    font-size: 2rem; /* Reduce heading size */
  }
  .logo_banner {
display: none;
  }
  .banner-text p {
    font-size: 1rem; /* Adjust paragraph size */
  }


  .navbar {
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    justify-content: space-between;
    padding: 10px 20px;
  }

  .tekstinis_logo {
    font-size: 2em;
  }

  .navbar-links {
    display: none; /* Initially hidden */
    flex-direction: column;
    align-items: center;
  }

  .navbar-links.active {
    display: flex; /* Show when active */
  }

  .toggle-button {
    display: flex;
     margin-top: 20px;
  }

   .navbar-links ul {
     flex-direction: column;
     width: 100%;
     margin: 0;
   }

   .navbar-links li {
     margin: 10px 0;
     text-align: center;
     width: 100%;
   }

  .navbar-links li a {
    font-size: 1em;
    color: #333;
    text-decoration: none;
    padding: 10px;
  }

  .nav-btn {
    display: none;
  }
}
@media (max-width: 480px) {
  .navbar {
   padding: 8px 15px;
 }

 .tekstinis_logo {
   font-size: 1.7em;
 }

 .toggle-button {
   right: 10px;
   margin-top: 20px;
 }

 .navbar-links {
   padding: 10px 0;
 }

   .navbar-links.active {
     display: flex;
   }

   .navbar-links ul {
     flex-direction: column;
     width: 100%;
   }

   .navbar-links li {
     margin: 8px 0;
     text-align: center;
     width: 100%;
   }

   .nav-btn {
     display: none;
   }
  .banner-text h1 {
    font-size: 1.5em;

  }
  #banner {
    height: 90vh; /* Slightly taller banner for mid-sized landscape screens */
  }
  .banner-text p {
    font-size: 0.9em;
  }
}

@media (max-width: 320px) {
  .navbar {
     padding: 5px 10px;
   }
   #banner {
     height: 90vh; /* Slightly taller banner for mid-sized landscape screens */
   }
   .tekstinis_logo {
     font-size: 1.2em;
   }

   .toggle-button {
     right: 8px;
     margin-top: 10px;
   }

   .navbar-links {
     padding: 8px 0;
   }

    .navbar-links.active {
      display: flex;
    }

    .navbar-links ul {
      flex-direction: column;
      width: 100%;
    }

    .navbar-links li {
      margin: 6px 0;
      text-align: center;
      width: 100%;
    }

    .nav-btn {
      display: none;
    }

}

/* Specific Width-Based Adjustments */
@media (max-width: 820px) and (orientation: landscape) {
  #banner {
    height: 90vh; /* Slightly taller banner for mid-sized landscape screens */
  }

  .banner-text h1 {
    font-size: 2rem;
  }

  .banner-text p {
    font-size: 1.2rem;
  }

  .banner-btn a {
    padding: 15px 30px;
    font-size: 0.8rem;
  }
}

/* Small Screens with Very Narrow Height */
@media (max-height: 480px) and (orientation: landscape) {
  #banner {
    height: 90vh; /* Short banner for very narrow screens */
  }

  .banner-text h1 {
    font-size: 1.5rem; /* Increase heading size */
  }

  .banner-text p {
    font-size: 0.9rem; /* Increase paragraph size */
  }

  .banner-btn a {
    padding: 15px 30px; /* Adjust button padding */
    font-size: 1rem;
  }
}
/* Services Section Styling */
#services {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

}

.services-heading {
  text-align: center;
  padding-top: 20px;
}

.services-heading h2 {
  font-size: 2.4rem;
  color: #009688;
  font-weight: 600;
}

.services-heading h1 {
  font-size: 2.4rem;
  color: black;
  font-weight: 600;
}

.services-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin: 5px auto;
  padding-left: 5%;
  padding-right: 5%;
  flex-wrap: wrap;
}

.services-box {
  width: 100%;
  max-width: 450px;
  background-color: white;
  margin: 25px;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.15);
}

.services-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 0% 100%);
}

.services-text {
  padding: 30px;
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
    font-family: 'Poppins', sans-serif;
}

.services-text span {
  color: #009688;
  font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

.services-text p {
  color: #9b9b9b;
  font-size: 1rem;
  margin: 20px 0;
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 100px;
    font-family: 'Poppins', sans-serif;
}

.services-text a {
  display: inline-block;
  color: #009688;
  border: 1px solid #F5C000;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.services-text a:hover {
  background-color: #F5C000;
  border: 1px solid black;
  color: black;
}

.services-text-read a {
  position: absolute;
  bottom: 20px; /* Adjust to create space between button and bottom */
  left: 50%;
  margin-top: 20px;
  transform: translateX(-50%);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #FFD700;
  color: #009688;
  width: 100%; /* Adjust size to fit design */
  max-width: 200px; /* Prevent the button from becoming too wide */
  border-radius: 15px;
  padding: 20px 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  text-decoration: none;
  font-weight: bold;
    font-family: 'Poppins', sans-serif;
}




.services-text-read a:hover {
  background-color: #F5C000;
  border: 1px solid black;
  color: black;
}

/* Service Slider Styling */
.service-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.service-slider::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 1100px) {
  .services-box {
    margin: 20px 15px;
    width: 48%;
    max-width: 480px;
    flex: 0 0 auto;
    position: relative;
    padding-bottom: 60px; /* Adds space for the button */
  }

  .services-container {
    max-width: 100%;
    width: 100%;
    overflow: auto;
    scroll-snap-type: x mandatory;
    padding-left: 0;
    padding-right: 0;
  }

  .services-img img {
    height: 260px;
  }

  .services-text {
    padding: 20px;
  }

  .services-text a {
    margin-top: 15px;
  }

  .services-text-read a {
    bottom: 15px; /* Adjust button positioning */

    max-width: 90%; /* Scales button with box */
  }
}

@media screen and (max-width: 770px) {
  .services-box {
     margin: 15px;
     width: 100%;
       height: auto;
     max-width: 95%;
     position: relative;
     padding-bottom: 60px; /* Adds space for the button */
   }

  .services-container {
    max-width: 100%;
    width: 100%;
    overflow: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .services-img img {
    height: 230px;
  }

  .services-text {
    padding: 15px;
  }

  .services-text a {
    margin-top: 15px;
  }

  .services-text p {
    font-size: 0.95rem;
      margin-bottom: 50px;
  }

  .services-text-read a {
    bottom: 15px; /* Adjust button positioning */

    max-width: 85%;
  }
}

@media (max-width: 420px) {
  .services-box {
     margin: 15px;
     width: 100%;
     max-width: 95%;
     position: relative;
     padding-bottom: 60px; /* Adds space for the button */
   }

  .services-container {
    max-width: 100%;
    width: 100%;
    overflow: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .services-img img {
    height: 230px;
  }

  .services-text {
    padding: 15px;
  }

  .services-text a {
    margin-top: 15px;
  }

  .services-text p {
    font-size: 0.95rem;
      margin-bottom: 50px;
  }

  .services-text-read a {
    bottom: 15px; /* Adjust button positioning */

    max-width: 85%;
  }
}


/* Features Section Styling */
/* Features Section Styling */
#futures {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.futures-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 20px;
}

.futures-heading h3 {
  font-size: 2.4rem;
  color: #009688;
  font-weight: 600;
}

.futures-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  flex-wrap: wrap;
  width: 90%;
}

.futures-box {
  width: 1400px;
  height: 458px;
  background: white;
  border: 1px solid #bfbfbf;
  border-radius: 15px;
  filter: drop-shadow(5px 5px 4px rgba(0, 0, 0, 0.25));
  overflow: hidden;
  position: relative;
}
.futures-box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.15);
}
/* Bubble Shapes for future */
.futures-text::before,
.futures-text::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: #FFDB4D;
  opacity: 0.2;
  z-index: 0;
}

.futures-text::before {
  width: 150px;
  height: 150px;
  top: 10%;
  left: 10%;
}

.futures-text::after {
  width: 200px;
  height: 200px;
  bottom: 10%;
  right: 10%;
  background: #009688;
}

.futures-img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 0% 100%);
}

.futures-img img {
    width: 458px;
    height: 458px;
    object-fit: fill;
    object-position: center;
    clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 0% 100%);
}

.futures-img-right {
    width: 100%;
    height: auto;
    text-align: right;
}

.futures-img-right img {
    width: 458px;
    height: 458px;
    object-fit: cover;
    object-position: center;
    clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 0% 100%);
}

.futures-img-right-phone {
    display: none;
}

.futures-text {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 0.9rem;
  border-radius: 10px;
  position: relative;
  z-index: 1;
    font-family: 'Poppins', sans-serif;
}

.futures-text span {
  color: #009688;
  font-weight: bold;
}

.futures-text p {
  color: #666666;
  font-size: 1rem;
  margin: 20px 30px;
  text-align: justify;
  padding-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.futures-text-read {
  margin: 20px auto 0;
}

.futures-text-read a {
  position: absolute;
  bottom: 20px; /* Adjust to create space between button and bottom */
  left: 50%;
  margin-top: 20px;
  transform: translateX(-50%);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #FFD700;
  color: #009688;
  width: 100%; /* Adjust size to fit design */
  max-width: 200px; /* Prevent the button from becoming too wide */
  border-radius: 15px;
  padding: 20px 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  z-index: 2;
    font-family: 'Poppins', sans-serif;
}

.futures-text-read a:hover {
  background-color: #F5C000;
  border: 1px solid black;
  color: black;
}

.futures-text-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #009688;
  border: none;
  width: 120px;
  height: 50px;
  bottom: 40px;
  border-radius: 8px;
}

.futures-text-button a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.row-hidden {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1640px) {
  .futures-box {
    width: 100%;
    display: block;
    border: 1px solid #bfbfbf;
    filter: drop-shadow(5px 5px 4px rgba(0, 0, 0, 0.25));
  }
  .futures-container {
    width: 90%;
  }
  .futures-text::before {
    width: 100px;
    height: 100px;
    top: 5%;
    left: 5%;
  }
  .futures-text::after {
    width: 150px;
    height: 150px;
    bottom: 5%;
    right: 5%;
  }
}

@media (max-width: 1100px) {
  .futures-box {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #bfbfbf;
    filter: drop-shadow(5px 5px 4px rgba(0, 0, 0, 0.25));
  }
  .futures-heading {
    text-align: center;
  }
  .futures-img img {
    width: 100%;
    height: 50%;

  }
  .futures-container {
    width: 80%;
  }
  .futures-img-right img {
    display: none;
  }
  .futures-img-right-phone {
    display: block;
  }
  .futures-img-right-phone img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    object-position: center;

  }
  .futures-text-read a {
    max-width: 80%;
  }
  .futures-text {
    padding: 20px;
    color: #666666;
    font-size: 1rem;
  }
  .futures-text p {
    color: #666666;
    font-size: 0.9rem;
    margin: 20px 0;
    padding-bottom: 60px;
  }
  #futures {
    padding: 20px;
  }
  .row-hidden {
    display: block;
  }
  .futures-text::before {
    width: 80px;
    height: 80px;
    top: 5%;
    left: 10%;
  }
  .futures-text::after {
    width: 120px;
    height: 120px;
    bottom: 10%;
    right: 10%;
  }
}

@media (max-width: 720px) {
  .futures-container {
    width: 100%;
  }
  .futures-text p {
    color: #666666;
    padding-bottom: 60px;
  }
  .futures-text::before {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 10%;
  }
  .futures-text::after {
    width: 100px;
    height: 100px;
    bottom: 15%;
    right: 10%;
  }
}
@media (max-width: 660px) {
  .futures-container {

    width: 100%;
  }
}
@media (max-width: 420px) {
  .futures-box {
    width: auto;
    height: auto;
    display: block;
    border: 1px solid #bfbfbf;
    filter: drop-shadow(5px 5px 4px rgba(0, 0, 0, 0.25));
  }
  .futures-container {
    width: 100%;
  }
  .futures-heading {
    text-align: center;
  }
  .futures-img img {
    width: 100%;
    height: 50%;
  }
  .futures-img-right img {
    display: none;
  }
  .futures-img-right-phone {
    display: block;
  }
  .futures-img-right-phone img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    object-position: center;
  }
  .futures-text-read a {
    max-width: 90%;
  }
  .futures-text {
    padding: 15px;
    color: #666666;
    font-size: 0.9rem;
  }
  .futures-text p {
    color: #666666;
    font-size: 0.9rem;
    margin: 20px 0;
    padding-bottom: 60px;
  }
  #futures {
    padding: 20px;
  }
  .row-hidden {
    display: block;
  }
  .futures-text::before {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 15%;
  }
  .futures-text::after {
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 15%;
  }
}



/* Modernized Comments Section Styling */
.comments-insade {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;

}

.comments-boxs {
    width: 50vh;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;

}

.no-comments-message {
    padding: 20px;
    background-color: rgba(0, 150, 136, 0.5);
    border: 1px solid #000;
    color: #fff;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.no-comments-message:hover {
    background-color: #fff;
    color: #009688;
    border: 1px solid #009688;
}

.comments-boxs h1, .comments-boxs h2 {
    font-size: 26px;
    font-weight: bold;
    color: #009688;
    margin-bottom: 15px;
    text-align: center;
}

.comments-boxs input[type="text"],
.comments-boxs input[type="email"],
.comments-boxs textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.comments-boxs input[type="text"]:focus,
.comments-boxs input[type="email"]:focus,
.comments-boxs textarea:focus {
    border-color: #009688;
    outline: none;
}

.comments-boxs button {
  display: flex;
  justify-content: center;
  align-items: center;
  display: inline;
  justify-content: center;
  align-items: center;
  background: #FFDB4D;
  color: #009688;
  width: 100%; /* Adjust size to fit design */
  max-width: 100vh; /* Prevent the button from becoming too wide */
  border-radius: 15px;
  padding: 20px 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
}

.comments-boxs button i.fa-solid {
    margin-right: 10px;
    color: #009688;
    transition: color 0.3s ease;
}

.comments-boxs button:hover {
  background-color: #F5C000;
  border: 1px solid black;
  color: black;
}

.comments-boxs button:hover i.fa-solid {
    color: black;
}

@media screen and (max-width: 770px) {
    .comments-boxs {
        width: 100%;
        padding: 20px;
    }
    .comments-insade {
        height: auto;
        padding: 20px;
    }
    .comments-boxs h1, .comments-boxs h2 {
        font-size: 22px;
        margin-top: 10px;
    }
    .comments-boxs input[type="text"],
    .comments-boxs input[type="email"],
    .comments-boxs textarea {
        width: 100%;
        font-size: 14px;
    }
}



.register-insade {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

.register-box {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;

    width: 80%;
    max-width: 400px;
}

.register-box h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.register-box form {
    display: flex;
    flex-direction: column;
}

.register-box input[type="text"],
.register-box input[type="email"],
.register-box input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 10px;
    outline: none;
    box-sizing: border-box;
}

.register-box button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: #000;
    border: black solid 1px;
    width: 100%;
    max-width: 50vh;
    margin-left: 2px;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.register-box button i.fa-solid {
    margin-right: 8px;
    color: #009688;
}

.register-box button:hover i.fa-solid {
    color: #fff;
}

.register-box button:hover {
    background-color: #009688;
    color: #fff;
}

.register-box p.error-message {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    text-align: center;
}



#comments {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;


    border-radius: 15px;
}

.comments-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 15;
      margin-bottom: 15;
}

.comments-heading h4 {
    font-size: 2.4rem;
    color: #009688;
    font-weight: 600;
    text-align: center;
      font-family: 'Poppins', sans-serif;
}

.comments-container {
    display:  inline-flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap;

}


.comments-box {
  flex: 0 0 auto;
    width: 427px;
    height: 373px;
    background: white;
border: 1px solid #bfbfbf;
border-radius: 15px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
margin: 20px;
padding: 20px;
position: relative;
scroll-snap-align: start;
transition: transform 0.3s ease-in-out;
}

.comments-img {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;   /* Absolute positioning */
    top: 10px;            /* 20px from the top of the parent container */
    left: 50%;            /* Centered horizontally */
    transform: translateX(-50%);  /* Ensures it's perfectly centered */
    mix-blend-mode: multiply;
}

.comments-img img {
    width: 100px;
    height: 100px;
    margin-top: 10px;
    background-image: none;
    object-fit: fill;
    object-position: center;
}

.comments-text {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 0.9rem;
}

.comments-text span {
    color: #009688;
    position: absolute; /* Absolute positioning */
    bottom: 50px; /* Adjust this value so that it doesn't overlap with the <a> element */
    left: 50%;
    transform: translateX(-50%);
      font-family: 'Poppins', sans-serif;
        font-weight: bold;
}

.comments-text p {
    color: black;
    width: 90%;          /* Takes up 90% of the width of its container */
    padding: 0 5%;       /* Padding on left and right to keep text away from the edges */
    margin: 0;
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
      font-family: 'Poppins', sans-serif;
}

.comments-box h6 {
    text-align: center;
    color: black;
    font-size: 0.9rem;
    position: absolute; /* Absolute positioning */
    bottom: 20px; /* Adjust this value so that it doesn't overlap with the <a> or <span> elements */
    left: 50%;
    transform: translateX(-50%);
}

.comments-slider {
  display: flex; /* Change to flex for horizontal scrolling */
  overflow-x: auto; /* Hide horizontal scrollbar */
  scroll-snap-type: x mandatory;
  /* Hide scrollbars */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer and Edge */

}
.comments-text-read a {
color : black;
text-decoration : none;
}
.comments-btn {
margin : 20px auto 0;
  margin-bottom: 30px;
}
.comments-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  display: inline;
  justify-content: center;
  align-items: center;
  background: #FFD700;
  color: #009688;
  width: 100%; /* Adjust size to fit design */
  max-width: 200px; /* Prevent the button from becoming too wide */
  border-radius: 15px;
  padding: 20px 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
}


.comments-btn a:hover {
  background-color: #F5C000;
  border: 1px solid black;
  color: black;
}

@media (max-width: 1360px) {
  .comments-container {
    width: 100%;

  }

  .comments-slider {


    animation: none; /* Remove animation */

  }

  .comments-box {
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: 100%; /* Adjust image size */
    height: 400px; /* Adjust image size */
    }


  #comments {
    padding: 20px;
  }

  .comments-img img {
    margin-top: 10px;
  }

  .comments-box h6 {
white-space: nowrap;
    text-align: center;
  }

  .comments-btn a {

  max-width: 70vh;

  }
}
@media (max-width: 770px) {
  .comments-container {
    max-width: 100%;
    overflow: auto;
    position: relative; /* Added relative positioning */
  }

  .comments-slider {

    scroll-snap-type: x mandatory;
    overflow-x: scroll;

    animation: none; /* Remove animation */


  }

  .comments-box {
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: 100%; /* Adjust image size */
    height: 400px; /* Adjust image size */
    }


  #comments {
    padding: 20px;
  }

  .comments-img img {
    margin-top: 10px;
  }

  .comments-box h6 {
white-space: nowrap;
    text-align: center;
  }

  .comments-btn a {
  padding: 12.5px 25px;
  max-width: 70vh;
  }
}


#interest {
  background: linear-gradient(to right, #FFDB4D, #77A88C);
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}




.interest-text {
text-align : center;
color : #fff;
}
.interest-text h5 {
font-size : 4em;
text-align : center;
font-style : normal;
font-family : 'Poppins', sans-serif;
}
.interest-text p {
font-size : 1.5em;
font-style : italic;
font-family : 'Poppins', sans-serif;
}
.interest-btn {
margin : 50px auto 0;
}
.interest-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  display: inline;
  color: #fff;
  border: white solid 1px;
  width: 70%;
  max-width: 30vh;
  border-radius: 4px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  text-decoration: none;
    font-weight: bold;
}
.interest-btn a:hover {
  color : white;
  background-color: #009688;

font-weight : bold;
}
@media screen and (max-width: 1100px) {
#interest {
height : 40vh;
}
.interest-text h5 {
top : 20px;
font-size : 3em;
}
}
@media screen and (max-width: 770px) {
#interest {
height : 40vh;
}
.interest-text h5 {
top : 20px;
font-size : 2em;
}
.interest-text h2 {
font-size : 20px;
left : 0.5em;
}
.interest-text p {
font-size : 15px;
}
.interest-btn a {
max-width: 50vh;

}
}
footer {
position : static;
bottom : 0;
}
@media (max-height: 800px) {
footer {
position : static;
}
}

.logo_footer {
width : 98px;
height : 98px;
position : relative;
display : flex;
align-items : center;
text-align : center;
margin-top : 20px;
}

.footer-privacy {
    /* Position the privacy link absolutely */
    display: inline-block;
    bottom: 20px; /* Adjust this value to position the link as desired */
  align-items: center;
}

.footer-privacy a {
    color: black; /* Adjust link color as needed */
    text-decoration: none;
      font-family: 'Poppins', sans-serif;
}

.footer-privacy a:hover {
    text-decoration: underline;
}
.footer-distributed {

background: linear-gradient(to right, #FFDB4D, #77A88C);
box-sizing: border-box;
width: 100%;
text-align: left;
font: bold 16px sans-serif;
padding: 50px 50px 60px 50px;
}
.footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
display: inline-block;
vertical-align : top;
}
.footer-distributed .footer-left {
width: 30%;
margin-top: -55px;
}
.footer-distributed h3 {
color : white;

margin : 0;
}
.footer-distributed h3 span {
color : #FFDB4D;
}
.footer-distributed .footer-links {
color : blakc;
margin : 10px 0 10px;
  font-family: 'Poppins', sans-serif;
}
.footer-distributed .footer-links a {
display : inline-block;
line-height : 2;
text-decoration: none;
justify-content : space-between;
color : inherit;
}
.footer-distributed .footer-links a:hover {
color : #009688;
text-decoration: none;
}
.footer-distributed .footer-company-name {
color : black;
font-size : 14px;
font-weight : normal;
margin : 0;
}
.footer-distributed .footer-company-name strong {
color : white;
font-size : 14px;
font-weight : 300;
text-decoration-line : none;
text-decoration : none;
}

.footer-distributed .footer-company-name a  {
color : white;
font-size : 14px;
font-weight : 600;
text-decoration : none;
}
.footer-distributed .footer-center {
width : 35%;
}
.footer-distributed .footer-center i {

color : #FFD700;
font-size : 25px;
width : 38px;
height : 38px;
border-radius : 50%;
text-align : center;
line-height : 42px;
margin : 10px 15px;
vertical-align : middle;
}
.footer-distributed .footer-center i.fa-envelope {
font-size : 17px;
line-height : 38px;
}
.footer-distributed .footer-center p {
display : inline-block;
color : black;
vertical-align : middle;
font-weight : 600;
margin : 0;
  font-family: 'Poppins', sans-serif;
}
.footer-distributed .footer-center p span {
display : block;
font-weight : normal;
font-size : 14px;
line-height : 2;
  font-family: 'Poppins', sans-serif;
}
.footer-distributed .footer-center p a {
color : white;
text-decoration : none;
  font-family: 'Poppins', sans-serif;
}
.footer-distributed .footer-right {
width : 30%;
}
.footer-distributed .footer-company-about {
line-height : 20px;
color : black;
font-size : 13px;
font-weight : normal;
margin : 0;
}
.footer-distributed .footer-company-about span {
display : block;
color : black;
font-size : 18px;
font-weight : bold;
margin-bottom : 20px;
text-decoration: none;
  font-family: 'Poppins', sans-serif;
}
.footer-distributed .footer-company-about strong {
color : white;
font-size : 16px;
font-weight : bold;
margin-bottom : 20px;
text-decoration: none;
  font-family: 'Poppins', sans-serif;
}


.footer-distributed .footer-icons {
margin-top : 25px;
}
.footer-distributed .footer-icons a {
display : inline-block;
width : 35px;
height : 35px;
cursor : pointer;
  font-family: 'Poppins', sans-serif;
border-radius : 2px;
font-size : 20px;
color : #FFD700;
text-align : center;
line-height : 35px;
margin-right : 3px;
margin-bottom : 5px;
}
.footer-distributed .footer-icons a:hover {
background-color : #009688;
}
.footer-links a:hover {
color : #009688;
}
@media (max-width: 1100px) {
.footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
display : block;
width : 100%;
margin-bottom : 40px;
text-align : center;
}
.footer-distributed .footer-center i {
margin-left : 0;
}

.footer-privacy {
display: flex;
  align-items: center;
  justify-content: center;
}

}

#banner-mini {
  height: 50vh;
  width: 100%;
  background: linear-gradient(to right, #FFDB4D, #77A88C);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.banner-mini-text {
  text-align: center;
  color: #fff;
 z-index: 2;
}
.banner-mini-text h1 {
  font-size: 2.5em;
}
.banner-mini-text h2 {
  font-size: 2.5em;
}

.banner-mini-text p {
  font-size: 1.5em;
}

/* Banner Links Styling */
.banner-links {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #fff;
    font-size: 1.2em;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 15px;
    transition: background 0.3s ease, color 0.3s ease;
    z-index: 2;
}

.banner-links a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border: 1px solid #FFD700;
    border-radius: 10px;
    font-weight: bold;
    transition: color 0.3s ease, background 0.3s ease;
}
.banner-links h6 {
    color: black;
    text-decoration: none;
    padding: 8px 15px;
      font-size: 1.2em;
    border: 1px solid #FFD700;
    border-radius: 10px;
    font-weight: bold;
     box-shadow: 0 8px 12px rgba(0, 0, 0, 0.6);
    transition: color 0.3s ease, background 0.3s ease;
}
.banner-links a:hover {
  background-color: #F5C000;
  border: 1px solid black;
  color: black;
}
#banner-mini::before,
#banner-mini::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: #FFDB4D;
  opacity: 0.6;
  z-index: 0;
}

#banner-mini::before {
  width: 200px;
  height: 200px;
  top: 20%;
  left: 10%;
}

#banner-mini::after {
  width: 300px;
  height: 300px;
  bottom: 20%;
  right: 15%;
  background: #009688;
}
@media (max-width: 770px) {
    #banner-mini {
        height: 400px;
        padding: 20px;
    }

    .banner-mini-text h2 {
        font-size: 1.5em;
    }

    .banner-mini-text h1 {
        font-size: 1.5em;
    }

    .banner-mini-text p {
        font-size: 0.9em;
    }

    .banner-mini-text {
        padding-top: 20px;
        padding-bottom: 50px;
    }

    .banner-links {
        font-size: 1em;
        max-width: 100%;

    }

    .banner-links a {
        display: inline;
    }
}

/* Contact Section Styling */
.location {
    width: 80%;
    margin: auto;
    padding: 60px 0;

    border-radius: 15px;

}

.location iframe {
    width: 100%;
    border-radius: 15px;
}

.contact-us {
    width: 80%;
    margin: auto;
    padding-top: 20px;
}

.contact-us h1 {
    font-size: 2.4rem;
    color: #009688;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.row .contact-col {
    flex: 1;
    min-width: 300px;
    height: auto;
    margin: 10px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 15px;


}



.row .contact-col h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #009688;
}

.row .contact-col p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #666666;
}

.row .contact-col p a {
    color: #009688;
    text-decoration: none;
    font-weight: bold;
}

.row .contact-col p a:hover {
    color: #FFDB4D;
}

.row .contact-col form {
    display: flex;
    flex-direction: column;
}

.row .contact-col input[type="text"],
.row .contact-col input[type="email"],
.row .contact-col textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 15px;
}

.row .contact-col textarea {
    resize: vertical;
    height: 100px;
}

.row .contact-col button {
  display: flex;
  justify-content: center;
  align-items: center;
  display: inline;
  justify-content: center;
  align-items: center;
  background: #FFDB4D;
  color: #009688;
  width: 100%; /* Adjust size to fit design */
  max-width: 300px; /* Prevent the button from becoming too wide */
  border-radius: 15px;
  padding: 20px 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
}

.row .contact-col button:hover {
    background-color: #FFD700;
    color: black;
        border: black solid 1px;

}

@media screen and (max-width: 770px) {
    .row {
        flex-direction: column;
        align-items: center;
    }

    .contact-us h1 {
        font-size: 1.5rem;
    }

    .row .contact-col {
        width: 100%;

    }
}



/* Services Section Styling */
.post-header {
    width: 100%;
    height: auto;

    color: #fff;
    padding: 20px 0;
    border-radius: 15px;

}

.post-header-container {
    max-width: 800px;
    margin: auto;
    width: 90%;
    font-family: 'Poppins', sans-serif;
}

.post-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem !important;
}

.comment-link {
    text-decoration: none;
    color: #fff;
    background-color: rgba(0, 150, 136, 0.7);
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.comment-link:hover {
    background-color: #FFD700;
    transform: scale(1.1);
}

.post-header-title {
  font-size: 2.4rem;
  color: #009688;

    text-align: center;
    margin-bottom: 1rem;
}

.post-header-title-t {
    font-size: 1.2rem;
    color: #fff;
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 1rem;
}

.post-header-img {
    width: 100%;
    height: 45vh;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 0% 100%);
}

.post-post-content {
    margin-top: 2rem !important;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.post-post-content h2 {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    padding-bottom: 5px;
    color: #009688;
}
.post-post-content h1 {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  padding-bottom: 15px;
}
.post-sub-heading {
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666666;
}

.post-post-text {
    font-size: 1rem;
    line-height: 1.7rem;
    margin: 1rem 0;
    text-align: justify;
    color: #333333;
}

.post-share {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
}

.post-share-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 10px;
    color: #009688;
}

.post-social-links {
    text-align: center;
}

.post-social-links .fa-brands {
    height: 40px;
    width: 40px;
    font-size: 20px;
    line-height: 40px;
    border: #77A88C solid 1px;
    margin: 0 5px 20px;
    color: #009688;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.5s;
}

.post-social-links .fa-brands:hover {
    background: #009688;
    color: #fff;
    transform: translateY(-7px);
}

.post-btn {
    margin-top: 40px;
    margin-bottom: 40px;
}

.post-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  display: inline;
  justify-content: center;
  align-items: center;
  background: #FFD700;
  color: #009688;
  width: 100%; /* Adjust size to fit design */
  max-width: 200px; /* Prevent the button from becoming too wide */
  border-radius: 15px;
  padding: 20px 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;

}

.post-button a:hover {
  background-color: #F5C000;
  border: 1px solid black;
  color: black;
}

/* Mobile */
@media screen and (max-width: 770px) {
    .post-header-title {
        font-size: 1.5rem;
        margin-top: 15px;
    }

    .post-post-text {
        margin-left: 10px;
        margin-right: 10px;
    }

    .post-sub-heading h2 {
        margin-top: 150px;
    }

    .post-post-content h1 {
        font-size: 1.8rem;
        align-items: center;
    }

    .post-sub-heading {
        text-align: center;
    }

    .post-header-container {
        max-width: 90%;
        height: auto;
    }
}
.post-button a {
    max-width: 150px; /* Adjust size for smaller screens */
    padding: 15px 30px; /* Reduce padding for better fit */
}
.post-btn {
    margin-top: 20px;
    margin-bottom: 20px; /* Adjust margins for compact layout */
}

/* Big screen */
@media screen and (min-width: 1200px) {
    .post-header-container {
        max-width: 1000px;
    }


}
@media (max-width: 480px) {
    .post-button a {
        max-width: 120px; /* Further reduce width for very small screens */
        padding: 10px 20px; /* Minimize padding */
    }
    .post-btn {
        margin-top: 10px;
        margin-bottom: 10px; /* Tighten margins further */
    }
}
/* Kolkas nanaudojama */
.quote-inside {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.quote-box {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.quote-box h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.form-section {
    margin-bottom: 20px;
}

.form-section h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea,
button {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 10px;
}


.quote-box button {
display : flex;
justify-content : center;
align-items : center;
background-color : #fff;
color: #000;
border : black solid 1px;
margin-left: 2px;
}
.quote-box button i.fa-solid {
margin-right: 8px;
    color: #009688;
}
.quote-box button:hover i.fa-solid {
margin-right: 8px;
    color: #fff;
}
.quote-box button:hover {
    background-color: #009688;
      color: #fff;
}

.styled-select select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    font-size: 16px;
    color: #555;
    transition: border-color 0.3s ease-in-out;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: right center;
}

.styled-select select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

.form-section {
    margin-bottom: 30px;
}

.form-section h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.form-section input[type="datetime-local"],
.form-section textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    color: #555;
    transition: border-color 0.3s ease-in-out;
    resize: vertical; /* Allow vertical resizing of the textarea */
}

.form-section input[type="datetime-local"]:focus,
.form-section textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

@media (max-width: 600px) {
    .quote-box {
        max-width: 90%;
    }
}
/* Kolkas nanaudojama */

.login-inside {
    display: flex;
    flex-direction: column; /* Change to column layout */
    align-items: center;
    justify-content: center; /* Center content vertically */
    min-height: calc(50vh - 50px); /* Adjust the distance from the bottom here */
}

.login-box {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
}

.form-section {
    margin-bottom: 20px;
}

.form-section input[type="text"],
.form-section input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 20px;
}

.error-message {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

.login-box button {
display : flex;
justify-content : center;
align-items : center;
background-color : #fff;
color: #000;
border : black solid 1px;
margin-left: 2px;
}
.login-box button i.fa-solid {
margin-left: 8px;

}
.login-box button:hover i.fa-solid {
margin-left: 8px;
    color: #fff;
}
.login-box button:hover {
    background-color: #009688;
      color: #fff;
}




/* Enhanced Image Gallery Styling */
.img-gallery {
  padding: 20px;
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
  overflow: hidden;
  border-radius: 15px;
  background: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.no-scroll {
  overflow: hidden;
}

.img-gallery img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-gallery img:hover {
  transform: scale(1.05) rotate(-2deg);
  border-radius: 15px;
  box-shadow: 0 16px 35px rgba(68, 77, 136, 0.3);
}

.full-img {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.full-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
}

.full-img span {
  position: absolute;
  top: 5%;
  right: 5%;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.full-img span:hover {
  color: #FFD700;
}

.close-button {
  display: inline-block;
  background-color: #009688;
  color: white;
  font-size: 18px;
  font-weight: bold;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.close-button:hover {
  background-color: #FFD700;
  color: #009688;
}

.img-gallery-text {
  text-align: center;
  color: #000;
  padding: 20px;
}

.img-gallery-text h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.gallery-slider {
  display: inline-flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-slider::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 1600px) {
  .img-gallery {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-left: 10px;
    scroll-snap-type: x mandatory;
  }

  .img-gallery img {
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: 35%;
  }
}

@media screen and (max-width: 1100px) {
  .img-gallery {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-left: 10px;
    scroll-snap-type: x mandatory;
  }

  .img-gallery img {
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: 50%;
  }
}

@media screen and (max-width: 770px) {
  .img-gallery {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-left: 10px;
    scroll-snap-type: x mandatory;
  }

  .img-gallery img {
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: 70%;
  }
}

@media screen and (max-width: 420px) {
  .img-gallery {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-left: 10px;
    scroll-snap-type: x mandatory;
  }

  .img-gallery img {
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: 100%;
  }
}


/* Updated Pricing List Styling */
.price-list {
  font-family: 'Poppins', sans-serif;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 15px;
  margin: 20px auto;
  width: 55%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: #333;
}

.table-style {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.table-style th, .table-style td {
  padding: 15px 20px;
  border: 1px solid #ddd;
  text-align: left;
}

.table-style th {
  background-color: #009688;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}

.table-style tbody tr:nth-child(even) {
  background-color: #f3f3f3;
}

.table-style tbody tr:hover {
  background-color: #dff0d8;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.price-list h3 {
  text-align: center;
  font-size: 24px;
  color: #009688;
  margin-bottom: 15px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .price-list {
      width: 95%;
      padding: 15px;
  }

  .table-style th, .table-style td {
      padding: 10px 15px;
      font-size: 14px;
  }

  .price-list h3 {
      font-size: 20px;
  }
}

/* Updated ErrorDocument Styling */
.frem, .fremo, .fremr {
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin: 20px;
}

.frem h1, .fremo h1, .fremr h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.frem h2, .fremo h2, .fremr h2 {
    color: #555;
    font-size: 20px;
    margin-bottom: 10px;
}

.frem h3, .fremo h3, .fremr h3 {
    color: #555;
    font-size: 18px;
}

.frem h4, .fremo h4, .fremr h4 {
    color: #777;
    margin-top: 20px;
    font-size: 16px;
}

.frem h5, .fremo h5, .fremr h5 {
    color: #777;
    margin-top: 10px;
    font-size: 14px;
}

.frem a, .fremo a, .fremr a {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    transition: background-color 0.3s ease-in-out;
    border-radius: 15px;
    padding: 20px 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      font-family: 'Poppins', sans-serif;
      font-weight: bold;
}

.frem a {
    background-color: #009688;
}

.fremo a {
    background-color: #cf8608;
}

.fremr a {
    background-color: #c50808;
}

.frem a:hover {
    background-color: #01756a;
}

.fremo a:hover {
    background-color: #a86e08;
}

.fremr a:hover {
    background-color: #820a0a;
}

.triangle-container, .triangle-containero, .triangle-containerr {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.triangle, .triangleo, .triangler {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    position: relative;
}

.triangle {
    border-bottom: 120px solid #009688;
}

.triangleo {
    border-bottom: 120px solid #cf8608;
}

.triangler {
    border-bottom: 120px solid #c50808;
}

.exclamation, .exclamationo, .exclamationr {
    font-size: 48px;
    color: #fff;
    font-weight: bold;
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
}




/* Modernized Star Rating Section Styling */
.container_star-rating {
text-align: center;


}

.star-rating {
display: inline-block;
margin-bottom: 20px;
}

.star-rating h3 {
font-size: 20px;
padding-bottom: 5px;
margin-left: 5px;
color: #009688;
}

.star-ratings {
display: inline-block;
margin-top: 70px;
color: #009688;
}

.star-rating input[type="radio"] {
display: none;
}

.star-rating label {
font-size: 25px;
color: #ccc;
cursor: pointer;
transition: color 0.3s ease;
}

.star-rating input[type="radio"]:checked ~ label {
color: #009688;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
color: #ffbb00;
}

.star-rating input[type="radio"]:checked ~ label:hover {
color: #00796b;
}
