html,body {
    height: 100%;
    margin: 0;
}

.custom-secondary{
    background-color: #FFF1BF;
}

.custom-primary{
    background-color: #0099C5;
}
.custom-primary-light {
    background-color: #82d6edf4;
}
.text-custom-primary {
    color: #0099C5;
}
.text-custom-secondary {
    color: #FFF1BF;
}
.text-custom-whatsapp {
    color: #0F8A79;
}
/* Wrapper for the entire page content */
.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* Main content should grow to take up available space */
.main-content {
    flex: 1;
}

/* Footer styling */
.footer {
    background-color: #343a40;
    color: white;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.motto-section {
    text-align: center;
    padding: 20px;
}

/* Style for the header */
.motto-header {
    font-size: 38px !important;
    font-weight: bold;
    text-align: center;
    position: relative;
    display: inline-block;
    display: block; /* Ensures the element takes up full width */
    margin: 0 auto; /* Centers the element within the parent */
    margin-bottom: 10px;
    animation: colorChange 2s infinite alternate;
    /* Animation applied */
}

.text-header {
    font-size: 38px !important;
    font-weight: bold;
    text-align: center;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    /* Animation applied */
}

@keyframes colorChange {
    0% {
        color: #f8b200;
        /* Start color */
    }

    100% {
        color: #00abe4;
        /* End color */
    }
}

/* Style for the underline */
.motto-header::after {
    content: '';
    display: block;
    width: 40px;
    height: 8px;
    background-color: #07707a;
    margin: 0 auto;
    margin-top: 5px;
}

/* Style for the description text */
.motto-text {

    max-width: 1000px;
    margin: 0 auto;
    color: #000000;
}

.btn-gradient {
    background: linear-gradient(to right, #00838f, #00bcd4);
    /* Your gradient */
    color: white;
    /* Text color */
    padding: 10px 20px;
    border: none;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    /* Shadow effect */
}

/* Hover effect */
.btn-gradient:hover {
    transform: translateY(-2px);
    /* Slightly raise button on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Deeper shadow on hover */
}

/*--IMAGE HOVER--*/
.image-hover-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.image-hover-container img {
    width: 100%;
    transition: transform 0.3s ease;
}

.image-hover-container:hover img {
    transform: scale(1.1);
    /* Slight zoom effect on hover */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark transparent background */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-hover-container:hover .overlay {
    opacity: 1;
    /* Show overlay on hover */
}

.text {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.btn-light {
    background-color: #fff;
    color: #000;
    border-radius: 5px;
    padding: 10px 20px;
    text-decoration: none;
}

.btn-light:hover {
    background-color: #f8f9fa;
    color: #333;
}

/*---CARD INFO---*/

.card-img-container {
    width: 100%;
    height: 150px;
    /* Adjust height as needed */
    overflow: hidden;
    position: relative;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    /* Shows the top half of the image */
}

.card {
    border-radius: 10px;
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    color: #007bff;
}

.card-text {
    font-size: 16px;
    color: #555;
}

.card-body {
    text-align: center;
    padding-top: 10px;
}

.card.shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card-text {
    font-size: 16px;
    color: #555;
}

.card-body {
    text-align: center;
}

.card.shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/*---FOOTERS---*/
.footer {
    background-color: #333;
    /* Dark background */
    color: #fff;
    /* White text color */
}

.footer-heading {
    font-weight: bold;
    color: #00bcd4;
    /* Light blue color for headings */
}

.footer a {
    color: #00bcd4;
    /* Link color */
    transition: color 0.3s;
}

.footer a:hover {
    color: #00838f;
    /* Darker shade on hover */
}

.social-icons img {
    width: 60px;
    transition: 0.5s;
}

.social-icons a:hover img {
    transform: translateY(-10px);
}

/*Contact Us*/
.contact-us {
    width: 100%;
}

.contact-detail {
    background: #E1E1E1;
}

.form {
    background-image: linear-gradient(to right, #07707a, #027bce) !important;
    color: #fff;
    text-decoration: none;
    padding: 10px;
}

.bg-teal{
    background-color: #07707a !important;
}

.form .form-control {
    text-decoration: none;
    border: none;
    box-shadow: none;
}

.map-class {
    width: 100%;
    height: 100%;
    border: none;
    margin: 0;
    padding: 0;
    loading: lazy;
}

/*-- Quote --*/

#quotes_ {
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjviqsdGOqRvbNPZM88K7N1LN_iGzA_DNfGh6iotekppn3D1tdiJYx8Ufm5g61DP2fXOteAY9pINDBZ9E1ToIYDq63nMo5greAbqK2s492G5QGXcrRTPNy7jPrY7HEyEvJ5BiVFHnRjLQv0vMyQnNePrDZ0Lc5doT5U8ZQp98F18IDeagFARFvSjmx1mh4z/s642/about%20us%20banner.jpg);
}

.quotes-container-fluid_ {
    background: #8C020C;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

#quotes {
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg_QtcrB2Re51ykrY-lmHrtAWhBlqqjUIcrhy7hTBuu0Ud_KhBWEGeb2zNAfp-MEFn-x6ueMLAfoHzM6JuwEee6NHH0qYNOirT3QoB-xcypUszWAN74zy7OlAuw2N1TrNkkZOW9EUytOGitQudktKK7uoyFRL9fRbL1RWsn_UqqSMR8cR2-cxkjl1TkbQ9B/s836/kids%20quote.jpg);
}

.quotes-container-fluid {
    background: #01266A;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.quotes-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.quotes-container img {
    width: 100px;
    height: 100px;
    margin-top: 20px;
}

#quotes p {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    font-weight: 400;
    font-style: italic;
    font-family: 'Kaushan Script', cursive;
    font-size: 40px;
    padding: 20px;
    opacity: 1;
    margin-bottom: 20px;
}

#quotes p:before {
    content: '';
    background: #ffffff;
    width: 200px;
    height: 5px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/*-- About Us Section --*/
.small-img {
    height: 50vh;
    /* Set the desired height */
    object-fit: cover;
    /* Ensure the image covers the area without stretching */
}

.card-container .card {
    background-color: #f8f9fa;
    /* Light gray background */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    /* Slight shadow */
}

.carousel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px;
}

