*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family: "Poppins", sans-serif;
background:#fff;
}



/* HEADER */

.main-header{
background:#fff;
padding:1px 0;
}

.logo img{
height:55px;
}

.navbar-nav{
gap:34px;
}


/* Mobile */
@media (max-width: 767px) {
    .navbar-nav {
        gap: 20px;
    }
	
	.navbar-nav li{
        border-bottom:1px solid #f1f1f1
    }
	
	.martop{
		margin-top:30px;
	}
}

.navbar-nav a{
text-decoration:none;
color:#111;
font-size:16px;
font-weight:400;
font-family: "Inter", sans-serif;
}

.header-btns{
display:flex;
gap:15px;
}

.call-btn{
padding: 11px 35px;
    border: 1px solid #222;
    border-radius: 10px;
    color: #111;
    text-decoration: none;
    font-weight: 500;
    height: 44px;
}

.visit-btn{
padding:11px 35px;
background:#06695f;
color:#fff;
text-decoration:none;
border-radius:10px;
font-weight:600;
height: 44px;
}



/* HERO */

.hero-section{
min-height:500px;
background:url("../image/banner.jpg") no-repeat right center;
background-size:cover;
position:relative;
display:flex;
align-items:center;
padding-bottom:120px;
}


/* Mobile */
@media (max-width: 767px) {
    .hero-section {
        background: url("../image/mobile-banner.png") no-repeat center center;
        background-size: cover;
    }
    
    .hero-section:before{
        background: linear-gradient(to right, #f5f1e800 50%, rgba(245, 241, 232, .96) 62%, rgba(245, 241, 232, .65) 78%, transparent 100%);
    }
}

/* left fade overlay like screenshot */
.hero-section:before{
content:"";
position:absolute;
left:0;
top:0;
height:100%;
width:62%;
background:linear-gradient(
to right,
#f5f1e8 50%,
rgba(245,241,232,.96) 62%,
rgba(245,241,232,.65) 78%,
transparent 100%
);
}


.hero-content{
max-width:760px;
position:relative;
z-index:2;
padding-top:40px;
}

.top-tag {
    display: inline-block;
    background: #FBEBD5;
    padding: 11px 34px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 16px;
    color: #91622e;
    margin-bottom: 35px;
}

.hero-content h1{
font-size: 39px;
    line-height: 1.22;
    font-weight: 600;
    margin-bottom: 28px;
}

.hero-content h1 span{
display:block;
color:#1c7668;
}

.hero-content h5{
font-size:18px;
font-weight:600;
margin-bottom:18px;
}

.hero-content p{
font-size: 16px;
    line-height: 1.4;
    max-width: 490px;
    margin-bottom: 45px;
}


.hero-btns{
display:flex;
gap:25px;
flex-wrap:wrap;
}

.green-btn{
background: #06695f;
    color: #fff;
    text-decoration: none;
    padding: 14px 36px;
    font-size: 19px;
    font-weight: 600;
    border-radius: 12px;
    height: 55px;
}

.outline-btn{
border:1px solid #06695f;
color:#06695f;
text-decoration:none;
padding: 14px 25px;
font-size:19px;
font-weight:600;
border-radius:12px;
height: 55px;
}



/* Mobile */

@media(max-width:991px){

.hero-section{
background-position:center;
min-height:auto;
padding:10px 0;
}

.hero-section:before{
width:100%;
background: rgb(245 241 232 / 0%);
}

.hero-content h1{
font-size:46px;
}

.hero-content h5{
font-size:24px;
}

.hero-content p{
font-size:20px;
}

}

@media(max-width:767px){

.hero-content h1{
font-size:34px;
}

.top-tag{
font-size:14px;
}

.green-btn,
.outline-btn{
font-size:18px;
padding:14px 24px;
}

}




/* Floating cards section */

.feature-strip{
position:absolute;
left:50%;
bottom:-121px;
transform:translateX(-50%);
display:flex;
gap:18px;
z-index:5;
}

.feature-box{
    width: 235px;
    padding: 26px 20px;
    border-radius: 14px;
    text-align: center;
    border: 6px solid #fff;
}

.feature-box.green{
background:#dfe7de;
}

.feature-box.cream{
background:#efe8d6;
}

.feature-box.blue{
background:#dceaf3;
}

.feature-box.purple{
background:#e6ddf1;
}

.icon-circle{
width:42px;
height:42px;
border-radius:50%;
margin:auto auto 16px;
display:flex;
align-items:center;
justify-content:center;
font-size:20px;
color:#fff;
}

.green .icon-circle{
background:#5b978c;
}

.cream .icon-circle{
background:#e1b84f;
}

.blue .icon-circle{
background:#89c6e6;
}

.purple .icon-circle{
background:#b893ea;
}

.feature-box h4{
font-size:17px;
font-weight:600;
margin-bottom:10px;
}

.feature-box p{
font-size:15px;
line-height:1.5;
margin:0;
}



/* Responsive */
@media(max-width:991px){

.feature-strip{
position:relative;
bottom:auto;
left:auto;
transform:none;
margin-top:50px;
flex-wrap:wrap;
justify-content:center;
}

.hero-section{
padding-bottom:70px;
}

}

@media(max-width:576px){
.feature-box{
width:100%;
}
}



/* Desktop */
.why-trust-section {
    padding: 75px 0;
    background: #fff;
}

/* Mobile */
@media (max-width: 767px) {
    .why-trust-section {
        padding: 75px 0;
    }
}

.small-title{
color:#9d7a43;
font-size:14px;
font-weight:700;
letter-spacing:1px;
display:block;
margin-bottom:15px;
}

.trust-content h2{
font-size: 30px;
font-weight: 600;
line-height: 1.2;
margin-bottom: 20px;
}

.trust-content h2 span{
color:#000;
}

.trust-content h2{
color:#0d7268;
}

.trust-content p{
font-size:15px;
line-height:1.3;
color:#000;
margin-bottom:30px;
max-width:500px;
}

.trust-list{
padding:0;
list-style:none;
margin-bottom:35px;
}

.trust-list li{
    margin-bottom: 1px;
    padding-left: 18px;
    position: relative;
    font-size: 15px;
    font-weight: 600;
    color: #06695f;
}

.trust-list li:before{
content:"•";
position:absolute;
left:0;
color:#06695f;
}

.trust-btn{
display: inline-block;
    background: #06695f;
    color: #fff;
    padding: 11px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}



/* Right Gallery */

.trust-gallery{
display:flex;
gap:18px;
align-items:stretch;
}

.big-image{
width:60%;
position:relative;
}

.big-image img{
width:100%;
height:100%;
object-fit:cover;
border-radius:28px;
border:3px solid #1686ff;
}

.side-images{
width:40%;
display:flex;
flex-direction:column;
gap:18px;
}

.small-img img{
width:100%;
height:265px;
object-fit:cover;
border-radius:22px;
}



/* Floating Badge */

.badge-box{
position:absolute;
left:-40px;
bottom:25px;
background:#fff;
padding:18px 22px;
border-radius:18px;
display:flex;
align-items:center;
gap:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.heart-icon{
width:42px;
height:42px;
border-radius:50%;
background:#d7efe8;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
color:#06695f;
}

.badge-box h4{
font-size:42px;
margin:0;
font-weight:700;
}

.badge-box p{
margin:0;
font-size:14px;
line-height:1.4;
color:#000;
}



/* Responsive */

@media(max-width:991px){

.trust-content{
margin-bottom:50px;
}

.trust-gallery{
flex-direction:column;
}

.big-image,
.side-images{
width:100%;
}

.badge-box{
left:20px;
}

}

@media(max-width:767px){

.trust-content h2{
font-size:36px;
}

.small-img img{
height:220px;
}

.badge-box{
position:relative;
left:0;
bottom:auto;
margin-top:20px;
}

}




.care-home-section{
background:#f7f4ec;
padding:90px 0;
}


/* Heading */

.service-head span{
color:#9c7841;
font-size:14px;
font-weight:700;
display:block;
margin-bottom:12px;
}

.service-head h2{
font-size: 35px;
    font-weight: 600;
    margin-bottom: 50px;
}



/* Service Cards */

.service-grid{
justify-content:center;
row-gap:20px;
}

.service-box{
background: #fff;
    padding: 14px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    height: 100%;
	  display: flex;
  gap: 12px;
  align-items: center;
}

/* Desktop (icon left) */
@media (min-width: 768px) {
  .service-box {
    flex-direction: row;
    text-align: left;
  }
}

/* Mobile (icon top) */
@media (max-width: 767px) {
  .service-box {
    flex-direction: column;
    text-align: center;
  }
}

.service-icon{
font-size:32px;
color:#4aa3ff;
min-width:45px;
}

.service-icon img{
	width:55px;
}

.service-box h4{
font-size:14px;
font-weight:600;
margin-bottom:8px;
}

.service-box p{
font-size: 12px;
    line-height: 1.2;
    color: #666;
    margin: 0;
}



/* Stats */

.stats-wrapper{
margin-top:55px;
background:#06695f;
border-radius:18px;
padding:38px 30px;
}

.stat-col{
position:relative;
}

.stat-col:not(:last-child):after{
content:"";
position:absolute;
right:0;
top:20px;
height:70px;
width:1px;
background:rgba(255,255,255,.2);
}

.stat-icon{
color:#f1d9a4;
font-size:26px;
margin-bottom:12px;
}

.stat-col h3{
font-size:27px;
font-weight:700;
color:#fff;
margin-bottom:8px;
}

.stat-col p{
color:#f1d9a4;
font-size:18px;
margin:0;
}



/* Responsive */

@media(max-width:991px){

.service-head h2{
font-size:38px;
}

.offset-lg-3{
margin-left:0;
}

.stat-col{
margin-bottom:30px;
}

.stat-col:after{
display:none;
}

}

@media(max-width:767px){

.service-box{
padding:20px;
}

.service-head h2{
font-size:30px;
}

.stats-wrapper{
padding:30px 20px;
}

}



.facility-section{
min-height:720px;
background:url(../image/banner2.jpg) no-repeat right center;
background-size:cover;
display:flex;
align-items:center;
position:relative;
overflow:hidden;
}


/* Left cream overlay fade */

.facility-section:before{
content:"";
position:absolute;
left:0;
top:0;
width:62%;
height:100%;
background:linear-gradient(
to right,
#f8f4ec 52%,
rgba(248,244,236,.95) 66%,
rgba(248,244,236,.6) 82%,
transparent 100%
);
z-index:1;
}

.facility-content{
position:relative;
z-index:2;
max-width:520px;
padding:50px 0;
}

.facility-tag{
display:inline-block;
background:#e9c27f;
color:#8d5d1e;
padding:11px 26px;
border-radius:30px;
font-size:14px;
font-weight:700;
margin-bottom:25px;
}

.facility-content h2{
font-size:35px;
font-weight:600;
line-height:1.15;
margin-bottom:28px;
color:#06695f;
}

.facility-content h2 span{
color:#111;
}

.facility-content p{
font-size: 15px;
line-height: 1.3;
color: #000;
margin-bottom:35px;
max-width:480px;
}



/* Bullet list */

.facility-list{
list-style:none;
padding:0;
margin:0;
}

.facility-list li{
margin-bottom: 1px;
    padding-left: 18px;
    position: relative;
    font-size: 15px;
    font-weight: 600;
    color: #06695f;
}

.facility-list li:before{
content:"•";
position:absolute;
left:0;
top:0;
color:#06695f;
font-size:20px;
}



/* Responsive */

@media(max-width:991px){

.facility-section{
padding:1px 0;
min-height:auto;
background-position:center;
}

.facility-section:before{
width:100%;
background:rgba(248,244,236,.9);
}

.facility-content h2{
font-size:42px;
}

}

@media(max-width:767px){

.facility-content h2{
font-size:34px;
}

.facility-content p,
.facility-list li{
font-size:17px;
}

}




.location-section{
padding:90px 0;
background:#f8f5ef;
}


/* Left Content */

.location-tag{
display:inline-block;
background:#e7c383;
color:#926328;
padding:10px 22px;
border-radius:30px;
font-size:14px;
font-weight:700;
margin-bottom:25px;
}

.location-content h2{
font-size: 30px;
font-weight: 600;
line-height:1.15;
margin-bottom:20px;
color:#06695f;
}

.location-content h2 span{
color:#111;
}

.location-content p{
font-size: 15px;
line-height: 1.3;
color: #000;
max-width:480px;
margin-bottom:28px;
}

.location-content h4{
font-size:19px;
font-weight:600;
margin-bottom:20px;
color:#111;
}


/* Bullet Links */

.location-list{
list-style:none;
padding:0;
margin:0;
}

.location-list li{
margin-bottom: 1px;
    padding-left: 18px;
    position: relative;
    font-size: 15px;
    font-weight: 600;
    color: #06695f;
}

.location-list li:before{
content:"•";
position:absolute;
left:0;
top:0;
color:#06695f;
}



/* Right Images */

.location-gallery{
display:flex;
gap:18px;
justify-content:center;
}

.loc-img,
.map-img{
flex:1;
}

.loc-img img,
.map-img img{
width:100%;
height:345px;
object-fit:cover;
border-radius:22px;
}



/* Responsive */

@media(max-width:991px){

.location-content{
margin-bottom:50px;
}

.location-gallery{
flex-direction:column;
}

.loc-img img,
.map-img img{
height:340px;
}

.location-content h2{
font-size:40px;
}

}

@media(max-width:767px){

.location-content h2{
font-size:32px;
}

.location-content h4{
font-size:24px;
}

.location-list li{
font-size:17px;
}

}



.care-section{
    padding:70px 0;
}

.tag-label{
    display:inline-block;
    background:#f7c98d;
    color:#6b4f2d;
    font-size:12px;
    font-weight:600;
    padding:6px 16px;
    border-radius:20px;
    letter-spacing:0.5px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.section-title{
    font-size:30px;
    font-weight:600;
    color:#0b5f5a;
    margin-bottom:15px;
}

.section-text{
    font-size: 15px;
    line-height: 1.3;
    color: #000;
    max-width:620px;
    margin-bottom:50px;
}

.plan-card{
    border-radius:22px;
    padding:35px 30px;
    height:100%;
    transition:0.3s ease;
}

.plan-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,0.08);
}

.bg-green{
    background:#dce7df;
}

.bg-peach{
    background:#f6e2d5;
}

.bg-purple{
    background:#e7e1f4;
}

.icon-box{
    width:72px;
    height:72px;
    background:#eaf5ef;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    font-size:30px;
}

.icon-box img{
	width:110px;
}

.plan-title{
    font-size:25px;
    font-weight:600;
    color:#111;
    margin-bottom:10px;
}

.price{
 font-size: 23px;
    font-weight: 600;
    margin-bottom: 25px;
}

.price span{
    font-size:18px;
    font-weight:500;
}

.plan-list{
    padding-left:18px;
    margin-bottom:30px;
	font-size: 15px;
}

.plan-list li{
    margin-bottom:6px;
    color:#333;
}

.btn-custom{
    background:#0f6a5d;
    color:#fff;
    border:none;
    padding:14px 22px;
    border-radius:8px;
    width:100%;
    font-weight:600;
}

.btn-custom:hover{
    background:#0c574c;
    color:#fff;
}

@media(max-width:991px){
    .section-title{
        font-size:34px;
    }
}

@media(max-width:767px){
    .plan-card{
        margin-bottom:25px;
    }

    .section-title{
        font-size:28px;
    }
}




/* Section Wrapper */
.testimonial-section{
    padding:60px 0 80px;
}

/* CTA Banner */
.cta-box{
    background:#0e6a56;
    border-radius:18px;
    padding:25px 35px;
    color:#fff;
    margin-bottom:70px;
}

.cta-title{
    font-size:23px;
    font-weight:700;
    margin-bottom:8px;
}

.cta-text{
    font-size:16px;
    opacity:0.9;
    margin:0;
}

.cta-btn{
    padding:14px 28px;
    border-radius:10px;
    font-weight:600;
    border:none;
    white-space:nowrap;
}

.btn-green{
    background:#2b8b73;
    color:#fff;
}

.btn-cream{
    background:#f7e4c4;
    color:#111;
}

.btn-green:hover{
    background:#247863;
    color:#fff;
}

.btn-cream:hover{
    background:#efd8b2;
}

/* Heading */
.mini-title{
    color:#b17c38;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.main-title{
    font-size: 35px;
    font-weight: 600;
    color: #111;
    margin-bottom: 36px;
}

/* Testimonial Cards */
.review-card{
    background:#fff;
    padding:30px;
    border-radius:4px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    height:100%;
    transition:0.3s ease;
}

.review-card:hover{
    transform:translateY(-6px);
}

.review-text{
    color: #333;
    line-height: 1.4;
    font-size: 15px;
    margin-bottom: 21px;
}

.review-name{
    font-weight:600;
    font-size:17px;
    color:#111;
    margin:0;
}

/* Responsive */
@media(max-width:991px){
    .cta-title{
        font-size:28px;
    }

    .main-title{
        font-size:38px;
    }
}

@media(max-width:767px){
    .cta-box{
        text-align:center;
    }

    .cta-title{
        font-size:24px;
    }

    .main-title{
        font-size:30px;
        margin-bottom:35px;
    }

    .cta-btn{
        width:100%;
    }
}




.footer-section{
    background:#0c6a56;
    color:#fff;
    padding:70px 0 50px;
}

.footer-logo{
    width:75px;
    margin-bottom:22px;
}

.footer-about{
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
    max-width: 320px;
}

.footer-title{
    font-size:19px;
    font-weight:700;
    margin-bottom:28px;
    color:#fff;
}

.footer-links,
.footer-contact{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li,
.footer-contact li{
    margin-bottom:11px;
}

.footer-links a{
    text-decoration:none;
    color:rgba(255,255,255,0.88);
    transition:0.3s;
    font-size:16px;
}

.footer-links a:hover{
    color:#fff;
    padding-left:6px;
}

.footer-links a i{
    font-size:12px;
    margin-right:10px;
}

.footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    color:rgba(255,255,255,0.88);
    font-size:15px;
    line-height:1.8;
}

.footer-contact i{
    font-size:18px;
    margin-top:3px;
    color:#fff;
}

@media(max-width:991px){
    .footer-title{
        margin-top:30px;
        font-size:18px;
    }
}

@media(max-width:767px){
    .footer-section{
        text-align:center;
    }

    .footer-about{
        margin:auto;
    }

    .footer-contact li{
        justify-content:center;
        text-align:left;
    }
}








/* ================= HERO ================= */
.about-hero{
    background:url('../image/about-us-banner.png') center center/cover no-repeat;
    position:relative;
    padding:120px 0;
}
.about-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}
.about-hero .content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
}
.about-hero h1{
    font-size:40px;
    font-weight:600;
    margin-bottom:18px;
}
.about-hero p{
    max-width:560px;
    margin:auto;
    font-size:16px;
    line-height:1.6;
}

