html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    font-family: Arial, sans-serif;

}

:root {
    --DisplayText--: "Libre Baskerville", serif;
    --NormalText--: "Montserrat", sans-serif;
    --PrimaryColor--: #ff812f;

}

.hero {
    position: relative;
    text-align: center;
    color: white;
    width: 100vw;
    height: 800px; /* or consider min-height for responsiveness */
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('./assets/about Us background  .png') no-repeat center 50% / cover;
}

/* 🔥 Orange Overlay (Applies to Image Only) */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 129, 47, 0.6); /* Orange (#ff812f) with 60% opacity */
    z-index: 1;
}

/* Ensure text stays on top */
.hero h1 {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    font-family: var(--DisplayText--);
    bottom:  20%;
}



.waves {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 60%;
    max-height: 50%;

    bottom: 0;
    z-index: 2;

}


/* 📌 About Us Section Layout */
.about-us-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    max-width: 1200px;
    margin: 20px auto;
    max-height: 2000px;
    margin-bottom: 80px;

    


}

/* 📸 Image Layout & Overlapping Effect */
.about-us-images {
    padding: 50px;
 
    width: 400px; /* Reduce width slightly */
    z-index: 3; /* Ensure it appears above .waves */
}

.about-img {
    width: 350px; /* Adjust for better proportion */
   
 

}




/* 📜 Text Styling */
.about-us-text {
    max-width: 550px;
    line-height: 1.6;
    padding: 10px;
    font-size: 1.2rem;
    
    font-family: var(--NormalText--);
}

.about-us-text h2 {
   font-size: 2.8rem;
   
  
    margin-bottom: 15px;
    font-family: var(--DisplayText--);
    position: relative;
    z-index: 3; /* Ensure it appears above .waves */
}

.highlight {
    color: var(--PrimaryColor--);
    font-weight: bold;
}

.our-experience-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background-color: #F3F3F3;
    padding: 80px;
    height: 500px;
   
    
}

.experience-text {
    flex: 1;
    max-width: 500px;
    text-align: right;
}

.experience-text h3,.vision-mission-section h3 {
    color: #E67E22;
    font-weight: 500;
    font-size: 1.8rem;
    margin: 0;
    font-family: var(--DisplayText--);
}

.experience-text h2 ,.vision-mission-section h2{
    font-size: 2rem;
    margin: 0;
 
    font-family: var(--DisplayText--);
}

.experience-text h2 span {
    text-decoration: underline;
}

.experience-text p {
    line-height: 1.6;
    
    font-size: 1.2rem;
    
    font-family: var(--NormalText--);
}
.experience-image {

    width: 300px;
    height: 300px;
}

.experience-image img {
    width: 120%;
    height: 120%;
    
   
  
}

.vision-mission-section {
    text-align: right;
    padding: 50px 0px;
    background: #fff;
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center-align items horizontally */
    justify-content: center;
    
}


.vision-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

.vision, .mission {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
 
  

  
}

.mission{
    width: 1200px;
}



.mission img:first-child { /* Targets only the first image in each section */
    position: absolute;
    width: 300px;
    height: 300px;
 
    object-fit: cover;
    opacity: 0.2; /* Makes it slightly transparent */
    z-index: 1; 
    left: -40px; /* Adjust position */
    bottom:10px;
}

.vision img:nth-child(3){
    position: absolute;
    width: 300px;
    height: 300px;
   
    object-fit: cover;
    opacity: 0.2; /* Transparency effect */
    z-index: 1; /* Moves it behind */
    right: -10%; /* Keeps it on the right */
    top: 50%; /* Centers it vertically */
    transform: translateY(-50%);
 
}

.vision img, .mission img{
    width: 300px;
    height: 300px;
}

.vision-text, .mission-text {
    position: relative;
    z-index: 1;
    padding: 20px;
    margin: 50px;
  
    
}


.vision-text li{
    padding: 5px;
    line-height: 1.6;
    
    font-size: 1.2rem;
    
    font-family: var(--NormalText--);
}

.mission-text{
    text-align: right;
}

