/* General Body and Dark Theme */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a; /* Dark background */
    color: #f0f0f0; /* Light text */
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Header */
header {
    background: #333;
    color: #fff;
    padding-top: 20px;
    min-height: 70px;
    border-bottom: #ffcc00 3px solid;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header ul {
    padding: 0;
    list-style: none;
}

header li {
    display: inline;
    padding: 0 20px;
}

header .logo {
    float: left;
    padding-left: 20px;
}

header .logo img {
    height: 50px; /* Adjust as needed */
}

header nav {
    float: right;
    margin-top: 10px;
}

header .current a, header a:hover {
    color: #ffcc00;
    font-weight: bold;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 400px; /* Adjust height as needed */
    overflow: hidden;
}

.slider-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    display: none; /* Hidden by default */
}

.slider-image.active {
    display: block; /* Show active image */
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    box-sizing: border-box;
}

.slider-nav button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 5px;
}

/* Main Content */
main {
    padding: 20px 0;
    background-color: #2a2a2a; /* Slightly lighter dark background for content */
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

main h1, main h2 {
    color: #ffcc00;
    text-align: center;
    margin-bottom: 20px;
}

main p {
    margin-bottom: 15px;
    text-align: justify;
}

main ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

main ul li {
    margin-bottom: 5px;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 30px 0;
    margin-top: 20px;
    border-top: #ffcc00 3px solid;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-content > div {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

footer h3 {
    color: #ffcc00;
    margin-bottom: 15px;
}

footer p, footer ul {
    font-size: 14px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li a {
    color: #f0f0f0;
    text-decoration: none;
    margin-bottom: 5px;
    display: block;
}

footer ul li a:hover {
    color: #ffcc00;
}

.footer-form input[type="text"],
.footer-form input[type="email"],
.footer-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #555;
    background-color: #444;
    color: #f0f0f0;
    border-radius: 4px;
    box-sizing: border-box;
}

.footer-form button {
    display: block;
    width: 100%;
    padding: 10px;
    background: #ffcc00;
    color: #333;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    margin-top: 20px;
    font-size: 14px;
}

/* WhatsApp Floating Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    border-radius: 50px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.05);
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.whatsapp-button img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.whatsapp-button span {
    font-weight: bold;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .logo,
    header nav {
        float: none;
        text-align: center;
    }

    header nav ul {
        padding: 10px 0;
    }

    header li {
        display: block;
        margin-bottom: 5px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-content > div {
        margin: 10px 0;
        width: 90%;
    }
}