body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: whitesmoke;
    text-align: center;
    padding: 5px;
    font-size: 16px;
}

.section-title {
    font-weight: bold;
    font-size: 28px;
    color: wheat;
}

.section-subtitle {
    font-size: 16px;
    color: black;
    margin-bottom: 30px;
}

.toppers-carousel {
    overflow: hidden;
    width: 100%;
    height: auto;
    max-width: 900px;
    margin: auto;
}

.toppers-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    transition: transform 0.8s ease-in-out;
    gap: 20px;
}

.toppers-card {
    position: relative;
    background-color: #208454;
    border-radius: 15px;
    padding: 20px;
    width: 45%;
    text-align: left;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 280px;
}

.toppers-card:nth-child(2) {
    background-color: #208454;
}

.toppers-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.toppers-card:nth-child(2) h3 {
    color: white;
}

.toppers-card p {
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.toppers-card span {
    font-size: 14px;
    color: white;
}

.toppers-card img {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
    background: white;
}

.dots-container {
    margin-top: 15px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 4px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #0057b7;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .toppers-card {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .toppers-card {
        width: 100%;
    }
}

.service-card img {
    height: 100px;
    border-radius: 80%;
    border: 3px solid white;
    background: white;
}

.highlight {
    color: blue;
}

.video-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.video-card:hover {
    transform: scale(1.05);
}

.video-card h4 {
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: bold;
}

.video-card p {
    color: gray;
    font-size: 0.9rem;
}

.carousel-item img {
    height: 400px;
}
.location-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

h2 {
    font-size: 24px;
    color: #004d00; /* Dark Green */
    font-weight: bold;
    padding: 10px;
    text-align: center;
}

.highlight {
    color: #208454; /* Medium Green */
}

/* Location Container */
.location-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Location Card */
.location-card {
    background-color: #208454;
    border: 2px solid white; /* Medium Green */
    padding: 20px;
    border-radius: 15px;
    width: 280px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

/* Card Text */
.location-card h3 {
    margin-bottom: 10px;
    color: white; /* Dark Green */
    text-align: center;
    font-size: 18px;
}

.location-card p {
    color: white; /* Text Green */
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
}

/* Hover Effect */
.location-card:hover {
    transform: scale(1.05);
    background-color: green; /* Light Green */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .location-container {
        flex-direction: column; /* Stack on smaller screens */
        align-items: center;
    }

    .location-card {
        width: 90%; /* Adjust width for smaller screens */
    }

    h2 {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .location-card {
        width: 95%; /* Make it full width on mobile */
    }

    h2 {
        font-size: 18px;
    }
}