/*=========================================================
DIVINE HEALTHCARE
Premium Medical Website
Author : ChatGPT
=========================================================*/


/*=========================================================
GOOGLE FONTS
=========================================================*/

:root{

--primary:#0F6B44;
--primary-dark:#0B5638;
--secondary:#C9A227;
--light:#F8FBF9;
--white:#ffffff;
--text:#2F3A3C;
--gray:#6D757D;
--border:#E6ECE8;

--radius:16px;
--radius-lg:24px;

--shadow:0 12px 30px rgba(0,0,0,.08);
--shadow-hover:0 18px 40px rgba(0,0,0,.15);

--transition:.35s;

--container:1280px;

}


/*=========================================================
RESET
=========================================================*/

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Inter',sans-serif;

font-size:16px;

color:var(--text);

background:#fff;

line-height:1.8;

overflow-x:hidden;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

transition:var(--transition);

}

ul{

list-style:none;

}

.container{

width:100%;

max-width:var(--container);

margin:auto;

padding:0 15px;

}


/*=========================================================
TYPOGRAPHY
=========================================================*/

h1,
h2,
h3,
h4,
h5{

font-family:'Fraunces',serif;

font-weight:700;

line-height:1.2;

color:#173326;

margin-bottom:15px;

}

h1{

font-size:58px;

}

h2{

font-size:42px;

}

h3{

font-size:30px;

}

h4{

font-size:24px;

}

h5{

font-size:20px;

}

p{

margin-bottom:20px;

color:#5d666d;

}

.section{

padding:90px 0;

}

.section-subtitle{

display:inline-block;

color:var(--secondary);

font-weight:700;

letter-spacing:2px;

text-transform:uppercase;

margin-bottom:10px;

font-size:14px;

}

.text-center{

text-align:center;

}

.bg-light{

background:var(--light);

}


/*=========================================================
BUTTONS
=========================================================*/

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:15px 34px;

border-radius:50px;

font-size:16px;

font-weight:600;

transition:.35s;

cursor:pointer;

border:none;

}

.btn-primary{

background:var(--primary);

color:#fff;

}

.btn-primary:hover{

background:var(--primary-dark);

transform:translateY(-3px);

box-shadow:var(--shadow-hover);

}

.btn-success{

background:#25D366;

color:#fff;

}

.btn-success:hover{

background:#18bb56;

transform:translateY(-3px);

}

.btn-outline-success{

border:2px solid var(--primary);

background:#fff;

color:var(--primary);

}

.btn-outline-success:hover{

background:var(--primary);

color:#fff;

}


/*=========================================================
TOP BAR
=========================================================*/

.topbar{

background:var(--primary);

color:#fff;

font-size:14px;

}

.topbar-inner{

display:flex;

justify-content:space-between;

align-items:center;

max-width:1280px;

margin:auto;

padding:8px 15px;

}

.topbar-info{

display:flex;

gap:25px;

align-items:center;

}

.topbar-link{

color:#fff;

}

.topbar-link:hover{

opacity:.8;

}

.topbar-hours{

opacity:.9;

}

.topbar-lang{

display:flex;

align-items:center;

gap:10px;

}

.topbar-lang a{

color:#fff;

font-weight:600;

}

.topbar-lang a.is-active{

color:#FFD84D;

}


/*=========================================================
HEADER
=========================================================*/

.sr-only{

position:absolute;

width:1px;

height:1px;

padding:0;

margin:-1px;

overflow:hidden;

clip:rect(0,0,0,0);

white-space:nowrap;

border:0;

}

.site-header{

background:#fff;

position:sticky;

top:0;

z-index:999;

box-shadow:0 4px 18px rgba(0,0,0,.05);

}

.site-header-inner{

max-width:1280px;

margin:auto;

padding:18px 15px;

display:flex;

align-items:center;

justify-content:space-between;

}

.brand{

display:flex;

align-items:center;

gap:15px;

}

.brand-mark{

width:52px;

height:52px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:#EEF8F2;

color:var(--primary);

}

