/* ===================================================
   Shri Sai Samarth Packers & Movers
   Premium Responsive Website
   style.css - Part 1
=================================================== */

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

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#f8f9fa;
color:#333;
line-height:1.7;
overflow-x:hidden;
}

/* Container */

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

/* Navbar */

header{
position:fixed;
width:100%;
top:0;
left:0;
background:#ffffff;
box-shadow:0 2px 12px rgba(0,0,0,.1);
z-index:999;
}

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

.logo img{
height:70px;
}

.nav-links{
display:flex;
list-style:none;
gap:35px;
}

.nav-links a{
text-decoration:none;
color:#222;
font-weight:600;
transition:.3s;
}

.nav-links a:hover{
color:#ff6b00;
}

.quote-btn{
background:#ff6b00;
color:#fff;
padding:12px 24px;
border-radius:40px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.quote-btn:hover{
background:#0b5ed7;
}

/* Hero */

.hero{
height:100vh;
background:url("../images/truck1.jpg") center center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
position:relative;
}

.hero-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.65);
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
}

.hero-content{
color:#fff;
max-width:850px;
}

.hero-content h3{
font-size:26px;
color:#ffc107;
margin-bottom:10px;
}

.hero-content h1{
font-size:60px;
font-weight:700;
margin-bottom:15px;
}

.hero-content h2{
font-size:36px;
margin-bottom:20px;
color:#fff;
}

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

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
padding:15px 35px;
border-radius:40px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn-primary{
background:#0b5ed7;
color:#fff;
}

.btn-primary:hover{
background:#084298;
}

.btn-secondary{
background:#25d366;
color:#fff;
}

.btn-secondary:hover{
background:#128c7e;
}

/* Statistics */

.stats{
background:#0b5ed7;
color:#fff;
padding:70px 0;
}

.stats .container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
text-align:center;
}

.stat-box h2{
font-size:48px;
color:#ffc107;
margin-bottom:10px;
}

.stat-box p{
font-size:20px;
}

/* About */

.about{
padding:100px 0;
background:#fff;
}

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

.about-image img{
width:100%;
border-radius:15px;
box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.about-content h2{
font-size:42px;
color:#0b5ed7;
margin-bottom:20px;
}

.about-content p{
margin-bottom:20px;
font-size:18px;
}

.about-content ul{
padding-left:20px;
}

.about-content li{
margin-bottom:12px;
font-size:18px;
}

/* Section Title */

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:42px;
color:#0b5ed7;
margin-bottom:15px;
}

.section-title p{
font-size:20px;
color:#666;
}
/* ===========================
   SERVICES
=========================== */

.services{
padding:100px 0;
background:#f8f9fa;
}

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

.service-card{
background:#fff;
padding:35px;
border-radius:15px;
text-align:center;
transition:.35s;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.service-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.service-card i{
font-size:55px;
color:#ff6b00;
margin-bottom:20px;
}

.service-card h3{
font-size:24px;
margin-bottom:15px;
color:#0b5ed7;
}

.service-card p{
font-size:16px;
color:#555;
}

/* ===========================
WHY CHOOSE US
=========================== */

.why-us{
padding:100px 0;
background:#ffffff;
}

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

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

.why-card:hover{
background:#0b5ed7;
color:#fff;
transform:translateY(-8px);
}

.why-card:hover h3,
.why-card:hover p,
.why-card:hover i{
color:#fff;
}

.why-card i{
font-size:50px;
color:#ff6b00;
margin-bottom:20px;
}

.why-card h3{
margin-bottom:15px;
font-size:24px;
}

/* ===========================
PROCESS
=========================== */

.process{
padding:100px 0;
background:#f8f9fa;
}

.process-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.step{
background:#fff;
padding:35px;
border-radius:15px;
text-align:center;
box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.number{
width:70px;
height:70px;
margin:auto;
margin-bottom:20px;
background:#ff6b00;
color:#fff;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
font-weight:bold;
}

/* ===========================
GALLERY
=========================== */

.gallery{
padding:100px 0;
background:#fff;
}

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

.gallery-grid img{
width:100%;
height:260px;
object-fit:cover;
border-radius:15px;
transition:.4s;
cursor:pointer;
}

.gallery-grid img:hover{
transform:scale(1.05);
}

/* ===========================
REVIEWS
=========================== */

.reviews{
padding:100px 0;
background:#f8f9fa;
}

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

.review-card{
background:#fff;
padding:35px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
text-align:center;
font-size:18px;
}

.review-card h3{
margin:20px 0 10px;
color:#0b5ed7;
}

/* ===========================
CONTACT
=========================== */

.contact{
padding:100px 0;
background:#fff;
}

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

.contact-info h3{
font-size:34px;
color:#0b5ed7;
margin-bottom:20px;
}

.contact-info p{
margin-bottom:15px;
font-size:18px;
}

.contact-info a{
text-decoration:none;
color:#333;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:15px;
margin-bottom:20px;
border:1px solid #ddd;
border-radius:10px;
font-size:16px;
font-family:Poppins,sans-serif;
}

.contact-form button{
background:#ff6b00;
color:#fff;
padding:15px 35px;
border:none;
border-radius:10px;
font-size:18px;
cursor:pointer;
transition:.3s;
}

.contact-form button:hover{
background:#0b5ed7;
}

/* ===========================
MAP
=========================== */

.map iframe{
width:100%;
height:450px;
border:none;
}

/* ===========================
FOOTER
=========================== */

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

footer h2{
margin-bottom:15px;
}

.footer-contact{
margin:20px 0;
}

.footer-contact a{
color:#fff;
text-decoration:none;
margin:0 10px;
}

.social a{
display:inline-block;
width:45px;
height:45px;
line-height:45px;
background:#fff;
color:#0b5ed7;
border-radius:50%;
margin:10px;
font-size:20px;
transition:.3s;
}

.social a:hover{
background:#ff6b00;
color:#fff;
}

/* ===========================
FLOATING BUTTONS
=========================== */

.call-float,
.whatsapp-float{
position:fixed;
right:20px;
width:60px;
height:60px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
color:#fff;
font-size:28px;
text-decoration:none;
box-shadow:0 8px 20px rgba(0,0,0,.25);
z-index:999;
}

.call-float{
bottom:95px;
background:#0b5ed7;
}

.whatsapp-float{
bottom:20px;
background:#25D366;
}

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

@media(max-width:991px){

.navbar{
flex-direction:column;
gap:20px;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
gap:18px;
}

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

.hero-content h1{
font-size:42px;
}

.hero-content h2{
font-size:28px;
}

.hero-content p{
font-size:17px;
}

.section-title h2{
font-size:34px;
}

}

@media(max-width:576px){

.logo img{
height:55px;
}

.hero{
padding-top:120px;
}

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

.hero-content h2{
font-size:22px;
}

.hero-content h3{
font-size:18px;
}

.btn-primary,
.btn-secondary{
display:block;
margin:10px auto;
}

.service-card,
.review-card,
.step{
padding:25px;
}

}
