/*
Theme Name: Joyride Home Care
Author: Brenda Eno
Version: 1.0
*/

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

body{
line-height:1.6;
color:#333;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* TOP BAR */

.topbar{
background:#20b486;
color:#fff;
text-align:center;
padding:8px;
font-size:14px;
}

/* HEADER */

header{
background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.nav ul{
display:flex;
list-style:none;
}

.nav ul li{
margin-left:20px;
}

.nav a{
text-decoration:none;
color:#333;
font-weight:500;
}

.btn{
background:#2a7de1;
color:#fff;
padding:10px 20px;
border-radius:4px;
text-decoration:none;
}

/* HERO */

.hero{
background:url("https://images.unsplash.com/photo-1584515933487-779824d29309") center/cover no-repeat;
height:550px;
display:flex;
align-items:center;
color:#fff;
}

.hero-content{
max-width:600px;
}

.hero h1{
font-size:42px;
margin-bottom:15px;
}

.hero p{
font-size:20px;
margin-bottom:20px;
}

.hero-buttons a{
margin-right:10px;
}

/* TRUST */

.trust{
background:#f7f9fc;
padding:30px 0;
text-align:center;
}

.trust-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}

/* ABOUT */

.about{
padding:80px 0;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.about img{
width:100%;
border-radius:8px;
}

/* SERVICES */

.services{
background:#f7f9fc;
padding:80px 0;
text-align:center;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:40px;
}

.service-card{
background:#fff;
padding:25px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.service-card img{
width:100%;
height:160px;
object-fit:cover;
border-radius:6px;
margin-bottom:15px;
}

/* MISSION */

.mission{
padding:70px 0;
text-align:center;
}

.mission-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

/* WHY */

.why{
background:#f7f9fc;
padding:70px 0;
}

.why ul{
margin-top:20px;
}

.why li{
margin-bottom:10px;
}

/* AREAS */

.areas{
padding:70px 0;
text-align:center;
}

.area-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
gap:20px;
margin-top:30px;
}

/* TEAM */

.team{
background:#f7f9fc;
padding:80px 0;
text-align:center;
}

.team-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:25px;
margin-top:40px;
}

.team img{
width:100%;
border-radius:8px;
}

/* TESTIMONIALS */

.testimonials{
padding:80px 0;
text-align:center;
}

.testimonial{
max-width:700px;
margin:auto;
margin-bottom:30px;
font-style:italic;
}

/* CAREERS */

.careers{
background:#f7f9fc;
padding:70px 0;
text-align:center;
}

.careers ul{
margin:20px 0;
}

/* BLOG */

.blog{
padding:70px 0;
text-align:center;
}

.blog-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:40px;
}

.blog img{
width:100%;
border-radius:6px;
}

/* CTA */

.cta{
background:#2a7de1;
color:#fff;
padding:60px 0;
text-align:center;
}

.cta a{
background:#fff;
color:#2a7de1;
padding:12px 25px;
margin:10px;
display:inline-block;
border-radius:4px;
text-decoration:none;
}

/* FOOTER */

footer{
background:#111;
color:#fff;
text-align:center;
padding:20px;
}

/* MOBILE */

@media(max-width:768px){

.about-grid{
grid-template-columns:1fr;
}

.hero{
height:450px;
}

.hero h1{
font-size:30px;
}

}

.section-title{
text-align:center;
font-size:34px;
margin-bottom:40px;
}

.section-subtitle{
text-align:center;
margin-bottom:30px;
color:#666;
}

/* Mission */

.mission-section{
padding:80px 0 0 0;
background:#ffffff;
}

.mission-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.mission-card{
background:#f7f9fc;
padding:35px;
border-radius:10px;
text-align:center;
transition:0.3s;
}

.mission-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.mission-icon{
font-size:40px;
margin-bottom:15px;
}

/* Divider */

.section-divider svg{
display:block;
width:100%;
height:90px;
}

/* Areas */

.areas-section{
background:#f7f9fc;
padding:80px 0;
}

.area-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
margin-top:30px;
}

