/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: #007bff;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background-color: #fff;
    border-bottom: 0 solid #ddd;
}

/* header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
} */


/* Header */
/*
header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #007bff;
}

header nav ul {
    display: flex;
    gap: 20px;
}

header nav ul li a {
    font-size: 1rem;
    padding: 10px;
    color: #333;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #007bff;
}
*/


/* Slider styles */
.slider {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 1s ease-in-out; /* Increased duration and smoother easing */
    position: relative;
}

.slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Increased duration for smoother fade */
    position: absolute;
    top: 0;
    left: 0;
}

.slide.active {
    opacity: 1;
    position: relative;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.navigation-dots {
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.navigation-dots .dot {
    display: inline-block;
    height: 12px;
    width: 12px;
    margin: 5px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.navigation-dots .dot.active {
    background-color: #007bff;
}

/* Services Section */
.services {
    background-color: #fff;
    padding: 50px 0;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card p {
    font-size: 1rem;
    color: #666;
}

.card:hover {
    transform: translateY(-10px);
}

/* Testimonials Section */
.testimonials {
    background-color: #007bff;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.testimonials p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Pricing Section */
.pricing-table {
    background-color: #fff;
    padding: 50px 0;
}

.pricing-table h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.pricing-tier {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
}

.pricing-tier h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.pricing-tier p {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.pricing-tier ul {
    margin-bottom: 20px;
}

.pricing-tier ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #666;
}

.pricing-tier .btn-primary {
    padding: 10px 20px;
    border-radius: 30px;
    background-color: #007bff;
    color: #fff;
    transition: background-color 0.3s;
}

.pricing-tier:hover {
    transform: translateY(-10px);
}

.pricing-tier .btn-primary:hover {
    background-color: #0056b3;
}

/* About Us Section */
.about-content {
    background-color: #fff;
    padding: 50px 0;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Contact Us Section */
.contact-form {
    background-color: #f9f9f9;
    padding: 50px 0;
}

.contact-form form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form label {
    display: block;
    font-size: 1rem;
    margin-bottom: 10px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    padding: 12px 25px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0056b3;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin-bottom: 10px;
}

footer .social-links a {
    color: #fff;
    margin: 0 10px;
    transition: color 0.3s;
}

footer .social-links a:hover {
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: center;
    }

    header nav ul {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .slide img {
        max-height: 250px;
    }
}
