 
 
 
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  /* NAVBAR */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1b5e20;
    color: white;
    padding: 15px 30px;
  }
  
  .navbar .brand {
    font-size: 1.5em;
  }
  
  .navbar nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
  }
  
  .navbar nav a:hover {
    text-decoration: underline;
  }
  
  /* HERO */
  .hero2 {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('../../images/logo.png');
    background-size: 81%;
    background-position: center;
    color: white;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
  }
  
  .hero-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
  }
 
 .testimonials {
    background: #f9f9f9;
  }
  
  .testimonial {
    max-width: 400px;
    margin: 20px auto;
    font-style: italic;
  }

  .about {
    background: #f5f5f5;
  }

  .contact {
    background: #e8f5e9;
    margin-top:4vh;
  }

  .trust {
    background: #f5f5f5;
  }

  h2,p{
    font-weight:bold;
    font-size:3vh;
  }

  h2{
    font-size:5vh;
  }

  a {
    text-decoration:none;
  }

  .contact a:hover {
    color: #1b5e20;
    text-decoration: underline;
  }

  .social-media {
    text-align: center;
    padding: 30px 20px;
    background: #f9f9f9;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
  }
  
  .social-icons img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  
  /* Hover effect */
  .social-icons img:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }



/* Mobile Optimization */
  /* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {

    /* NAVBAR */
    .navbar {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 15px;
    }
  
    .navbar .brand {
      font-size: 1.3em;
    }
  
    .navbar nav {
      margin-top: 10px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .navbar nav a {
      margin: 5px 10px;
      font-size: 0.9em;
    }
  
    /* HERO */
    .hero2 {
      height: 50vh;
      background-size: cover;   /* fix image scaling */
      padding: 20px;
    }
  
    .hero-content h1 {
      font-size: 1.6em;
    }
  
    /* CONTACT SECTION */
    .contact {
      padding: 20px;
      text-align: center;
    }
  
    .contact h2 {
      font-size: 1.5em;
      margin-bottom: 10px;
    }
  
    .contact p {
      font-size: 1em;
      margin: 8px 0;
      word-break: break-word; /* prevents overflow */
    }
  
    /* GENERAL TEXT FIX */
    h2 {
      font-size: 1.6em;
    }
  
    p {
      font-size: 1em;
    }

    .contact a {
        color: #1b5e20;
        text-decoration: none;
        font-weight: bold;
      }

      .social-icons img {
        width: 40px;
        height: 40px;
      }
      
      .social-icons {
        gap: 15px;
      }
  
  }