.area-card{
background:white;
padding:20px;
border-radius:8px;
text-align:center;
font-weight:500;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
transition:0.3s;
}

.area-card:hover{
background:#2a7de1;
color:white;
}
.section-divider svg{
display:block;
width:100%;
height:80px;
}


/* Team Section */

.team{
background:#ffffff;
padding:80px 0;
text-align:center;
}

.team-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
margin-top:40px;
}

.team-card{
text-align:center;
}

.team-card img{
width:100%;
height:260px;
object-fit:cover;
border-radius:8px;
box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

.team-card h4{
margin-top:12px;
font-weight:500;
}

.testimonials-section{
background:#f7f9fc;
padding:90px 0;
text-align:center;
}

.section-title{
font-size:34px;
margin-bottom:10px;
}

.section-subtitle{
color:#666;
margin-bottom:50px;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.testimonial-card{
background:#fff;
padding:35px;
border-radius:10px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
position:relative;
text-align:left;
transition:0.3s;
}

.testimonial-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.quote-icon{
font-size:60px;
color:#2a7de1;
position:absolute;
top:10px;
right:20px;
opacity:0.15;
}

.testimonial-text{
margin-bottom:20px;
font-size:15px;
line-height:1.7;
}

.stars{
color:#f5b301;
font-size:18px;
margin-bottom:20px;
}

.client-info{
display:flex;
align-items:center;
gap:12px;
}

.client-info img{
width:50px;
height:50px;
border-radius:50%;
object-fit:cover;
}

.client-info h4{
margin:0;
font-size:15px;
}

.client-info span{
font-size:13px
}

.site-footer{
background:#333;
color:#ffffff;
padding:50px 0 20px;
font-family:Poppins, sans-serif;
}

.footer-container{
width:90%;
max-width:1200px;
margin:auto;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
margin-bottom:30px;
}

.footer-col h3{
font-size:18px;
margin-bottom:10px;
}

.footer-col h4{
font-size:16px;
margin-bottom:10px;
}

.footer-col p{
font-size:14px;
line-height:1.6;
color:#d7e7e5;
}

.footer-divider{
border:none;
border-top:1px solid rgba(255,255,255,0.2);
margin:25px 0;
}

.footer-bottom{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:20px;
}

.footer-bottom p{
font-size:13px;
color:#cfe3e0;
}

.footer-btn{
background:#2e7f78;
color:white;
padding:10px 18px;
border-radius:6px;
text-decoration:none;
font-size:14px;
transition:0.3s;
}

.footer-btn:hover{
background:#3fa69e;
}

/* Service Page CSS */
.services-page{
font-family: Arial, Helvetica, sans-serif;
color:#333;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

h2{
font-size:36px;
margin-bottom:20px;
text-align:center;
}

p{
line-height:1.7;
}

/* HERO */

.service-hero{
background:url('https://joyridecare.com/wp-content/uploads/2026/03/WhatsApp-Image-2026-03-07-at-8.42.43-PM.jpeg') center/cover no-repeat;
padding:120px 20px;
text-align:center;
color:#fff;
position:relative;
}

.service-hero:before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
}

.service-hero-content{
position:relative;
z-index:2;
max-width:700px;
margin:auto;
}

.service-hero h1{
font-size:48px;
margin-bottom:20px;
}

.cta-btn{
display:inline-block;
background:#0077b6;
color:#fff;
padding:14px 30px;
border-radius:30px;
text-decoration:none;
margin-top:20px;
font-weight:bold;
}

/* SERVICES GRID */

.services{
padding:80px 0;
background:#f7f9fb;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.service-card{
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:.3s;
text-align:center;
}

.service-card:hover{
transform:translateY(-8px);
}

.service-card img{
width:100%;
height:200px;
object-fit:cover;
}

.service-card h3{
margin:15px 0 10px;
}

.service-card p{
padding:0 15px 20px;
}

/* DETAILED SERVICE */

.service-detail{
padding:80px 0;
}

.service-row{
display:flex;
flex-wrap:wrap;
align-items:center;
margin-bottom:60px;
gap:40px;
}

.service-row img{
width:100%;
max-width:500px;
border-radius:10px;
}

.service-text{
flex:1;
}

.service-text h3{
font-size:28px;
margin-bottom:10px;
}

/* WHY US */

.why-us{
background:#f1f6fb;
padding:80px 0;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
margin-top:40px;
}

.why-box{
background:#fff;
padding:30px;
border-radius:10px;
box-shadow:0 8px 20px rgba(0,0,0,0.06);
text-align:center;
}

.why-box h4{
margin-bottom:10px;
}

/* CTA */

.cta-section{
background:#0077b6;
color:#fff;
text-align:center;
padding:70px 20px;
}

.cta-section h2{
color:#fff;
}

.cta-section p{
max-width:600px;
margin:auto;
margin-bottom:20px;
}
.why-us{
background:#f5f9fc;
padding:90px 0;
font-family:Arial, Helvetica, sans-serif;
}

.why-us h2{
text-align:center;
font-size:38px;
margin-bottom:10px;
color:#1b2a41;
}

.why-sub{
text-align:center;
max-width:650px;
margin:auto;
margin-bottom:50px;
color:#555;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
width:90%;
max-width:1200px;
margin:auto;
}

.why-box{
background:#fff;
padding:35px 25px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.07);
text-align:center;
transition:all .3s ease;
}

.why-box:hover{
transform:translateY(-10px);
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.why-icon{
width:70px;
height:70px;
margin:auto;
margin-bottom:20px;
background:#e6f4fb;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
color:#0077b6;
}

.why-box h4{
font-size:20px;
margin-bottom:10px;
color:#1b2a41;
}

.why-box p{
color:#666;
line-height:1.6;
}

/* Blog Page CSS */
/* HERO SECTION */

.blog-hero{
height:420px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
position:relative;
background:
linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
url('https://images.unsplash.com/photo-1584515933487-779824d29309') center/cover no-repeat;
}

.blog-hero-content{
max-width:700px;
padding:20px;
}

.blog-hero h1{
font-size:52px;
margin-bottom:15px;
}

.blog-hero p{
font-size:18px;
line-height:1.7;
opacity:.95;
}

/* BLOG CONTAINER */

.blog-container{
width:90%;
max-width:1200px;
margin:80px auto;
font-family:Arial, Helvetica, sans-serif;
}

/* GRID */

.blog-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
}

@media(max-width:992px){
.blog-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.blog-grid{
grid-template-columns:1fr;
}
}

/* BLOG CARD */

.blog-card{
background:#fff;
border-radius:14px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:all .35s ease;
display:flex;
flex-direction:column;
}

.blog-card:hover{
transform:translateY(-12px);
box-shadow:0 18px 45px rgba(0,0,0,0.15);
}

/* IMAGE */

.blog-card img{
width:100%;
height:230px;
object-fit:cover;
transition:transform .6s ease;
}

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

/* CONTENT */

.blog-card-content{
padding:24px;
flex:1;
display:flex;
flex-direction:column;
}

.blog-card-content h2{
font-size:20px;
margin-bottom:10px;
line-height:1.4;
}

.blog-card-content h2 a{
text-decoration:none;
color:#1b2a41;
}

.blog-card-content h2 a:hover{
color:#0077b6;
}

/* META */

.meta{
font-size:14px;
color:#777;
margin-bottom:12px;
display:flex;
align-items:center;
gap:8px;
}

.meta i{
color:#0077b6;
}

/* EXCERPT */

.excerpt{
color:#555;
line-height:1.6;
margin-bottom:18px;
flex:1;
}

/* READ MORE */

.read-more{
display:inline-flex;
align-items:center;
gap:8px;
font-weight:600;
color:#0077b6;
text-decoration:none;
transition:.3s;
}

.read-more i{
transition:transform .3s;
}

.read-more:hover{
color:#005f8a;
}

.read-more:hover i{
transform:translateX(6px);
}

.blog-content{
font-size:18px;
line-height:1.9;
color:#444;
}

.blog-content h2{
font-size:30px;
margin-top:35px;
margin-bottom:15px;
}

.blog-content h3{
font-size:24px;
margin-top:30px;
margin-bottom:12px;
}

.blog-content p{
margin-bottom:18px;
}

.blog-content img{
max-width:100%;
border-radius:10px;
margin:25px 0;
}

/* CTA */

.blog-cta{
background:#0077b6;
color:#fff;
padding:40px;
border-radius:12px;
text-align:center;
margin-top:40px;
}

.cta-btn{
display:inline-block;
background:#fff;
color:#0077b6;
padding:12px 26px;
border-radius:30px;
font-weight:600;
text-decoration:none;
margin-top:15px;
}

/* AUTHOR */

.author-box{
display:flex;
gap:20px;
align-items:center;
background:#f6f8fb;
padding:25px;
border-radius:12px;
margin-top:40px;
}

.author-avatar img{
border-radius:50%;
}

.author-info h4{
margin-bottom:5px;
}

/* Contact Us Page CSS */
/* HERO */

.contact-hero{
padding:120px 20px;
color:#fff;
text-align:center;
}

.contact-hero h1{
font-size:48px;
margin-bottom:15px;
}

.contact-hero p{
max-width:700px;
margin:auto;
margin-bottom:25px;
}

.hero-call-btn{
background:#ffffff;
color:#0077b6;
padding:14px 30px;
border-radius:40px;
font-weight:600;
text-decoration:none;
}


/* CONTACT */

.contact-main{
padding:80px 20px;
background:#f7f9fc;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
}

.contact-item{
display:flex;
gap:15px;
margin-bottom:25px;
}

.contact-item i{
font-size:20px;
color:#0077b6;
margin-top:5px;
}

.contact-form h2,
.contact-info h2{
margin-bottom:15px;
}


/* CTA */

.contact-cta{
background:#0077b6;
color:#fff;
padding:70px 20px;
text-align:center;
}

.cta-call{
display:inline-block;
margin-top:20px;
background:#fff;
color:#0077b6;
padding:15px 35px;
border-radius:30px;
font-weight:600;
text-decoration:none;
}


/* HOURS */

.hours-section{
padding:80px 20px;
text-align:center;
}

.hours-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:40px;
}

