/* 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 */
.energy1-meter-system-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 20px;
    padding: 20px;
    gap: 20px;
}

.energy1-meter-system-column {
    flex: 1;
    padding: 15px;
    /* background-color: #fff; */
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.energy1-meter-system-column:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); */
}

.energy1-meter-system-column img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.energy1-meter-system-column img:hover {
    transform: scale(1.05);
}

.energy1-meter-system-section-container {
    padding: 15px;
}

.energy1-meter-system-section-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color : #2b5797;
}

.energy1-meter-system-section-content ul {
    list-style-type: disc;
    margin: 10px 0;
    padding-left: 20px;
}

.energy1-meter-system-section-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
    /* text-align: justify; */
    font-size: 1.6rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.energy1-meter-system-column {
    animation: fadeInUp 0.5s ease forwards;
}

.energy1-meter-system-column:nth-child(1) {
    animation-delay: 0.2s;
}

.energy1-meter-system-column:nth-child(2) {
    animation-delay: 0.4s;
}

.energy1-meter-system-column:nth-child(3) {
    animation-delay: 0.6s;
}

@media (max-width: 768px) {
    .energy1-meter-system-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .energy1-meter-system-column {
        width: 100%;
        margin-bottom: 20px;
    }
}


.back-energy-meter-system {
    position: relative;
    background-image: url(../images/banner/meter.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 */
    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-energy-meter-system h1 {
    font-size: 6.8rem;
    padding-top: 400px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold; 
    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-energy-meter-system h1 {
        margin-top: 20px;
        padding-top: 240px;
        /* font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; */
        font-weight: bold;
        text-shadow: 2px 2px 5px rgb(255, 255, 255);
        font-size: 3.6rem; 
        color: #2b5797;/* Adjust font size for tablets */
    }
    .back-energy-meter-system{
        margin-top: 1rem;
        margin-bottom: 30px;
        background-size: contain; 
        height:270px; /* 85% of the viewport height */
    }
  }
  
  @media (max-width: 480px) {
    .back-energy-meter-system h1 {
        margin-top: 20px;
        padding-top: 240px;
        /* font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; */
        font-weight: bold;
        text-shadow: 2px 2px 5px rgb(255, 255, 255);
        font-size: 3.6rem; 
        color: #2b5797;/* Further adjustment for very small screens */
    }
    .back-energy-meter-system{
        margin-top: 1rem;
        margin-bottom: 30px;
        background-size: contain; 
        height:270px; /* 85% of the viewport height */
    }
  }
  
  
  
  
  /* Overlay */
  .back-energy-meter-system::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.489); */
    z-index: 1;
  }

.flyer{
    padding: 20px;
    font-size:1.6rem;
  }

  .flyer :hover{
    color: red;
  }


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

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

@media (max-width: 768px) {
    .energy-meter-system-column1,
    .energy-meter-system-column2 {
        min-width: 100%;
    }
}

/* Additional CSS for creating two-column layout */
.energy-meter-system-container2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    /* margin-top: -50px; */
   
}


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

.energy-meter-system-section-container2.visible {
    opacity: 1;
}

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

.energy-meter-system-section-content2 {
    line-height: 1.6;
}

.energy-meter-system-section-content2 ul {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-left: 20px;
}

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

.energy-meter-system-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) {
    .energy-meter-system-section-container2 {
        padding: 20px;
    }

    .energy-meter-system-section-title2 {
        font-size: 2.2rem;
    }

    .energy-meter-system-section-content2 ul li {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .energy-meter-system-section-container2 {
        padding: 15px;
    }

    .energy-meter-system-section-title2 {
        font-size: 2.2rem;
    }

    .energy-meter-system-section-content2 ul li {
        font-size: 1.6rem;
    }
}
.energy-meter-system-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);
}

.energy-meter-system-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.2rem;
    font-weight: bold;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

@media (max-width: 768px) {
    .energy-meter-system-mid-highlight-banner {
        font-size: 1em;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .energy-meter-system-mid-highlight-banner {
        font-size: 0.9em;
        padding: 10px;
    }
}


/* Heallthcare */
.energy-meter-system-container {
    display: flex;
    text-align: left;
    flex-direction: row;
    padding: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.energy-meter-system-column1 {
    flex: 1;

    box-sizing: border-box;
}

.energy-meter-system-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;
}

.energy-meter-system-text1 {
    font-size: 16px;
    line-height: 1.5;
    
}

.energy-meter-system-column2 {
    flex: 1;
    min-width: px;
    box-sizing: border-box;
}

.energy-meter-system-title2 {
    font-size: 3.6rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: rgb(44, 0, 96);
}

.energy-meter-system-text2{
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
    margin-right: -100px;
}

.energy-meter-system-image-container {
    /* margin-top: 10px; */
    text-align: center;
  }
  
  .energy-meter-system-image1 {
    margin-top: 80px;
    max-width: 100%;
    height: auto;
  }
 

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


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

/* Container Styling */
.energy-meter-system-box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Health Box Styling */
.energy-meter-system-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;
}

.energy-meter-system-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Image Styling */
.energy-meter-system-box img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

/* Title Styling */
.energy-meter-system-box-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

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

@media (min-width: 769px) and (max-width: 1024px) {
    .energy-meter-system-box {
        width: 45%;
    }
}

@media (min-width: 1025px) {
    .energy-meter-system-box {
        width: 30%;
    }
}