.brand-text{

display:flex;

flex-direction:column;

}

.brand-name{

font-size:22px;

font-weight:700;

font-family:'Fraunces',serif;

color:#173326;

}

.brand-tagline{

font-size:12px;

color:#777;

}


/*=========================================================
NAVIGATION
=========================================================*/

.main-nav{

position:relative;

}

.nav-menu{

display:flex;

gap:34px;

align-items:center;

}

.nav-menu li{

position:relative;

}

.nav-menu a{

font-weight:600;

color:#333;

position:relative;

}

.nav-menu a:hover{

color:var(--primary);

}

.nav-menu a.is-active{

color:var(--primary);

}

.nav-menu a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:var(--secondary);

transition:.3s;

}

.nav-menu a:hover::after,

.nav-menu a.is-active::after{

width:100%;

}


/*=========================================================
HEADER CTA
=========================================================*/

.header-cta{

display:flex;

gap:15px;

align-items:center;

}


/*=========================================================
MOBILE MENU BUTTON
=========================================================*/

.nav-toggle{
    display:none;
    width:48px;
    height:48px;
    padding:0;
    border:none;
    background:transparent;
    cursor:pointer;

    position:relative;
    z-index:9999;

    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.nav-toggle span{
    display:block;
    width:26px;
    height:3px;
    background:#0F6B44;
    border-radius:50px;
    margin:3px 0;
}

/*=========================================================
PAGE BANNER
=========================================================*/

.page-banner{

padding:120px 0 80px;

background:

linear-gradient(rgba(15,107,68,.88),

rgba(15,107,68,.88)),

url("../images/banner.jpg")

center center/cover;

color:#fff;

text-align:center;

}

.page-banner h1{

font-size:52px;

color:#fff;

margin-bottom:15px;

}

.page-banner p{

color:#fff;

font-size:20px;

opacity:.95;

}


/*=========================================================
UTILITY
=========================================================*/

.shadow{

box-shadow:var(--shadow);

}

.rounded{

border-radius:20px;

}

.mt-4{

margin-top:25px;

}

.mb-5{

margin-bottom:50px;

}

.mb-4{

margin-bottom:30px;

}

.img-fluid{

max-width:100%;

height:auto;

}

/*=========================================================
HERO SECTION
=========================================================*/

.hero{

position:relative;

padding:120px 0;

background:linear-gradient(135deg,#f8fbf9 0%,#eef8f2 100%);

overflow:hidden;

}

.hero::before{

content:"";

position:absolute;

top:-120px;

right:-120px;

width:450px;

height:450px;

background:rgba(15,107,68,.05);

border-radius:50%;

}

.hero::after{

content:"";

position:absolute;

bottom:-150px;

left:-120px;

width:400px;

height:400px;

background:rgba(201,162,39,.08);

border-radius:50%;

}

.hero .row{

align-items:center;

}

.hero-subtitle{

display:inline-block;

padding:8px 18px;

background:#e9f8ef;

color:var(--primary);

border-radius:30px;

font-weight:600;

margin-bottom:20px;

}

.hero h1{

font-size:64px;

margin-bottom:10px;

}

.hero h2{

font-size:32px;

color:var(--secondary);

margin-bottom:25px;

}

.hero p{

font-size:18px;

margin-bottom:35px;

max-width:620px;

}

.hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

margin-bottom:35px;

}

.hero-features{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:15px;

max-width:500px;

}

.hero-features div{

background:#fff;

padding:15px 18px;

border-radius:12px;

box-shadow:var(--shadow);

font-weight:600;

}

.hero-image{

max-width:520px;

margin:auto;

animation:floatImage 5s ease-in-out infinite;

}

@keyframes floatImage{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

}


/*=========================================================
ABOUT SECTION
=========================================================*/

.doctor-image{

border-radius:30px;

box-shadow:var(--shadow);

}

.section img{

border-radius:20px;

}

.about-content h2{

margin-bottom:20px;

}

.about-content h5{

color:var(--secondary);

margin-bottom:15px;

}

.about-content p{

font-size:17px;

}


/*=========================================================
FEATURE BOX
=========================================================*/

.feature-box{

background:#fff;

padding:35px 30px;

text-align:center;

border-radius:20px;

box-shadow:var(--shadow);

height:100%;

transition:.35s;

}

.feature-box:hover{

transform:translateY(-10px);

box-shadow:var(--shadow-hover);

}

.feature-icon{

width:90px;

height:90px;

border-radius:50%;

margin:auto;

margin-bottom:20px;

display:flex;

align-items:center;

justify-content:center;

background:#eef8f2;

font-size:42px;

color:var(--primary);

}

.feature-box h4{

margin-bottom:15px;

}


/*=========================================================
INFO CARD
=========================================================*/

.info-card{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:var(--shadow);

text-align:center;

height:100%;

transition:.35s;

}

.info-card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-hover);

}

