/*====================================================
BEYOND WELLNESS
Premium Healthcare Consultancy
======================================================*/

/*====================================
ROOT VARIABLES
====================================*/

:root{

--primary:#102B2B;
--secondary:#174F4A;
--accent:#BD9B62;
--sage:#8FAE9E;
--light:#DFECE6;
--white:#ffffff;
--dark:#0b1818;
--text:#5b6464;

--heading:'Playfair Display',serif;
--body:'DM Sans',sans-serif;

--radius:18px;
--radius-lg:28px;

--shadow-sm:0 8px 24px rgba(0,0,0,.08);

--shadow-md:0 18px 45px rgba(0,0,0,.12);

--shadow-lg:0 30px 70px rgba(0,0,0,.18);

--transition:.35s ease;

}

/*====================================
RESET
====================================*/

*{

margin:0;

padding:0;

box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:var(--body);

font-size:16px;

line-height:1.8;

color:var(--text);

background:#fff;

overflow-x:hidden;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

transition:var(--transition);

}

ul{

list-style:none;

padding:0;

margin:0;

}

/*====================================
TYPOGRAPHY
====================================*/

h1,h2,h3,h4,h5{

font-family:var(--heading);

color:var(--primary);

font-weight:700;

line-height:1.2;

}

h1{

font-size:clamp(2.8rem,5vw,4.8rem);

}

h2{

font-size:clamp(2rem,4vw,3.2rem);

margin-bottom:25px;

}

h3{

font-size:1.5rem;

}

p{

margin-bottom:18px;

}

.section-tag{

display:inline-block;

padding:8px 18px;

background:rgba(23,79,74,.08);

color:var(--secondary);

border-radius:50px;

font-weight:600;

font-size:.9rem;

letter-spacing:.05em;

text-transform:uppercase;

}

.section-title{

margin-top:18px;

margin-bottom:20px;

}

.section-subtitle{

max-width:700px;

margin:auto;

}

/*====================================
PRELOADER
====================================*/

#preloader{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:#fff;

display:flex;

justify-content:center;

align-items:center;

flex-direction:column;

z-index:99999;

}

.loader-logo img{

width:140px;

margin-bottom:30px;

}

.loader-spinner{

width:52px;

height:52px;

border-radius:50%;

border:4px solid #ddd;

border-top:4px solid var(--accent);

animation:spin 1s linear infinite;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

/*====================================
NAVBAR
====================================*/

.navbar{

padding:22px 0;

transition:.4s;

background:transparent;

}

.navbar.scrolled{

background:#fff;

padding:14px 0;

box-shadow:var(--shadow-sm);

}

.logo{

height:60px;

transition:.3s;

}

.nav-link{

color:#fff;

font-weight:600;

margin-left:28px;

position:relative;

}

.navbar.scrolled .nav-link{

color:var(--primary);

}

.nav-link::after{

content:"";

position:absolute;

bottom:-6px;

left:0;

width:0;

height:2px;

background:var(--accent);

transition:.3s;

}

.nav-link:hover::after{

width:100%;

}

.navbar-toggler{

border:none;

font-size:1.4rem;

color:#fff;

}

.navbar.scrolled .navbar-toggler{

color:var(--primary);

}


.navbar-brand{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
}

.navbar-brand img{
    height:55px;
    width:auto;
}

.navbar-brand{
    display:flex;
    align-items:center;
}
.logo{
    width:60px;
    height:60px;
}

.brand-text{
    display:flex;
    flex-direction:column;
    line-height:1;
}

.brand-top{
    font-family:'Cormorant Garamond',serif;
    font-size:30px;
    font-weight:700;
    color:#0B4D45;
    letter-spacing:1px;
}

.brand-bottom{
    font-family:'Cormorant Garamond',serif;
    font-size:22px;
    font-weight:600;
    color:#C8A15A;
    letter-spacing:3px;
    text-transform:uppercase;
}
/*====================================
BUTTONS
====================================*/

.btn-primary-custom{

background:var(--primary);

color:#fff;

padding:16px 34px;

border-radius:50px;

font-weight:600;

display:inline-flex;

align-items:center;

gap:10px;

box-shadow:var(--shadow-sm);

transition:.35s;

}

.btn-primary-custom:hover{

background:var(--secondary);

transform:translateY(-4px);

color:#fff;

}

.btn-outline-custom{

padding:16px 34px;

border:2px solid #fff;

border-radius:50px;

font-weight:600;

color:#fff;

margin-left:15px;

}

.btn-outline-custom:hover{

background:#fff;

color:var(--primary);

}

.btn-consultation{

background:var(--accent);

padding:14px 28px;

border-radius:50px;

font-weight:700;

color:#fff;

}

.btn-consultation:hover{

background:var(--secondary);

color:#fff;

}

/*====================================
HERO
====================================*/

.hero-section{

position:relative;

min-height:100vh;

display:flex;

align-items:center;

background:

linear-gradient(rgba(16,43,43,.75),

rgba(16,43,43,.72)),

url("../images/hero.webp")

center/cover

no-repeat;

overflow:hidden;

}

.hero-content{

color:#fff;

z-index:5;

position:relative;

}

.hero-tag{

display:inline-block;

padding:10px 20px;

background:rgba(255,255,255,.15);

backdrop-filter:blur(10px);

border-radius:50px;

margin-bottom:24px;

}

.hero-content h1{

color:#fff;

margin-bottom:25px;

}

.hero-content p{

font-size:1.15rem;

max-width:580px;

margin-bottom:35px;

}

#typed-text{

color:var(--accent);

}

