
/* Fix body content under fixed header */
body {
    padding-top: 60px; /* height of navbar */
}body {
    font-family: Arial, sans-serif;
}

h1, h2 {
    color: #333;
}
/* Home Page Background */
.home-hero {
    min-height: 100vh;
    background-image: url("../images/home-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-align: center;
    position: relative;
}

/* Dark overlay for better text readability */
.home-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* Content above overlay */
.home-hero-content {
    position: relative;
    z-index: 2;
}
/* About Us Section */
.about-section {
    padding: 80px 0;
}

.about-text h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
/* Services Section */
.services-section {
    padding: 80px 0;
}

.service-card {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

.service-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.service-card-body {
    padding: 20px;
}

.service-card-body h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card-body p {
    font-size: 0.95rem;
    color: #555;
}

.service-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d6efd;
    margin-top: 10px;
}
