/* ==========================================
   MANISH RELOCATIONS
   PREMIUM UI SYSTEM
========================================== */

/* ===== GOOGLE FONT ===== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===== RESET ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    background:#fff;
    color:#1A1A1A;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ===== VARIABLES ===== */

:root{

    --primary:#0057C8;
    --primary-dark:#003B8F;

    --secondary:#F6B332;

    --dark:#1A1A1A;

    --text:#666666;

    --light:#F8FAFC;

    --white:#FFFFFF;

    --border:#E5E7EB;

    --radius:18px;

    --shadow:
    0 15px 40px rgba(0,0,0,.08);

    --transition:.3s ease;
}

/* ===== CONTAINER ===== */

.container{
    width:100%;
    max-width:1280px;
    margin:auto;
    padding:0 20px;
}

/* ==========================================
   BUTTONS
========================================== */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:15px 32px;

    border-radius:999px;

    font-weight:600;

    transition:var(--transition);
}

.btn-primary{
    background:var(--primary);
    color:#fff;
}

.btn-primary:hover{
    background:var(--primary-dark);
    transform:translateY(-2px);
}

.btn-secondary{
    border:2px solid var(--primary);
    color:var(--primary);
}

.btn-secondary:hover{
    background:var(--primary);
    color:#fff;
}

/* ==========================================
   HEADER
========================================== */

.header{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    background:#fff;

    z-index:999;

    box-shadow:
    0 5px 25px rgba(0,0,0,.05);
}

.navbar{

    height:85px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:60px;
}

.nav-menu{

    display:flex;
    gap:35px;
}

.nav-menu a{

    color:var(--dark);
    font-weight:500;

    transition:var(--transition);
}

.nav-menu a:hover{

    color:var(--primary);
}

.call-btn{

    background:var(--secondary);

    color:#000;

    padding:12px 24px;

    border-radius:50px;

    font-weight:600;
}

.mobile-toggle{

    display:none;

    border:none;

    background:none;

    font-size:2rem;

    cursor:pointer;
}

/* ==========================================
   HERO
========================================== */

.hero{

    padding-top:160px;
    padding-bottom:100px;

    background:
    linear-gradient(
    135deg,
    #F8FAFC,
    #FFFFFF
    );
}

.hero-grid{

    display:grid;

    grid-template-columns:
    1.2fr .8fr;

    gap:60px;

    align-items:center;
}

.hero-badge{

    display:inline-block;

    background:#EAF2FF;

    color:var(--primary);

    padding:10px 18px;

    border-radius:50px;

    font-size:.9rem;

    margin-bottom:20px;
}

.hero-content h1{

    font-size:4rem;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:800;
}

.hero-content p{

    font-size:1.15rem;

    color:var(--text);

    max-width:650px;

    margin-bottom:35px;
}

.hero-buttons{

    display:flex;
    gap:15px;
    margin-bottom:40px;
}

.hero-trust{

    display:flex;
    gap:40px;
}

.hero-trust h3{

    color:var(--primary);

    font-size:2rem;
}

.hero-trust p{

    margin-top:5px;
    font-size:.95rem;
}

/* ==========================================
   QUOTE FORM
========================================== */

.quote-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    box-shadow:var(--shadow);
}

.quote-card h2{

    margin-bottom:25px;
}

.quote-card form{

    display:flex;
    flex-direction:column;
    gap:15px;
}

.quote-card input,
.quote-card select{

    width:100%;

    padding:15px;

    border:1px solid var(--border);

    border-radius:12px;

    outline:none;
}

.quote-card button{

    border:none;

    cursor:pointer;

    background:var(--primary);

    color:#fff;

    padding:16px;

    border-radius:12px;

    font-weight:600;
}

/* ==========================================
   TRUST BAR
========================================== */

.trust-bar{

    background:var(--primary);

    color:#fff;

    padding:22px 0;
}

.trust-items{

    display:flex;

    justify-content:space-between;

    flex-wrap:wrap;

    gap:20px;
}

/* ==========================================
   SECTIONS
========================================== */

section{

    padding:100px 0;
}

.section-heading{

    text-align:center;

    margin-bottom:60px;
}

.section-heading span{

    color:var(--secondary);

    font-weight:700;

    text-transform:uppercase;
}

.section-heading h2{

    font-size:3rem;

    margin:10px 0;
}

.section-heading p{

    color:var(--text);
}

/* ==========================================
   SERVICES
========================================== */

.services-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

.service-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);
}

.service-card:hover{

    transform:
    translateY(-8px);
}

.service-card .icon{

    font-size:3rem;

    margin-bottom:15px;
}

.service-card h3{

    margin-bottom:10px;
}

.service-card p{

    color:var(--text);
}

/* ==========================================
   WHY US
========================================== */

.why-us{

    background:#F8FAFC;
}

.features-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:30px;
}

.feature{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:var(--shadow);
}

.feature h3{

    margin-bottom:10px;
}

/* ==========================================
   PROCESS
========================================== */

.process-grid{

    display:grid;

    grid-template-columns:
    repeat(6,1fr);

    gap:20px;
}

.step{

    text-align:center;
}

.step span{

    width:70px;
    height:70px;

    display:flex;

    align-items:center;
    justify-content:center;

    margin:auto auto 15px;

    background:var(--primary);

    color:#fff;

    border-radius:50%;

    font-weight:700;
}

/* ==========================================
   TESTIMONIALS
========================================== */

.testimonials{

    background:#F8FAFC;
}