.logo-item {
    cursor: pointer;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0.5;
    filter: grayscale(100%);
}

.logo-item.active {
    opacity: 1;
    transform: scale(1.1);
    filter: brightness(1.5);
}

.carousel-logo {
    width: 100px;
    height: auto;
}

.carousel-text {
    margin-top: 10px;
    text-align: center;
    font-size: 1.2em;
    color: #333;
}

.carousel-text h5 {
    font-size: 1.2em;
    color: #333;
    font-weight: bold;
}

.carousel-text p {
    font-size: 1em;
    color: #555;
}

.contact-item {
    border-bottom: 1px dotted #ccc;
    /* Adjust color as needed */
    padding-bottom: 10px;
    /* Add spacing below content */
    margin-bottom: 10px;
    /* Add spacing between items */
}

.contact-item:last-child {
    border-bottom: none;
    /* Remove the line for the last item */
}

/* Style for the active navbar menu item */
.navbar-nav .nav-link.active {
    color: #ffeb3b;
    /* Brighter color for active item */
    font-size: 1.2em;
    /* Slightly increase font size */
    border-bottom: 3px solid #ffeb3b;
    /* Add underline effect */
    padding-bottom: 2px;
    /* Adjust padding for underline placement */
}

/* Optional: Hover effect for navbar links */
.navbar-nav .nav-link:hover {
    color: #ffd700;
    /* A bright color on hover */
}

/* Define the keyframes for changing colors */
@keyframes colorChange {
    0% {
        color: red;
    }

    25% {
        color: blue;
    }

    50% {
        color: green;
    }

    75% {
        color: orange;
    }

    100% {
        color: purple;
    }
}

/* Apply the animation to the text */
.multicolor-text {
    font-size: 2em;
    /* Adjust font size */
    font-weight: bold;
    /* Optional: Makes the text bold */
    animation: colorChange 2s infinite;
    /* Animation duration of 5 seconds, looped infinitely */
}

.image-stack {
    position: relative;
    height: 200px;
    /* Adjust based on your desired height */
    width: 100%;
    overflow: hidden;
}

.image-stack .stacked-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.image-stack .stacked-image:nth-child(1) {
    z-index: 2;
    /* Topmost image */
}

.image-stack .stacked-image:nth-child(n+2) {
    z-index: 1;
    /* All other images below */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    /* Apply shadow to the images under the top one */
}

.stacked-image {
    width: 100%;
    /* Makes the image take up the full width of the container */
    height: 100%;
    /* Ensures the image fills the height as well */
    object-fit: cover;
    /* Ensures the image covers the area without distorting */
    border-radius: 10px;
    /* Optional: add rounded corners */
}