body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #1c1c1e;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed; /* Make the header fixed */
    top: 0; /* Stick it to the top */
    width: 100%; /* Make it full width */
    z-index: 1000; /* Make sure it stays on top */
}

header .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #00bcd4;
}

header nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding-left: 100px; /* Add left padding */
    padding-right: 100px; /* Add right padding */
}

header nav ul.hidden {
    display: none;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

header nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: #00bcd4;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

header nav ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

header .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

header .menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 4px 0;
}

@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;
        background-color: #1c1c1e;
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        padding: 0; /* Reset padding for mobile view */
    }

    header nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    header .menu-toggle {
        display: flex;
    }
}

.hero {
    background-image: url('hero-background.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    margin-top: 60px;
}

.hero .overlay {
    background: rgba(0, 123, 255, 0.5);
    padding: 60px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.hero button {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #00bcd4;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero button:hover {
    background-color: #0097a7;
}

.content-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.content-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #00bcd4;
}

.content-section img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 10px;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 300px;
    text-align: left;
}

.card img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #00bcd4;
}

.card p {
    font-size: 1em;
    color: #555;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel {
    background-color: #080808;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel img {

    max-width: 100px; /* Reduced size */
    margin: 0 10px;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: #ffffff;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}

.carousel-button.left {
    left: 10px;
}

.carousel-button.right {
    right: 10px;
}

form input, form textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    background: #e0e0e0;
    border: 1px solid #ccc;
    color: #333;
    border-radius: 5px;
    font-size: 1em;
}

form button {
    padding: 15px 20px;
    font-size: 1em;
    background-color: #00bcd4;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #0097a7;
}

footer {
    background-color: #1c1c1e;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

footer .social-media a {
    color: #00bcd4;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .social-media a:hover {
    color: #0097a7;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.whatsapp-float img {
    width: 50px;
    height: 50px;
    padding: 10px;
}
