body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f7f7f7;
    color: #000;
}

:root {
    --orange: #ff6A13;
    --blue: #0033a0;
    --black: #000;
}

.navbar {
    position: fixed;   /* THIS IS THE KEY */
    top: 00;
    left: 00;
    width: 97%;

    background-color: var(--orange);
    color: rgb(0, 0, 0);
    padding: 10px 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    z-index: 1000; /* keeps it above everything */
}

.navbar {
    height: 70px; /* FIXED navbar height */
}

.navbar img {
    height: 110px;   /* bigger logo */
    position: relative;
    top: 10px;       /* push it down slightly to center visually */
}
.navbar a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    margin-left: 40px;
    font-weight: bold;
}

.navbar a:hover { color: var(--blue); }

.hero {
    background: url('IMG/services/C.png') center/cover no-repeat;
    color: #f4a6a6;
    padding: 18px 40px;
    text-align:left
}

.hero h1 { font-size: 48px; }

.section {
    padding: 50px 80px;
    background-color: white;
    margin-bottom: 25px;
     text-align:center
}
.section h1 {
    color: var(--blue);
    font-size:52px;
}

.section h2 {
    color: var(--blue);
    font-size: 36px;
}

.section h3 {
    color: var(--black);
    font-size: 36px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.btn {
    background: var(--orange);
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
}

footer {
    background: var(--black);
    color: white;
    text-align: center;
    padding: 20px;
}
body {
    padding-top: 95px; /* adjust if needed */
}

.hero {
    position: relative;
    color: white;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* dark overlay */
    z-index: 1;
}

.hero * {
    position: relative;
    z-index: 2;
}

.logo-container {
    display: flex;
    align-items: center;
    height: 70px; /* match navbar height */
    overflow: visible; /* allow logo to exceed bar */
}

