@import url('https://fonts.googleapis.com/css2?family=spartan:wght@100;200;300;400;500;600;700,800;900&display=swap');
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: 'spartan', sans-serif;
}

h1 {
    font-size: 50px;
    line-height: 64px;
    color: black;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color:rgba(48, 48, 48, 0.733);   
}

h4 {
    font-size: 20px;
    color:#64d2ae;
}

h6 { 
    font-weight: 50px;
    font-size: 12px;
}

p {
    font-size: 16px;
    color: #383a3a;
    margin: 15px 0 20px 0;
}

section {
    margin:0;
}

body {
    width: 100%;
}

#header {
    display:flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background-color: #64d2ae;
    box-shadow: 0 5px 15px rgba(15, 19, 15, 0.06);
    z-index: 999;
    position:sticky;
    top:0;
    left:0;
}

#navbar{
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li{
    list-style: none;
    padding: 0 20px;
    position: relative;

}

#navbar a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

#navbar li a:hover,
#navbar li a.active{
    color: rgb(8, 53, 8);
}

#navbar li a.active::after,
#navbar li a:hover::after{
    content: "";
    width: 30%;
    height: 2px;
    background-color: rgb(8, 53, 8);
    position: absolute;
    bottom: -4px;
    left:20px;
}
/* Button Styles */
.button {
    display: -ms-inline-flexbox;
    padding: 15px 30px;
    background-color: #64d2ae; /* Button background color */
    color: white; /* Button text color */
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 0; /* Rectangle without corners */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Button shadow */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Transition effects */
}

.button:hover {
    background-color: #64d2ae; /* Background color on hover */
    transform: translateY(-2px); /* Slightly raises the button on hover */
}

#welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.welcome-text {
    flex: 1;
    padding-right: 20px;
}

.welcome-image {
    flex: 1;
    text-align: right;
}

.welcome-image img {
    max-width: 100%;
    height: auto;
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
    #welcome {
        flex-direction: column;
        text-align: center;
    }

    .welcome-text {
        padding-right: 0;
    }

    .welcome-image {
        text-align: center;
        margin-top: 20px;
    }
}

/* Section: What We Offer */
#what-we-offer {
    padding: 40px 20px;
    text-align: center;
    background-color: #f4f4f4;
}

#what-we-offer h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #68d4ac;
}

.service {
    display: inline-block;
    width: 300px;
    padding: 20px;
    margin: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    text-align: center;
}

.service i {
    color: #64d2ae;
    margin-bottom: 10px;
}

.service h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.service p {
    font-size: 16px;
    color: #777;
}
/* Form section */
.container {
    display: flex;
    background-color: #fff;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
    overflow: hidden;
}

.left {
    flex: 1;
    padding: 20px;
}

.right {
    flex: 1;
    position: relative;
    padding: 20px;
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 25.15%;
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.contact-info p {
    margin: 5px 0;
}

/* Form styles */
form {
    background-color: #68d4ac;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

form h2 {
    color: #fff;
    font-size: 1.5em;
    margin-bottom: 10px;
    text-align: center;
}

form input[type=text], 
form textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1em;
    background-color: #fff;
    color: #000;
    transition: background-color 0.3s ease;
}

form input[type=text] {
    width: calc(100% - 20px); /* Adjusted width to account for padding */
}

form textarea {
    width: calc(100% - 20px); /* Adjusted width to account for padding */
    resize: vertical;
}

form input[type=submit] {
    background-color: #fff;
    color: #000;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    align-self: center;
}

form input[type=submit]:hover {
    background-color: #d3d3d3;
}

#what-we-offer .services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .service {
    flex: 1 1 30%; /* allows 3 per row on large screens */
    min-width: 280px;
    border: 1px solid #ccc;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 320px; /* fixed height for consistency */
    background-color: #fff;
    text-align: center;
    border-radius: 8px;
  }

  /* Make all footer text white */
  #footer {
    background-color: #1f1f1f;
    color: #fff;
    padding: 40px 20px;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
  }
  .footer-column {
    flex: 1;
    min-width: 280px;
    margin: 10px;
  }
  .footer-column h3,
  .footer-column p,
  .footer-column a,
  .footer-column ul li a,
  .footer-column ul li {
    color: #fff !important;
  }
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-column ul li {
    margin-bottom: 10px;
  }
  .footer-column a {
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .footer-column a:hover {
    text-decoration: underline;
    color: #ddd;
  }
  .footer-column i {
    margin-right: 8px;
  }
  .footer-column ul li a.active {
    font-weight: bold;
    text-decoration: none;
  }
  
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-column {
      margin: 20px 0;
    }
  }

  #menu-icon {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  #navbar {
    display: none;
    flex-direction: column;
    background-color: #64d2ae;
    position: absolute;
    right: 20px;
    top: 80px;
    width: 200px;
    padding: 10px;
    border-radius: 4px;
  }

  #navbar.show {
    display: flex;
  }

  #menu-icon {
    display: block;
  }
}

  
  
  