.hours-card{
background:#fff;
padding:35px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.hours-card i{
font-size:28px;
color:#0077b6;
margin-bottom:10px;
}


/* MAP */

.map-section{
padding:80px 20px;
background:#f7f9fc;
text-align:center;
}

.map-container{
margin-top:30px;
border-radius:10px;
overflow:hidden;
}


/* FAQ */

.faq-section{
padding:80px 20px;
}

.faq-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-top:40px;
}

.faq-item{
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.06);
}

.faq-item i{
color:#0077b6;
margin-right:8px;
}


/* RESPONSIVE */

@media(max-width:900px){

.contact-grid{
grid-template-columns:1fr;
}

.hours-grid{
grid-template-columns:1fr;
}

.faq-grid{
grid-template-columns:1fr;
}

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

}
.joyride-form{
margin-top:20px;
}

.form-row{
display:flex;
gap:20px;
margin-bottom:18px;
}

.form-group{
flex:1;
display:flex;
flex-direction:column;
}

.form-group label{
font-weight:600;
margin-bottom:6px;
color:#333;
font-size:14px;
}

.joyride-form input,
.joyride-form select,
.joyride-form textarea{
width:100%;
padding:12px 14px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
transition:all .3s ease;
}

.joyride-form input:focus,
.joyride-form select:focus,
.joyride-form textarea:focus{
border-color:#0077b6;
outline:none;
box-shadow:0 0 0 2px rgba(0,119,182,.1);
}

