.body{
    font-family:sans-serif;
}

.hero-section {
    background: #e8e5e5ff;
    padding: 60px 0;
    text-align: center;
    margin-top: 0px;
}

.hero-section img {
    max-width: 100%;
    display: block;
    border-radius: 4px;
    /* keeps image corners neat */
}

/* Frame effect */
/* Common frame style */
.framed-img,
.framed-img1 {
    display: inline-block;
    padding: 10px;
    /* space inside frame */
    background: #fff;
    /* frame base color */
    border: 28px solid #f5f5f5;
    /* outer frame border */
    box-shadow: -30px 15px 12px rgba(0, 0, 0, 0.2);
    /* shadow for depth */
    border-radius: 0px;
    /* sharp edges */
    max-width: 340px;
    /* keeps size close to framed look */
}

/* If you want framed-img1 to look different */
.framed-img1 {
    border: 10px solid #e0e0e0;
    /* slightly thinner, lighter frame */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    /* deeper shadow */
}


.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.service-card img {
    width: 100%;
    border-radius: px;
}

/* Hero Text */
.hero-text h1 {
    font-family: sans serif;
    /* Elegant serif font */
    font-size: 36px;

    line-height: 1.3;
    letter-spacing: 1px;
    color: #3c3939ff;
    margin-bottom: 20px;
    text-transform: uppercase;
    margin-left: 50px;
}

/* CTA Button */
.cta-btn {
    background-color: #97033f;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 20px;
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    transition: 0.3s ease;
    margin-left: 50px;
}

.cta-btn:hover {
    background-color: #6b022c;
    color: #fff;
}

.arrow-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    background-color: #ffffff;
    width: 150px;
    height: 50px;
    align-items: center;
    /* ✅ Center vertically */
    justify-content: left;
    /* ✅ Center horizontally */
    margin-left: 050px;
}

.arrow-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;

}

/* Section Styling */
.section-title1 {
    /* font-size: 2.2rem;

            line-height: 1.6; */
    color: #0a0a0aff;
    /* Controls vertical spacing between lines */
    margin-top: -23px;
    margin-bottom: 20px;
    margin-right: 110px;
    font-family: sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
    /* Adjust to match style */
    text-align: right;
    /* Centers text */
}

.section-text1 {
    font-size: 1rem;
    line-height: 1.8;
    color: rgb(39, 37, 37);
    margin-bottom: 15px;
    font-weight: 00;
    font-family:sans-serif;
}

/* Custom Button */
.btn-maroon1 {
    background-color: #8b1538;
    /* Maroon color */
    border: none;
    color: #fff;
    padding: 10px 25px;
    border-radius: 0px;
    font-weight: 500;
    margin-left: 150px;
    transition: all 0.3s ease;
}

.btn-maroon1:hover {
    background-color: #a71d4f;
    transform: translateY(-2px);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .section-title1 {
        text-align: center;
    }

    .btn-maroon1 {
        display: block;
        margin: 0 auto;
    }
}

.testimonial {
    font-size: 16px;
    line-height: 1.6;
    color: #333;

}

.testimonial-img img {
    width: 100%;
    max-width: 250px;
    /* keeps it neat */
    border-radius: 15px;
    /* soft rounded corners */
    border: 2px solid #ccc;
    /* subtle border */
    padding: 5px;
    /* spacing like in your screenshot */
    background: #fff;
    /* keeps clean border */
}

.footer {
    background: #fff;
    padding: 40px;
    text-align: center;
    font-size: 14px;
    color: #777;
}

.service-card {
    margin-bottom: 30px;
    /* spacing between rows on small screens */
}

.service-card img {
    width: 100%;
    /* makes all images responsive */
    max-width: 250px;
    /* fix max size so all look same */
    height: 285px;
    /* fix height for uniform size */
    object-fit: cover;
    /* crops image nicely without distortion */
    margin-bottom: 15px;
    /* gap between image and text */
}

.service-card b {
    display: block;
    font-size: 1rem;
    margin-top: 5px;
    color: #222;
    /* dark gray for better readability */
}

.object-cover {
    object-fit: cover;
    /* crops image to fill half without stretching */
    height: 100%;
    /* ensures full column height */
}



h2 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
}

/* Container */
.half-banner {
    display: flex;
    width: 100%;
    height: 550px;
    /* Adjust height as needed */
    overflow: hidden;
}

