
/* ================= GLOBAL ================= */

:root{
--yellow:#E6D85C;
--dark-yellow:#C9B800;
--red:#B5121B;
--dark:#111;
--light:#f9f9e5;
}
.blk {background-color:#000 !important;}
*{margin:0;padding:0;box-sizing:border-box;font-family:Arial, sans-serif;}
html{scroll-behavior:smooth;}
body{background:var(--light);color:var(--dark);}

.container{width:90%;max-width:1200px;margin:auto;}
section{padding:80px 0;}
h2{font-size:36px;margin-bottom:20px;}
p{line-height:1.6;}
.btn{padding:12px 25px;background:var(--red);color:#fff;text-decoration:none;border-radius:5px;display:inline-block;transition:0.3s;}
.btn:hover{background:#8e0f16;}

/* ================= TOPBAR ================= */

.topbar{
background:var(--red);
color:#fff;
padding:10px 0;
font-size:14px;
}
.topbar .container{
display:flex;
justify-content:space-between;
align-items:center;
}
.topbar a{color:#fff;text-decoration:none;margin-left:15px;}

/* ================= HEADER ================= */

header{
background:var(--yellow);
position:sticky;
top:0;
z-index:999;
}
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}
.logo{font-size:24px;font-weight:bold;}
nav a{
margin-left:25px;
text-decoration:none;
color:#000;
font-weight:600;
}
.logo img {width:100px;}

/* ================= HERO SLIDER ================= */

.hero{
position:relative;
height:100vh;
overflow:hidden;
padding-top:0px;
}

.slide{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
opacity:0;
transition:opacity 1s ease-in-out;
}

.slide.active{opacity:1;}

.hero-content{
background:rgba(0,0,0,0.5);
padding:40px;
border-radius:10px;
}

.hero h1{font-size:48px;margin-bottom:15px;}
.hero p{margin-bottom:20px;}

.counters{
display:flex;
justify-content:center;
gap:30px;
margin:20px 0;
}

.counter h3{font-size:28px;color:var(--yellow);}

/* ================= ABOUT + FORM ================= */

.about-form .wrapper{
display:flex;
gap:40px;
flex-wrap:wrap;
}

.about, .form-box{
flex:1;
min-width:300px;
}

.form-box{
background:#fff;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

input, textarea, select{
width:100%;
padding:10px;
margin-bottom:15px;
border:1px solid #ccc;
border-radius:5px;
}

/* ================= SERVICES ================= */

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.service-card{
background:#fff;
padding:30px;
border-radius:10px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:0.3s;
}
.service-card:hover{
background:var(--yellow);
transform:translateY(-5px);
}

/* ================= STATS ================= */

.stats{
background:var(--dark);
color:#fff;
}
.stats-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
text-align:center;
}

/* ================= WHY CHOOSE ================= */

.why .wrapper{
display:flex;
gap:40px;
flex-wrap:wrap;
align-items:center;
}
.why img{
width:100%;
border-radius:10px;
}
.features li{
margin-bottom:15px;
}

/* ================= PROCESS ================= */

.process-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
text-align:center;
}

/* ================= TESTIMONIALS UPGRADE ================= */

.testimonials{
background:linear-gradient(135deg,#B5121B,#8e0f16);
color:#fff;
text-align:center;
position:relative;
overflow:hidden;
}

.testimonials h2{
margin-bottom:50px;
}

.testimonial-wrapper{
display:flex;
transition:transform 0.6s ease-in-out;
}

.testimonial-card{
min-width:100%;
padding:40px 20px;
display:flex;
justify-content:center;
}

.testimonial-content{
background:#fff;
color:#111;
max-width:700px;
padding:40px;
border-radius:15px;
box-shadow:0 15px 40px rgba(0,0,0,0.2);
}

.testimonial-content img{
width:80px;
height:80px;
border-radius:50%;
object-fit:cover;
margin-bottom:15px;
}

.stars{
color:#f4b400;
margin:10px 0;
font-size:18px;
}

.testimonial-content h4{
margin-top:10px;
color:#B5121B;
}

@media(max-width:768px){
.testimonial-content{
padding:25px;
}
}


/* ================= CTA ================= */

.cta{
background:var(--red);
color:#fff;
text-align:center;
}

/* ================= CONTACT ================= */

.contact form{
max-width:700px;
margin:auto;
}

/* ================= FOOTER ================= */

footer{
background:#111;
color:#fff;
padding:50px 0;
}
.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
}
footer a{color:#fff;text-decoration:none;}

/* ================= FLOATING ================= */

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:#fff;
padding:15px;
border-radius:50%;
font-size:24px;
z-index:999;
}

.sticky-quote{
position:fixed;
top:50%;
right:20px;
background:var(--red);
color:#fff;
padding:15px;
transform:rotate(-90deg) translateY(-50%);
transform-origin:right top;
text-decoration:none;
}




/* ================= SERVICES SECTION UPGRADE ================= */

.services{
background:linear-gradient(135deg,#E6D85C,#C9B800);
color:#111;
}

.services h2{
text-align:center;
margin-bottom:50px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.service-card{
background:#fff;
padding:35px 25px;
border-radius:12px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
transition:all 0.4s ease;
opacity:0;
transform:translateY(40px);
}

.service-card i{
font-size:40px;
color:#B5121B;
margin-bottom:20px;
}

.service-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 40px rgba(0,0,0,0.2);
background:#fffbe6;
}

/* ================= WHY CHOOSE 50/50 ================= */

.why{
background:#fff;
}

.why-wrapper{
display:flex;
flex-wrap:wrap;
align-items:center;
gap:50px;
}

.why-image,
.why-content{
flex:1;
min-width:300px;
}

.why-image img{
width:100%;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.why-content ul{
list-style:none;
margin-top:20px;
}

.why-content li{
margin-bottom:15px;
font-size:18px;
}

/* ================= WORK PROCESS ================= */

.process{
background:#f5f5f5;
text-align:center;
}

.process-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:40px;
}

.process-card{
background:#fff;
padding:40px 25px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
transition:0.4s;
opacity:0;
transform:translateY(40px);
}

.process-card i{
font-size:45px;
color:#B5121B;
margin-bottom:20px;
}

.process-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.2);
}

/* ================= GMAP ================= */

.map-section{
padding:0;
}

.map-section iframe{
width:100%;
height:350px;
border:0;
}

/* ================= SCROLL ANIMATION ================= */

.animate{
opacity:1 !important;
transform:translateY(0) !important;
transition:all 0.8s ease;
}


/* ================= MOVING SAFELY ================= */

.moving-safe{
background:#fff;
padding:80px 0;
}

.safe-wrapper{
display:flex;
flex-wrap:wrap;
align-items:center;
gap:50px;
}

.safe-content{
flex:1;
min-width:300px;
}

.safe-content h2{
margin-bottom:20px;
}

.safe-content p{
margin-bottom:15px;
}

.safe-content ul{
list-style:none;
margin-top:20px;
}

.safe-content ul li{
margin-bottom:10px;
font-weight:500;
}

.safe-image{
flex:1;
min-width:300px;
}

.safe-image img{
width:100%;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}


/* ================= TESTIMONIALS FIXED ================= */

.testimonials{
background:linear-gradient(135deg,#B5121B,#8e0f16);
color:#fff;
text-align:center;
padding:80px 0;
overflow:hidden;
}

.testimonial-container{
overflow:hidden;
position:relative;
}

.testimonial-wrapper{
display:flex;
transition:transform 0.6s ease-in-out;
}

.testimonial-card{
flex:0 0 50%; /* 2 per row */
padding:20px;
box-sizing:border-box;
}

.testimonial-content{
background:#fff;
color:#111;
padding:35px;
border-radius:15px;
box-shadow:0 15px 40px rgba(0,0,0,0.2);
text-align:center;
}

.testimonial-content img{
width:70px;
height:70px;
border-radius:50%;
margin-bottom:15px;
}

.stars{
color:#f4b400;
margin:10px 0;
}

@media(max-width:768px){
.testimonial-card{
flex:0 0 100%; /* 1 per row on mobile */
}
}


/* HERO */
.page-hero{
background:url('/img/img.jpg');
background-size:cover;
background-position:center;
color:#fff;
text-align:center;
padding:120px 0;
}
.page-hero h1{
font-size:48px;
}

/* ABOUT  */

/* ABOUT CONTENT */
.about-wrapper{
display:flex;
flex-wrap:wrap;
gap:50px;
align-items:center;
}
.about-text,
.about-image{
flex:1;
min-width:300px;
}
.about-image img{
width:100%;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

/* MISSION VISION */
.mv-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:40px;
}
.mv-box{
background:#fff;
padding:40px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}


/* CONTACT */
.contact-wrapper{
display:flex;
flex-wrap:wrap;
gap:50px;
}
.contact-info,
.contact-form{
flex:1;
min-width:300px;
}

.contact-info i{
color:var(--red);
margin-right:10px;
}

input, textarea{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ccc;
border-radius:5px;
}
.map iframe{
width:100%;
height:350px;
border:0;
}

/* NAV MENU */

.menu{
list-style:none;
display:flex;
align-items:center;
gap:25px;
}

.menu li{
position:relative;
}

.menu li a{
text-decoration:none;
color:#000;
font-weight:600;
padding:10px 15px;
display:block;
}

/* SUBMENU */

.submenu{
display:none;
position:absolute;
top:40px;
left:0;
background:#fff;
min-width:220px;
list-style:none;
padding:0;
border-radius:6px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
z-index:999;
}

.submenu li a{
padding:12px 15px;
border-bottom:1px solid #eee;
}

.submenu li:last-child a{
border-bottom:none;
}

/* SHOW ON HOVER */

.dropdown:hover .submenu{
display:block;
}

