body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f8fafc;
}

/* HEADER */
.header {
   /* position: absolute;
    width: 100%;*/
    top: 0;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo img {
    width: 110px;
}

.call-btn {
    background: #16a34a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
}

/* HERO */
.heros {
    background: linear-gradient(rgba(15,23,42,0.8), rgba(15,23,42,0.9)),
    url('../images/Car-Service.webp');
    background-size: cover;
    background-position: center;
}
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px 20px 50px;
}
.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero p {
    color: #d1d5db;
    margin-bottom: 30px;
    line-height: 1.6;
}

.primary-btn {
    background: #ef4444;
    padding: 16px 32px;
    border-radius: 40px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(239,68,68,0.4);
}

/* TRUST */
.trust {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 14px;
}

/* FEATURES */
/* FEATURES */
.features {
    padding: 30px 20px 50px;
    text-align: center;
    background: #ffffff;
}

.features h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.sub-text {
    color: #64748b;
    margin-bottom: 50px;
}

.feature-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 18px;
    width: 280px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
}

/* TOP BORDER ACCENT */
.feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,#ef4444,#f97316);
    border-radius: 18px 18px 0 0;
}

/* ICON */
.icon {
    font-size: 35px;
    margin-bottom: 15px;
}

/* HOVER EFFECT */
.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.feature h3 {
    margin-bottom: 10px;
}

.feature p {
    color: #64748b;
    font-size: 14px;
}

/* CTA */
.cta {
    background: linear-gradient(45deg,#ef4444,#dc2626);
    padding: 70px 20px;
    text-align: center;
    color: #fff;
}

.cta a {
    background: #fff;
    color: #ef4444;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
}

/* FOOTER */
.footer {
    background: #0f172a;
    color: #cbd5f5;
    text-align: center;
    padding: 10px 20px;
}

/* MOBILE */
@media(max-width:768px) {
    .hero h1 {
        font-size: 32px;
    }
    .logo img {
    width: 78px;
}

    /*.header {
        flex-direction: column;
        gap: 10px;
    }*/

   .trust {
    gap: 13px;
    font-size: 12px;
}
.logo {
    font-size: 16px;
}
}
