/* 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 */
/* background */
.back-ind {
    position: relative;
    padding-top: 60px;
    background-image: url(../images/banner/automation.png);/* 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-ind 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-ind h1 {
        font-size: 3.5rem; /* Adjust font size for tablets */
    }
  }
  
  @media (max-width: 480px) {
    .back-ind 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: 4rem; 
        /* Further adjustment for very small screens */
    }
  
    .back-ind{
        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-ind::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-ind h1,
  .back-ind p {
    position: relative;
    z-index: 2; /* Content above overlay */
  }
  

/*  */
.ind-section-container {
    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;
}

.ind-section-container.visible {
    opacity: 1;
}

.ind-section-title {
    font-size: 3.5rem;
    color: #2b5797;
    /* margin-bottom: 20px; */
    /* border-bottom: 3px solid #2b972d; */
    /* padding-bottom: 10px; */
    display: inline-block;
}

.ind-section-content {
    line-height: 1.6;
}

.ind-section-content .highlight {
    font-weight: bold;
    color: #f39c12;
}

.ind-section-content ul {
    margin: 10px;
    padding: 0px;
    list-style: none;
    padding-left: 20px;
}

.ind-section-content ul li {
    margin-bottom: 15px;
    font-size: 1.6rem;
    text-align: justify;
    position: relative;
    padding-left: 25px;
}

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

@media (max-width: 768px) {
    .ind-section-container {
        padding: 20px;
    }

    .ind-section-title {
        font-size: 2.2rem;
    }

    .ind-section-content ul li {
        font-size: 1.6rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .ind-section-container {
        padding: 15px;
    }

    .ind-section-title {
        font-size: 2.2rem;
    }

    .ind-section-content ul li {
        font-size: 1.6rem;
    }
}

.ind2-section-container {
    font-family: Arial, sans-serif;
    margin-left: 20px;
    margin-right: 20px;
    /* background-color: #afe4ff; */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0); 
    transition: all 0.3s ease-in-out; 
}

.ind2-section-title {
    font-size: 3.5rem;
    color: #2b5797;
    margin-bottom: 10px;
    /* border-bottom: 3px solid #2b972d; */
    padding-bottom: 5px;
    display: inline-block;   
}

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

  .flyer :hover{
    color: red;
  }


.ind2-section-content {
    line-height: 1.6;
    /* color: #333;  */
}

.ind2-section-content .highlight {
    font-weight: bold;
    color: #f39c12;
}

.ind2-section-content p {
    margin-bottom: 15px;
    font-size: 1.5rem;
    text-align: justify;
}



@media (max-width: 768px) {
    .ind2-ection-container {
        padding: 30px;
    }

    .ind2-section-title {
        font-size: 2.4px;
    }

    .ind2-section-content {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .ind2-section-container {
        padding: 10px;
    }

    .ind2-section-title {
        font-size: 2.2rem;
    }

    .ind2-section-content {
        font-size: 13px;
    }
}