.info-icon{

width:90px;

height:90px;

border-radius:50%;

background:#eef8f2;

display:flex;

align-items:center;

justify-content:center;

margin:auto;

margin-bottom:20px;

font-size:42px;

}


/*=========================================================
SERVICE SECTION
=========================================================*/

.service-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:var(--shadow);

transition:.35s;

height:100%;

}

.service-card:hover{

transform:translateY(-12px);

box-shadow:var(--shadow-hover);

}

.service-card img{

width:100%;

height:240px;

object-fit:cover;

transition:.4s;

}

.service-card:hover img{

transform:scale(1.06);

}

.service-content{

padding:30px;

text-align:center;

}

.service-icon{

width:70px;

height:70px;

margin:auto;

margin-top:-65px;

background:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

box-shadow:var(--shadow);

position:relative;

z-index:2;

}

.service-card h3{

margin:20px 0 15px;

font-size:24px;

}

.service-card p{

min-height:90px;

}

.service-card .btn{

margin-top:10px;

}


/*=========================================================
CHECK LIST
=========================================================*/

.check-list{

margin-top:25px;

}

.check-list li{

position:relative;

padding-left:35px;

margin-bottom:18px;

font-size:17px;

font-weight:500;

}

.check-list li::before{

content:"✔";

position:absolute;

left:0;

top:0;

color:var(--primary);

font-weight:bold;

}


/*=========================================================
COUNTER BOX
=========================================================*/

.counter-box{

background:#fff;

padding:35px;

text-align:center;

border-radius:20px;

box-shadow:var(--shadow);

transition:.35s;

height:100%;

}

.counter-box:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-hover);

}

.counter-box h2{

font-size:48px;

color:var(--primary);

margin-bottom:10px;

}

.counter-box p{

margin:0;

font-weight:600;

}


/*=========================================================
MISSION SECTION
=========================================================*/

.mission-box{

padding:35px;

border-radius:20px;

background:#fff;

box-shadow:var(--shadow);

height:100%;

}

.mission-box h3{

margin-bottom:15px;

color:var(--primary);

}


/*=========================================================
IMAGE EFFECTS
=========================================================*/

.section img{

transition:.4s;

}

.section img:hover{

transform:scale(1.02);

}


/*=========================================================
GENERAL SPACING
=========================================================*/

.section .row{

row-gap:30px;

}

.section h2{

margin-bottom:20px;

}

.section p:last-child{

margin-bottom:0;

}

/*=========================================================
TESTIMONIALS SECTION
=========================================================*/

.testimonial-card{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:var(--shadow);

text-align:center;

transition:.35s;

height:100%;

position:relative;

overflow:hidden;

}

.testimonial-card:hover{

transform:translateY(-10px);

box-shadow:var(--shadow-hover);

}

.testimonial-card::before{

content:"❝";

position:absolute;

top:15px;

left:20px;

font-size:70px;

opacity:.08;

color:var(--primary);

font-family:serif;

}

.testimonial-top{

margin-bottom:20px;

}

