* {
  box-sizing: border-box;
}

:root {
  --primary-color: #80C341; /* Vibrant Green from the tree */
  --secondary-color: #FCE47F; /* Soft Yellow for accents */
  --accent-color: #001A33; /* Deep Navy Blue for contrast */
  --text-color: #262626; /* Dark Gray for readability */
  --background-color: #F9F9F9; /* Light Gray for a clean background */
}

body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  font-family: 'Roboto', sans-serif; /* Modern and professional look */
  background-color: #F9F9F9;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  color: #80C341;
  font-family: 'Poppins', sans-serif; /* Elegant and bold for headers */
}



/* Custom CSS for carousel height and image responsiveness */
.carousel-item img {
    width: 100%;
    height: auto;
    max-height: 400px; /* Adjust height as needed */
    object-fit: cover; /* Ensures images cover the area */
  }

  /* Desktop-specific styles */
  @media (min-width: 768px) {
    .carousel-item img {
      max-height: 500px; /* Fixed height for desktop */
    }
  }

  /* Mobile-specific styles */
  @media (max-width: 767px) {
    .carousel-item img {
      max-height: 300px; /* Adjust height for mobile */
    }
  }

  .header__logo img, footer img{
    width: 16rem;
  }


  
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a73e8, #87ceeb);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

.fan {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.fan .blade {
    position: absolute;
    width: 60%;
    height: 10%;
    background: #0dcaf0;
    border-radius: 5px;
    transform-origin: center center;
}

.blade1 {
    transform: rotate(0deg);
}

.blade2 {
    transform: rotate(90deg);
}

.blade3 {
    transform: rotate(180deg);
}

.blade4 {
    transform: rotate(270deg);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    margin-top: 20px;
    font-size: 1.2rem;
    animation: fade 1.5s infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}


@keyframes fade {
  0%, 100% {
      opacity: 0.8;
  }
  50% {
      opacity: 1;
  }
}

#whatsapp-logo{
position: fixed;
bottom: 1%;
left: 4%;
z-index: 1;
object-fit: cover;
}

#services .card {
min-height: 300px;
}

img:hover, .container img:hover {
  transform: scale(0.9);
  transition: transform 0.3s ease-in-out;
}

.no-hover:hover {
    transform: none;
    transition: none;
}
#backToTop {
  position: fixed;
  bottom: -60px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  opacity: 0;
  cursor: pointer;
  background-color: rgb(53, 171, 53);
  border-radius: 35%;
  align-content: center;
  justify-content: center;
  align-items: center;
  transition: bottom 0.3s ease, opacity 0.3s ease;
}

#backToTop.show {
    bottom: 20px;
    opacity: 1;
}


#contact a{
    text-decoration: none;
    color:#fff;
}