.vision h2, .mission h2 {
    color: var(--PrimaryColor--);
    font-size: 2.5rem;
    font-family: var(--DisplayText--);
  
   
}
.mission p{
    line-height: 1.6;
    
    font-size: 1.2rem;
    
    font-family: var(--NormalText--);
}





.eco-friendly-section {
    background: #F9B58A;
    color: #fff;
    padding: 60px 5% 100px;
    text-align: center;
    border-radius: 50px 50px 0 0;
    position: relative;
    overflow: visible; /* Allow header to extend */
    margin: 0 150px;
  }
  
  .eco-header {
    background: #FF812F;
    width: calc(100% - 80px); /* Account for parent margins */
    height: 100px;
    position: absolute;
    top: 0px; /* Reduced from 0 to show h1 */
    left: 0px; /* Match parent margin */
    padding-left: 80px;
    border-radius: 50px 50px 0 0;
    font-family: var(--DisplayText--);
    text-align: left;
    z-index: 10; /* Ensure it stays on top */
  }

.eco-header h1 {
    font-size: 96pt;
    font-family: var(--DisplayText--);
    color: black;
    position: absolute;
    left: 50px;
    /* Adjust this value */
    top: -130px;
    /* Moves the quote slightly up */
  
}

.eco-header h4{
   margin-bottom: 0%;
   margin-top: 40px;
   font-weight: 100;
}
.eco-header h2{
    margin-top: 0%;
    color: black;
}

.eco-header img{
    width: 450px;
    height: 450px;
    position: absolute;
    right: 50px;
    top: -180px;
}

.eco-content {
    position: relative; /* Keep text above the background */
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 60px; /* Move content down */
}

.eco-images {
    display: flex;
    gap: 10px;
}

.eco-images img {
    width: 400px;
    height: 350px;
  
}

.eco-text-1{
    display: flex;
    flex-direction: row;
    gap: 10px;
    font-family: var(--NormalText--);
    font-size: 1.2rem;
    text-align: left;
    line-height: 2;
}

.eco-text-1 p{
 
    color: black;
    padding-left: 20px;
    padding-right: 20px;
    
}

.eco-content-2{
    display: flex;
    flex-direction: column;
    
}

.eco-text-2{
    display: flex;
    flex-direction: row;
    gap: 10px;
    font-family: var(--NormalText--);
    
    text-align: right;
    
}

.eco-text-2 p{
    line-height: 2;
   
    font-size: 1.2rem;
    color: black;
    text-align: left;
    padding: 0 20px;
}

.eco-text-2 h2{
    margin-bottom: 0%;
    padding: 0 20px;
   
    font-family: var(--DisplayText--);
}
strong.highlight {

    color: black;
}

@media (max-width: 1024px) {

   
    .eco-header img{
        width: 400px;
        height: 400px;
        right: 1%;
        top: -180px;
    }

    .eco-text-1{
        flex-direction: column;

    }

    .eco-text-1 p{
        font-size: 1rem;
        text-align: center;
        
    }
    .eco-text-1 img {
        width: 400px;
        height: 400px;
        display: block;
        margin: 0 auto;
    }


    .eco-content-2{
        flex-direction: column;
        text-align: center;
     
    }
    .eco-text-2{
        flex-direction: column;
        text-align: center;
        margin-top: 20px;
        
    }

    .eco-text-2 img{
        width: 600px;
        height: 400px;
        display: block;
        margin: 0 auto;
    }


    .eco-friendly-section{
        margin: 0 20px
    }

    .vision , .mission {
       font-family: var(--NormalText--);
    }

 

    .vision {
        margin-top: 50px;
    }
    .vision img, .mission img {
        width: 300px;
        height: 300px;
    }

    .mission {
    width: 100%;
        height: 100%;
        margin: 0 auto; /* Center the images horizontally */
    }

 

    .vision h2, .mission h2 {
        font-size: 2rem;
    }

    .mission p, .vision-text li {
        font-size: 1rem;
    }

    .about-us-section {
        flex-direction: column; /* Change to column for better stacking */
        text-align: center;
        max-height: unset;
        padding: 80px;
        
    }

    .about-us-images {
        width: 80%; /* Set width to 100% for better responsiveness */
        padding: 10px;
margin: 0 auto; /* Center the images horizontally */
    }

    .about-us-text {
        max-width: 100%;
        padding: 15px;
        font-size: 1rem;
        text-align: left;
    }

    .about-us-text h2 {
        font-size: 2rem;
        
    }


    
}




