* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: white;
}
nav {
    display: flex;
    align-items: center;
    padding: 12px 50px;
    background-color: #1a1a1a;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.brand span {
    font-size: 20px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex: 1;
    margin-left: 40px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #e63946;
}

.logo {
    margin-right: auto;
}

.logo img {
    width: 150px;
    height: auto;
    display: block;
}
html {
    scroll-behavior: smooth;
}
section {
    scroll-margin-top: 90px;
}

section.animate {
    animation: sectionIn 0.8s ease forwards;
}

@keyframes sectionIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

nav a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}
nav a:hover{
    color: #e63946;
}
.hero {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 20px;
    min-height: 100vh;
    padding: 120px 50px 60px;
}
.hero img {
    width: 500px;
    max-width: 50%;
     border-radius: 15px;
    object-fit: cover;
}
.hero a {
    background-color: #e63946;
    border-radius: 20px;
    color: white;
    padding: 10px;
    text-decoration: none;
    transition: 0.3s;
}
.hero a:hover{
  background-color: #c1121f;
}
.hero h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero p {
    margin-bottom: 15px;
    line-height: 1.6;
}
.hero > div {
    flex: 1;
}
.hero p:first-child {
    color: #e63946;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.why-us {
    padding: 80px 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    }
    .why-us h2 {
    width: 100%;
    margin-bottom: 30px;
}

.why-us > div {
    background-color: #f5f5f5;
    padding: 30px 20px;
    border-radius: 15px;
    width: 200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.services {
    padding: 80px 50px;
    text-align: center;
     display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}
.services h2 {
    width: 100%;
    margin-bottom: 30px;
}
.services > div {
    background-color: #f5f5f5;
    padding: 30px 20px;
    border-radius: 15px;
    width: 220px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.why-us > div,
.services > div {
    color: #111;
    transition: 0.3s;
}
.why-us > div:hover,
.services > div:hover {
    transform: translateY(-5px);
}
.why-us span,
.services span {
    display: block;
    font-size: 35px;
    margin-bottom: 15px;
}
.services h3 {
    margin-bottom: 12px;
    font-size: 20px;
}
.services p {
    line-height: 1.6;
}
.about {
    padding: 80px 50px;
    text-align: center;
}
.about img {
    width: 500px;
    max-width: 50%;
    border-radius: 15px;
    object-fit: cover;
}
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
    text-align: left;
}
.about-content > div {
    flex: 1;
}

.about-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

.about-content p {
    line-height: 1.7;
}
.about-content img {
    width: 500px;
    max-width: 50%;
    border-radius: 15px;
    object-fit: cover;
}
.reviews {
    padding: 80px 50px;
    text-align: center;
}
.reviews h2 {
    margin-bottom: 40px;
    font-size: 32px;
}
.reviews > div:not(:first-of-type) {
    background-color: #f5f5f5;
    color: #111;
    padding: 30px;
    border-radius: 15px;
    width: 300px;
    display: inline-block;
    vertical-align: top;
    margin: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}
.reviews > div:first-of-type {
    margin-bottom: 30px;
}

.reviews > div:first-of-type h3 {
    font-size: 28px;
    margin-bottom: 5px;
}

.reviews > div:first-of-type p {
    color: #aaa;
}
.reviews > div:not(:first-of-type):hover {
    transform: translateY(-5px);
}
.reviews > div:not(:first-of-type) p {
    line-height: 1.6;
    margin-top: 10px;
}
.contact {
    padding: 80px 50px;
    text-align: center;
}
.contact h2 {
    font-size: 32px;
    margin-bottom: 40px;
    transition: 0.3s;
}
.contact > div:not(.map) {
    display: inline-block;
    vertical-align: top;
    width: 220px;
    margin: 10px;
    padding: 25px;
    background-color: #f5f5f5;
    color: #111;
    border-radius: 15px;
}
.contact h2:hover {
    color: #e63946;
    transform: scale(1.05);
}
.contact a {
    color: #e63946;
    text-decoration: none;
}
.map {
    margin-top: 40px;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.map iframe {
    width: 100%;
    height: 450px;
    border-radius: 15px;
}
.footer {
    background-color: #1a1a1a;
    padding: 50px;
    text-align: center;
    margin-top: 50px;
}
.footer h2 {
    margin-bottom: 10px;
}
.footer a {
    color: #e63946;
    text-decoration: none;
}
.footer > p:last-child {
    margin-top: 30px;
    color: #888;
    font-size: 14px;
}
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
    }

    .hero img {
        max-width: 100%;
        width: 100%;
    }

    .hero h1 {
        font-size: 36px;
    }

    nav {
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 15px;
    }

    nav a {
        font-size: 14px;
    }

    .why-us,
    .services {
        padding: 60px 20px;
    }

    .why-us > div,
    .services > div {
        width: 100%;
        max-width: 350px;
    }

    .about {
        padding: 60px 20px;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .about-content img {
        max-width: 100%;
        width: 100%;
    }

    .about-content h3 {
        font-size: 26px;
    }

    .reviews {
        padding: 60px 20px;
    }

    .reviews > div:not(:first-of-type) {
        width: 100%;
        max-width: 350px;
        margin: 10px auto;
    }

    .contact {
        padding: 60px 20px;
    }

    .contact > div:not(.map) {
        width: 100%;
        max-width: 350px;
        margin: 10px auto;
    }

    .map {
        margin-top: 30px;
    }

    .map iframe {
        height: 350px;
    }
    .footer {
    padding: 40px 20px;
}

.footer > div {
    margin-top: 25px;
}
}