.joyride-form textarea{
height:140px;
resize:none;
}

.submit-wrap{
margin-top:10px;
}

.submit-btn{
background:#0077b6;
color:#fff;
padding:14px 30px;
border:none;
border-radius:30px;
font-size:16px;
font-weight:600;
cursor:pointer;
transition:all .3s ease;
}

.submit-btn:hover{
background:#005f8f;
transform:translateY(-2px);
}


/* Mobile */

@media(max-width:768px){

.form-row{
flex-direction:column;
}

}
/*Footer CSS UL Li */
/* footer text same as other columns */

.footer-col p{
color:#ccc;
font-size:15px;
margin:6px 0;
}

/* contact alignment */

.contact-item{
display:flex;
align-items:center;
gap:10px;
}

/* icon */

.contact-item i{
font-size:14px;
width:18px;
color:#ccc;
}

/* link color same as text */

.contact-item a{
color:inherit;
text-decoration:none;
transition:0.3s;
}

/* hover effect */

.contact-item a:hover{
color:#4da3ff;
}
/* ===============================
ABOUT PAGE
================================ */

.about-page{
font-family: inherit;
}


/* HERO SECTION */

.about-hero{
background: linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
url('https://images.unsplash.com/photo-1584515933487-779824d29309') center/cover no-repeat;
padding:120px 20px;
text-align:center;
color:#fff;
}

