/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body */
body {
    line-height: 1.6;
    background: #f5f5f5;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0d6efd;
    color: white;
    padding: 15px 40px;
    position: sticky;
    top: 0;
}

nav .logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
}

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

nav ul li a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #ddd;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 60px 20px;
    background: white;
    flex-wrap: wrap;
}

.hero-text {
    max-width: 500px;
}

.hero-text h1 {
    font-size: 40px;
    color: #0d6efd;
}

.hero-text h3 {
    margin: 10px 0;
    color: #555;
}

.hero-text p {
    margin: 15px 0;
}

.hero-text button {
    padding: 10px 20px;
    margin-right: 10px;
    border: none;
    background: #0d6efd;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.hero-text button:hover {
    background: #084298;
}

.hero-image img {
    width: 300px;
}

/* Section Titles */
section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #0d6efd;
}

/* Features */
#features {
    padding: 40px 20px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

/* About */
#about {
    padding: 40px 20px;
    text-align: center;
}

#about img {
    width: 250px;
    margin-top: 20px;
}

/* Gallery */
#gallery {
    padding: 40px 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
    
}

/* Benefits */
#benefits {
    padding: 40px 20px;
    text-align: center;
}

#benefits ul {
    list-style: none;
}

#benefits li {
    margin: 10px 0;
}

/* Testimonials */
#testimonials {
    padding: 40px 20px;
    background: white;
    text-align: center;
}

.testimonial {
    margin: 15px 0;
}

/* Contact */
#contact {
    padding: 40px 20px;
    text-align: center;
}

form {
    max-width: 400px;
    margin: auto;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

form button {
    padding: 10px;
    background: #0d6efd;
    color: white;
    border: none;
    width: 100%;
    cursor: pointer;
}

form button:hover {
    background: #084298;
}

/* Footer */
footer {
    background: #0d6efd;
    color: white;
    text-align: center;
    padding: 15px;
}

/* Responsive */
@media(max-width: 768px) {
    .hero {
        flex-direction: column;
    }

    .gallery {
        grid-template-columns: 1fr;
    }
}