.hero-buttons{

margin-bottom:40px;

}

.hero-features{

display:flex;

gap:30px;

flex-wrap:wrap;

font-weight:600;

}

.hero-features i{

color:var(--accent);

margin-right:8px;

}

/*====================================
HERO IMAGE
====================================*/

.hero-image{

position:relative;

}

.hero-image img{

border-radius:var(--radius-lg);

box-shadow:var(--shadow-lg);

}

.floating-card{

position:absolute;

display:flex;

align-items:center;

gap:15px;

padding:18px 22px;

background:rgba(255,255,255,.95);

backdrop-filter:blur(20px);

border-radius:18px;

box-shadow:var(--shadow-md);

animation:float 4s ease-in-out infinite;

}

.floating-card i{

font-size:1.8rem;

color:var(--accent);

}

.floating-card h5{

margin:0;

font-size:1.3rem;

}

.floating-card p{

margin:0;

font-size:.9rem;

}

.card-one{

top:8%;

left:-40px;

}

.card-two{

right:-35px;

top:42%;

}

.card-three{

bottom:5%;

left:30px;

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

}

.scroll-indicator{

position:absolute;

bottom:35px;

left:50%;

transform:translateX(-50%);

}

.scroll-indicator span{

display:block;

width:30px;

height:50px;

border:2px solid #fff;

border-radius:30px;

position:relative;

}

.scroll-indicator span::before{

content:"";

position:absolute;

top:8px;

left:50%;

width:6px;

height:6px;

border-radius:50%;

background:#fff;

transform:translateX(-50%);

animation:scroll 2s infinite;

}

@keyframes scroll{

0%{

opacity:1;

top:8px;

}

100%{

opacity:0;

top:28px;

}

}

/*====================================
TRUSTED BY
====================================*/

.trusted-section{

padding:100px 0;

background:#fff;

}

.trusted-logo{

height:120px;

display:flex;

justify-content:center;

align-items:center;

padding:25px;

background:#fff;

border-radius:18px;

border:1px solid rgba(0,0,0,.05);

transition:var(--transition);

}

.trusted-logo img{

max-height:60px;

filter:grayscale(100%);

opacity:.65;

transition:var(--transition);

}

.trusted-logo:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-md);

}

.trusted-logo:hover img{

filter:none;

opacity:1;

}

/*====================================
WHY CHOOSE US
====================================*/

.why-section{

padding:120px 0;

background:#f8fbfa;

}

.feature-card{

background:#fff;

padding:35px;

border-radius:22px;

height:100%;

box-shadow:var(--shadow-sm);

transition:var(--transition);

border-top:4px solid transparent;

}

.feature-card:hover{

transform:translateY(-10px);

border-color:var(--accent);

box-shadow:var(--shadow-lg);

}

.feature-icon{

width:70px;

height:70px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

background:rgba(189,155,98,.10);

margin-bottom:20px;

}

.feature-icon i{

font-size:30px;

color:var(--accent);

}

.feature-card h5{

margin-bottom:15px;

}

/*====================================
ABOUT
====================================*/