.about-hero h1{
font-size:46px;
font-weight:700;
margin-bottom:20px;
}

.about-hero p{
font-size:18px;
max-width:750px;
margin:auto;
line-height:1.7;
margin-bottom:30px;
}

.cta-btn{
background:#2c7be5;
color:#fff;
padding:14px 28px;
border-radius:5px;
text-decoration:none;
font-weight:600;
display:inline-block;
transition:.3s;
}

.cta-btn:hover{
background:#1a5ec8;
}


/* ABOUT CONTENT */

.about-content{
padding:80px 20px;
background:#fff;
}

.about-main{
max-width:900px;
margin:auto;
font-size:17px;
line-height:1.8;
color:#555;
}

.about-main h2{
font-size:32px;
margin-bottom:20px;
color:#222;
}

.about-main p{
margin-bottom:20px;
}


/* FOUNDER SECTION */

.founder-section{
padding:80px 20px;
background:#f8f9fb;
}

.founder-row{
display:flex;
align-items:center;
gap:50px;
max-width:1100px;
margin:auto;
}

.founder-image img{
width:100%;
max-width:380px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.founder-content h2{
font-size:32px;
margin-bottom:10px;
}

.founder-content h4{
color:#2c7be5;
margin-bottom:20px;
}

.founder-content p{
color:#555;
line-height:1.8;
margin-bottom:15px;
}


/* MISSION VISION */

.mission-vision{
padding:80px 20px;
background:#fff;
}

.mv-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
max-width:1000px;
margin:auto;
}

.mv-box{
background:#f9fafc;
padding:40px;
border-radius:8px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.mv-icon{
font-size:38px;
color:#2c7be5;
margin-bottom:15px;
}

.mv-box h3{
margin-bottom:10px;
}

.mv-box p{
color:#666;
line-height:1.7;
}


/* TRUST SECTION */

.trust-section{
padding:80px 20px;
background:#f8f9fb;
text-align:center;
}

.trust-section h2{
font-size:36px;
margin-bottom:15px;
}

.trust-sub{
max-width:650px;
margin:auto;
margin-bottom:50px;
color:#666;
}

.trust-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
max-width:1100px;
margin:auto;
}

.trust-box{
background:#fff;
padding:30px;
border-radius:8px;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
transition:.3s;
}

.trust-box:hover{
transform:translateY(-6px);
}

.trust-box i{
font-size:34px;
color:#2c7be5;
margin-bottom:15px;
}

.trust-box h4{
margin-bottom:10px;
}

.trust-box p{
color:#666;
line-height:1.6;
}


/* CTA SECTION */

.cta-section{
background:#2c7be5;
color:#fff;
text-align:center;
padding:80px 20px;
}

.cta-section h2{
font-size:36px;
margin-bottom:15px;
}

.cta-section p{
max-width:650px;
margin:auto;
margin-bottom:30px;
line-height:1.7;
}


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

