html {
  scroll-behavior: smooth;
}

body{
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: segoe ui;
}

.gns-about-hero {
  margin: 0;
    position: relative;
    width: 100%;  
    display: flex;
    flex-direction: column;
    min-height: 600px; /* Adjust height as needed */
    background-image: url('/gns/images/gns-about-cover.jpeg');
    background-repeat: no-repeat; /* Prevent image repetition */
    background-size: cover; /* Optional: scales image to cover container */
    background-position: center; /* Optional: centers the image */
    border-radius: 10px;
    overflow: hidden;
}

/* Color tint over background image */
.gns-about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 29, 22, 0.8); /* Change tint color */
    z-index: 1;
}
.about-hero-content{
    display: flex;
    width: 100%;
    justify-content: space-between; 
    flex-direction: column;
    margin-top: 10px;
    overflow: hidden;
}
.about-hero-content-Left {
    position: absolute;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    left: 50px;
    right: 50px;
    align-self: center;
    z-index: 2;
    overflow-x: hidden;
    div{
        margin-top: 70px;
        display: flex;
        flex-direction: column
    }
    .h2-1 {
        font-size: clamp(1.8rem, calc(10 + 1rem), 5vw);
        padding: 0;
        margin: 0;
        color: white;
        letter-spacing: -0.015em; /* tracking-tight */
        animation: pulse 2s infinite; /* animate-pulse */
        text-shadow: 0 0 4px rgba(255, 255, 255, 0.6),
               0 0 6px rgba(255, 255, 255, 0.4); /* glowing effect */
        /* Pulse animation */

   }
    .h2-2 {
        font-size: clamp(1.8rem, calc(10 + 1rem), 5vw);;
        padding: 0;
        margin: 0;
        color: rgb(27, 151, 44);
        letter-spacing: -0.015em; /* tracking-tight */
        animation: pulse 2s infinite; /* animate-pulse */
        text-shadow: 0 0 4px rgba(37, 165, 54, 0.6),
               0 0 6px rgba(37, 165, 54, 0.4);
   }
    .h2-3 {
        font-size: clamp(1.8rem, calc(10 + 1rem), 5vw);;
        padding: 0;
        margin: 0;
        color: rgb(219, 165, 79);
        letter-spacing: -0.015em; /* tracking-tight */
        animation: pulse 2s infinite; /* animate-pulse */
        text-shadow: 0 0 4px rgba(219, 165, 79, 0.6),
               0 0 6px rgba(219, 165, 79, 0.4);
   }
   p {
        width: 100%;
        margin-top: 20px;
        font-family: Verdana;
        color: white;
        font-size: 1.1rem auto;
        word-wrap: break-word;
        line-height: 1.2;
        text-align: justify;
   }
}




/* Pulse animation */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}


/*Navigator css*/
.about-navigator-fixed-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    background-color: #ffffff;
    padding: 10px;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s;
}
.about-navigator-fixed-container.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.navigator-item {
    border: 2px solid #17260E;
    border-radius: 4px;
    padding: 10px 20px;
}

  /*section who we are*/
.section-who-we-are {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 150px;
    overflow: hidden;
    background-color: #f1f1f1;
    color: #022119;

}
.section-who-we-are img {
    width: 100%;
    height: auto;
    max-width: 600px; /* Adjust as needed */
    max-height: 800px;
    margin-bottom: 30px;
    margin-right: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
    object-fit: cover; /* object-cover */
    transform: scale(1); /* default transform */
    transition: transform 0.5s; /* transition-transform duration-500 */
}
.section-who-we-are img:hover {
    transform: scale(1.1);
}
.section-who-we-are div {
    display: flex;
    width: 40%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 50px; /* Adjust as needed */
}
.section-who-we-are h1 {
    align-self: start;
}

.spacer-d,
.spacer-b{
  height: 200px; 
  background-color: #f0f0f0;
}
.spacer-bb {
  height: 30px; background-color: #f0f0f0; 
  border-radius: 2px; 
  margin-top: 50px;
}

.mission-vision-container {
  display: flex; 
  flex-direction: column; 
  padding: 0;
  padding-top: 20px;
}
.mission-vision-container h1 {
    text-align: center; 
    font-weight: 500;
    color: #074D0F;
    margin: 0;
    padding: 0;
}
.mission-vision-container p {
    padding: 0;
    text-align: center; padding-bottom: 5px;
}

