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

body{
font-family:'Poppins',sans-serif;
color:#222;
background:#fff;
line-height:1.6;
overflow-x:hidden;
}

img{
max-width:100%;
display:block;
border-radius:14px;
}

a{
text-decoration:none;
color:inherit;
}

ul{
list-style:none;
padding:0;
}

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

.section{
padding:80px 0;
}

/* TOPBAR */
.topbar{
background:#c40000;
color:#fff;
padding:10px 0;
font-size:14px;
}

.top-flex{
display:flex;
justify-content:space-between;
gap:15px;
flex-wrap:wrap;
}

/* HEADER */
header{
background:#fff;
position:sticky;
top:0;
z-index:999;
box-shadow:0 3px 12px rgba(0,0,0,.08);
}

.nav-wrap{
display:flex;
justify-content:space-between;
align-items:center;
padding:16px 0;
gap:20px;
}

.logo{
font-size:30px;
font-weight:800;
color:#c40000;
}

.logo span{
color:#ffbf00;
}

nav ul{
display:flex;
gap:28px;
}

nav a{
font-weight:600;
transition:.3s;
}

nav a:hover{
color:#c40000;
}

.nav-btn{
background:#c40000;
color:#fff;
padding:12px 22px;
border-radius:8px;
font-weight:600;
}

.menu-toggle{
display:none;
background:none;
border:none;
font-size:28px;
cursor:pointer;
}

/* HERO */
.hero{
padding:90px 0;
background:linear-gradient(rgba(0,0,0,.68),rgba(0,0,0,.68)),
url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1400&q=80');
background-size:cover;
background-position:center;
color:#fff;
}

.hero-grid{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:40px;
align-items:center;
}

.tagline{
display:inline-block;
padding:8px 14px;
background:#ffbf00;
color:#111;
font-size:13px;
font-weight:700;
border-radius:30px;
margin-bottom:18px;
}

.hero h1{
font-size:56px;
line-height:1.1;
margin-bottom:18px;
font-weight:800;
}

.hero h1 span{
color:#ffbf00;
}

.hero p{
font-size:17px;
color:#eee;
margin-bottom:28px;
}

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

.btn{
display:inline-block;
padding:14px 28px;
border-radius:8px;
font-weight:700;
transition:.3s;
}

.primary{
background:#c40000;
color:#fff;
}

.outline{
border:2px solid #fff;
color:#fff;
}

.outline:hover{
background:#fff;
color:#111;
}

/* FORM */
.hero-form,
.contact-form{
background:#fff;
padding:28px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,.15);
color:#111;
}

.hero-form h3,
.contact-form h3{
font-size:28px;
margin-bottom:18px;
color:#c40000;
}

form{
display:grid;
gap:14px;
}

input,
select,
textarea{
width:100%;
padding:14px;
border:1px solid #ddd;
border-radius:8px;
font-size:15px;
font-family:inherit;
outline:none;
}

textarea{
min-height:110px;
resize:vertical;
}

button{
background:#ffbf00;
color:#111;
border:none;
padding:14px;
font-size:16px;
font-weight:700;
border-radius:8px;
cursor:pointer;
}

/* BRANCHES MARQUEE */
.branches{
background:#ffbf00;
padding:20px 0;
overflow:hidden;
}

.branch-title{
text-align:center;
font-size:28px;
font-weight:800;
color:#111;
margin-bottom:15px;
}

.marquee{
width:100%;
overflow:hidden;
white-space:nowrap;
}

.track{
display:inline-block;
white-space:nowrap;
padding-left:100%;
animation:movebranch 18s linear infinite;
}

.track span{
display:inline-block;
background:#c40000;
color:#fff;
padding:12px 20px;
margin:0 8px;
border-radius:30px;
font-size:15px;
font-weight:600;
}

@keyframes movebranch{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-100%);
}
}

/* TITLE */
.title{
margin-bottom:40px;
text-align:center;
}

.title.left{
text-align:left;
}

.title h2{
font-size:40px;
color:#c40000;
}

/* ABOUT */
.about{
background:#fff8e5;
}

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

.points{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:12px;
margin:22px 0;
}

.points li{
background:#fff;
padding:12px;
border-radius:10px;
font-weight:600;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

/* SERVICES */
.service-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.card{
background:#fff;
padding:28px;
border-radius:16px;
text-align:center;
box-shadow:0 8px 24px rgba(0,0,0,.08);
transition:.3s;
}

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

.card i{
font-size:42px;
color:#ffbf00;
margin-bottom:18px;
}

.card h3{
color:#c40000;
margin-bottom:10px;
}

/* CONTACT */
.contact{
background:#fafafa;
}

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

.contact-info h2{
font-size:40px;
color:#c40000;
margin-bottom:15px;
}

.info-box{
background:#fff;
padding:16px;
border-radius:10px;
margin-top:14px;
box-shadow:0 5px 18px rgba(0,0,0,.06);
}

/* FOOTER */
footer{
background:#111;
color:#fff;
padding-top:60px;
}

.foot-wrap{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
padding-bottom:35px;
}

footer h3{
color:#ffbf00;
margin-bottom:14px;
}

.copy{
border-top:1px solid rgba(255,255,255,.1);
padding:18px;
text-align:center;
font-size:14px;
}

/* STICKY */
.sticky-btns{
position:fixed;
right:16px;
bottom:16px;
display:flex;
flex-direction:column;
gap:10px;
z-index:999;
}

.sticky-btns a{
width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:#fff;
font-size:22px;
}

.call{
background:#c40000;
}

.whatsapp{
background:#25d366;
}

/* MOBILE */
@media(max-width:992px){

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

.service-grid{
grid-template-columns:repeat(2,1fr);
}

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

}

@media(max-width:768px){

.menu-toggle{
display:block;
}

nav{
position:absolute;
top:100%;
left:0;
right:0;
background:#fff;
display:none;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

nav.show{
display:block;
}

nav ul{
flex-direction:column;
padding:20px;
gap:18px;
}

.nav-btn{
display:none;
}

.hero{
padding:65px 0;
}

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

.service-grid,
.points,
.foot-wrap{
grid-template-columns:1fr;
}

.top-flex{
flex-direction:column;
}

.title h2{
font-size:30px;
}

.track{
animation:movebranch 14s linear infinite;
}

.track span{
padding:10px 16px;
font-size:14px;
margin:0 6px;
}

.branch-title{
font-size:22px;
}

}

@media(max-width:560px){

.logo{
font-size:24px;
}

.hero-form,
.contact-form{
padding:22px;
}

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

}