/* Reset default body and html padding/margin */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
    overflow-x: hidden; /* Prevent sideways scroll */
}
 
/* Apply box-sizing border-box globally */
*, *::before, *::after {
    box-sizing: border-box;
}
/* background */
.back-hydro-power-plant {
    position: relative;
    padding-top: 60px;
    background-image: url(../images/banner/hydro.avif);/* Replace with your image URL */
    background-size: cover; /* Ensures the image covers the entire container */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    width: 100%; /* Full width for responsiveness */
    height: 600px; /* 85% of the viewport height */
    margin-top: 50px;
    display: flex; /* Use flexbox for better control of child positioning */
    align-items: center; /* Vertically centers the text */
    justify-content: flex-start; /* Aligns the  ` text to the left */
    padding-left: 20px; /* Adds some padding for left alignment */
  }
  
  .back-hydro-power-plant h1 {
    font-size: 6.8rem;
    font-weight: bold;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    /* font-weight: bold;  */
    /* top: 55%; */
  
    /* padding: calc(300px/2) 20px 20px 20px; */
    margin-top: 200px;
    color: white; /* Adjust for readability */
    margin: 0; /* Removes default margin */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Optional: Adds text shadow for better visibility */
  }
  
  @media (max-width: 768px) {
    .back-hydro-power-plant h1 {
        font-size: 3.5rem; /* Adjust font size for tablets */
    }
  }
  
  @media (max-width: 480px) {
    .back-hydro-power-plant h1 {
        margin-top: 30px;
        /* font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; */
        font-weight: bold;
        /* text-shadow: 2px 2px 5px rgb(255, 255, 255); */
        font-size: 4.8rem; 
        /* Further adjustment for very small screens */
    }
  
    .back-hydro-power-plant{
        padding-top: 1px;
        margin-top: 5rem;
        /* background-image: url(../images/software/cmms2.png); */
        /* margin-bottom: 30px; */
        /* background-size: contain;  */
        height:180px; /* 85% of the viewport height */
    }
  }

  /* Overlay */
  .back-hydro-power-plant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.288);
    z-index: 1;
  }
  
  /* Text Styling */
  .back-hydro-power-plant h1,
  .back-hydro-power-plant p {
    position: relative;
    z-index: 2; /* Content above overlay */
  }

/* Additional CSS for creating two-column layout */
.hydro-power-plant-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    /* padding: 20px; */
}

.hydro-power-plant-column1,
.hydro-power-plant-column2 {
    padding: 20px;
    flex: 1;
    min-width: calc(50% - 30px); /* Adjust width to ensure sections are side by side with spacing */
    box-sizing: border-box;
    
}

@media (max-width: 768px) {
    .hydro-power-plant-column1,
    .hydro-power-plant-column2 {
        min-width: 100%;
    }
}

/* Additional CSS for creating two-column layout */
.hydro-power-plant-container2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-top: -50px;
   
}