.testimonial-img{

width:90px;

height:90px;

border-radius:50%;

margin:auto;

object-fit:cover;

border:5px solid #eef8f2;

}

.testimonial-stars{

color:#FDB813;

font-size:22px;

margin-bottom:15px;

letter-spacing:3px;

}

.testimonial-card p{

font-style:italic;

min-height:110px;

}

.testimonial-card h4{

margin-bottom:5px;

font-size:22px;

}

.testimonial-card span{

display:block;

color:var(--gray);

font-size:15px;

margin-bottom:15px;

}

.testimonial-treatment{

display:inline-block;

background:#eef8f2;

padding:8px 16px;

border-radius:30px;

font-size:14px;

font-weight:600;

color:var(--primary);

}



/*=========================================================
PROCESS SECTION
=========================================================*/

.process-box{

text-align:center;

padding:30px;

background:#fff;

border-radius:20px;

box-shadow:var(--shadow);

height:100%;

position:relative;

transition:.35s;

}

.process-box:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-hover);

}

.process-number{

width:75px;

height:75px;

border-radius:50%;

margin:auto;

margin-bottom:20px;

background:var(--primary);

color:#fff;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

font-weight:bold;

}

.process-box h4{

margin-bottom:12px;

}

.process-box p{

margin-bottom:0;

}



/*=========================================================
TIMELINE
=========================================================*/

.timeline{

position:relative;

padding-left:40px;

}

.timeline::before{

content:"";

position:absolute;

left:12px;

top:0;

bottom:0;

width:3px;

background:#d9ebe2;

}

.timeline-item{

position:relative;

padding-bottom:40px;

}

.timeline-item:last-child{

padding-bottom:0;

}

.timeline-item::before{

content:"";

position:absolute;

left:-36px;

top:4px;

width:18px;

height:18px;

background:var(--primary);

border-radius:50%;

border:4px solid #fff;

box-shadow:0 0 0 3px #d9ebe2;

}

.timeline-item h4{

margin-bottom:10px;

color:var(--primary);

}



/*=========================================================
FAQ
=========================================================*/

.faq-item{

    background:#fff;

    border-radius:15px;

    margin-bottom:18px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.faq-question{

    width:100%;

    border:none;

    background:#fff;

    padding:22px 28px;

    font-size:22px;

    font-weight:600;

    text-align:left;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    transition:.3s;

}

.faq-question:hover{

    background:#0F6B44;

    color:#fff;

}

.faq-question span{

    font-size:30px;

    transition:.3s;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

    padding:0 28px;

}

.faq-answer p{

    padding:25px 0;

    line-height:1.8;

    margin:0;

    color:#555;

}

.faq-item.active .faq-answer{

    max-height:400px;

}

.faq-item.active .faq-question{

    background:#0F6B44;

    color:#fff;

}

.faq-item.active .faq-question span{

    transform:rotate(45deg);

}

@media(max-width:768px){

.faq-question{

font-size:18px;

padding:18px;

}

.faq-answer{

padding:0 18px;

}

}

.accordion{

max-width:900px;

margin:auto;

}

.accordion-item{

border:none;

border-radius:18px !important;

overflow:hidden;

margin-bottom:18px;

box-shadow:var(--shadow);

}

.accordion-button{

background:#fff;

font-size:18px;

font-weight:600;

padding:22px 25px;

color:#173326;

box-shadow:none!important;

}

.accordion-button:not(.collapsed){

background:var(--primary);

color:#fff;

}

.accordion-button::after{

filter:brightness(.5);

}

.accordion-button:not(.collapsed)::after{

filter:brightness(4);

}

.accordion-body{

padding:25px;

font-size:16px;

line-height:1.8;

background:#fff;

}



/*=========================================================
STATISTICS
=========================================================*/

.statistics{

background:linear-gradient(135deg,#0F6B44,#19714A);

color:#fff;

padding:80px 0;

}

.statistics .counter-box{

background:rgba(255,255,255,.12);

backdrop-filter:blur(10px);

box-shadow:none;

color:#fff;

}

.statistics .counter-box h2{

color:#fff;

}

.statistics .counter-box p{

color:#fff;

}



/*=========================================================
PATIENT REVIEW STRIP
=========================================================*/

.review-strip{

background:#fff8ea;

padding:18px;

border-radius:16px;

display:flex;

justify-content:center;

align-items:center;

gap:25px;

flex-wrap:wrap;

margin-top:40px;

}

.review-strip strong{

font-size:20px;

color:#222;

}

.review-strip span{

color:#FDB813;

font-size:24px;

letter-spacing:3px;

}



/*=========================================================
VIDEO TESTIMONIAL
=========================================================*/

.video-box{

position:relative;

overflow:hidden;

border-radius:24px;

box-shadow:var(--shadow-hover);

}

.video-box img{

width:100%;

}

.play-btn{

position:absolute;

left:50%;

top:50%;

transform:translate(-50%,-50%);

width:90px;

height:90px;

border-radius:50%;

background:#fff;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

color:var(--primary);

box-shadow:0 15px 40px rgba(0,0,0,.25);

transition:.35s;

}

.play-btn:hover{

transform:translate(-50%,-50%) scale(1.1);

background:var(--primary);

color:#fff;

}



/*=========================================================
AWARDS
=========================================================*/

.award-box{

background:#fff;

padding:30px;

text-align:center;

border-radius:20px;

box-shadow:var(--shadow);

transition:.35s;

height:100%;

}

.award-box:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-hover);

}

