/* Global styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
    transition: background-color 0.3s ease;
}

header {
    background-color: #ffcc00;
    color: #000;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}

header h1 {
    font-size: 2.5em;
    margin: 0;
    transition: color 0.3s ease;
}

header h1 a {
    text-decoration: none;
    color: #000;
}

nav {
    margin-top: 10px;
}

nav a {
    margin: 0 15px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    position: relative;
    padding: 5px 10px;
}

nav a:hover {
    color: #fff;
    background-color: #333;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Animation for smooth page load */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Section */
.content {
    max-width: 1200px;
    margin: 30px auto;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    animation: slideIn 1s ease-out;
}

.content h1 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 15px;
}

.content p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.8;
}

.content .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ffcc00;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    margin-top: 20px;
    position: relative;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.content .btn:hover {
    background-color: #333;
    color: #fff;
    transform: translateY(-5px);
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Video Section */
.video-section {
    background-color: #fafafa;
    padding: 40px;
    margin: 30px auto;
    max-width: 1200px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.video-section h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
}

.video-section iframe {
    width: 100%;
    max-width: 960px;
    height: 540px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Testimonial Section */
.testimonials {
    background-color: #fafafa;
    padding: 40px;
    margin: 30px auto;
    max-width: 1200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.testimonials h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
}

.testimonials .testimonial {
    margin: 20px 0;
    font-size: 1.1em;
    font-style: italic;
    text-align: center;
    color: #555;
}

.testimonials .author {
    font-weight: bold;
    margin-top: 10px;
    color: #333;
}

/* Chatbot Button */
.chatbot-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffcc00;
    padding: 15px 20px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 1.5em;
    z-index: 999;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.chatbot-btn:hover {
    background-color: #333;
    color: #fff;
    transform: translateY(-5px);
}

/* Scroll smooth */
html {
    scroll-behavior: smooth;
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

th, td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

th {
    background-color: #ffcc00;
    color: #000;
    font-weight: bold;
}

td {
    background-color: #fafafa;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 15px;
    background-color: #333;
    color: #fff;
    font-size: 1.1em;
    margin-top: 40px;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

/* Form Styling */
form {
    display: inline-block;
    text-align: left;
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
}

form input,
form textarea {
    width: 60%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
    border-color: #ffcc00;
    outline: none;
}

form button {
    padding: 12px 25px;
    background-color: #ffcc00;
    border: none;
    border-radius: 5px;
    color: #000;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #333;
    color: #fff;
}

/* Container for Map */
#map-container {
    margin: 30px auto;
    max-width: 1200px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    nav a {
        font-size: 1em;
    }

    .content {
        padding: 20px;
    }

    .content h1 {
        font-size: 1.8em;
    }

    .content p {
        font-size: 1em;
    }

    .content .btn {
        font-size: 1em;
        padding: 10px 20px;
    }

    table {
        font-size: 0.9em;
    }

    form {
        width: 90%;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5em;
    }

    nav a {
        font-size: 0.9em;
    }

    .content {
        padding: 15px;
    }

    .content h1 {
        font-size: 1.6em;
    }

    .content p {
        font-size: 0.9em;
    }

    .content .btn {
        font-size: 0.9em;
        padding: 8px 16px;
    }

    form input,
    form textarea {
        font-size: 0.9em;
    }

    form button {
        font-size: 1em;
    }
}