/* Left Side: Image */
.half-banner-image {
    flex: 1;
    position: relative;
    /* needed for absolute child */
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* background */
.half-banner-image .bg-img {
 
    width: 100%;
    height: 100%;
    object-fit:fill;
    /* fills the container, keeps aspect ratio */
    object-position:center;
    
    /* centers the image */
    display: block;



}


/* overlay */
.framed-img1 {
    position: absolute;
    top: 30px;
    /* adjust vertical */
    left: 190px;
    /* adjust horizontal */
    width: 200px;
    height: 250px;

    margin-top: 0px;
}

.framed-img1 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* or cover depending on look */
}


/* Right Side: Text */
.half-banner-text {
    flex: 1;
    background-color: #a01741;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: right;
    padding: 20px;
}

.half-banner-text h2 {
    font-family: 'Poppins', 'Century Gothic', 'Futura', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
}

.btn-custom {
    background: #fff;
    color: #a01741;
    padding: 10px 25px;
    border: none;
    border-radius: 0px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 200px;

}

.btn-custom:hover {
    background: #f1f1f1;
}

.btn1 {
    margin-right: 90px;
}

/* Responsive */
@media (max-width: 768px) {
    .half-banner {
        flex-direction: column;
        height: auto;
    }

    .half-banner-image,
    .half-banner-text {
        flex: 1 1 100%;
        height: 250px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 32px;
        margin-left: 30px;
    }

    .cta-btn {
        margin-right: 30px;
    }

    .arrow-buttons {
        margin-left: 30px;
    }

    .section-title1 {
        font-size: 2.2rem;
        text-align: center;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 28px;
        margin-left: 20px;
        margin-bottom: 15px;
    }

    .cta-btn {
        margin-left: 20px;
        font-size: 14px;
        padding: 10px 16px;
    }

    .arrow-buttons {
        margin-left: 20px;
        width: 130px;
        height: 45px;
    }

    .section-title1 {
        font-size: 2rem;
        text-align: center;
    }

    .section-text1 {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 30px 0;
    }

    .hero-text h1 {
        font-size: 24px;
        margin-left: 0;
        text-align: center;
        margin-bottom: 20px;
    }

    .cta-btn {
        margin-left: 100px;
        width: 100%;
        max-width: 300px;
        font-size: 14px;
        padding: 12px 20px;
    }

    .arrow-buttons {
        margin: 20px auto 0 auto;
        justify-content: center;
    }

    .section-title1 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 20px;
        margin-right: 0;
    }

    .section-text1 {
        font-size: 14px;
        text-align: center;
    }

    .btn1 {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        display: block;
        font-size: 14px;

    }

    .framed-img,
    .framed-img1 {
        max-width: 280px;
        border-width: 20px;
        margin-bottom: 20px;
    }

    .half-banner {
        flex-direction: column;
        height: auto;
    }

    .half-banner-image,
    .half-banner-text {
        flex: 1 1 100%;
        height: 250px;
    }

    .half-banner-text h2 {
        font-size: 2rem;
        text-align: center;
    }

    .btn-custom {
        width: 180px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 20px 0;
    }

    .hero-text h1 {
        font-size: 20px;
        line-height: 1.4;
    }

    .cta-btn {
        font-size: 13px;
        padding: 10px 16px;
    }

    .section-title1 {
        font-size: 1.6rem;
    }

    .section-text1 {
        font-size: 13px;
    }

    .framed-img,
    .framed-img1 {
        max-width: 240px;
        border-width: 15px;
        padding: 8px;
    }

    .half-banner-text h2 {
        font-size: 1.8rem;
    }

    .btn-custom {
        width: 160px;
        font-size: 13px;
        padding: 8px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        overflow: hidden;
    }

    .hero-text h1 {
        font-size: 18px;
    }

    .cta-btn {
        /* margin-left: 0px; */
        font-size: 12px;
        padding: 8px 14px;
        margin-left: 5px;

    }


    .section-title1 {
        font-size: 1.4rem;
    }

    .section-text1 {
        font-size: 12px;
    }

    .framed-img,
    .framed-img1 {
        max-width: 200px;
        border-width: 12px;
    }

    .half-banner-text h2 {
        font-size: 1.6rem;
    }

    .btn-custom {
        width: 140px;
        font-size: 12px;
    }
}