.body{
    background: #000;
}
#map {
    text-align: center;
    background-color: #e1ff9c;
    padding: 20px;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#map h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

#map p {
    font-size: 16px;
    color: #666;
}

#map a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

#map a:hover {
    color: #0056b3;
    text-decoration: underline;
}
    header {
    background-image: url('mmm.jpg');
    background-color: #a1c8fb; /* Dark blue background */
    padding: 20px 0;
   
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
   
    
}

header h1 {
    font-size: 2.1em;
    font-weight: bold;
    color: #00e5ff;
    text-decoration: underline;
}
.nav-links {
    margin-top: 20px;
    list-style-type: none;
    display: flex;
    justify-content: center;
    padding: 0;
    gap: 2em;
    flex-direction: column;
}
.nav-links li {
    display: inline; /* Ensure each link is displayed inline */
}

.nav-links a {
    color: white;
    text-decoration: none;
    display: contents;
}

.nav-links li a {
    position: relative;
}

.nav-links li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #c54242;
    left: 0;
    bottom: -5px;
    transition: width 0.6s;
}

.nav-links li a:hover {
    color: #00ff08;
    background: #353535;
}

.review-slider {
   /* Ensure position relative for absolute buttons */
    max-width: 800px; /* Set a maximum width for the slider */
    margin: 20px auto; /* Center the slider horizontally */
    overflow: hidden; /* Hide overflow for slider effect */
    border-radius: 8px; /* Rounded corners for slider */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    display: flex; /* Flexbox to align items */
    justify-content: center; /* Center the slides */
    align-items: center;  
    
    
}

.slide {
    display: none; /* Hide all slides by default */
    flex-direction: column;
    align-items: center;
    padding: 20px;
}
.slides-container {
    display: flex; /* Keep slides in a row */
    transition: transform 0.5s ease; /* Smooth transition for sliding effect */
    flex: 1; /* Allow slides to take the remaining space */
}
h2{
    text-align: center;
}


.review-content {
    text-align: center;
}
.active {
    display: flex; /* Show the active slide */
}
.slide {
    display: none; /* Make sure the default is set to none */
}
.slide.active {
    display: flex; /* Active slide should be set to flex */
}

.slide img {
    width: 150px; /* Adjusted size for larger images */
    height: 150px; /* Adjusted size for larger images */
    border-radius: 50%;
    margin-bottom: 10px;
}

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


.active {
    display: flex; /* Show the active slide */
}
button.prev:hover, button.next:hover {
    background-color: #22628e; /* Darker shade on hover */
}

.review-slider {
    display: flex; /* Use flexbox to align items in a row */
    align-items: center; /* Center items vertically */
}

button.prev, button.next {
    position: center;
    background-color: #33e67bc6; /* Button color */
    color: white;
    top: 50%; /* Center vertically */
    transform: translateY(-50%);
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%; /* Circular buttons */
    font-size: 18px;
    z-index: 1; /* Bring buttons above the slides */
    height: 40px; /* Match button height for better alignment */
    width: 40px; //* Center content horizontally */
}
button.prev {
    position: absolute; /* Position absolute to overlap slides */
    left: 10px; /* Position left button */
    top: 830px; /* Center vertically */
    transform: translateY(-50%); /* Adjust for proper centering */
}

button.next {
   
    position: absolute; /* Position absolute to overlap slides */
    right: 10px; /* Position right button */
    top: 830px; /* Center vertically */
    transform: translateY(-50%); /* Adjust for proper centering */
}
.reach-out {
    background-image: url('rtu.jpg');
    background-color: rgba(176, 186, 33, 0.73);
    border-left: 5px solid #2f3a4c;
    padding: 20px;
    margin: 20px 0;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.reach-out a {
    color: #4285f4;
    transition: color 0.3s;
}

.reach-out a:hover {
    color: #fffb00;
    text-decoration: underline;
}

.reach-out h1 {
    color: #34ff07;
    text-decoration: underline;
}
.footer {
    background-image: url('footer.jpg');
    background-color: #000;
    color: #f0f0f0;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

.footer a {
    color: #eaff00;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #17e90f;
    text-decoration: underline;
}
@media (max-width: 600px) {
    .contact-details {
        padding: 15px; /* Adjust padding for smaller screens */
    }
}
@media (max-width: 768px) {
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    header {
        width: 100%;
        padding: 15px 0;
        text-align: center;
    }

    .welcome-box, .subtitle {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        width: 100%;
    }

    .btn {
        width: 100%;
        margin-top: 10px;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    section {
        padding: 20px;
        margin: 10px 0;
        width: 100%;
        box-sizing: border-box;
    }

    section h1, section h2 {
        font-size: 24px;
    }

    .footer {
        padding: 20px;
        text-align: center;
    }

    .btn {
        width: auto;
        max-width: 90%;
        margin-top: 10px;
    }

    img, .logo {
        max-width: 100%;
        height: auto;
    }

    #about-header {
        padding: 20px 0;
        text-align: center;
    }
}