@media(max-width:992px){

.trust-grid{
grid-template-columns:1fr 1fr;
}

.founder-row{
flex-direction:column;
text-align:center;
}

.mv-grid{
grid-template-columns:1fr;
}

}

@media(max-width:600px){

.about-hero h1{
font-size:32px;
}

.trust-grid{
grid-template-columns:1fr;
}

.about-hero{
padding:80px 20px;
}

}

/* HEADER STRUCTURE */

.main-header{
background:#f9f9f7;
padding:0;
margin:0;
}

.header-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
}


/* LOGO */

.logo-area{
flex:0 0 180px;
display:flex;
align-items:center;
padding:10px 15px;
}

.logo-area img{
height:150px;
width:auto;
}

/* RIGHT HEADER */

.right-header{
flex:1;
}

/* TOP GREEN BAR */

.top-info{
background:#1fa67a;
color:#fff;
text-align:center;
font-size:14px;
padding:8px 0;
margin:0;
width:100%;
}

/* MENU BAR */

.menu-bar{
background:#f9f9f7;
padding:10px 20px;
margin:0;
}
/* MENU STYLE */

.menu-bar ul{
display:flex;
gap:30px;
list-style:none;
margin:0;
padding:0;
}

.menu-bar ul li a{
text-decoration:none;
font-family:'Poppins',sans-serif;
font-size:15px;
font-weight:500;
color:#333;
}

.menu-bar ul li a:hover{
color:#1fa67a;
}
header{
margin-bottom:0;
}

.hero{
margin-top:0;
padding-top:120px;
}
/* ===============================
MOBILE RESPONSIVE FIX
================================ */

@media (max-width: 768px){

/* CONTAINER */
.container{
width:95%;
}

/* HEADER FIX */
.header-container{
flex-direction:column;
align-items:center;
}

.logo-area img{
height:90px;
}

/* MENU FIX (STACK) */
.menu-bar ul{
flex-direction:column;
gap:15px;
align-items:center;
}

/* HERO FIX */
.hero{
height:auto;
padding:100px 20px 60px;
text-align:center;
}

.hero h1{
font-size:26px;
line-height:1.3;
}

.hero p{
font-size:16px;
}

.hero-buttons a{
display:block;
margin:10px auto;
}

/* GRID FIXES */
.about-grid,
.services-grid,
.team-grid,
.blog-grid,
.trust-grid,
.area-grid,
.mission-grid,
.testimonial-grid,
.footer-grid{
grid-template-columns:1fr !important;
}

/* SERVICE ROW FIX */
.service-row{
flex-direction:column;
text-align:center;
}

/* CONTACT GRID */
.contact-grid{
grid-template-columns:1fr;
}

/* HOURS GRID */
.hours-grid{
grid-template-columns:1fr;
}

/* FAQ GRID */
.faq-grid{
grid-template-columns:1fr;
}

/* BLOG HERO */
.blog-hero{
height:auto;
padding:80px 20px;
}

.blog-hero h1{
font-size:28px;
}

/* SERVICE HERO */
.service-hero{
padding:80px 20px;
}

.service-hero h1{
font-size:30px;
}

/* ABOUT HERO */
.about-hero{
padding:80px 20px;
}

.about-hero h1{
font-size:30px;
}

/* FOUNDER SECTION */
.founder-row{
flex-direction:column;
text-align:center;
}

/* FOOTER */
.footer-bottom{
flex-direction:column;
text-align:center;
}

/* FORM FIX */
.form-row{
flex-direction:column;
}

/* BUTTON FIX */
.btn,
.cta-btn,
.submit-btn{
width:100%;
text-align:center;
}

/* TEXT SIZE IMPROVEMENT */
h2{
font-size:26px;
}

.section-title{
font-size:26px;
}

}

/* ===============================
SMALL MOBILE (EXTRA FIX)
================================ */

@media (max-width:480px){

.hero h1{
font-size:22px;
}

.hero p{
font-size:14px;
}

.logo-area img{
height:70px;
}

.menu-bar{
padding:10px;
}

}

