/* Global */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
 // background-color: #f0fff4;
  color: #1a202c;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none;     /* IE 10 and IE 11 */
  user-select: none;  
}
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to top, #c9d2f9, #f1cacadb, #fae6b9); /* Sunset ocean colors */
    height: 100vh;
    font-family: sans-serif;
    overflow-x: hidden;
  }

  /* This container sits behind everything */
  .bubble-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Background layer */
    pointer-events: none; /* Allows you to click things 'through' the bubbles */
  }

  /* The Content Layer */
  .content {
    position: relative;
    z-index: 10; /* High z-index to stay on top */
  //  text-align: center;
  //  padding-top: 20vh;
  }

  .bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5);
    animation: floatUp 10s infinite linear;
  }

  @keyframes floatUp {
    0% {
      transform: translateY(0);
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    90% {
      opacity: 1;
    }
    100% {
      transform: translateY(-120vh);
      opacity: 0;
    }
  }

  /* Individual bubble settings (Size, Position, Speed) */
  .b1 { left: 10%; width: 50px; height: 50px; animation-duration: 8s; }
  .b2 { left: 20%; width: 20px; height: 20px; animation-duration: 12s; animation-delay: 1s; }
  .b3 { left: 35%; width: 60px; height: 60px; animation-duration: 10s; animation-delay: 2s; }
  .b4 { left: 50%; width: 30px; height: 30px; animation-duration: 14s; }
  .b5 { left: 65%; width: 80px; height: 80px; animation-duration: 18s; animation-delay: 3s; }
  .b6 { left: 80%; width: 40px; height: 40px; animation-duration: 11s; }
  .b7 { left: 90%; width: 25px; height: 25px; animation-duration: 9s; animation-delay: 5s; }
  .b8 { left: 25%; width: 45px; height: 45px; animation-duration: 13s; animation-delay: 4s; }
  .b9 { left: 75%; width: 15px; height: 15px; animation-duration: 7s; }
  .b10 { left: 45%; width: 55px; height: 55px; animation-duration: 15s; animation-delay: 2s; }

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: linear-gradient(to right,  #2f855a89 0%, 
    #2f855a89 7%, 
    #2f855a89 7%, 
   #2f855a89 50%,
    #2f855a89 50%, 
    #2f855a 70%,
    #2f855a 100%);
  color: white;
  padding: 1rem 2rem;
  border-bottom: 4px solid #186c40;
  border-top: 4px solid #186c40;
}
header img {
  height: 60px;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  background: linear-gradient(90deg, #38a169, #48bb78);
  border-right: 4px double black;
  border-bottom: 4px double black;
  border-radius: 10px;
  margin: 2px 5px;
}
nav a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: background 0.3s, border-radius 0.3s;
}
nav a:hover,
nav a.active {
  background-color: #2f855a;
  border-radius: 4px;
}

/* Sections */
section {
  padding: 2rem;
  padding-bottom: 5rem; /* Prevent overlap with fixed footer */
  text-align: center;
}
#about, #services {
  display: none;
  animation: fadeIn 0.8s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn {
  background-color: #38a169;
  color: white;
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  margin-bottom: 5px;
}
.btn:hover {
  background-color: #2f855a;
  transform: scale(1.05);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.service-card {
  background-color: #e6fffa;
  border: 1px solid #38a169;
  border-radius: 8px;
  padding: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* About Image */
#about img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 1rem;
}

/* Footer */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #2f855a;
  color: white;
  text-align: center;
  padding: 1rem;
}
/* Contact Section */
#contact {
  display: none;
  animation: fadeIn 0.8s ease-in-out;
}

#contact form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 0 auto;
  gap: 1rem;
}

#contact input, #contact textarea {
  padding: 0.8rem;
  border: 1px solid #38a169;
  border-radius: 5px;
  font-size: 1rem;
}

#contact textarea {
  min-height: 120px;
  resize: vertical;
}
/* WhatsApp Button */
.whatsapp-btn {
  display: inline-block;
  background-color: #25D366; /* WhatsApp green */
  color: white;
  padding: 0.7rem 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}
.whatsapp-btn:hover {
  background-color: #128C7E;
  transform: scale(1.05);
}
.service-tittle {
  color: #034d28;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
h2 {
  color: #034d28 ;
  font-family: 'Montserrat', sans-serif;
}
input, textarea {
  user-select: text;
    }
