/* Reset and body */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

/* ---------- Top Red Band ---------- */
.top-red {
    background-color: #cc0000;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
}

.top-red h1 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

.top-red nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.top-red nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
}

.top-red nav ul li a:hover {
    color: #ffcc00;
}

/* ---------- Light Gray Band ---------- */
.sub-gray {
    background-color: #f2f2f2;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 30px;
}

.sub-gray nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px;
}

.sub-gray nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.sub-gray nav ul li a:hover {
    color: #cc0000;
}

/* ---------- Image Band ---------- */
.image-band {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 0; /* remove extra padding */
}

.image-band img {
    height: 300px;         /* ✅ fixed image height */
    width: calc(100% - 30px); /* ✅ full width minus 15px left + 15px right */
    margin: 0 15px;        /* ✅ white bands on both sides */
    object-fit: cover;     /* ✅ fill nicely */
    border-radius: 4px;    /* optional, smooth edges */
}


/* ---------- Services Section ---------- */
.services-section {
    background-color: white;
    padding: 60px 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    background: #f5f5f5;
    border-radius: 15px;
    padding: 25px;
    text-align: justify; /* ✅ Justify text */
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* ✅ Align buttons at bottom */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.25);
}

.service-box i {
    font-size: 36px;
    margin-bottom: 15px;
    color: #cc0000;
    text-align: center;
}

.service-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}

.service-box p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-box a {
    display: inline-block;
    padding: 10px 18px;
    background-color: #cc0000;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
    align-self: center; /* ✅ keep all Learn More aligned */
}

.service-box a:hover {
    background-color: #990000;
}

/* ---------- Footer ---------- */
footer {
    background-color: #cc0000;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

