:root {
    --pageBackgroundColor: #F1FFD9;
    --whiteColor: #FFFFFF;
    --DarkgreenColor: #052A0B;
    --greenColor: #0B843A;
    --lightgreenColor: #20af35;
    --textColor: #052A0B;
}
/* page transition */
.fade-up.no-animation,
.slide-in-right.no-animation {
  transition: none !important;
  opacity: 1;
  transform: none;
}

/* fade in bottom to up */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* fade in right to left */
.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
  }
  

* {
    padding: 0;
    margin: 0;
}

html {
    overflow-x: hidden;
}
@media (max-width: 700px) {
   html, body{
    overflow-x: hidden;
   }
}

body {
    background-color: var(--pageBackgroundColor);
    max-width: 100vw;
    overflow-x: hidden;
}

/* nav bar */


.navbar {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 12px 30px;
    border-radius: 40px;
    width: 60%;
    margin: auto;
    position: sticky;
    top: 30px;
    z-index: 100;
}

.logo img {
    width: 120px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--greenColor);
}

.contact-btn {
    background: linear-gradient(to right, var(--greenColor), var(--lightgreenColor));
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background: linear-gradient(to right, var(--greenColor), var(--lightgreenColor));
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger div {
    width: 30px;
    height: 3px;
    background: black;
    transition: 0.3s ease;
}

@media (max-width: 1240px) {
    .navbar {
        width: 60%;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 20px 0;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }


}

@media (max-width: 700px) {
    .navbar {
        width: 80%;

    }
}

/* nav bar  */

/* our team */
/* Vertical Team Section Styling */

.team-vertical-section {
  background-color: #F1FFD9;
  padding: 60px 20px;
  font-family: 'Montserrat', sans-serif;
}

.vertical-section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.vertical-team-card {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 40px auto;
  padding: 30px 25px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, #f7fdf0);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-left: 8px solid #B5D274; /* soft green accent bar */
  transition: all 0.3s ease;
}

.vertical-team-card:hover {
  transform: scale(1.01);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}


.vertical-member-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2a3d00;
  margin-bottom: 6px;
}

.vertical-member-role {
  font-size: 1rem;
  font-weight: 500;
  color: #6b8e23;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


.vertical-member-info {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}


/* about granulators */

    body {
      margin: 0;
      padding: 0;
      background-color: #f4ffe4;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
    }
    .granulators-section {
      max-width: 1000px;
      margin: 50px auto;
      background: linear-gradient(to bottom right, #ffffff, #e9f8db);
      padding: 50px;
      border-radius: 25px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
      border-left: 6px solid #80c56d;
      transition: transform 0.3s ease;
    }

    .granulators-section:hover {
      transform: scale(1.01);
    }

    .granulators-section h1 {
      font-size: 32px;
      color: #2f6e2f;
      margin-bottom: 10px;
      border-bottom: 2px solid #c7eac2;
      padding-bottom: 8px;
    }

    .granulators-section h2 {
      font-size: 22px;
      color: #3e7f3e;
      margin-top: 30px;
    }

    .granulators-section p {
      font-size: 16.5px;
      line-height: 1.8;
      margin: 10px 0;
    }

    .highlight {
      font-weight: bold;
      color: #4c944c;
    }

    .bullet {
      color: #80c56d;
      margin-right: 8px;
    }

    hr {
      border: none;
      height: 1px;
      background-color: #d9eacb;
      margin: 30px 0;
    }

  /* footer */
  .footerbgBox {
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("/public/footerBg.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }
  
  .contents {
    width: 99%;
    height: 95%;
    display: flex;
    align-items: end;
    justify-content: center;
  }
  
  .footerLogo {
    overflow: hidden;
    height: auto;
    margin-bottom: 40px;
  }
  
  .footerLogo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  
  .footeraddress {
    overflow: hidden;
    height: auto;
  }
  
  .footercontacts {
    overflow: hidden;
    height: auto;
  }
  
  .containImage {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  
  @media (max-width: 900px) {
    .footerLogo {
      margin-bottom: 5px;
    }
  
    .footerbgBox {
      height: 30vh;
    }
  }
  
  .footer {
    background-color: #0b7333;
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    position: relative;
    bottom: 0;
    width: 100%;
  }
  
  @media (max-width: 600px) {
    .footer {
      font-size: 12px;
      padding: 8px 10px;
    }
  }
  