.about-home{

padding:120px 0;

background:#fff;

}

.about-home img{

border-radius:28px;

box-shadow:var(--shadow-lg);

}

.mini-stat{

padding:25px;

background:var(--light);

border-radius:18px;

text-align:center;

transition:.35s;

}

.mini-stat:hover{

transform:translateY(-6px);

background:var(--primary);

color:#fff;

}

.mini-stat:hover h3{

color:#fff;

}

.mini-stat h3{

font-size:2.5rem;

color:var(--accent);

margin-bottom:10px;

}

/*====================================
DIVIDER
====================================*/

.divider-section{

padding:20px 0;

}

.divider-section hr{

border:none;

height:1px;

background:#e7ecec;

}

/*====================================
SERVICES
====================================*/

.services-section{

padding:120px 0;

background:#f8fbfa;

}

.service-card{

background:#fff;

border-radius:28px;

overflow:hidden;

box-shadow:var(--shadow-sm);

transition:var(--transition);

height:100%;

}

.service-card:hover{

transform:translateY(-12px);

box-shadow:var(--shadow-lg);

}

.service-image{

overflow:hidden;

}

.service-image img{

transition:.6s;

height:280px;

width:100%;

object-fit:cover;

}

.service-card:hover .service-image img{

transform:scale(1.08);

}

.service-content{

padding:35px;

}

.service-content h3{

margin-bottom:18px;

}

.service-content p{

margin-bottom:25px;

}

.service-content a{

font-weight:700;

color:var(--secondary);

display:inline-flex;

align-items:center;

gap:8px;

}

.service-content a:hover{

color:var(--accent);

}

/*====================================
PROCESS
====================================*/

.process-section{

padding:120px 0;

background:#fff;

}

.process-card{

padding:50px 35px;

border-radius:24px;

background:#fff;

position:relative;

box-shadow:var(--shadow-sm);

transition:.35s;

height:100%;

}

.process-card:hover{

transform:translateY(-10px);

box-shadow:var(--shadow-lg);

}

.process-number{

position:absolute;

top:-20px;

left:50%;

transform:translateX(-50%);

width:60px;

height:60px;

background:var(--accent);

color:#fff;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

font-size:20px;

font-weight:700;

}

.process-card i{

font-size:55px;

color:var(--primary);

margin:35px 0 20px;

}

/*====================================
STATISTICS
====================================*/

.statistics-section{

padding:120px 0;

background:

linear-gradient(rgba(16,43,43,.94),

rgba(16,43,43,.94));

color:#fff;

}

.counter-box{

padding:40px 20px;

}

.counter-box h2{

font-size:4rem;

color:var(--accent);

margin-bottom:15px;

}

.counter-box p{

font-size:1.05rem;

margin:0;

color:#fff;

}

/*====================================
TESTIMONIALS
====================================*/

.testimonial-section{
    padding:120px 0;
    background:#f8fbfa;
}

.testimonial-card{
    max-width:850px;
    margin:auto;
    background:#fff;
    border-radius:28px;
    padding:60px;
    text-align:center;
    box-shadow:var(--shadow-md);
    transition:var(--transition);
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-lg);
}

.testimonial-card img{
    width:100px;
    height:100px;
    object-fit:cover;
    border-radius:50%;
    margin:0 auto 25px;
    border:5px solid var(--light);
}

.testimonial-card h4{
    margin-bottom:5px;
}

.testimonial-card span{
    color:var(--accent);
    font-weight:600;
}

.testimonial-card p{
    margin:30px auto;
    max-width:650px;
    font-size:1.08rem;
    font-style:italic;
}

.stars{
    color:#FFD700;
    font-size:1.25rem;
    letter-spacing:3px;
}

/*====================================
INSIGHTS
====================================*/

.insights-section{
    padding:120px 0;
    background:#fff;
}

.blog-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--shadow-sm);
    transition:var(--transition);
    height:100%;
}

.blog-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-lg);
}

.blog-image{
    overflow:hidden;
}

.blog-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.blog-card:hover img{
    transform:scale(1.08);
}

.blog-content{
    padding:35px;
}

.blog-category{
    color:var(--accent);
    font-weight:700;
    text-transform:uppercase;
    font-size:.85rem;
    letter-spacing:.08em;
}

.blog-content h3{
    margin:18px 0;
}

