.topheader{
    padding:5px;
    background:#264180;
    color:#e0dbd8;

}
.topheader a{
    color:#e0dbd8;
    
}
.topheader a:hover{
    color:#fff;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.hero-slider {
    position: relative;
    overflow: hidden;
    padding:0px 0px 0px 0px;
}
/* Responsive CSS for Hero Slider */

/* For tablets and smaller devices */
@media (max-width: 768px) {
    .hero-slider .slider-content {
        bottom: 15%; /* Adjust position */
        left: 5%; /* Reduce left margin */
        text-align: center; /* Center-align text */
    }

    .hero-slider .slider-content h2 {
        font-size: 2rem; /* Reduce font size for heading */
    }

    .hero-slider .slider-content p {
        font-size: 1rem; /* Reduce font size for paragraph */
    }

    .hero-slider .btn-get-started {
        font-size: 0.9rem; /* Adjust button font size */
        padding: 8px 15px; /* Adjust button padding */
    }
}

/* For mobile devices */
@media (max-width: 576px) {
    .hero-slider .slider-content {
        bottom: 10%; /* Adjust position */
        left: 5%; /* Reduce left margin */
        text-align: center; /* Center-align text */
    }

    .hero-slider .slider-content h2 {
        font-size: 1.5rem; /* Further reduce font size for heading */
    }

    .hero-slider .slider-content p {
        font-size: 0.9rem; /* Further reduce font size for paragraph */
    }

    .hero-slider .btn-get-started {
        font-size: 0.8rem; /* Adjust button font size */
        padding: 6px 12px; /* Adjust button padding */
    }
}

/* For large screens (optional adjustments) */
@media (min-width: 1200px) {
    .hero-slider .slider-content {
        bottom: 25%; /* Increase bottom margin */
        left: 12%; /* Increase left margin */
    }

    .hero-slider .slider-content h2 {
        font-size: 3rem; /* Slightly increase font size for heading */
    }

    .hero-slider .slider-content p {
        font-size: 1.5rem; /* Slightly increase font size for paragraph */
    }

    .hero-slider .btn-get-started {
        font-size: 1rem; /* Adjust button font size */
        padding: 12px 25px; /* Adjust button padding */
    }
}



.quotes-slider {
    background-color: #0a64c0;
    color:#ffffff;
    padding: 50px 0;
    text-align: center;
}
.quotes-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}
/* Responsive CSS for Quotes Slider */

/* For tablets and smaller devices */
@media (max-width: 768px) {
    .quotes-slider .quote-item {
        max-width: 90%; /* Reduce the width for smaller screens */
        padding: 15px; /* Adjust padding */
    }

    .quotes-slider .quote-text {
        font-size: 1.2rem; /* Reduce font size for quotes */
    }

    .quotes-slider .quote-text .quote-icon-left,
    .quotes-slider .quote-text .quote-icon-right {
        font-size: 1.5rem; /* Adjust icon size */
    }

    .quotes-slider .quote-author {
        font-size: 1rem; /* Reduce font size for author name */
    }
}

/* For mobile devices */
@media (max-width: 576px) {
    .quotes-slider .quote-item {
        max-width: 100%; /* Use full width for mobile */
        padding: 10px; /* Reduce padding */
    }

    .quotes-slider .quote-text {
        font-size: 1rem; /* Further reduce font size for quotes */
    }

    .quotes-slider .quote-text .quote-icon-left,
    .quotes-slider .quote-text .quote-icon-right {
        font-size: 1.2rem; /* Adjust icon size for mobile */
    }

    .quotes-slider .quote-author {
        font-size: 0.9rem; /* Reduce font size for author name */
    }
}

/* For large screens (optional adjustments) */
@media (min-width: 1200px) {
    .quotes-slider .quote-item {
        max-width: 70%; /* Increase width for larger screens */
    }

    .quotes-slider .quote-text {
        font-size: 1.8rem; /* Slightly increase font size */
    }

    .quotes-slider .quote-author {
        font-size: 1.3rem; /* Slightly increase font size for author name */
    }
}



/* General Styling for Key Person Details */
.keyperson-details {
    padding: 50px 0;
}

.keyperson-details img {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

.keyperson-details h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.keyperson-details h4 {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 20px;
}

.keyperson-details p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
}

/* Responsive Styling */

/* For tablets and smaller devices */
@media (max-width: 768px) {
    .keyperson-details {
        padding: 30px 0;
    }

    .keyperson-details h2 {
        font-size: 2rem; /* Reduce font size for heading */
    }

    .keyperson-details h4 {
        font-size: 1.3rem; /* Reduce font size for title */
    }

    .keyperson-details p {
        font-size: 1rem; /* Reduce font size for paragraph */
    }

    .keyperson-details img {
        margin-bottom: 20px; /* Add spacing below the image */
    }
}

/* For mobile devices */
@media (max-width: 576px) {
    .keyperson-details {
        padding: 20px 0;
    }

    .keyperson-details h2 {
        font-size: 1.8rem; /* Further reduce font size for heading */
    }

    .keyperson-details h4 {
        font-size: 1.2rem; /* Further reduce font size for title */
    }

    .keyperson-details p {
        font-size: 0.9rem; /* Further reduce font size for paragraph */
    }

    .keyperson-details img {
        width: 100%; /* Ensure the image takes full width */
        margin-bottom: 15px; /* Add spacing below the image */
    }
}

/* For large screens (optional adjustments) */
@media (min-width: 1200px) {
    .keyperson-details {
        padding: 60px 0;
    }

    .keyperson-details h2 {
        font-size: 3rem; /* Slightly increase font size for heading */
    }

    .keyperson-details h4 {
        font-size: 1.8rem; /* Slightly increase font size for title */
    }

    .keyperson-details p {
        font-size: 1.3rem; /* Slightly increase font size for paragraph */
    }
}

/* General Styling */
.about-home {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.about-home .about-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
}

.about-home .btn-read-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.about-home .btn-read-more:hover {
    background-color: #0056b3;
}

/* Responsive Styling */

/* For tablets and smaller devices */
@media (max-width: 768px) {
    .about-home .about-content {
        font-size: 1rem;
    }

    .about-home .btn-read-more {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}

/* For mobile devices */
@media (max-width: 576px) {
    .about-home {
        padding: 30px 0;
    }

    .about-home .about-content {
        font-size: 0.9rem;
    }

    .about-home .btn-read-more {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

.notice-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    margin-top:10px;
    transition: transform 0.3s ease;
}

.notice-item:hover {
    transform: translateY(-5px);
}

.notice-item h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.notice-item p {
    font-size: 1rem;
    color: #555;
}

.notice-details img {
    border-radius: 10px;
    margin-bottom: 20px;
}