/* Common Styles for both columns */
.hydro-power-plant-section-container2 {
    font-family: Arial, sans-serif;
    /* margin: 30px; */
    transition: all 0.3s ease-in-out;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.hydro-power-plant-section-container2.visible {
    opacity: 1;
}

.hydro-power-plant-section-title2 {
    font-size: 2.6rem;
    color: #2b5797;
    margin-bottom: 20px;
    /* border-bottom: 3px solid #2b972d; */
    padding-bottom: 10px;
    display: inline-block;
}

.hydro-power-plant-section-content2 {
    line-height: 1.6;
}

.hydro-power-plant-section-content2 ul {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
}

.hydro-power-plant-section-content2 ul li {
    margin-bottom: 10px;
    font-size: 1.6rem;
    text-align: justify;
    position: relative;
    padding-left: 25px;
}

.hydro-power-plant-section-content2 ul li:before {
    content: '\25B6'; /* Triangle bullet */
    color: #2b5797;
    font-size: 1.6rem;
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 768px) {
    .hydro-power-plant-section-container2 {
        padding: 20px;
    }

    .hydro-power-plant-section-title2 {
        font-size: 2.2rem;
    }

    .hydro-power-plant-section-content2 ul li {
        font-size: 1.6rem;
        /* padding: 10p; */
    }
}

.new-image-section-container { 

    display: flex; 

    flex-direction: column; /* Stack items vertically */ 

    justify-content: center; /* Center vertically */ 

    align-items: center; 

    width: auto; /* Center horizontally */ 

    height: auto; /* Full viewport height for vertical centering */ 

    text-align: center; /* Center the text */ 

    padding: 10px; /* Add some padding */ 

    box-sizing: border-box; /* Ensure padding is included in width/height */ 

} 

  

.new-image-section-title { 

    font-size: 3.6rem; 

    color: #2b5797; 

    /* margin-bottom: 10px; */ 

    /* border-bottom: 3px solid #2b972d; */ 

    padding-bottom: 5px; 

    display: inline-block;    

} 

  

.new-image-box-image0 { 

    max-width: 100%; /* Responsive image scaling */ 

    height: auto; /* Maintain aspect ratio */ 

    border-radius: 5px; /* Optional: Add rounded corners */ 

} 

  

/* Media Queries for smaller screens */ 

@media (max-width: 768px) { 

    .new-image-section-title { 

        font-size: 2rem; /* Smaller font for tablets */ 

    } 

} 

  

@media (max-width: 480px) { 

    .new-image-section-title { 

        font-size: 2rem; /* Further reduce font size for mobile */ 

    } 
    .new-image-section-container { 

        padding: 10px; /* Adjust padding for smaller screens */ 

    } 

} 

@media (max-width: 480px) {
    .hydro-power-plant-section-container2 {
        padding: 15px;
    }
    .hydro-power-plant-container2 {
        display: flex;
        flex-wrap: wrap;
       justify-content: center;
        gap: 10px;
        /* margin-top: -50px; */
       
    }

    .hydro-power-plant-section-title2 {
        font-size: 2.2rem;
    }
      
  .hydro-power-plant-image1 {
    margin-top: -60px;
    max-width: 100%;
    height: auto;
  }
 

    .hydro-power-plant-section-content2 ul li {
        font-size: 1.6rem;
        text-align: left;
        /* padding: ; */
    }
}
.hydro-power-plant-mid-highlight-banner {
    /* background: linear-gradient(90deg, #FDC830, #F37335);  */
    background: linear-gradient(to bottom, rgb(36, 103, 154), rgb(92, 223, 237));
    color: #000;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 2px;
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hydro-power-plant-mid-highlight-banner1 {
    /* background: linear-gradient(90deg, #FDC830, #F37335);  */
    /* background: linear-gradient(to bottom, rgb(36, 103, 154), rgb(92, 223, 237)); */
    color: #2b5797;
    margin-left: 20px;
    /* margin-bottom: 20px; */
    /* border-radius: 2px; */
    /* margin-top: -50px; */
    text-align: left;
    font-size: 3.6rem;
    font-weight: bold;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

@media (max-width: 768px) {
    .hydro-power-plant-mid-highlight-banner {
        font-size: 2.2rem;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .hydro-power-plant-mid-highlight-banner {
        font-size: 2.2rem;
        padding: 10px;
    }
    .hydro-power-plant-mid-highlight-banner1 {
        font-size: 2.8rem;
    }
}


/* Heallthcare */
.hydro-power-plant-container {
    display: flex;
    text-align: left;
    flex-direction: row;
    padding: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.hydro-power-plant-column1,
.hydro-power-plant-column2 {
    flex: 1;
    /* min-width: calc(50% - 5px); */

    box-sizing: border-box;
}

.hydro-power-plant-title1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: rgb(44, 0, 96);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.hydro-power-plant-text1 {
    font-size: 16px;
    line-height: 1.5;
    
}
.hydro-power-plant-column2 p{
    font-size: 1.6rem;
    text-align: justify;
}

.hydro-power-plant-column2 {
    flex: 1;
    min-width: px;
    box-sizing: border-box;
}

.hydro-power-plant-title2 {
    font-size: 3.6rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2b5797;
}

.hydro-power-plant-text2{
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: justify;
    margin-right: -100px;
}

.hydro-power-plant-image-container {
    /* margin-top: 10px; */
    text-align: center;
  }
  
  .hydro-power-plant-image1 {
    margin-top: 80px;
    max-width: 600px;
    height: auto;
  }
 

  .hydro-power-plant-text-highlight{
    font-size: 2.3rem;
    color: rgb(140, 73, 223);
  }
  .hydro-power-plant-text-highlight:hover{
    
    color: #f39c12;
  }
/* Responsive Design */
@media (max-width: 768px) {
    .hydro-power-plant-container {
        flex-direction: column;
    }
}


/* General Styling for Health Boxes Section */
.hydro-power-plant-box-block {
    padding: 20px;
    background-color: #ffffff;
    text-align: center;
}

/* Container Styling */
.hydro-power-plant-box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Health Box Styling */
.hydro-power-plant-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 200px;
    height: auto;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hydro-power-plant-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Image Styling */
.hydro-power-plant-box img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

/* Title Styling */
.hydro-power-plant-box-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hydro-power-plant-box-container {
        flex-direction: column;
        align-items: center;
    }
    .hydro-power-plant-box {
        width: 90%;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hydro-power-plant-box {
        width: 45%;
    }
}

@media (min-width: 1025px) {
    .hydro-power-plant-box {
        width: 30%;
    }
}