.blog-content a{
    color:var(--secondary);
    font-weight:700;
}

.blog-content a:hover{
    color:var(--accent);
}

/*====================================
CTA
====================================*/

.cta-section{
    padding:100px 0;
    background:
    linear-gradient(rgba(16,43,43,.88),
    rgba(16,43,43,.88)),
    url("../images/hero.webp")
    center/cover;
}

.cta-section h2{
    color:#fff;
    margin-bottom:20px;
}

.cta-section p{
    color:#fff;
    max-width:700px;
}

/*====================================
FOOTER
====================================*/

.footer{
    background:var(--primary);
    color:#fff;
    padding:90px 0 30px;
}

.footer-logo{
    max-width:220px;
}

.footer h5{
    color:#fff;
    margin-bottom:25px;
}

.footer p{
    color:rgba(255,255,255,.85);
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{
    color:rgba(255,255,255,.85);
}

.footer-links a:hover{
    color:var(--accent);
}

.social-links{
    display:flex;
    gap:15px;
    margin-top:30px;
}

.social-links a{
    width:46px;
    height:46px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    transition:.3s;
}

.social-links a:hover{
    background:var(--accent);
    transform:translateY(-5px);
}

.footer hr{
    margin:50px 0 25px;
    border-color:rgba(255,255,255,.12);
}

.copyright{
    margin:0;
}

.footer .fa-solid{
    color:var(--accent);
    margin-right:10px;
}

/*====================================
SCROLL TO TOP
====================================*/

.scroll-top{
    position:fixed;
    right:30px;
    bottom:30px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:var(--accent);
    color:#fff;
    cursor:pointer;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:var(--shadow-md);
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:999;
}

.scroll-top.active{
    opacity:1;
    visibility:visible;
}

.scroll-top:hover{
    background:var(--secondary);
    transform:translateY(-5px);
}

/*====================================
ANIMATIONS
====================================*/

.fade-up{
    animation:fadeUp .8s ease both;
}

@keyframes fadeUp{

from{
    opacity:0;
    transform:translateY(40px);
}

to{
    opacity:1;
    transform:translateY(0);
}

}

/*====================================
RESPONSIVE
====================================*/

@media (max-width:991px){

.hero-section{
    text-align:center;
    padding:120px 0 80px;
}

.hero-buttons{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.btn-outline-custom{
    margin-left:0;
}

.hero-features{
    justify-content:center;
}

.hero-image{
    margin-top:60px;
}

.floating-card{
    display:none;
}

.navbar{
    background:#fff;
}

.nav-link{
    color:var(--primary)!important;
    margin:15px 0;
}

.statistics-section .counter-box{
    margin-bottom:40px;
}

.footer{
    text-align:center;
}

.social-links{
    justify-content:center;
}

}

@media (max-width:768px){

section{
    padding:80px 0!important;
}

.hero-content h1{
    font-size:2.6rem;
}

.section-title{
    font-size:2rem;
}

.service-content,
.blog-content,
.feature-card,
.process-card,
.testimonial-card{
    padding:30px;
}

.counter-box h2{
    font-size:3rem;
}

}

@media (max-width:576px){

.logo{
    height:48px;
}

.hero-content h1{
    font-size:2.2rem;
}

.hero-content p{
    font-size:1rem;
}

.btn-primary-custom,
.btn-outline-custom,
.btn-consultation{
    width:100%;
    justify-content:center;
}

.scroll-top{
    right:15px;
    bottom:15px;
}

}

/*====================================
END OF STYLE.CSS
====================================*/




.contact-info{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:18px;
    border-radius:16px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s ease;
}

.contact-item:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.contact-item i{
    width:58px;
    height:58px;
    border-radius:50%;
    background:linear-gradient(135deg,#0B4D45,#1E7C6B);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.contact-content h5{
    margin:0 0 6px;
    color:#0B4D45;
    font-weight:700;
    font-size:1.15rem;
}

.contact-content a,
.contact-content p{
    margin:0;
    color:#555;
    text-decoration:none;
    font-size:1rem;
    line-height:1.7;
}

.contact-content a:hover{
    color:#C8A15A;
}

@media(max-width:768px){

.contact-item{
    padding:15px;
    gap:15px;
}

.contact-item i{
    width:50px;
    height:50px;
    font-size:18px;
}

}