/* Base Styling */

:root {
    --primary-color: #49b93f;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {

margin:0;
font-family:Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
background-color: #fff;




    
  }
  ul {
    list-style: none;
  }
  
  .showcase-content h1,
  h2,
  h3,
  h4 {
    color: #fff;
  }
 
  p {
    margin: 0.5rem 0;
  }
  
  
  
  /* Showcase Styling */
  
  .showcase {
    width: 100%;
    height: 100vh;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url("../img/WHO\ WE\ ARE/herobg.jpg")
      no-repeat center center/cover;
      
  }
  
  /* Showcase Overlay */
  
  .showcase::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  

  }
  
  .showcase-top {
    position: relative;
    height: 90px;
    z-index: 2;
  }
  
  
  .showcase-top a {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-50%, -50%);
  }
  
  .showcase-content {
    position: relative;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 9rem;
    z-index: 2;
  }
  
  .showcase-content h1 {
    font-weight: 700;
    font-size: 5.2rem;
    line-height: 1.1rem;
    margin: 0 0 2rem;
    font-family: "Inter", 'Helvetica Neue', 'Lato', Helvetica, Arial, Sans-serif;
  }
  
  .showcase-content p {
    font-weight: 400;
    color: #fff;
    font-size: 1.8rem;
    text-transform: uppercase;
    line-height: 1.25rem;
    margin: 2rem 0 2rem 0;
  }
  
  .showcase-content .btn-xl {
    margin-top: 3rem;
  }
  
  /* Button Styling */
  
  .btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 0.4rem 1.3rem;
    font-size: 1rem;
    text-align: center;
    border: none;
    cursor: pointer;
    outline: none;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
    border-radius: 2px;
    /*   margin-top: 3rem; */
  }
  
  .btn:hover {
    opacity: 0.9;
  }
  
  .btn-rounded {
    border-radius: 5px;
  }
  
  .btn-xl {
    font-size: 2rem;
    padding: 1.5rem 2.1rem;
    border-radius: 7px;
    text-transform: uppercase;
  }
  
  .btn-lg {
    font-size: 1rem;
    padding: 0.8rem 1.3rem;
    text-transform: uppercase;
  }
  
  /* Media Queries */
  
  @media (max-width: 960px) {
    .showcase {
      height: 100vh;
    }
  
    .showcase-top .logo-text {
      color: var(--primary-color);
      font-family: "Roboto", sans-serif;
      --webkit-font-smoothing: antialiased;
      font-size: 38px;
      position: absolute;
      top: 30%;
      left: 5%;
      transform: translate(0);
    }
  
    .showcase-content h1 {
      font-weight: 700;
      font-size: 3.7rem;
      line-height: 1rem;
      margin: 0 0 2rem;
    }
  
    .showcase-content p {
      font-weight: 400;
      color: #fff;
      font-size: 1.6rem;
      text-transform: uppercase;
      line-height: 1rem;
      margin: 0 0 2rem;
    }
  
    .btn-xl {
      font-size: 1.5rem;
      padding: 1.2rem 1.8rem;
      text-transform: uppercase;
    }
  }
  
  @media (max-width: 500px) {
    .showcase::after {
      box-shadow: inset 75px 50px 100px #000000, inset -75px -50px 100px #000000;
    }
  
    .showcase {
      height: 100vh;
    }
  
    .showcase-top .logo-text {
      font-size: 1.5rem;
      top: 30%;
      left: 15%;
      transform: translate(0);
    }
  
    .showcase-content h1 {
      font-size: 1.8rem;
      line-height: 1rem;
    }
  
    .showcase-content p {
      font-size: 1.2rem;
    }
  
    .btn {
      margin-right: 0.1rem;
    }
  
    .btn-xl {
      font-size: 1.2rem;
      padding: 1rem 1.2rem;
      text-transform: uppercase;
    }
  }
  
  /* For Main content */

/* Three column */

.container {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 1200px;
    gap: 30px; /* Space between columns */
    background-color: #ffff;
}

