.header-section h2 {
    font-size: 24px;
}
.mission-vision {
    margin-bottom: 40px;
}

.mission-vision li {
    margin-bottom: 16px; 
}

.mission-vision h3 {
    margin-top: 20px; 
}

.custom-list-style1 li {
    list-style-type: disc !important;
    padding-left: 20px; 
    margin-left: 40px;
}

.custom-list-style2 li {
    margin-left: 20px;
}

.material-icons.left {
    
    vertical-align: middle;
    font-size: 1.5rem; 
}

.main-content {
    margin: 0;
    padding: 0;
    height: 300%; 
    /* background: url('../image/tinyimage/about_us_background.jpg') no-repeat center center;
    background-attachment: scroll; */
    background: url('../image/tinyimage/about_us_background.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    /* top: -155px; */
    padding-bottom: 10px;
}

h1 {
    color: white;
    margin-top: 0 !important;
    text-align: center;
    font-size: 40px;
    padding: 10px !important;
    text-shadow: 
        -1px -1px 0 #000,
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000,
         3px 3px 6px rgba(0, 0, 0, 0.7);
}

section {
    margin: 40px 20px;

    padding: 20px;
    background: #fff; 
    background: rgba(255, 255, 255, 0.7); 
    border-radius: 10px;
}

/* Initial state of the sections */
section {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* State of the sections when in view */
section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    margin-top : 30px !important;
    top: 0 !important; 
    background: rgba(0, 0, 0, 0.2); 
    /* padding: 5px; */
    /* font-size: 24px; */
    z-index: 10;
  }

#backToTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    font-size: 24px;
    border: none;
    outline: none;
    background-color: rgba(13, 110, 253, 0.8); /* semi-transparent blue */
    color: white;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* deeper shadow */
    backdrop-filter: blur(6px); /* glass-like effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#backToTop:hover {
    background-color: rgba(85, 85, 85, 0.9);
    transform: scale(1.1); /* zoom effect */
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
}


.team-image {
    cursor: pointer;
    width: 60%; /* Set the width to 100% of the parent element */
    height: 210px; /* Set a fixed height */
    object-fit: cover; /* Cover will make sure the image covers the area, cropping it if necessary */
    margin-bottom: 15px; /* Provide some spacing between the image and the text below it */
  }
  
@media only screen and (max-width: 866px) {
    .services-overview .row {
        margin-left: -0.75rem; 
        margin-right: -0.75rem; 
    }
    .services-overview .col.s12.m4 {
        width: 50%;
        float: left; 
        box-sizing: border-box; 
    }
}

@media only screen and (max-width: 666px) {
    .services-overview .col.s12.m4, .services-overview .col.s12.m6 {
        width: 100%;
        float: none;
    }
}

