﻿/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

    .navbar .logo {
        font-size: 24px;
        font-weight: bold;
    }

    .navbar .nav-links {
        list-style: none;
        display: flex;
    }

        .navbar .nav-links li {
            margin: 0 15px;
        }

        .navbar .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 18px;
        }

/* Hero Section */
.hero {
    height: 100vh;
    /*background-color: #333;
    color: #fff;    
    padding: 20px;*/
    background: url('imagef.jpg') center/cover no-repeat;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

    .hero h1 {
        font-size: 48px;
        margin-bottom: 20px;
        color: white;
    }

    .hero p {
        font-size: 24px;
        margin-bottom: 20px;
        color: white;
    }

/*.hero button {
        padding: 10px 20px;
        font-size: 18px;
        background-color: #007bff;
        border: none;
        color: white;
        cursor: pointer;
        transition: background-color 0.3s;
    }

        .hero button:hover {
            background-color: #0056b3;
        }*/

/* Slider Styles */
.slider {
    position: relative;
    width: 80%;
    margin: 50px auto;
    overflow: hidden;
    max-width: 1200px;
    padding: 60px 20px;
    text-align: center;
    background-color: #f4f4f4;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-images {
    display: flex;
}

.slide {
    min-width: 100%;
    max-width: 100%;
}

    .slide img {
        width: 70%;
        height: auto;
        /*display: block;*/
        object-fit: cover;
    }

    .slide h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .slide p {
        font-size: 16px;
    }

button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    z-index: 1;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}


/* Services Section */
.services {
    padding: 80px 40px;
    text-align: center;
    background-color: #f4f4f4;
}

    .services h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }

.service-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.service-card {
    width: 500px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .service-card h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .service-card p {
        font-size: 16px;
    }

/* Counter Section */
.container {
    text-align: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #333;
}

.visitor-count {
    font-size: 1.5em;
    color: #007bff;
}

#visitor-count {
    font-weight: bold;
}


/* Footer Styles */
.footer {
    padding: 20px;
    background-color: #333;
    color: #fff;
    text-align: center;
}

/* About Section Styles */
.about {
    background-color: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

    .about h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .about p {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .about h3 {
        font-size: 28px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .about ul {
        list-style-type: none;
        margin-top: 10px;
        text-align: center;
        padding-left: 0;
    }

        .about ul li {
            font-size: 18px;
            margin-bottom: 10px;
        }

            .about ul li strong {
                color: #4CAF50;
            }

/* General styles for the contact page */
.contact {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

    .contact h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

    .contact-info h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .contact-info p {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

.contact-form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

    .contact-form h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .contact-form label {
        font-size: 18px;
        margin-bottom: 10px;
        display: block;
        text-align: left;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        margin-bottom: 20px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .contact-form button {
        background-color: #4CAF50;
        color: white;
        padding: 12px 20px;
        font-size: 18px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

        .contact-form button:hover {
            background-color: #45a049;
        }

.map iframe {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 50px;
}

    footer p {
        margin: 0;
        font-size: 16px;
    }
