
/* =========================
RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --primary:#ff7a00;
    --secondary:#024e94;
    --dark:#000;
    --light:#f6f7fb;
    --white:#ffffff;
    --text:#000;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:var(--dark);
    overflow-x:hidden;
    padding-bottom:90px;
}

img{
    width:100%;
    height:auto;
    display:block;
}

.container{
    width:100%;
    max-width:600px;
    margin:auto;
    padding-left:15px;
    padding-right:15px;
}

/* =========================
TOP HEADER
========================= */

.top-header{
    background:var(--secondary);
    color:#fff;
    padding:10px 0;
    font-size:13px;
}

.top-header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
}

.top-left{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.top-left div{
    display:flex;
    align-items:center;
    gap:8px;
}

/* =========================
NAVBAR
========================= */

.navbar{
    background:#fff;
    padding:14px 0;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.nav-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.logo{
    font-size:28px;
    font-weight:800;
    color:var(--secondary);
    width: 200px;
}

.logo span{
    color:var(--primary);
}

.nav-buttons{
    display:flex;
    gap:10px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    text-decoration:none;
    border:none;
    border-radius:12px;
    padding:12px 18px;
    font-weight:600;
    font-size:14px;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-2px);
}

.btn-call{
    background:var(--primary);
    color:#fff;
}

.btn-whatsapp{
    background:#25D366;
    color:#fff;
}

/* =========================
HERO
========================= */

.hero{
    background:
    linear-gradient(rgba(7,60,55,.88),rgba(7,60,55,.88)) ;    
    padding:35px 0 60px;
}

.hero-image{
    border-radius:24px;
    overflow:hidden;
    margin-bottom:25px;
}

.hero-image img{
    height:300px;
    object-fit:cover;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:50px;
    border:1px solid rgba(255,255,255,.2);
    background:rgba(255,255,255,.05);
    color:#ffd9b8;
    margin-bottom:22px;
    font-size:13px;
}

/* Smooth Online Dot */
.online-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#00ff6a;
    position:relative;
    box-shadow:0 0 8px #00ff6a;
}

.online-dot::after{
    content:'';
    position:absolute;
    top:50%;
    left:50%;
    width:100%;
    height:100%;
    border-radius:50%;
    background:rgba(0,255,106,0.45);
    transform:translate(-50%,-50%);
    animation:smoothPulse 2s ease-out infinite;
}

@keyframes smoothPulse{
    0%{
        transform:translate(-50%,-50%) scale(1);
        opacity:0.8;
    }
    70%{
        transform:translate(-50%,-50%) scale(2.8);
        opacity:0;
    }
    100%{
        opacity:0;
    }
}

.hero-content h1{
    font-family:'Poppins',sans-serif;
    font-size:52px;
    line-height:1.15;
    color:#fff;
    margin-bottom:20px;
}

.hero-content h1 span{
    color:var(--primary);
}

.hero-content p{ 
    line-height:1.9;
    font-size:16px;
    margin-bottom:30px;
    color: var(--white);
}

.hero-buttons{
    display:flex;
    gap:14px;
    margin-bottom:30px;
}

.hero-buttons .btn{
    flex:1;
    padding:16px;
}

.btn-primary{
    background:var(--primary);
    color:#fff;
}

.btn-outline{
    border:2px solid rgba(255,255,255,.25);
    color:#fff;
}

.hero-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:35px;
}

.hero-features div{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:14px;
}

.hero-features i{
    color:#ffd54f;
}

/* =========================
FORM CARD
========================= */

.form-card{
    background:#fff;
    border-radius:28px;
    padding:25px;
}

.form-card h2{
    font-family:'Poppins',sans-serif;
    color:var(--secondary);
    font-size:38px;
    margin-bottom:10px;
}

.form-card p{
    margin-bottom:20px;
}

.form-group{
    margin-bottom:18px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    color:#555;
    font-weight:500;
}

.form-control{
    width:100%;
    padding:15px 16px;
    border-radius:12px;
    border:1px solid #d7dde5;
    background:#f7f8fb;
    font-family:'Poppins',sans-serif;
    outline:none;
}

textarea.form-control{
    resize:none;
}

.submit-btn{
    width:100%;
    border:none;
    padding:16px;
    border-radius:12px;
    background:var(--primary);
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
}

