* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
    color: #222;
    background: #f5f7fa;
    font-size: 20px;
}

/* Container */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* HEADER */
header {
    background: rgb(45, 120, 170);
    color: white;
}

/* TOP BAR */
.top-bar-container {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    border-bottom: 4px solid #fbbf24;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* LOGO */
.logo img {
    height: 45px;
    width: auto;
}

/* PHONE */
.phone {
    background: #2563eb;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem;
}

/* HERO */
.hero {
    text-align: center;
    padding: 70px 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fbbf24;
}

.hero p {
    max-width: 700px;
    margin: auto;
    font-size: 1.3rem;
}

/* PHOTO */
.hero-photo {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.hero-photo img {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fbbf24;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* DIVIDER */
.divider {
    height: 4px;
    background: linear-gradient(
        to right,
        transparent,
        #fbbf24,
        transparent
    );
}

/* SECTIONS */
section {
    padding: 70px 0;
}

section h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* ABOUT */
.about p {
    max-width: 800px;
    margin: auto;
    font-size: 1.1rem;
}

/* SERVICES */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    font-size: 1.1rem;
}

/* SERVICE AREA + CONTACT */
.service-area,
.contact {
    text-align: center;
}

/* FOOTER */
footer {
    background: #111827;
    color: white;
    text-align: center;
    padding: 20px;
}

/* MOBILE */
@media (max-width: 768px) {

    .top-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-photo img {
        width: 140px;
        height: 140px;
    }
}