/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
  }
  
  h1, h2, h3 {
    margin: 0 0 10px;
  }
  
  a {
    text-decoration: none;
    color: #2e8b57;
  }
  
  /* Header & Logo */
  .logo-header {
    background-color: #ffffff;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
  }
  .logo {
    height: 60px;
    width: auto;
  }
  /* Hero Section */
  .hero {
    background: url('assets/hero.jpg') center/cover no-repeat;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px 20px;
   color: white;
   position: relative;
   text-align: center;
  }
  /*Logo + Social*/
  .hero-top {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
padding: 20px;
position: absolute;
top: 0;
left: 0;
z-index: 10;
  }

  .social-icons {
    display: flex;
    gap: 10px;
    position: absolute;
    top: 20px;
    right: 0px;
    margin-right: 80px;
  }
 .social-icons a img{
    height: 24px;
    width: 24px;
    transition: transform (0.2s);

}
  .social-icons a img:hover {
    transform: scale(1.2);
  }
  /*hero text*/
  .hero-text {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 10px;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-text p {
    font-size: 1.2rem;
  }
  
  .hero-logo {
    height: 120px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }
  
  .btn {
    display: inline-block;
    background-color: #2e8b57;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 15px;
  }
  
  /* Sections */
  section {
    padding: 40px 20px;
    text-align: center;
  }
  .intro {
   max-width: 800px;
   margin: 0 auto;
   padding: 20px;
   text-align: center; 
  }
  .intro p {
    font-size: 1.1rem;
    color: #444;
  }
  
  /* Services Grid */
  .service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  
  .card {
    background-color: white;
    width: 300px;
    min-height: 180px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
  }
  
  /* Community Section */
  .community .links {
    margin-top: 15px;
  }
  
  .community .links a {
    margin: 0 10px;
    font-weight: bold;
  }
  
  /* Footer */
  footer {
    background-color: #2e8b57;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
  }
   /* Navbar */
   .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #2e7d32;
    color: wheat;
    position: sticky;
    top: 0;
    z-index: 1000;
   }
    .nav-logo {
height:40px;
width: auto;
    }
   .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
   }

   .nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
   }

   .nav-links li a:hover {
    text-decoration: underline;
   }
   .logo-and-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .dropbtn {
    background-color: #13194e;
    color: white;
    padding: 10px 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    margin-left: 30px;
    border-radius: 5px;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    margin-top: 5px;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .dropdown-content a {
    color: #2e7d32;
    padding: 10px 14px;
    text-decoration: none;
    display: block;
    font-weight: 500;
  }
  
  .dropdown-content a:hover {
    background-color: #f0f0f0;
  }
/* meet the team*/
  .team-section {
    padding: 50px 20px;
    background-color: #fefefe;
    text-align: center;
  }
  
  .team-section h2 {
    font-size: 32px;
    color: #2e7d32;
    margin-bottom: 40px;
  }
  
  .team-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .team-member {
    background: #ffffff;
    padding: 20px;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .team-member img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .team-member h3 {
    font-size: 20px;
    margin-top: 15px;
    color: #333;
  }
  
  .team-member .role {
    font-weight: bold;
    color: #4caf50;
    margin: 5px 0;
  }
  
  .team-member p {
    font-size: 15px;
    color: #666;
  }
  
   /* Services */
   .page-hero {
    padding: 60px 20px;
    background-color: #e8f5e9;
    text-align: center;
  }
  
  .page-hero h1 {
    font-size: 36px;
    color: #2e7d32;
    margin-bottom: 10px;
  }
  
  .page-hero p {
    font-size: 18px;
    color: #555;
  }
  
  .services-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
    background-color: #f9f9f9;
  }
  
  .service-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
  }
  
  .service-card h2 {
    margin-bottom: 10px;
    color: #2e7d32;
  }
  
  .service-card p {
    color: #444;
    line-height: 1.5;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero-text h1 {
      font-size: 1.8rem;
    }
  
    .service-grid {
      flex-direction: column;
      align-items: center;
    }
  }
  section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2e8b57;
  }

  .newsletter {
    background-color: #fff3cd;
    padding: 40px 20px;
    text-align: center;
  }
  
  .newsletter h3 {
    margin-bottom: 10px;
    font-size: 24px;
  }
  
  .newsletter p {
    margin-bottom: 20px;
    font-size: 16px;
  }
  
  .newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .newsletter-form input {
    padding: 10px;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  

   /* Testimonials */
  .newsletter-form button {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .newsletter-form button:hover {
    background-color: #218838;
  }
  
  .testimonial-section {
    padding: 40px 20px;
    background-color: #f1f8e9;
    display: flex;
    justify-content: center;
  }
  
  .testimonial-card {
    max-width: 700px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
  }
  
  .testimonial-card h2 {
    color: #2e7d32;
    font-size: 24px;
    margin-bottom: 5px;
  }
  
  .testimonial-card h4 {
    color: #555;
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .testimonial-card p {
    color: #444;
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .video-wrapper {
    max-width: 100%;
  }
  
  video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }
  
  .contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 50px 20px;
    background-color: #f9fbe7;
    gap: 40px;
  }
  
  .contact-info, .contact-form {
    flex: 1;
    max-width: 500px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .contact-info h2, .contact-form h2 {
    color: #2e7d32;
    margin-bottom: 20px;
  }
  
  .contact-info p {
    font-size: 16px;
    margin: 10px 0;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
  }
  
  .contact-form textarea {
    resize: vertical;
    min-height: 100px;
  }
  
  .contact-form button {
    background-color: #4caf50;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
  }
  
  .contact-form button:hover {
    background-color: #388e3c;
  }
  /* GALLERY PAGE STYLES */

.gallery-header {
    text-align: center;
    padding: 2rem;
    background: #f7f7f7;
  }
  
  .gallery-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 2rem;
  }
  
  .gallery-item {
    position: relative;
    text-align: center;
  }
  
  .gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  
  .gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
  }
  
  .gallery-item p {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #444;
  }
  
  /* Modal styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
  }
  
  .modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80vh;
    border-radius: 10px;
  }
  
  .close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
  }
  