/*section two*/
.section-two-container {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    background-color: #f1f1f1;
    padding: 50px 10px 10px 10px;
    justify-content: space-between;
    margin-top: 20px;
  }
  .section-two-content-left {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    align-items: center;
    margin-left: 50px; /* Adjust as needed */
  }
  .vision-con {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .vision-img {
    width: 100px; height: auto; 
    align-self: center;
    transform:rotate(0deg); /* default transform */
    transition: transform 1.5s; /* transition-transform duration-500 */
}
  .vision-img:hover {
    transform:rotate(270deg);
}

  .vision-img2 {
    width: 100px; height: auto; 
    align-self: center;
    transform:rotateY(0deg); /* default transform */
    transition: transform 1.5s; /* transition-transform duration-500 */
}
  .vision-img2:hover {
    transform:rotateY(180deg);
}

  .vision-con h1 {
    max-width: 400px;
    text-align: center;
    color: #022119;
    justify-content: center;
    font-size: 2rem;
  }
  .vision-con p {
    max-width: 500px;
    color: #17260E;
    font-size: 1.2rem;
    text-align: start;
    align-self: flex-start;
  }

  .section-two-content-right {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px; /* Adjust as needed */
    margin-left: 20px; /* Adjust as needed */
  }

.core-values-title{
    justify-self: center;
    font-weight: 500;
    color: #074D0F;
}

       
.core-values-section {
    height: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;  
      background-color: rgb(12, 29, 22, .84);       
}
/* .core-values-section::before {
    background-image: url('/gns/images/building.jpg');
    background-size: cover;
    background-position: center;
    content: '';
    position: absolute;
    background-color: rgb(12, 29, 22, .84);
    background-blend-mode: overlay;
    right: 0;        
    width: 50%;
    height: 100%;
    z-index: -1;          
} */
.core-img{
    width: auto;
    width: 450px;
    margin: 30px 0px;
    position: relative;
    justify-self: center;
    align-self: center;
    transform: scale(1); /* default transform */
    transition: transform 0.5s; /* transition-transform duration-500 */
}
.core-img:hover {
    transform: scale(1.05);
}

.cwwd{
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-color: #f0f0f0;
            border-radius: 5px;
            margin-bottom: 50px;
            overflow: hidden;

            p{
                width: fit-content;
                font-size: 1.1rem; /* Font size for subheadings */
                text-align: start; /* Centered text */
                margin-bottom: 10px; /* Space below the paragraph */
                color: #17260E;
                text-align: justify;
            }
        }
        .do-content-wwd{
            display: flex;
            width: fit-content;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            max-width: 1240px;
            background-color: #f0f0f0; /* Light gray background */
            border-radius: 8px; /* Rounded corners */
            margin-bottom: 40px; /* Space between sections */
           

            h1{
                font-size: 2rem; 
                align-self: center;/* Larger font size for headings */
                text-align: center; /* Centered text */
                color: #26570a;
                letter-spacing: 1rem;
            }
            div{
                width: 100%;
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: center;
                gap: 100px;
            }
            img{
              position: relative;
                width: 100%;
                height: 300px;
                border-radius: 5px;
            }
            button{
                background-color: #01881e;
                color: white;
                padding: 10px 20px;
                font-size: medium;
                border: 2px solid #ffffff;
                border-radius: 4px;
                cursor: pointer; 
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            }
            button:hover {
                background-color: #17260E;
                color: white;
            }
        }
    
@media (max-width: 768px) {
    .cwwd{
        margin: 50px 0px;
    }
    .do-content-wwd{
        h1{
            margin: 15px 10px;
            font-size: 1.2rem; /* Larger font size for headings */
            letter-spacing: .5rem;
        }
        div {
            display: flex;
            flex-direction: column;
            gap: 0px;
            padding: 0;
            margin: 0px 0px;
        }
        img{
            max-height: 200px;
        }
        #farm-about2{
            display: none;
        }
        p{
            width: fit-content;
            font-size: 0.9rem; /* Font size for subheadings */
            text-align: justify; /* Centered text */
            margin-bottom: 10px; /* Space below the paragraph */
            color: #17260E;
            margin: 10px 10px;
        }
        button{
            font-size: small;
            padding: 5px 10px;
            margin: 0px 10px;

        }
    }
    
}
            
