/*
Theme Name: Deva Packers Blog Theme
Theme URI: https://devapackerandmover.com
Author: Deva Packers
Description: Custom Blog Theme for Deva Packers & Movers
Version: 1.0
*/



/* ================= 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('https://images.unsplash.com/photo-1581578731548-c64695cc6952?q=80&w=2070&auto=format&fit=crop');
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;
}
/* ================= BLOG GRID ================= */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.read-more {
    margin-top: auto;
    display: inline-block;
    background: #B5121B;
    color: #fff;
    padding: 10px 18px;
    border-radius: 5px;
    font-size: 14px;
}

.read-more:hover {
    background: #8e0f16;
}

/* Responsive */

@media(max-width: 992px){
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){
    .blog-grid {
        grid-template-columns: 1fr;
    }
}


/* ================= BLOG HERO ================= */

.blog-hero {
    background: linear-gradient(135deg,#B5121B,#8e0f16);
    color:#fff;
    padding:80px 0;
    text-align:center;
}

.blog-hero h1 {
    font-size:42px;
    margin-bottom:10px;
}

.blog-hero p {
    font-size:18px;
    opacity:0.9;
}

/* ================= BLOG GRID ================= */

.blog-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin:60px 0;
}

.blog-card {
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    transition:all 0.4s ease;
    display:flex;
    flex-direction:column;
}

.blog-card:hover {
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

/* Image wrapper */
.blog-image {
    position:relative;
    overflow:hidden;
}

.blog-image img {
    width:100%;
    height:240px;
    object-fit:cover;
    transition:transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform:scale(1.1);
}

/* Gradient overlay */
.blog-image::after {
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:50%;
    background:linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* Category badge */
.blog-category {
    position:absolute;
    top:15px;
    left:15px;
    background:#E6D85C;
    color:#000;
    padding:6px 12px;
    font-size:12px;
    font-weight:600;
    border-radius:30px;
}

/* Content */
.blog-content {
    padding:25px;
    flex:1;
    display:flex;
    flex-direction:column;
}

.blog-meta {
    font-size:13px;
    color:#888;
    margin-bottom:8px;
}

.blog-content h2 {
    font-size:20px;
    margin-bottom:12px;
    line-height:1.4;
}

.blog-content p {
    font-size:15px;
    color:#555;
}

.read-more {
    margin-top:auto;
    display:inline-block;
    background:#B5121B;
    color:#fff;
    padding:10px 20px;
    border-radius:30px;
    font-size:14px;
    transition:0.3s;
}

.read-more:hover {
    background:#8e0f16;
}

/* Pagination */
.pagination {
    text-align:center;
    margin-bottom:60px;
}

.pagination .page-numbers {
    display:inline-block;
    margin:5px;
    padding:8px 14px;
    background:#fff;
    border-radius:5px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.pagination .current {
    background:#B5121B;
    color:#fff;
}

/* Responsive */

@media(max-width:992px){
.blog-grid{
    grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.blog-grid{
    grid-template-columns:1fr;
}
.blog-hero h1{
    font-size:30px;
}
}



.blog-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
}

.blog-hero .overlay {
    background: rgba(0,0,0,0.6);
    width: 100%;
    padding: 80px 0;
}

.blog-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-hero .meta span {
    margin-right: 15px;
    font-size: 14px;
}

.blog-container {
    display: flex;
    gap: 40px;
    padding: 60px 0;
}

.content-area {
    width: 70%;
}

.sidebar {
    width: 30%;
}

.blog-content {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.blog-content h2 {
    margin-top: 30px;
    font-size: 26px;
    color: #0a3d62;
}

.related-posts {
    padding: 40px 0 80px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.related-card {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-card h4 {
    padding: 15px;
    font-size: 18px;
}


/*sidebar*/
.custom-sidebar {
    position: sticky;
    top: 30px;
}

/* Card Style */
.sidebar-card {
    background: #fff;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.sidebar-card:hover {
    transform: translateY(-5px);
}

.sidebar-card h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: #0a3d62;
    position: relative;
}

.sidebar-card h4::after {
    content: '';
    width: 40px;
    height: 3px;
    background: #1e90ff;
    position: absolute;
    bottom: -6px;
    left: 0;
}

/* Category */
.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
}

.category-list li a {
    text-decoration: none;
    color: #333;
}

.category-list li a:hover {
    color: #1e90ff;
}

/* Recent Posts */
.recent-posts {
    list-style: none;
    padding: 0;
}

.recent-posts li {
    margin-bottom: 15px;
}

.recent-posts li a {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.recent-posts img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.recent-posts span {
    font-size: 14px;
    line-height: 1.4;
}

/* CTA */
.sidebar-cta {
    background: linear-gradient(135deg, #0a3d62, #1e90ff);
    color: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}

.sidebar-cta h3 {
    margin-bottom: 10px;
}

.sidebar-cta p {
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-call,
.btn-whatsapp {
    display: block;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 12px;
}

.btn-call {
    background: #fff;
    color: #0a3d62;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

/* ================= BLOG CONTENT LIST STYLES ================= */

.single-content ul {
    padding-left: 25px;
    margin: 20px 0;
}

.single-content ul li {
    position: relative;
    font-size: 17px;
    padding: 10px 0 10px 30px;
    margin-bottom: 10px;
    color: #444;
    line-height: 1.6;
    border-bottom: 1px dashed #ddd;
}

/* Add Custom Tick Icon */
.single-content ul li::before {
    content: "\2713"; /* check mark */
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 18px;
    color: #B5121B; /* brand red color */
}

/* No border on last item */
.single-content ul li:last-child {
    border-bottom: none;
}

/* Responsive tweak */
@media (max-width: 768px) {
    .single-content ul li {
        padding-left: 25px;
    }

    .single-content ul li::before {
        left: 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;
}