/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #402D31; /* Black background */
    color: #fff; /* White text */
}

header {
    background: #3a756b;
    color: #fff;
    padding: 10px 0;
}

.sticky-nav ul {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 5;
    list-style: none;
}

.sticky-nav ul li a {
    text-decoration: none;
    padding: 10px 20px;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

.sticky-nav ul li a:hover {
    color: #ffcc00;
}

/* Hero Section */
.hero .banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('Forest.webp') center/cover no-repeat;
    color: white;
    text-align: center;
}

.hero .banner h1 {
    font-size: 3rem;
}

.hero .banner p {
    font-size: 1.5rem;
    margin: 10px 0;
    color: white;
}

.hero .banner .cta {
    background: #ff7e5f;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.hero .banner .cta:hover {
    background: #feb47b;
}
/* Form Enhancements */
.contact-form input, .contact-form textarea {
    background-color: #222; /* Darker input background */
    color: white; /* White text in input fields */
    border: 1px solid #555; /* Subtle border */
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
}

.contact-form button {
    background-color: #0078A0;
    color: #fff; /* White button text */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #005f75;
}

/* Features List */
.features-list li h2 {
    color: white; /* White feature headings */
}

.features-list li p {
    color: white; /* White feature descriptions */
}

/* FAQ Section */
.faq-section h1, .faq-section h2, .faq-section p {
    color: white; /* White text for FAQ */
}

/* Footer */
footer {
    background: #402D31; /* Darker footer background */
    color: white; /* White footer text */
    padding: 20px;
    text-align: center;
}

/* Image Slider */
.image-slider {
    position: relative;
    max-width: 80%;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
}

#slide1 { background-image: url('image1.jpg'); }
#slide2 { background-image: url('image2.jpg'); }
#slide3 { background-image: url('image3.jpg'); }

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50%;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
    background: rgba(0, 0, 0, 0.8);
}


/* CSS for flying button */
.container {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .container * {
    border: none;
    outline: none;
  }
  
  .button {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: end;
    cursor: pointer;
    width: 200px;
    height: 65px;
    border-radius: 13px;
    font-size: 18px;
    font-weight: 500;
    background-color: #ff7e5f;
    border: 3px solid #ff7e5f;
    -webkit-box-shadow: 0px 10px 24px 0px rgba(214, 215, 214, 1);
    -moz-box-shadow: 0px 10px 24px 0px rgba(214, 215, 214, 1);
    box-shadow: 0px 10px 24px 0px rgba(214, 215, 214, 1);
    overflow: hidden;
    padding: 0px 13px;
    border-top-color: #ff7e5f;
    border-bottom-color: #ff7e5f;
    transition: all 0.90s ease;
  }
  
  .button .icon {
    aspect-ratio: 1/1;
    width: 30px;
    z-index: 10;
    transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 30px;
  }

  .button-link {
    text-decoration: none;
    display: inline-block;
}

  
  .button .text {
    z-index: 10;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align text to the left */
    color: black;
    width: 71%; /* Ensure text takes the full width of the button */
    padding-left: 20px; /* Add padding to move the text further left */
}

  .button .text .tab {
    margin: 0px 2px;
  }
  .button .text span {
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 190px;
    height: 52px;
    background-color: #ff7e5f;
    border-radius: 50px;
    -webkit-box-shadow: inset 0px 10px 50px -40px rgba(66, 68, 90, 1);
    -moz-box-shadow: inset 0px 10px 50px -40px rgba(66, 68, 90, 1);
    box-shadow: inset 0px 10px 50px -40px rgba(66, 68, 90, 1);
    transition: all 0.3s ease;
  }
  
  .button:hover::before {
    width: 200px;
    height: 64px;
    border-radius: 13px;
    -webkit-box-shadow: inset 0px -10px 50px -40px rgba(66, 68, 90, 1);
    -moz-box-shadow: inset 0px -10px 50px -40px rgba(66, 68, 90, 1);
    box-shadow: inset 0px -10px 50px -40px rgba(66, 68, 90, 1);
  }
  
  .button:hover .text span {
    transform: translateY(80px);
    opacity: 0;
    color: black;
  }
  
  .button:hover .icon {
    width: 35px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  
  .button:active {
    transform: translateY(5px);
  }
  

  /* General Styles for Features Section */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.feature-item img {
  max-width: 200px; /* Adjust image size */
  height: auto;
  margin-right: 20px; /* Space between image and text */
  border-radius: 10px;
}

.feature-text {
  max-width: calc(100% - 240px); /* Ensure proper spacing with image */
}

.feature-text h2 {
  color: white;
  margin-bottom: 10px;
}

.feature-text p {
  color: white;
  line-height: 1.5;
}


@media (max-width: 768px) {
  .feature-item {
      flex-direction: column;
      text-align: center;
  }

  .feature-item img {
      margin-right: 0;
      margin-bottom: 10px;
  }
}
