body {
    font-family: Arial, sans-serif;
}


.card-img-top {
    max-width: 100%;   /* Ensure the image doesn't expand beyond the width of its container */
    max-height: 300px; /* Set a maximum height */
    display: block;    /* Center the image within its container */
    margin: 0 auto;
    object-fit: cover; /* This will ensure the image covers the allocated space without stretching */
}

.masthead {
    height: 70vh;
    padding-top: 150px;
    min-height: 300px;
    background: url('../images/example3.png') no-repeat center center;
    background-size: cover;
    position: relative;
}

.masthead-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    /* color: #d9a966; */
    width: 100%;
}

.masthead-heading {
    font-size: 3rem;
    margin-bottom: 20px; /* Adjust the margin as needed */
}

.masthead-subheading {
    font-size: 1.5rem;
    margin-bottom: 40px; /* Adjust the margin as needed */
}

.section {
    padding: 60px 0;
}


.header {
    /* your existing styles */
    padding-bottom: 50px; /* adjust this value as needed */
  }

.card-container {
    padding-top: 50px;
    padding-bottom: 50px;
}

.card-row-2 {
    margin: 0 auto;
}

.progress-container {
    width: 100%;
    background-color: #f3f3f3;
    border-radius: 4px;
    position: relative;
    overflow: hidden; /* Makes sure the child bar doesn't overflow */
}

.progress-bar {
    width: 50%; /* width of the moving bar */
    height: 100%;
    position: absolute;
    background-color: #3498db;
    animation: progressBarAnimation 2s infinite; /* 2 seconds animation duration */
}

@keyframes progressBarAnimation {
    0% {
        left: -50%; /* Start position (fully hidden on the left) */
    }
    25% {
        left: 0%; /* 25% of the animation duration, the bar is fully visible */
    }
    75% {
        left: 50%; /* 75% of the animation duration, the bar starts moving out to the right */
    }
    100% {
        left: 100%; /* End position (fully hidden on the right) */
    }
}

.card-container .row:not(:last-child) {
    margin-bottom: 20px;
}
.custom-card {
    margin-top: -30px; /* Adjust the margin value as needed */
}


.custom-card .card-body {
    background-color: #ecd19b; /* Set the background color */
}

#stat1 svg {
    display: block;
    margin: 0 auto;
}

.bar {
    fill: #FF6363;
}

.bar:hover {
    fill: #FF4545;
}

.row {
display: flex;
justify-content: center; /* this will center the items horizontally */
}

.card {
margin: 0 auto; /* this will center the card if there's only one */
}

/* Add this block */
.header-content {
    background: lightblue;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.placeholder {
    background: lightblue;
    height: 100%;
}

.navbar {
    background-color: #f8f9fa;
}

.navbar-brand {
    font-size: 1.5em;
    color: #6c757d;
}

.nav-link {
    color: #6c757d;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.py-5 {
    padding: 3rem 0;
}

.text-center {
    text-align: center;
}

.masthead {
    background-color: lightgrey;
}


.search-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.search-bar .form-control {
    max-width: 600px;
}

.typing-effect {
    margin-top: 1rem;
}

.search-bar input {
    width: 100%; /* Adjust the width as needed */
    margin: 0 auto; /* Center the search bar */
}

.quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    padding: 1rem;
    margin-top: 1rem;
}

.quote-text {
    font-size: 1.2rem;
    font-weight: bold;
}

.quote-author {
    font-size: 1rem;
    color: #777;
    margin-top: 0.5rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.social-icon {
    color: white;
    font-size: 24px;
    margin: 0 10px;
}

.card-text {
    color: #333; /* Change color for better readability */
    padding: 10px; /* Add padding for spacing */
    background-color: #f8f8f8; 
    border-top: 1px solid #ddd; 
}

.card-title {
    color: #007bff; 
    font-weight: bold; 
}

/* Update button styles */
.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}
.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}