.testimonial-slider{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

.testimonial{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:var(--shadow);
}

.testimonial p{

    margin-bottom:20px;
}

.testimonial h4{

    color:var(--primary);
}

/* ==========================================
   FAQ
========================================== */

.faq-wrapper{

    max-width:900px;
    margin:auto;
}

.faq-item{

    border:1px solid var(--border);

    margin-bottom:15px;

    border-radius:14px;

    overflow:hidden;
}

.faq-question{

    width:100%;

    padding:22px;

    border:none;

    background:#fff;

    text-align:left;

    cursor:pointer;

    font-size:1rem;

    font-weight:600;
}

.faq-answer{

    display:none;

    padding:20px;
}

/* ==========================================
   CTA
========================================== */

.cta-box{

    background:
    linear-gradient(
    135deg,
    var(--primary),
    var(--primary-dark)
    );

    padding:70px;

    text-align:center;

    color:#fff;

    border-radius:30px;
}

.cta-box h2{

    font-size:3rem;

    margin-bottom:15px;
}

.cta-box p{

    margin-bottom:25px;
}

/* ==========================================
   FOOTER
========================================== */

.footer{

    background:#081323;

    color:#fff;

    padding-top:80px;
}

.footer-grid{

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1fr;

    gap:50px;
}

.footer h4{

    margin-bottom:20px;
}

.footer ul li{

    margin-bottom:10px;
}

.footer a{

    color:#ccc;
}

.footer a:hover{

    color:#fff;
}

.copyright{

    border-top:
    1px solid rgba(255,255,255,.1);

    text-align:center;

    padding:25px 0;

    margin-top:50px;
}

/* ==========================================
   MOBILE CTA
========================================== */

.mobile-cta{

    display:none;
}

/* ==========================================
   TABLET
========================================== */

@media(max-width:992px){

.hero-grid{
grid-template-columns:1fr;
}

.services-grid{
grid-template-columns:repeat(2,1fr);
}

.features-grid{
grid-template-columns:repeat(2,1fr);
}

.process-grid{
grid-template-columns:repeat(3,1fr);
}

.testimonial-slider{
grid-template-columns:1fr;
}

.footer-grid{
grid-template-columns:1fr 1fr;
}

.hero-content h1{
font-size:3rem;
}

}

@media(max-width:992px){

.stats-grid{
grid-template-columns:repeat(2,1fr);
}

.clients-grid{
grid-template-columns:repeat(3,1fr);
}

.safety-grid{
grid-template-columns:repeat(2,1fr);
}

.gallery-grid{
grid-template-columns:repeat(2,1fr);
}

.blog-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:768px){

.stats-grid,
.clients-grid,
.safety-grid,
.gallery-grid,
.blog-grid{
grid-template-columns:1fr;
}
}


/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

.nav-menu{
display:none;
}

.mobile-toggle{
display:block;
}

.hero{
padding-top:130px;
}

.hero-content h1{
font-size:2.4rem;
}

.hero-buttons{
flex-direction:column;
}

.hero-trust{
flex-direction:column;
gap:20px;
}

.services-grid{
grid-template-columns:1fr;
}

.features-grid{
grid-template-columns:1fr;
}

.process-grid{
grid-template-columns:1fr 1fr;
}

.section-heading h2{
font-size:2rem;
}

.footer-grid{
grid-template-columns:1fr;
}

.cta-box{
padding:40px 25px;
}

.cta-box h2{
font-size:2rem;
}

.mobile-cta{

display:flex;

position:fixed;

bottom:0;
left:0;

width:100%;

background:#fff;

box-shadow:
0 -5px 20px rgba(0,0,0,.1);

z-index:999;
}

.mobile-cta a{

flex:1;

padding:15px;

text-align:center;

font-weight:600;

color:var(--primary);
}
}

/* Reveal Animation */

.hidden{
opacity:0;
transform:translateY(50px);
transition:.8s ease;
}

.show{
opacity:1;
transform:translateY(0);
}

/* Sticky Header */

.header.scrolled{
padding:0;
box-shadow:0 10px 30px rgba(0,0,0,.1);
}

/* Active Nav */

.nav-menu a.active{
color:var(--primary);
}

/* Back To Top */

.back-to-top{

position:fixed;

right:20px;
bottom:90px;

width:50px;
height:50px;

border:none;

border-radius:50%;

background:var(--primary);

color:white;

font-size:22px;

cursor:pointer;

opacity:0;
visibility:hidden;

transition:.3s;

z-index:999;
}

.back-to-top.visible{

opacity:1;
visibility:visible;
}

.stats{
    background:#0057C8;
    color:#fff;
    padding:80px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
}

.stat-box h3{
    font-size:3rem;
    font-weight:800;
}

.stat-box p{
    margin-top:10px;
    opacity:.9;
}

.clients{
    padding:80px 0;
    background:#F8FAFC;
}

.clients-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    text-align:center;
}

.client{
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    font-weight:600;
}

.coverage{
    padding:100px 0;
}

.cities-grid{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    justify-content:center;
}

.cities-grid span{
    background:#EAF2FF;
    color:#0057C8;
    padding:10px 16px;
    border-radius:50px;
    font-weight:500;
}

.safety{
    background:#F8FAFC;
    padding:100px 0;
}

.safety-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.safety-box{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.safety-box h3{
    margin-bottom:10px;
    color:#0057C8;
}

.gallery{
    padding:100px 0;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.gallery-item{
    height:200px;
    background:#ddd;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    color:#444;
    transition:.3s;
}

.gallery-item:hover{
    transform:scale(1.05);
}

.blog{
    background:#F8FAFC;
    padding:100px 0;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.blog-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.3s;
}

.blog-card:hover{
    transform:translateY(-8px);
}

.blog-card h3{
    color:#0057C8;
    margin-bottom:10px;
}

