*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    background: #0d0d0d;
    color: #e8e8e8;
    line-height: 1.6;
}

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 68px;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    z-index: 1000;
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
}

.nav-logo {
    color: #f97316;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #f97316;
}

/* ── Hero ── */
.hero {
    background-image: url("MainImage.png");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

.overlay {
    min-height: 60vh;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.78) 60%,
        rgba(13, 13, 13, 1) 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 0 24px;
    gap: 18px;
}

.logo {
    width: 148px;
    height: 148px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(249, 115, 22, 0.55);
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.25);
}

h1 {
    font-size: clamp(26px, 5vw, 50px);
    color: #fff;
    font-weight: 700;
    max-width: 680px;
    line-height: 1.35;
}

.hero-sub {
    font-size: 19px;
    color: #f97316;
    letter-spacing: 1px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 15px 42px;
    background: #f97316;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(249, 115, 22, 0.4);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
    background: #e06510;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.55);
}

/* ── Bosch ── */
.bosch-section {
    max-width: 860px;
    margin: 64px auto;
    padding: 48px 40px;
    background: #141414;
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: 18px;
    text-align: center;
}

.bosch-image {
    width: 75%;
    max-width: 520px;
    display: block;
    margin: 0 auto 28px;
    filter: drop-shadow(0 0 14px rgba(249, 115, 22, 0.2));
    transition: transform 0.3s, filter 0.3s;
}

.bosch-image:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 26px rgba(249, 115, 22, 0.45));
}

.bosch-text {
    font-size: 18px;
    color: #bbb;
    line-height: 1.9;
}

.bosch-text strong {
    color: #f97316;
}

/* ── Services ── */
.services {
    max-width: 1100px;
    margin: 64px auto;
    padding: 0 24px;
}

.services h2 {
    font-size: 34px;
    color: #f97316;
    text-align: center;
    margin-bottom: 48px;
}

.services h2::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: #f97316;
    margin: 12px auto 0;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: #141414;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.service-card:hover img {
    transform: scale(1.06);
}

.card-body {
    padding: 24px 28px;
}

.card-body h3 {
    font-size: 21px;
    color: #f97316;
    margin-bottom: 10px;
}

.card-body p {
    font-size: 15px;
    color: #999;
    line-height: 1.75;
}

/* ── Reviews ── */
.reviews {
    max-width: 1100px;
    margin: 64px auto;
    padding: 0 24px;
}

.reviews h2 {
    font-size: 34px;
    color: #f97316;
    text-align: center;
    margin-bottom: 48px;
}

.reviews h2::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: #f97316;
    margin: 12px auto 0;
    border-radius: 2px;
}

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

.review-card {
    background: #141414;
    border-radius: 16px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reviewer-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #f97316;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: #eee;
}

.reviewer-service {
    font-size: 13px;
    color: #f97316;
    margin-top: 3px;
}

.stars {
    color: #f97316;
    font-size: 14px;
    display: flex;
    gap: 3px;
}

.review-text {
    font-size: 15px;
    color: #999;
    line-height: 1.75;
}

/* ── Contact ── */
.contact {
    max-width: 780px;
    margin: 64px auto;
    padding: 56px 40px;
    background: #141414;
    border-radius: 20px;
    border: 1px solid rgba(249, 115, 22, 0.15);
    text-align: center;
}

.contact h2 {
    font-size: 34px;
    color: #f97316;
    margin-bottom: 36px;
}

.contact h2::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: #f97316;
    margin: 12px auto 0;
    border-radius: 2px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.contact-info p {
    font-size: 17px;
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-info i {
    color: #f97316;
    width: 18px;
}

.buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.2s, filter 0.2s;
}

.button:hover {
    transform: translateY(-3px);
    filter: brightness(1.12);
}

.phone     { background: #f97316; }
.facebook  { background: #1877F2; }
.instagram { background: #E4405F; }
.maps      { background: #34A853; }

/* ── Footer ── */
footer {
    text-align: center;
    padding: 28px;
    color: #444;
    font-size: 14px;
    border-top: 1px solid #1c1c1c;
}

/* ── Mobile ── */
@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .navbar {
        padding: 0 20px;
    }

    .nav-logo {
        font-size: 21px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .services-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .service-card img {
        height: 190px;
    }

    .bosch-section {
        margin: 32px 16px;
        padding: 32px 20px;
    }

    .contact {
        margin: 32px 16px;
        padding: 40px 20px;
    }

    .services {
        margin: 40px auto;
    }
}

.email{
    background:#f39c12;   /* Orange to match your theme */
}

.email:hover{
    background:#d68910;
}