/* Basic Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

/* Header Styles */
header {
    background-color: #20416a;
    color: white;
    padding: 20px;
    text-align: center;
}

header .logo {
    max-height: 150px;
    max-width: 150px;
    display: block;
    margin: 0 auto 20px;
    border-radius: 30px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #f0f0f0;
}

/* Welcome Section Styles */
.welcome-section {
    background-color: #eaf6ff;
    padding: 40px;
    text-align: center;
}

.welcome-section img {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
    border-radius: 10px;
}

/* Slider Styles */
.slider {
    position: relative;
    max-width: 600px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slider img {
    width: 100%;
    border-radius: 10px;
}

/* Navigation Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Mission Section Styles */
.mission-section,
.vision-section,
#services,
#testimonials,
#booking {
    padding: 40px;
    text-align: center;
    background-color: #f5f5f5;
    border-top: 5px solid #20416a;
}

.mission-section h2,
.vision-section h2,
#services h2,
#testimonials h2,
#booking h2 {
    font-size: 2.5rem;
    color: #20416a;
    margin-bottom: 20px;
}

.mission-section p,
.vision-section p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 800px;
}

.mission-section img,
.vision-section img {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Services Section Styles */
#services {
    background-color: #f5f5f5;
}

.services-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}

.services-list li {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 20px;
    padding: 20px;
    width: 550px;
    text-align: center;
    transition: transform 0.3s;
}

.services-list li:hover {
    transform: translateY(-5px);
}

.services-list img {
    max-width: 90%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 10px;
}

.services-list h3 {
    font-size: 1.5rem;
    color: #20416a;
    margin: 10px 0;
}

.services-list p {
    color: #555;
    font-size: 1rem;
    line-height: 1.4;
}

/* Testimonial Section Styles */
#testimonials {
    background-color: #eaf6ff;
}

.testimonial-message {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
    margin: 20px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    text-align: center;
}

.testimonial-slider {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
}

.testimonial-container {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial {
    min-width: 100%;
    box-sizing: border-box;
    opacity: 0;
    display: none;
    transition: opacity 0.5s ease-in-out;
}

.testimonial.active {
    display: block;
    opacity: 1;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin: 10px 0;
}

.testimonial h3 {
    font-size: 1.5rem;
    color: #20416a;
    margin-top: 10px;
}

/* Dots (Pagination) */
.dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #20416a;
}

.dot:hover {
    background-color: #555;
}

/* Booking Section Styles */
#booking {
    background-color: #f5f5f5;
}

#booking p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 30px;
}

#booking button {
    background-color: #20416a;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1rem;
}

#booking button:hover {
    background-color: #1b2e4b;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    border-radius: 10px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Footer Styles */
footer {
    background-color: #20416a; /* Background color */
    color: white; /* Text color */
    padding: 40px 0; /* Spacing */
}

.footer-content {
    max-width: 1200px; /* Footer max-width */
    margin: 0 auto; /* Center content */
    display: flex; /* Flexbox for columns */
    justify-content: space-between; /* Space between columns */
    flex-wrap: wrap; /* Wrap columns on smaller screens */
    text-align: left;
}

.footer-column {
    flex-basis: 30%; /* Columns take 30% each */
    padding: 0 20px; /* Padding around each column */
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff; /* Heading color */
}

.footer-column p, .footer-column ul {
    color: #ddd; /* Slightly lighter text color */
    font-size: 1rem;
}

.footer-column ul {
    list-style: none; /* No bullets */
    padding: 0; /* No padding */
}

.footer-column ul li {
    margin-bottom: 10px; /* Spacing between items */
}

.footer-column ul li a {
    color: #ddd; /* Link color */
    text-decoration: none; /* No underline */
}

.footer-column ul li a:hover {
    color: white; /* Change on hover */
}

/* Social Media Icons */
.social-media {
    display: flex;
    margin-top: 10px;
}

.social-media a {
    margin-right: 15px; /* Space between icons */
}

.social-media img {
    width: 24px; /* Set a smaller width */
    height: 24px; /* Set a smaller height */
    transition: transform 0.3s; /* Optional: Add hover effect */
}

.social-media img:hover {
    transform: scale(1.1); /* Optional: Slightly enlarge on hover */
}
.footer-bottom {
    text-align: center; /* Center-align text */
    padding: 20px; /* Add padding inside the box */
    font-size: 0.9rem; /* Adjust font size */
    color: #fff; /* Change text color */
    background-color: #102844; /* Background color for the copyright box */
    border-radius: 5px; /* Optional: round the corners */
    margin-top: 20px; /* Optional: space above the box */
}



/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .footer-column {
        flex-basis: 100%; /* Stack columns on smaller screens */
        margin-bottom: 20px; /* Add bottom margin */
    }
    
    header {
        padding: 10px; /* Adjust header padding */
    }

    nav ul li {
        margin: 0 5px; /* Adjust margins for smaller screens */
    }
}