.form-note{
    text-align:center;
    margin-top:14px;
    font-size:13px;
}
 .h6, h6 {
    font-size: 1rem;
}

/* =========================
SECTION COMMON
========================= */

section{
    overflow:hidden;
}

.section-heading{
    text-align:center;
    margin-bottom:45px;
}

.section-tag{
    display:inline-block;
    padding:8px 16px;
    border-radius:50px;
    background:#ffe7d0;
    color:var(--primary);
    font-size:12px;
    font-weight:700;
    margin-bottom:18px;
}

.section-heading h2{
    font-family:'Poppins',sans-serif;
    font-size:42px;
    color:var(--secondary);
    line-height:1.2;
    margin-bottom:16px;
}

/* =========================
EXPERTISE
========================= */

.expertise-section{
    padding:40px 0;
    background:#f7faf9;
}

.expertise-grid{
    display:grid;
    gap:25px;
}

.expertise-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.expertise-image img{
    height:240px;
    object-fit:cover;
}

.expertise-content{
    padding:22px;
}

.small-badge{
    display:inline-block;
    padding:7px 14px;
    border-radius:50px;
    background:var(--primary);
    color:#fff;
    font-size:11px;
    font-weight:700;
    margin-bottom:14px;
}

.expertise-content h3{
    color:var(--secondary);
    margin-bottom:12px;
    font-size:26px;
}

.expertise-content p{
    line-height:1.8;
    margin-bottom:16px;
}

.treatment-tags{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:20px;
}

.treatment-tags span{
    background:#f1f5f9;
    padding:8px 12px;
    border-radius:30px;
    font-size:12px;
}

.card-buttons{
    display:flex;
    gap:12px;
}

.book-btn,
.whatsapp-btn{
    flex:1;
    padding:10px 4px 10px 4px;
    border-radius:5px;
    text-align:center;
    text-decoration:none;
    color:#fff;
    font-size:12px;
    font-weight:600;
}

.book-btn{
    background:var(--primary);
}

.whatsapp-btn{
    background:#25D366;
}

/* =========================
FEATURES
========================= */

.features-section{
    padding:80px 0;
}

.features-grid{
    display:grid;
    gap:22px;
}

.feature-card{
    background:#fff;
    border:1px solid #edf0f5;
    border-radius:22px;
    padding:28px;
}

.feature-icon{
    width:65px;
    height:65px;
    border-radius:18px;
    background:#fff2e5;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary);
    font-size:28px;
    margin-bottom:18px;
}

.feature-card h3{
    color:var(--secondary);
    margin-bottom:14px;
}

/* =========================
SUPPORT
========================= */

.support-section{
    padding:80px 0;
    text-align:center;
    color:#fff;
    background:
    linear-gradient(rgba(15,143,131,.9),rgba(7,60,55,.92)),
    url('https://images.unsplash.com/photo-1493836512294-502baa1986e2?q=80&w=1200&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
}

.support-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.1);
    margin-bottom:20px;
}

.support-section h2{
    font-family:'Poppins',sans-serif;
    font-size:46px;
    line-height:1.2;
    margin-bottom:18px;
}

.support-section h2 span{
    display:block;
    color:#ffc166;
}

.support-section p{
    line-height:1.9;
    color:rgba(255,255,255,.85);
    margin-bottom:28px;
}

.support-buttons{
    display:flex;
    gap:14px;
}

.support-call,
.support-whatsapp{
    flex:1;
    text-decoration:none;
    color:#fff;
    padding:15px;
    border-radius:12px;
    font-weight:600;
}

.support-call{
    background:#0f766e;
}

.support-whatsapp{
    background:#25D366;
}

/* =========================
BOOKING CTA
========================= */

.booking-cta{
    padding:40px 0;
}

.booking-wrapper{
    background:#f7faf9;
    border-radius:26px;
    padding:30px;
}

.green{
    background:#dff8ef;
    color:#0f8f83;
}

.booking-wrapper h2{
    font-family:'Poppins',sans-serif;
    color:#253047;
    font-size:40px;
    margin-bottom:16px;
}

.booking-wrapper p{
    margin-bottom:25px;
    line-height:1.8;
}

