* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #a0b4c7;
    color: #333;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    background: #fff;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.logo {
    font-size: 1.7em;
    font-weight: bold;
}

.logo span {
    color: #ff4d4d;
}

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

nav ul li a {
    color: #333;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hero */
.hero {
    background: url('https://images.unsplash.com/photo-1607019644207-1a3f36d4d7db?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

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

.hero-content span {
    color: #ff4d4d;
}

.hero-content p {
    font-size: 1.2em;
    max-width: 650px;
    margin: 0 auto 30px;
}

.btn {
    background: #ff4d4d;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn:hover {
    background: #e63e3e;
}

/* Sections */
section {
    padding: 100px 50px;
    text-align: center;
}

/* About */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.about-content img {
    width: 400px;
    border-radius: 10px;
}

.about-text {
    max-width: 500px;
    text-align: left;
}

/* Services */
.service-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.service-box {
    background: #fff;
    width: 300px;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-box:hover {
    transform: translateY(-5px);
}

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

/* Why Us */
.why-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.why-box {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.why-box img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Contact */
.contact form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 20px auto 0;
}

.contact input, .contact textarea {
    margin: 10px 0;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact button {
    border: none;
    cursor: pointer;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

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

    .hero-content h1 {
        font-size: 2em;
    }

    .about-content {
        flex-direction: column;
    }
}