.column {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

blockquote {
    font-size: 1.1em;
    color: #555;
    margin: 0;
    padding: 15px;
    border-left: 5px solid #007bff;
    text-align: left;
    background-color: #f9f9f9;
    border-radius: 4px;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .column {
        width: 90%;
        margin-bottom: 30px;
    }
}

/* Three column */


/* our story */

.story-container {
    max-width: 100%; /* Max width for the content */
    margin: 0 auto; /* Center the container */
    padding: 40px;
    background-color: #fff; /* White content background */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Subtle shadow for depth */
}

/* --- Heading Styling --- */
.story-heading {
    text-align: center;
    font-size: 2.5em;
    color: #2c3e50; /* Dark color for emphasis */
    margin-bottom: 40px;
    letter-spacing: 2px;
    border-bottom: 3px solid #f39c12; /* Accent line */
    display: inline-block;
    padding-bottom: 5px;
}

/* Center the inline-block heading */
.story-container > .story-heading {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* --- Two-Column Layout (Flexbox) --- */
.story-content {
    display: flex;
    gap: 40px; /* Space between the image and text */
    align-items: flex-start; /* Aligns items to the top */
}

.story-image-wrapper {
    flex: 1; /* Takes up 1 part of the space */
    min-width: 300px; /* Ensure image isn't too small */
}

.story-text p {
    font-weight: 500;
    margin-bottom: 1.5em;
    text-align: justify; /* Nice, block text alignment */
    font-size: 17px;
}

.story-image {
    width: 100%; /* Image fills its container */
    height: auto;
    display: block;
    border-radius: 8px; /* Slightly rounded corners */
    object-fit: cover; /* Ensures image covers the space without distortion */
}

.story-text p {
    margin-bottom: 1.5em;
    text-align: justify; /* Nice, block text alignment */
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .story-content {
        flex-direction: column; /* Stack image and text vertically */
    }

    .story-image-wrapper, .story-text {
        flex: none; /* Remove flex sizing on smaller screens */
        width: 100%; /* Full width for both */
    }

    .story-container {
        padding: 20px;
    }
}

/* our story */

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5em;
    }

    .content p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .content {
        padding: 10px;
    }
}



/* Sample */


/* The magic of the pyramid cut-out */
.cut-out-shape {
    position: absolute;
    bottom: -1px; /* Adjust to ensure no gap */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 150px; /* Height of the shape */
    background-color: #ffff; /* White background */

    z-index: 1; /* Place below the content but above the next section */
    /* Creates the triangular shape */
    clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
    -webkit-clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
}


.where {

 max-width: 100%; /* Limit the width of the content */
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: #ffffff; /* White background for the content box */
    /* No box-shadow or border in the original image, keeping it clean */
}
.h1where {
font-size: 5em; /* Adjust as needed */
    color: #333333;
    margin-bottom: 0.5em;
    font-weight: bold;
    text-align: center;

}

.wherep {
    font-size: 1.5em; /* Adjust as needed for readability */
    line-height: 1.6;
    color: #555555;
    text-align: left; /* Text is left-aligned in the image */
    margin: 0 auto; /* Center the paragraph if it's narrower than the container */

}

.wherewhat {
    font-size: 1.1em; /* Adjust as needed for readability */
    line-height: 1.6;
    color: #555555;
    text-align: justify!important; /* Text is left-aligned in the image */
    margin: 0 auto; /* Center the paragraph if it's narrower than the container */

}

.containerwhat {
    max-width: 100%; /* Adjust max-width as needed to match the image's line length */
    width: 100%;
    background-color: #ffffff; /* White background for the content */
    padding: 20px;
    box-sizing: border-box;
    
}

.value-item {
    margin-bottom: 2em; /* Space between each value section */
    line-height: 1.6; /* Improved readability for paragraphs */
}

.value-item:last-child {
    margin-bottom: 0; /* No bottom margin for the last item */
}

.h2what {
    font-size: 1.5em; /* Slightly larger for the bolded keyword */
    color: #333333;
    display: inline; /* Keep it on the same line as the start of the paragraph */
    margin-right: 0.5em; /* Space between the keyword and the dash */
    font-weight: bold;
}

.pwhat {
    font-size: 1.5em; /* Adjust as needed for readability */
    color: #444444;

}

/* Specific styling for the dash separator */

.mainCont2 {
    width: 100%;
    max-width: 1300px;
    /* keeps content from being too wide */
    margin: 0 auto;
    /* centers the container */
    padding: 30px 30px;
    /* top/bottom 70px, left/right 30px */

    /* centers text inside */
    box-sizing: border-box;
 


}