.booking-buttons{
    display:flex;
    gap:12px;
}

.call-cta,
.book-cta{
    flex:1;
    text-align:center;
    padding:15px;
    border-radius:12px;
    text-decoration:none;
    color:#fff;
    font-weight:600;
}

.call-cta{
    background:#0f766e;
}

.book-cta{
    background:var(--primary);
}

/* =========================
REVIEWS SLIDER
========================= */

.reviews-section{
    padding:40px 0;
    background:linear-gradient(rgba(7,60,55,.92),rgba(15,143,131,.92));
}

.review-tag{
    background:rgba(255,255,255,.1);
    color:#d8fff9;
}

.review-title{
    color:#fff;
    font-family:'Poppins',sans-serif;
    font-size:42px;
    margin-bottom:14px;
}

.review-subtitle{
    color:rgba(255,255,255,.8);
    margin-bottom:35px;
}

.review-slider{
    overflow:hidden;
    position:relative;
}

.review-track{
    display:flex;
    width:300%;
    animation:slider 15s infinite;
}

.review-card{
    width:100%;
    margin-right:20px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:25px;
    color:#fff;
}

.stars{
    color:#ffd54f;
    font-size:22px;
    margin-bottom:18px;
}

.review-card p{
    line-height:1.9;
    margin-bottom:20px;
}

.review-user{
    display:flex;
    align-items:center;
    gap:14px;
}

.review-avatar{
    width:52px;
    height:52px;
    border-radius:50%;
    background:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

@keyframes slider{

    0%{
        transform:translateX(0%);
    }

    30%{
        transform:translateX(0%);
    }

    35%{
        transform:translateX(-100%);
    }

    65%{
        transform:translateX(-100%);
    }

    70%{
        transform:translateX(-200%);
    }

    95%{
        transform:translateX(-200%);
    }

    100%{
        transform:translateX(0%);
    }

}

/* =========================
HEALING CTA
========================= */

.healing-section{
    padding:80px 0;
    background:linear-gradient(135deg,#ff8b1e,#f6a000);
    text-align:center;
    color:#fff;
}

.healing-section h2{
    font-family:'Poppins',sans-serif;
    font-size:46px;
    margin-bottom:18px;
}

.healing-section p{
    margin-bottom:28px;
}

.healing-buttons{
    display:flex;
    gap:14px;
}

.healing-book,
.healing-call{
    flex:1;
    padding:15px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
}

.healing-book{
    background:#fff;
    color:#ff7a00;
}

.healing-call{
    border:2px solid rgba(255,255,255,.3);
    color:#fff;
}

/* =========================
FOOTER FORM
========================= */

.footer-form-section{
    padding:30px 0;
    background:#f7faf9;
}

.footer-form-card{
    background:linear-gradient(135deg,#0f8f83,#0a5f57);
    border-radius:26px;
    padding:30px;
    color:#fff;
}

.footer-form-card h2{
    font-family:'Poppins',sans-serif;
    font-size:42px;
    margin-bottom:10px;
}

.footer-form-card p{
    margin-bottom:25px;
}

.footer-form{
    display:grid;
    gap:16px;
}

.footer-form input,
.footer-form textarea{
    width:100%;
    padding:15px 16px;
    border:none;
    border-radius:12px;
    background:rgba(255,255,255,.1);
    color:#fff;
    outline:none;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder{
    color:rgba(255,255,255,.7);
}

.footer-form button{
    border:none;
    padding:16px;
    border-radius:12px;
    background:var(--primary);
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
}

/* =========================
FOOTER
========================= */

.footer{
    background:#062f2b;
    padding:70px 0 0px;
    color:#fff;
    text-align: left;
}

.footer-logo{
    font-size:32px;
    font-weight:800;
    margin-bottom:20px;
}

.footer-text{
    line-height:1.9;
    color:rgba(255,255,255,.8);
    margin-bottom:28px;
}

.footer-contact{
    display:grid;
    gap:14px;
    margin-bottom:30px;
}

.footer-contact div{
    display:flex;
    gap:10px;
}

.footer-service-title{
    margin-bottom:18px;
}

.footer-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.footer-tags span{
    padding:10px 14px;
    border-radius:30px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    font-size:13px;
}

.footerdisclaimer{
    width: 100%;
    padding: 18px 20px;
    margin-top: 0px;
    background: #111827;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    line-height: 1.8;
    text-align: left;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Optional hover effect for links */
.footerdisclaimer a{
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}

.footerdisclaimer a:hover{
    color: #4fc3f7;
}

/* Responsive */
@media(max-width:768px){

    .footerdisclaimer{
        font-size: 13px;
        padding: 16px 15px;
        line-height: 1.7;
    }

}

/* =========================
STICKY FOOTER BUTTONS
========================= */

.footer-bottom-sticky{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#fff;
    padding:10px;
    z-index:9999;
    box-shadow:0 -4px 20px rgba(0,0,0,.1);
}

.sticky-wrapper{
    max-width:600px;
    margin:auto;
    display:flex;
    gap:10px;
}

.sticky-wrapper a{
    flex:1;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    border-radius:12px;
    text-decoration:none;
    color:#fff;
    font-weight:600;
}

.sticky-whatsapp{
    background:#25D366;
}

.sticky-call{
    background:var(--primary);
}
/* =========================
   WHY SECTION
========================= */
.why-section {
    padding: 40px 0 20px 0;
    background: #fff;
}

.why-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    transition: 0.3s;
}

.why-item:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 55px;
    height: 55px;
    background: rgba(3,116,218,0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    font-size: 20px;
}

.why-text h6 {
    font-weight: 700;
}

.why-text p {
    font-size: 14px;
    color: #666;
}

/* =========================
   SLIDER CARDS
========================= */
.card-box {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card-box img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.5s;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    color: #fff;
    background: linear-gradient(transparent, rgba(0,0,0,0.4));
}

.card-overlay h6 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white-bg);
}

.card-overlay p {
    color: var(--accent);
    font-weight: 600;
}

.card-box:hover img {
    transform: scale(1.08);
}
.card-box:hover {
    transform: translateY(-0px);
}
 

/* =========================
   EXPLORE CARDS
========================= */
.explore-card {
    border-radius: 0px;
    overflow: hidden;
    margin-bottom: 15px;
}

.explore-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.5s;
}

.explore-card:hover img {
    transform: scale(1.08);
}

.explore-content h5 {
    font-weight: 700;
}

.explore-content p {
    font-size: 14px;
    color: #555;
}

/* =========================
   CATEGORY BOX
========================= */
.category-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.category-box i {
    font-size: 18px;
    background: #f1f1f1;
    padding: 12px;
    border-radius: 50%;
}

.category-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.category-box:hover i {
    background: var(--primary);
    color: #fff;
}

/* =========================
   ANIMATION
========================= */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}
 
