* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
  }
  
  .pulse {
  
  
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    color: #d20c0a;
  }
  
  p {
    margin-bottom: 20px;
  }


  .fab.fa-whatsapp {
    color: #58E4E0;
    font-size: 24px;
    transition: all 0.3s ease-in-out;
  }
  
  .fab.fa-whatsapp:hover {
    color: #58E4E0;
  }


  .navbar {
    background-color: #black;
    padding: 1rem;
  }
  
  .navbar-brand {
    font-size: 24px;
    font-weight: bold;
  }
  
  #hero {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/nwt.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
  }
  
  #hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  #hero p {
    font-size: 24px;
    margin-bottom: 30px;
  }



  #about {
    padding: 50px;
    background-color: #fff;
  }
  
  #about img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
  }




  #products-services {
    padding: 50px;
    background-color: #f7f7f7;
  }
  
  #products-services .card {
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  #products-services .card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }



  #section {
    padding: 100px 0;
    background-color: #f7f7f7;
  }
  
  .section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeInDown 1s;
  }
  
  .section-description {
    font-size: 18px;
    margin-bottom: 40px;
    animation: fadeInUp 1s;
  }
  
  .services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .service {
    margin: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
  }
  
  .service:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
  
  .service i {
    font-size: 36px;
    margin-bottom: 10px;
    color: #246497;
  }
  
  .service h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  #fish-farming, #horticulture, #real-estate {
    padding: 100px 0;
    background-color: #f7f7f7;
  }
  
  #fish-farming h2, #horticulture h2, #real-estate h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  #fish-farming img, #horticulture img, #real-estate img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  @keyframes fadeInDown {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }


  

  #gallery {
    padding: 50px;
    background-color: #fff;
  }
  
  #gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
  }


  .gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .gallery-item {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
  }
  
  .gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
  }
  
  .gallery-item-description {
    padding: 20px;
    text-align: center;
  }
  
  .gallery-item-description h4 {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  .gallery-item-description p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .fab.fa-whatsapp {
    color: aqua;
    font-size: 24px;
    margin-right: 10px;
  }
  .modal-body img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    margin: 10px auto;
  }

  .gallery-item .btn {
    margin-bottom: 10px;
  }


  #why-choose-us {
    padding: 50px;
    background-color: #f7f7f7;
  }
  
  #why-choose-us ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #why-choose-us li {
    margin-bottom: 10px;
  }
  
  #why-choose-us li:before {
    content: "\2713";
    font-weight: bold;
    margin-right: 10px;
  }



  #team {
    padding: 50px;
    background-color: #fff;
  }
  
  #team .card {
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  #team .card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }



  #contact {
    padding: 50px;
    background-color: #f7f7f7;
  }
  
  #contact form {
    margin-bottom: 20px;
  }
  
  #contact input, #contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }



  #footer {
    padding: 20px;
    background-color: #333;
    color: #fff;
    text-align: center;
  }
  
  #footer p {
    margin-bottom: 10px;
  }


  #real-estate {
    padding: 50px;
    background-color: #f7f7f7;
}

#real-estate .card {
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#real-estate .card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#real-estate .card-body {
    padding: 20px;
}

#real-estate .card-title {
    font-weight: bold;
    margin-bottom: 10px;
}

#real-estate .card-text {
    margin-bottom: 20px;
}

#real-estate .btn-primary {
    background-color: #246497;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

#real-estate .btn-primary:hover {
    background-color: #004c66;
}