/* =============== COMMON ================= */
.section-space{
    padding:90px 0;
}
.section-title{
    font-size:35px;
    font-weight:600;
    margin-bottom:28px;
}
.section-text{
    font-size:26px;
    line-height:1.8;
    color:#333;
}
.section-text p{
	font-size:15px;
	line-height:18px;
    margin-bottom:22px;
}

/* image framed style */
.img-frame{
    position:relative;
    display:inline-block;
}
.img-frame img{
    width:100%;
    border-radius:0 0 28px 0;
    position:relative;
    z-index:2;
}
.img-frame::after{
    content:"";
    position:absolute;
    right:-26px;
    bottom:-26px;
    width:100%;
    height:100%;
    border:2px solid #ff6b6b;
    border-radius:0 0 28px 0;
    z-index:1;
}

/* ============= VALUES =================== */
.values-section{
    background:#f5f2ec;
    padding:90px 0;
}
.values-title{
    font-size:35px;
    font-weight:600;
}
.values-sub{
    font-size:16px;
    margin-top:18px;
    color:#333;
}
.value-card{
    background:#fff;
    border-radius:18px;
    padding:35px 30px;
    display:flex;
    gap:22px;
    align-items:flex-start;
    height:100%;
}
.value-icon{
    width:68px;
    height:68px;
    min-width:68px;
    border-radius:50%;
    background:#33807a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}
.value-card h4{
font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.value-card p{
    font-size:15px;
    color:#444;
    line-height:1.4;
    margin:0;
}

/* list */
.custom-list{
    padding-left:18px;
}
.custom-list li{
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 12px;
    color: #333;
}

/* responsive */
@media(max-width:991px){
    .about-hero h1,
    .section-title,
    .values-title{
        font-size:42px;
    }
    .about-hero p,
    .section-text,
    .values-sub{
        font-size:20px;
    }
    .value-card h4{
        font-size:26px;
    }
    .value-card p,
    .custom-list li{
        font-size:17px;
    }
}

@media(max-width:767px){
    .about-hero{
        padding:80px 0;
    }
    .about-hero h1,
    .section-title,
    .values-title{
        font-size:34px;
    }
    .about-hero p,
    .section-text,
    .values-sub{
        font-size:17px;
    }
    .section-space,
    .values-section{
        padding:60px 0;
    }
    .img-frame::after{
        right:-14px;
        bottom:-14px;
    }
}









/* ================= SERVICE PAGE CTA SECTION ================= */
.service-page-cta-section{
    background: #0f6a56;
    padding: 39px 0 52px;
    text-align: center;
    border-bottom: 1px solid #3d8776;
}

.service-page-cta-title{
    font-size:35px;
    font-weight:600;
    color:#fff;
    margin-bottom:14px;
    line-height:1.2;
}

.service-page-cta-text{
    font-size: 16px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.92);
    max-width: 580px;
    margin: 0 auto 55px;
}

.service-page-cta-btn-wrap{
    display:flex;
    justify-content:center;
    gap:34px;
    flex-wrap:wrap;
}

.service-page-btn{
   min-width: 238px;
    height: 55px;
    border-radius: 18px;
    font-size: 23px;
    padding-top: 10px;
    font-weight: 600;
    transition: all .3s ease;
}

/* Filled Button */
.service-page-btn-contact{
    background:#f3dfbe;
    color:#111;
    border:none;
}

.service-page-btn-contact:hover{
    background:#ead4ae;
}

/* Outline Button */
.service-page-btn-pricing{
    background:transparent;
    color:#f3dfbe;
    border:2px solid #f3dfbe;
}

.service-page-btn-pricing:hover{
    background:#f3dfbe;
    color:#111;
}

/* =============== Responsive ================= */
@media(max-width:1200px){
    .service-page-cta-title{
        font-size:58px;
    }

    .service-page-cta-text{
        font-size:28px;
    }

    .service-page-btn{
        font-size:26px;
        min-width:220px;
        height:72px;
    }
}

@media(max-width:768px){
    .service-page-cta-section{
        padding:80px 20px;
    }

    .service-page-cta-title{
        font-size:42px;
    }

    .service-page-cta-text{
        font-size:20px;
        margin-bottom:40px;
    }

    .service-page-btn{
        width:100%;
        max-width:320px;
        height:64px;
        font-size:22px;
    }

    .service-page-cta-btn-wrap{
        gap:18px;
    }
}

@media(max-width:480px){
    .service-page-cta-title{
        font-size:34px;
    }

    .service-page-cta-text{
        font-size:18px;
    }
}





/* =========================
   FACILITIES SECTION CSS
========================= */
.facilitys-section{
    padding:110px 0;
    background:#f6f3ed;
}

.facilitys-header{
    text-align:center;
    margin-bottom:90px;
}

.facilitys-main-title{
    font-size:40px;
    font-weight:600;
    color:#111;
    margin-bottom:22px;
}

.facilitys-main-text{
    max-width: 600px;
    margin: auto;
    font-size: 17px;
    line-height: 1.4;
    color: #333;
}

/* layout spacing */
.facilitys-block{
    margin-bottom:110px;
}

/* image */
.facilitys-image{
    width:100%;
    border-radius:6px;
    object-fit:cover;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* content */
.facilitys-content{
    padding:10px 10px 10px 35px;
}

.facilitys-content-left{
    padding:10px 35px 10px 10px;
}

.facilitys-title{
    font-size:35px;
    font-weight:600;
    color:#0c6a56;
    margin-bottom:28px;
    line-height:1.2;
}

.facilitys-text{
	font-size: 15px;
    line-height: 18px;
    margin-bottom: 22px;
    color:#222;
}

.facilitys-subtitle{
    font-size:20px;
    font-weight:600;
    margin-bottom:14px;
    color:#111;
}

.facilitys-list{
    margin:18px 0 28px;
    padding-left:28px;
}

.facilitys-list li{
margin-bottom: 1px;
    padding-left: 8px;
    position: relative;
    font-size: 15px;
    font-weight: 600;
    color: #06695f;
}

.facilitys-note{
    font-size: 15px;
    line-height: 18px;
    color:#222;
}

/* responsive */
@media(max-width:1200px){
    .facilitys-main-title{
        font-size:58px;
    }
    .facilitys-title{
        font-size:46px;
    }
    .facilitys-main-text,
    .facilitys-text,
    .facilitys-note{
        font-size:22px;
    }
    .facilitys-subtitle{
        font-size:28px;
    }
    .facilitys-list li{
        font-size:20px;
    }
}

@media(max-width:991px){
    .facilitys-content,
    .facilitys-content-left{
        padding:35px 0 0;
    }
    .facilitys-block{
        margin-bottom:80px;
    }
}

@media(max-width:768px){
    .facilitys-section{
        padding:70px 0;
    }

    .facilitys-header{
        margin-bottom:60px;
    }

    .facilitys-main-title{
        font-size:42px;
    }

    .facilitys-title{
        font-size:34px;
    }

    .facilitys-main-text,
    .facilitys-text,
    .facilitys-note{
        font-size:18px;
    }

    .facilitys-subtitle{
        font-size:24px;
    }

    .facilitys-list li{
        font-size:17px;
    }

    .facilitys-block{
        margin-bottom:60px;
    }
}




/* ===================================
   TESTIMONIAL SECTION
=================================== */
.family-review-section{
    background:#f7f4ee;
    padding:110px 0;
}

.family-review-header{
    text-align:center;
    margin-bottom:70px;
}

.family-review-title{
    font-size:40px;
    font-weight:600;
    margin-bottom:22px;
}

.family-review-text{
    max-width: 550px;
    margin: auto;
    font-size: 17px;
    line-height: 1.4;
    color: #333;
}

/* Cards */
.family-review-card{
    background:#fff;
    border-radius:8px;
    padding:34px;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
    height:100%;
}

.family-review-quote{
    font-size: 15px;
    line-height: 1.4;
    font-style: italic;
    color: #222;
    margin-bottom: 28px;
}

.family-review-user{
    display:flex;
    align-items:center;
    gap:18px;
}

.family-review-avatar{
    width:62px;
    height:62px;
    background:#d9d9d9;
    border-radius:4px;
    flex-shrink:0;
}

.family-review-name{
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 2px;
}

.family-review-role{
    font-size:17px;
    color:#0c6a56;
    font-style:italic;
}

/* ===================================
   TRUST SECTION
=================================== */
.family-trust-section{
    background:#ffffff;
    padding:110px 0;
}

.family-trust-header{
    text-align:center;
    margin-bottom:70px;
}

.family-trust-title{
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 28px;
}

.family-trust-text{
max-width: 518px;
    margin: auto;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}


/* stats */
.family-trust-box{
    background:#f7f4ee;
    border-radius:10px;
    padding:13px 20px;
    text-align:center;
    height:100%;
}

.family-trust-number{
    font-size:33px;
    font-weight:700;
    color:#0c6a56;
    line-height:1.1;
    margin-bottom:10px;
}

.family-trust-label{
    font-size:18px;
    color:#222;
}

/* Responsive */
@media(max-width:1200px){
    .family-review-title,
    .family-trust-title{
        font-size:56px;
    }

    .family-review-text,
    .family-trust-text{
        font-size:22px;
    }

    .family-review-quote{
        font-size:20px;
    }

    .family-review-name,
    .family-trust-label{
        font-size:20px;
    }

    .family-review-role{
        font-size:18px;
    }

    .family-trust-number{
        font-size:46px;
    }
}

@media(max-width:768px){
    .family-review-section,
    .family-trust-section{
        padding:70px 0;
    }

    .family-review-title,
    .family-trust-title{
        font-size:38px;
    }

    .family-review-text,
    .family-trust-text{
        font-size:18px;
    }

    .family-review-card{
        padding:24px;
    }

    .family-review-quote{
        font-size:17px;
    }

    .family-review-name{
        font-size:18px;
    }

    .family-review-role{
        font-size:16px;
    }

    .family-review-avatar{
        width:50px;
        height:50px;
    }

    .family-trust-number{
        font-size:36px;
    }

    .family-trust-label{
        font-size:18px;
    }
}





/* Wrapper */
.contact-section-wrapper {
  background-color: #fef9f2;
  font-family: 'Segoe UI', sans-serif;
}

/* Title */
.contact-section-wrapper .cs-title {
  font-weight: 700;
}

.contact-section-wrapper .cs-subtitle {
  color: #555;
}

/* Contact Info */
.contact-section-wrapper .cs-contact-info .cs-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-section-wrapper .cs-contact-info i {
  font-size: 20px;
  color: #0f5132;
  background: #d1e7dd;
  padding: 10px;
  border-radius: 50%;
  margin-right: 15px;
}

.contact-section-wrapper .cs-contact-info h6 {
  margin: 0;
  font-weight: 600;
}

.contact-section-wrapper .cs-contact-info p {
  margin: 0;
  font-size: 14px;
}

.contact-section-wrapper .cs-contact-info small {
  color: #777;
}

/* Form Card */
.contact-section-wrapper .cs-form-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Buttons */
.contact-section-wrapper .cs-btn-primary {
  background-color: #c40000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  width: 170px;
}

.contact-section-wrapper .cs-btn-primary:hover {
  background-color: #a80000;
}

.contact-section-wrapper .cs-btn-outline {
  border: 1px solid #333;
  padding: 10px 20px;
  border-radius: 6px;
  background: transparent;
  width: 170px;
}








/* SECTION BG */

.pricing-section{
background:#f7f4ec;
padding:90px 0;
}

.pricing-info{
background:#fff;
padding:90px 0;
}


/* Heading */

.pricing-head h2{
font-size:35px;
font-weight:600;
margin-bottom:15px;
}

.pricing-head p{
font-size:15px;
color:#000;
line-height:1.4;
max-width:600px;
margin:auto;
margin-bottom:50px;
}



/* Cards */

.pricing-card{
background:#fff;
padding:28px;
border-radius:12px;
box-shadow:0 6px 18px rgba(0,0,0,0.05);
height:100%;
}

.pricing-card h4{
font-size:22px;
font-weight:700;
margin-bottom:8px;
}

.sub{
font-size:13px;
color:#0a8b6f;
display:block;
margin-bottom:12px;
}

.pricing-card p{
font-size:14px;
color:#666;
margin-bottom:18px;
}

.highlight-box{
background:#efe7dc;
padding:12px;
border-radius:6px;
font-size:13px;
margin-bottom:20px;
}

.pricing-card h5{
font-size:15px;
font-weight:700;
margin-bottom:10px;
}

.pricing-card ul{
padding-left:18px;
margin-bottom:20px;
}

.pricing-card ul li{
font-size:14px;
margin-bottom:6px;
color:#444;
}


/* Button */

.price-btn{
display:block;
text-align:center;
background:#06695f;
color:#fff;
padding:12px;
border-radius:6px;
text-decoration:none;
font-size:14px;
font-weight:600;
}



/* Bottom Info Cards */

.info-card{
background:#f2ebe1;
padding:30px;
border-radius:12px;
}

.info-card h4{
font-size:20px;
font-weight:700;
margin-bottom:15px;
}

.info-card ul{
padding-left:18px;
margin:0;
}

.info-card ul li{
font-size:14px;
margin-bottom:10px;
color:#444;
}



/* Responsive */

@media(max-width:991px){

.pricing-head h2{
font-size:38px;
}

}

@media(max-width:767px){

.pricing-head h2{
font-size:30px;
}

.pricing-head p{
font-size:15px;
}

}