/* =========================
COMMON SWIPER
========================= */

.swiper{
    width:100%;
    padding:10px 5px 5px;
    overflow:hidden;
}

.swiper-slide{
    height:auto;
}

.swiper-button-next,
.swiper-button-prev{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#fff;
    color:#0f8f83;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size:16px;
    font-weight:700;
}

.swiper-pagination-bullet{
    width:10px;
    height:10px;
    opacity:1;
    background:#d1d5db;
}

.swiper-pagination-bullet-active{
    background:var(--secondary);
}

/* =========================
WHY BOOK SLIDER
========================= */

.why-title{
    text-align:center;
    font-size:40px;
    margin-bottom:15px;
    color:var(--secondary);
    font-family:'Poppins',sans-serif;
}

.whySwiper{
    padding-bottom:55px;
}

.why-item{
    background:#fff;
    padding:24px;
    border-radius:22px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    height:100%;
    margin-bottom: 0px !important;
}

.icon-box{
    width:90px;
    height:65px;
    border-radius:18px;
    background:rgba(3, 116, 218, 0.1);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
}

.icon-box i{
    font-size:26px;
    color:var(--secondary);
}

.why-text h6{
    font-size:20px;
    margin-bottom:10px;
    color:var(--secondary);
}

.why-text p{
    font-size:14px;
    line-height:1.8;
}

/* =========================
HOLIDAY SLIDER
========================= */

.holidayssec,
.familysec{
    padding:40px 0 40px 0;
    background:#f7faf9;
}

.section-title{
    font-size:38px;
    margin-bottom:5px;
    color:var(--secondary);
    font-family:'Poppins',sans-serif;
}

