/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Header */
header {
    background: #333;
    color: white;
    padding: 15px 0;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

/* photo-wall */
.photo-wall {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
}

.photo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.photo-track {
    display: flex;
    gap: 10px;
    animation: scrollPhotos linear infinite;
}

.photo-track {
    display: flex;
    gap: 10px;
    animation: scrollPhotos 30s linear infinite; /* Adjust timing based on total images */
}

.photo-track img {
    width: 200px;
    height: 150px;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

/* CSS animation to control scrolling speed dynamically */
@keyframes scrollPhotos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* Hero Section
.banner {
    background: url('images/banner.jpg') no-repeat center center/cover;
    color: white;
    padding: 60px 20px;
}

.banner h2 {
    font-size: 2.5em;
} */

/* Courses */
.courses {
    background: #f8f8f8;
    padding: 40px;
}

.course-list {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.course {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Booking Form */
.booking {
    padding: 40px;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: auto;
}

input, select, button {
    margin: 10px 0;
    padding: 10px;
    font-size: 16px;
}

button {
    background: #28a745;
    color: white;
    border: none;
    cursor: pointer;
}

/* Testimonials */
.testimonials {
    background: #f9f9f9;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
}

.testimonial {
    background: white;
    padding: 15px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    margin-bottom: 5px;
}

.testimonial-message {
    font-style: italic;
    color: #555;
    padding-top: 5px;
}


/* Ensure the page takes the full height of the viewport */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Main content expands to push the footer down */
.main-content {
    flex: 1;
}

/* Footer styling */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 16px;
}

.contact-info {
    text-align: center;
    padding: 40px;
    background: #f4f4f4;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 40px auto;
    font-family: "Arial", sans-serif;
}

.contact-info h2 {
    font-size: 26px;
    color: #333;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.contact-details {
    text-align: left;
    margin-top: 20px;
}

.contact-item {
    font-size: 18px;
    margin: 10px 0;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-info a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.contact-info a:hover {
    color: #0056b3;
}