.award-box img{

height:70px;

width:auto;

margin:auto;

margin-bottom:20px;

}

.award-box h4{

margin-bottom:10px;

}



/*=========================================================
DOCTOR QUOTE
=========================================================*/

.quote-box{

background:linear-gradient(135deg,#eef8f2,#ffffff);

padding:45px;

border-left:6px solid var(--secondary);

border-radius:20px;

box-shadow:var(--shadow);

font-size:22px;

font-style:italic;

line-height:1.8;

position:relative;

}

.quote-box::before{

content:"“";

position:absolute;

top:-20px;

left:25px;

font-size:90px;

color:rgba(15,107,68,.15);

font-family:serif;

}

.quote-author{

margin-top:25px;

font-size:18px;

font-weight:700;

color:var(--primary);

}



/*=========================================================
SECTION DIVIDER
=========================================================*/

.wave-divider{

height:90px;

background:

url("../images/wave.svg")

center bottom

no-repeat;

background-size:cover;

}

/*=========================================================
CALL TO ACTION
=========================================================*/

.cta-section{

padding:100px 0;

background:linear-gradient(135deg,#0F6B44,#1A8A5A);

text-align:center;

color:#fff;

position:relative;

overflow:hidden;

}

.cta-section::before{

content:"";

position:absolute;

top:-120px;

left:-120px;

width:350px;

height:350px;

background:rgba(255,255,255,.05);

border-radius:50%;

}

.cta-section::after{

content:"";

position:absolute;

bottom:-150px;

right:-120px;

width:420px;

height:420px;

background:rgba(255,255,255,.05);

border-radius:50%;

}

.cta-section h2{

color:#fff;

font-size:48px;

margin-bottom:20px;

}

.cta-section p{

color:rgba(255,255,255,.9);

font-size:20px;

max-width:750px;

margin:auto auto 35px;

}

.cta-section .btn{

margin:8px;

}



/*=========================================================
CONTACT PAGE
=========================================================*/

.contact-form{

background:#fff;

padding:45px;

border-radius:25px;

box-shadow:var(--shadow);

}

.contact-form h2{

margin-bottom:10px;

}

.contact-form p{

margin-bottom:30px;

}

.contact-form label{

display:block;

font-weight:600;

margin-bottom:10px;

color:#173326;

}

.form-control{

width:100%;

padding:16px 18px;

border:1px solid var(--border);

border-radius:12px;

font-size:16px;

transition:.3s;

background:#fff;

}

.form-control:focus{

outline:none;

border-color:var(--primary);

box-shadow:0 0 0 4px rgba(15,107,68,.08);

}

textarea.form-control{

resize:vertical;

min-height:160px;

}



/*=========================================================
CONTACT CARD
=========================================================*/

.contact-card{

background:#fff;

padding:40px;

border-radius:25px;

box-shadow:var(--shadow);

height:100%;

}

.contact-card h3{

margin-bottom:30px;

}

.contact-item{

display:flex;

gap:18px;

align-items:flex-start;

margin-bottom:30px;

}

.contact-item:last-child{

margin-bottom:0;

}

.contact-icon{

width:60px;

height:60px;

border-radius:50%;

background:#eef8f2;

display:flex;

align-items:center;

justify-content:center;

font-size:26px;

color:var(--primary);

flex-shrink:0;

}

.contact-item strong{

display:block;

font-size:18px;

margin-bottom:5px;

color:#173326;

}

.contact-item a{

color:var(--primary);

font-weight:600;

}

.contact-item a:hover{

color:var(--secondary);

}



/*=========================================================
GOOGLE MAP
=========================================================*/

.map-box{

border-radius:25px;

overflow:hidden;

box-shadow:var(--shadow-hover);

}

.map-box iframe{

display:block;

width:100%;

border:none;

}



/*=========================================================
APPOINTMENT CARD
=========================================================*/

.appointment-card{

background:linear-gradient(135deg,#0F6B44,#19714A);

padding:45px;

border-radius:25px;

color:#fff;

box-shadow:var(--shadow-hover);

}

.appointment-card h3{

color:#fff;

margin-bottom:20px;

}

.appointment-card p{

color:rgba(255,255,255,.9);

}

.appointment-card .btn{

margin-top:20px;

}



/*=========================================================
SOCIAL LINKS
=========================================================*/

.social-links{

display:flex;

gap:15px;

margin-top:25px;

}

.social-links a{

width:50px;

height:50px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:#eef8f2;

color:var(--primary);

font-size:20px;

transition:.3s;

}

.social-links a:hover{

background:var(--primary);

color:#fff;

transform:translateY(-5px);

}



/*=========================================================
FOOTER
=========================================================*/

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1.2fr;

gap:50px;

align-items:flex-start;

}

.footer-widget{

height:100%;

}

.footer-widget h4{

margin-bottom:18px;

color:#fff;

font-size:22px;

}

.footer-widget ul{

list-style:none;

padding:0;

margin:0;

}

.footer-widget ul li{

margin-bottom:12px;

}

.footer-widget a{

color:#dfe9df;

text-decoration:none;

}

.footer-widget a:hover{

color:#fff;

}

.footer-divider{

margin:50px 0 20px;

opacity:.15;

}

.footer-bottom{

text-align:center;

}

@media(max-width:991px){

.footer-grid{

grid-template-columns:1fr 1fr;

gap:35px;

}

}

@media(max-width:768px){

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.footer-contact li{

justify-content:center;

}

}

.site-footer{

background:#14372A;

color:#dbe8df;

padding-top:80px;

}

.footer-widget{

margin-bottom:40px;

}

.footer-widget h4{

color:#fff;

margin-bottom:25px;

font-size:22px;

}

.footer-widget p{

color:#dbe8df;

}

.footer-widget ul{

padding:0;

margin:0;

}

.footer-widget li{

margin-bottom:12px;

}

.footer-widget a{

color:#dbe8df;

transition:.3s;

}

.footer-widget a:hover{

color:#fff;

padding-left:6px;

}

.footer-logo{

display:flex;

align-items:center;

gap:15px;

margin-bottom:20px;

}

.footer-logo img{

width:70px;

}

.footer-logo h3{

color:#fff;

margin:0;

font-size:24px;

}

.footer-contact li{

display:flex;

gap:12px;

align-items:flex-start;

margin-bottom:15px;

}

.footer-contact i{

color:var(--secondary);

font-size:18px;

margin-top:4px;

}

.footer-bottom{

border-top:1px solid rgba(255,255,255,.08);

padding:22px 0;

margin-top:35px;

text-align:center;

font-size:15px;

color:#b8c7be;

}

.footer-bottom a{

color:#fff;

font-weight:600;

}



/*=========================================================
BACK TO TOP
=========================================================*/

.back-to-top{

position:fixed;

right:25px;

bottom:25px;

width:55px;

height:55px;

border-radius:50%;

background:var(--primary);

color:#fff;

display:flex;

align-items:center;

justify-content:center;

font-size:22px;

box-shadow:var(--shadow-hover);

cursor:pointer;

opacity:0;

visibility:hidden;

transition:.35s;

z-index:999;

}

.back-to-top.show{

opacity:1;

visibility:visible;

}

.back-to-top:hover{

background:var(--secondary);

transform:translateY(-5px);

}



/*=========================================================
NEWSLETTER
=========================================================*/

.newsletter{

display:flex;

margin-top:25px;

}

.newsletter input{

flex:1;

padding:15px;

border:none;

border-radius:10px 0 0 10px;

}

.newsletter button{

border:none;

padding:15px 25px;

background:var(--secondary);

color:#fff;

font-weight:600;

border-radius:0 10px 10px 0;

cursor:pointer;

}



/*=========================================================
DIVIDER
=========================================================*/

.footer-divider{

height:1px;

background:rgba(255,255,255,.08);

margin:40px 0;

}

/*=========================================================
RESPONSIVE DESIGN
=========================================================*/

@media (max-width:1200px){

.container{

max-width:1140px;

}

.hero h1{

font-size:54px;

}

.hero h2{

font-size:28px;

}

.page-banner h1{

font-size:48px;

}

.section{

padding:80px 0;

}

}



@media (max-width:992px){

.site-header{

position:relative;

}

.site-header-inner{

display:flex;

align-items:center;

justify-content:space-between;

flex-wrap:nowrap;

padding:12px 18px;

}

.brand{

display:flex;

align-items:center;

flex:1;

min-width:0;

}

.brand-mark{

width:46px;

height:46px;

flex-shrink:0;

}

.brand-text{

overflow:hidden;

}

.brand-name{

font-size:23px;

white-space:nowrap;

overflow:hidden;

text-overflow:ellipsis;

}

.brand-tagline{

font-size:11px;

white-space:nowrap;

overflow:hidden;

text-overflow:ellipsis;

}

.main-nav{

width:auto;

position:relative;

margin-left:auto;

}

.nav-toggle{

display:flex;

align-items:center;

justify-content:center;

width:48px;

height:48px;

padding:0;

margin:0;

background:transparent;

border:none;

}

.header-cta{

display:none;

}

.nav-menu{

display:none;

position:absolute;

top:100%;

right:0;

left:auto;

width:280px;

background:#fff;

border-radius:16px;

box-shadow:0 15px 35px rgba(0,0,0,.15);

padding:15px;

flex-direction:column;

gap:0;

z-index:999;

}

.nav-menu.show{

display:flex;

}

.nav-menu li{

width:100%;

}

.nav-menu a{

display:block;

padding:14px 15px;

border-bottom:1px solid #eee;

}

.nav-menu li:last-child a{

border-bottom:none;

}

}


@media (max-width:768px){

body{

font-size:15px;

}

.topbar{

display:none;

}

.section{

padding:70px 0;

}

.hero{

padding:60px 0;

}

.hero h1{

font-size:38px;

}

.hero h2{

font-size:22px;

}

.hero-subtitle{

font-size:13px;

}

.page-banner h1{

font-size:36px;

}

.page-banner p{

font-size:17px;

}

h2{

font-size:34px;

}

h3{

font-size:26px;

}

.feature-box,

.info-card,

.service-card,

.testimonial-card,

.counter-box,

.process-box,

.contact-card,

.contact-form{

padding:25px;

}

.service-card img{

height:220px;

}

.cta-section{

padding:80px 0;

}

.cta-section h2{

font-size:36px;

}

.footer-widget{

text-align:center;

}

.footer-contact li{

justify-content:center;

}

.footer-logo{

justify-content:center;

}

.newsletter{

flex-direction:column;

}

.newsletter input{

border-radius:10px;

margin-bottom:10px;

}

.newsletter button{

border-radius:10px;

width:100%;

}

.social-links{

justify-content:center;

}

}



@media (max-width:576px){

.container{

padding:0 20px;

}

.hero h1{

font-size:32px;

}

.hero h2{

font-size:20px;

}

.page-banner{

padding:70px 0 50px;

}

.page-banner h1{

font-size:30px;

}

.page-banner p{

font-size:16px;

}

.btn{

width:100%;

margin-bottom:12px;

}

.hero-buttons{

flex-direction:column;

}

.feature-icon,

.info-icon{

width:70px;

height:70px;

font-size:30px;

}

.process-number{

width:60px;

height:60px;

font-size:22px;

}

.contact-item{

flex-direction:column;

align-items:center;

text-align:center;

}

.contact-icon{

margin-bottom:12px;

}

.counter-box h2{

font-size:38px;

}

.footer-bottom{

font-size:14px;

}

.back-to-top{

width:48px;

height:48px;

right:18px;

bottom:18px;

font-size:18px;

}

}

/*=========================================================
ANIMATIONS
=========================================================*/

.fade-up{

opacity:0;

transform:translateY(40px);

transition:all .8s ease;

}

.fade-up.show{

opacity:1;

transform:translateY(0);

}



.fade-left{

opacity:0;

transform:translateX(-50px);

transition:all .8s ease;

}

.fade-left.show{

opacity:1;

transform:translateX(0);

}



.fade-right{

opacity:0;

transform:translateX(50px);

transition:all .8s ease;

}

.fade-right.show{

opacity:1;

transform:translateX(0);

}



.zoom-in{

opacity:0;

transform:scale(.9);

transition:all .7s ease;

}

.zoom-in.show{

opacity:1;

transform:scale(1);

}

/*=========================================================
IMAGE HOVER
=========================================================*/

img{

transition:.35s;

}

img:hover{

transform:scale(1.02);

}

/*=========================================================
SCROLLBAR
=========================================================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#eef8f2;

}

::-webkit-scrollbar-thumb{

background:var(--primary);

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:var(--primary-dark);

}

/*=========================================================
SELECTION
=========================================================*/

::selection{

background:var(--primary);

color:#fff;

}

/*=========================================================
UTILITY CLASSES
=========================================================*/

.text-primary{

color:var(--primary)!important;

}

.text-secondary{

color:var(--secondary)!important;

}

.bg-primary{

background:var(--primary)!important;

}

.bg-secondary{

background:var(--secondary)!important;

}

.rounded-xl{

border-radius:30px;

}

.shadow-lg{

box-shadow:var(--shadow-hover);

}

.d-flex{

display:flex;

}

.align-center{

align-items:center;

}

.justify-center{

justify-content:center;

}

.gap-20{

gap:20px;

}

.w-100{

width:100%;

}

.mt-2{

margin-top:20px;

}

.mt-3{

margin-top:30px;

}

.mt-5{

margin-top:50px;

}

.mb-2{

margin-bottom:20px;

}

.mb-3{

margin-bottom:30px;

}

.mb-5{

margin-bottom:50px;

}

.py-5{

padding-top:80px;

padding-bottom:80px;

}

/*=========================================================
LOADING ANIMATION
=========================================================*/

.loader{

width:50px;

height:50px;

border:5px solid #e5e5e5;

border-top:5px solid var(--primary);

border-radius:50%;

animation:spin 1s linear infinite;

margin:auto;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

/*=========================================================
SMOOTH CARD EFFECT
=========================================================*/

.feature-box,
.info-card,
.service-card,
.testimonial-card,
.counter-box,
.process-box,
.contact-card{

transition:all .35s ease;

}

/*=========================================================
END OF STYLE SHEET
=========================================================*/