.card-box{
    border-radius:24px;
    overflow:hidden;
    position:relative;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.card-box img{
    width:100%;
    height:340px;
    object-fit:cover;
    transition:.5s;
}

.card-box:hover img{
    transform:scale(1.08);
}

.card-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:25px;
    background:linear-gradient(transparent,rgba(0,0,0,.4));
}

.card-overlay h6{
    color:#fff;
    font-size:28px;
    margin-bottom:8px;
}

.card-overlay p{
    color:#ffc166;
    font-size:18px;
    font-weight:600;
}
.card p strong {
    margin-top: 15px;
    display: flex;
}
/* =========================
TESTIMONIAL SLIDER
========================= */

.testimonialSlider{
    padding-bottom:60px;
}

.testimonial-card{
    background:#fff;
    padding:30px;
    border-radius:22px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border-top:5px solid var(--primary);
    height:100%;
}

.testimonial-card .stars{
    color:#ffb400;
    font-size:22px;
    margin-bottom:15px;
}

.testimonial-card p{
    line-height:1.9;
    margin-bottom:20px;
    color:#555;
}

.testimonial-card h6{
    color:var(--secondary);
    font-size:18px;
    margin-bottom:6px;
}

.testimonial-card small{
    color:#888;
}
/* new CSS ADD */
.offer {
    padding-top: 15px;
}

.offer {
    margin-left: 15px;
    margin-right: 15px;
}
.mb20 {
    margin-bottom: 20px;
}
.card {
   border-radius: 16px 16px 0 0;
}
.card-header {
    border-radius: 15px 15px 0 0 !important;
}
.card h4 {
    margin: 0;
    padding: 10px 15px;
}
.card-body {
    background-color: #f0fdfa;
    padding: 15px;
    margin-bottom: 15px;
}
.whycallus ul {
    padding: 0px;
    margin: 0;
}
.whycallus ul li {
    list-style: none;
    padding: 0px;
    line-height: 1.7;
    padding-left: 22px;
}
.whycallus li:before {
    content: '\f046';
    font-family: 'FontAwesome';
    margin-left: -25px;
    padding-right: 10px;
}
/* =========================================
AIRLINE SLIDER
========================================= */

.airline-slider-section{
    padding:40px 0;
    background:#fff;
    overflow:hidden;
}

.airline-slider-section h2{
    margin-bottom:20px;
}

.airlineSwiper{
    width:100%;
}

.airlineSwiper .swiper-slide{
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    border-radius:10px;
    padding:15px; 
    transition:0.4s;
    border:1px solid #eee;
}

.airlineSwiper .swiper-slide:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.airlineSwiper img{
    width:160px;
    height:70px;
    object-fit:contain;  
    transition:0.4s;
}

.airlineSwiper .swiper-slide:hover img{     
    opacity:1;
}
/* =========================
RESPONSIVE
========================= */

@media(max-width:768px){

.section-title,
.why-title{
    font-size:30px;
}

.card-box img{
    height:280px;
}

.swiper-button-next,
.swiper-button-prev{
    display:none;
}

}

/* =========================
RESPONSIVE
========================= */

@media(max-width:768px){

.hero-content h1{
    font-size:40px;
}

.hero-buttons,
.card-buttons,
.support-buttons,
.booking-buttons,
.healing-buttons{
    flex-direction:row;
}

.hero-buttons .btn,
.book-btn,
.whatsapp-btn,
.support-call,
.support-whatsapp,
.call-cta,
.book-cta,
.healing-book,
.healing-call{
    width:100%;
}

.section-heading h2,
.review-title,
.support-section h2,
.healing-section h2,
.booking-wrapper h2,
.footer-form-card h2{
    font-size:34px;
}

}

@media(max-width:480px){

.hero-content h1{
    font-size:34px;
}

.section-heading h2,
.review-title{
    font-size:28px;
}

.support-section h2,
.healing-section h2,
.booking-wrapper h2,
.footer-form-card h2{
    font-size:30px;
}
/* 
.hero-features{
    grid-template-columns:1fr;
} */

.stats-box{
    grid-template-columns:1fr;
}

.top-header .container,
.nav-wrapper{
    justify-content:center;
}

}