@media (max-width: 768px) {
.about-us-text{
    text-align: left;
    
}
.about-us-section{
    padding: 20px;
}
.our-experience-section{
    padding: 20px;
}

    .experience-text{
        text-align: left;
        padding: 15px;
    }
     .vision, .mission {
        flex-direction: column; /* Stack items on smaller screens */
        text-align: center;
        align-items: center;
        font-family: var(--NormalText--);
       
    }

    .vision-mission-section{
        text-align: center;
    }
   

    .vision {
        margin-top: 50px;
    }
    .vision img, .mission img {
        width: 250px;
        height: 250px;
    }

    .vision-text, .mission-text {
        text-align: center; /* Center text on smaller screens */
        padding: 0px 50px;
      
    }


    .vision h2, .mission h2 {
        font-size: 2rem;
    }

     .vision-text li {
        font-size: 1rem;
        text-align: left;
    }

    .mission p{
        font-size: 1rem;
        text-align: center;
    }
 
    .mission p{
        justify-content: center;
        text-align: center;
    }
   
     .our-experience-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        height: fit-content;
    }

    .experience-text h3 {
    
       
        font-size: 1.5rem;
        
    }
    
    .experience-text h2 {
        font-size: 2rem;
     
       
    }
    
   
    .experience-text p {
        font-size: 1rem;
        line-height: 1.6;
     
    }

   

    .experience-image {
        width: 200px;  /* Reduce image size */
        height: 200px;
        justify-content: flex-start;
        margin-bottom: 70px;
      
    }

    .eco-text-1{
        flex-direction: column;

    }

    .eco-text-1 p{
        font-size: 1rem;
        text-align: left;
     
    }
    .eco-text-1 img{
        width: 80%;
        height: 80%;
        margin-left: 50px;
    }
    .eco-header img{
        width: 200px;
        height: 200px;
        right: 0;
        top: -100px;
    }

    .eco-content-2{
        flex-direction: column;
        text-align: left;
        
    }
    .eco-text-2{
        flex-direction: column;
        text-align: center;
        margin-top: 20px;
        
    }

    .eco-text-2 img{
        width: 80%;
        height: 80%;
        
    }


    .eco-friendly-section{
        margin: 0 20px
    }

    .vision-container{
        width: 500px;
    }

    
    

 
    
}

@media (max-width: 480px) {

    .vision-mission-section {
        width: 100%; /* Allow it to take full width */
       
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .hero {
        height: 500px;
    }

    .hero h1 {
        font-size: 1.8rem;
       
    }
    .about-us-images img{
        width: 230px;
        
    }
    .vision, .mission {
        padding: 20px;
        font-family: var(--NormalText--);
        justify-content: center;
        width: 500px;
    }

    .vision h2, .mission h2 {
        font-size: 1.8rem;
        margin: 10px 0px;
    }

    .vision-text li, .mission p {
        font-size: 1rem;
    }
    .mission{
        margin: 0%;
    }
   
   

    .vision img, .mission img {
        width: 200px;
        height: 200px;
    }
    .vision li{
        margin: 0%;
    }
    .vision ul{
        display: flex;
        flex-direction: column;
    
        align-items: center;
    
    }   

    .mission p {
        margin: 10px 0; /* Reduce margins */
        padding: 0; /* Remove unnecessary padding */
        text-align: center; /* Center-align the text */
    }

    .vision-mission-section h2{
        font-size: 1.5rem;
    }
    .vision-mission-section h3{
        font-size: 1.3rem;
    }
    .eco-friendly-section h2{
        font-size: 1.3rem;
    
    }
    .about-us-text h2{
        font-size: 1.8rem;
    }
    .experience-text h2{
        font-size: 1.8rem;
    }
    .eco-text-1 img {
        margin-left: 30px;
       
    }
    .hero {
        height: 350px;
    }
    

}
