

/* 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;
}
.back-asp-one {
    position: relative;
    padding-top: 60px;
    background-image: url(../images/banner/asp.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: 500px; /* 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:10px ;/* Adds some padding for left alignment */
}

.back-asp-one 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-asp-one h1 {
        font-size: 3.5rem; /* Adjust font size for tablets */
    }
}

@media (max-width: 480px) {
    .back-asp-one h1 {
        margin-top: 50px;
        padding-top: 160px;
        /* padding: 1px; */
        /* font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; */
        font-weight: bold;
        text-shadow: 2px 2px 5px rgb(255, 255, 255);
        font-size: 3rem;
        /* padding-left: 10px;  */
        color: #2b5797;
        /* Further adjustment for very small screens */
    }

    .back-asp-one{
        margin-top: 8rem;
        margin-bottom: 100px;
        background-size: contain; 
        height:150px; /* 85% of the viewport height */
    }
}

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

  .flyer :hover{
    color: red;
  }


/* Overlay */
.back-asp-one::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-asp-one h1,
.back-asp-one p {
    position: relative;
    z-index: 2; /* Content above overlay */
}


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

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

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

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

.section-content p {
    margin-bottom: 5px;
    font-size: 1.6rem;
    text-align: justify;
}



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

    .section-title {
        font-size: 2.6rem;
    }

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

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

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

    .section-content {
        font-size: 1.4px;
    }
}


.asp-features-section{
    margin-bottom: 10PX;
}