/* Home Page & Client View CSS */
body {
    margin: 0;
    padding: 0;
}

/* Contact Page */
main {
    min-height: 80vh;
    padding-top: 110px;
}

/* Section-title - CSS */
.section-title h2 {
    color: #b09060;
    font-size: 45px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}
.section-title p {
    font-size: 20px;
    font-weight: 400;
}

/* Service Section CSS - Start*/
.service-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    text-align: left;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.171);
}
.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.service-card h5 {
    font-size: 23px;
    color: #c6aa7c;
}
.service-card p {
    border-top: 2px solid #b09060;
    padding-top: 10px;
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
}

/* Service Section CSS - End*/

/* How to Book Appoinment CSS - Start  */
.step-number {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border: 2px solid #c6aa7c;
    border-radius: 50%;
    background-color: #0d1b2a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}
.step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    width: 120px;
    height: 3px;
    background-color: #c6aa7c;
    z-index: -1;
}
/* Step Box Hover Effect */
.step-box {
    transition: all 0.3s ease;
}
.step-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}
.step-box p {
    font-size: 15px;
    color: #b09060;
    font-weight: 400;
}
/* How to Book Appoinment CSS - End */

/* Why Choose Section - CSS Start*/
.choose-us-box i {
    color: #0d1b2a;
    transition: 0.3s;
}
.choose-us-box h5 {
    color: #0d1b2a;
    font-weight: 600;
    margin-top: 15px;
}
.choose-us-box p {
    color: #6c757d;
}
/* Hover effect */
.choose-us-box:hover i {
    color: #c6aa7c;
}
/* Why Choose Section - CSS End */
