:root{
    --primary: #0d297f;
    --secondary-color: #e92f0e;
}
/* RESET & GLOBAL */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Roboto", system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
      font-optical-sizing: auto;
      background: #ffffff;
      color: #1a2c3e;
      line-height: 1.5;
      overflow-x: hidden;
    }
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1280px;
    }
}
    /* HEADER STICKY */
    .header {
      position: sticky;
      top: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(8px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.163);
      z-index: 1000;
      padding: 0rem 2rem;
      transition: all 0.2s;
      border-bottom: 1px solid #eef2f8;
    }

    .nav-container {
      /* max-width: 1280px; */
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    

    /* desktop nav */
    .nav-links {
      display: flex;
      gap: 2.2rem;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      color: #0f0f0f;
      transition: color 0.2s ease;
    }

    .nav-links a:hover,
    .nav-links a:focus {
      color: var(--secondary-color);
    }

    /* hamburger */
    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.4rem;
      z-index: 1001;
    }

    .hamburger svg {
      width: 28px;
      height: 28px;
      stroke: #1f5e8e;
      stroke-width: 1.8;
    }
 
    /* OFF CANVAS */
    .offcanvasss-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(4px);
      z-index: 1100;
      visibility: hidden;
      opacity: 0;
      transition: visibility 0.3s, opacity 0.3s ease;
    }

    .offcanvasss-overlay.active {
      visibility: visible;
      opacity: 1;
    }

    .offcanvasss {
      position: fixed;
      top: 0;
      right: -320px;
      width: min(300px, 75%);
      height: 100%;
      background: #ffffff;
      box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
      z-index: 1200;
      transition: right 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      padding: 2rem 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .offcanvasss.open {
      right: 0;
    }

    .offcanvasss-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #eef2f5;
      padding-bottom: 1rem;
    }

    .offcanvasss-logo {
      font-size: 1.7rem;
      font-weight: 800;
      background: linear-gradient(135deg, #0f2b3d, #1f5e8e);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }

    .close-offcanvasss {
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.3rem;
    }

    .close-offcanvasss svg {
      width: 26px;
      height: 26px;
      stroke: #2c3e4e;
    }

    .offcanvasss-nav {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding-left: 0;
    }
    .offcanvasss-nav li {
      border-bottom: 1px solid #e7e3e3;
      padding-bottom: 7px;
    }
    .offcanvasss-nav li:last-child {border: none;}
    .offcanvasss-nav a {
      text-decoration: none;
      font-size: 1.1rem;
      font-weight: 600;
      color: #1e4a6e;
      transition: 0.2s;
      display: inline-block;
    }

    .offcanvasss-nav a:hover {
      color: #e67e22;
      transform: translateX(6px);
    }

    .hero-container{
    position:relative;
    overflow:hidden;
  
    color:#fff;
    background:linear-gradient(135deg,#3a0752,#0B3D91,#176BDB);
}

.hero-container::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            135deg,
            transparent 0%,
            transparent 45%,
            rgba(255, 255, 255, 0.07) 46%,
            rgba(255, 255, 255, 0.07) 47%,
            transparent 48%,
            transparent 100%
        );

    background-size: 70px 70px;

    animation: roadMove 10s linear infinite;

    opacity: .8;
    pointer-events: none;
}

@keyframes roadMove {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 140px 140px;
    }
}
.movers-hero>*{
    position:relative;
    z-index:2;
}
.movers-hero > *{
    position:relative;
    z-index:2;
}



    .hero-container {
      max-width: 100%;
      margin:auto;
      
      
display: flex;
    align-items: center;
    }

    .hero-content {
      flex: 1 1 50%;
	  padding:60px;
	  background:#00000029;
    }

    .hero-badge {
      font-size: 0.8rem;
      letter-spacing: 2.5px;
      font-weight: 700;
      text-transform: uppercase;
      color: #ffffff;
      margin-bottom: 1rem;
      background-color: var(--secondary-color);
      border: 1px solid var(--secondary-color);
      border-radius: 5px;
      display: inline-block;
      padding: 4px 8px;
    }

    .hero-content h1 {
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 1.2rem;
      color: #fff;
    }

    .hero-content p {
      font-size: 1rem;
      color: #eee9e9;
      margin-bottom: 2rem;
      max-width: 90%;
    }

    .btn-primary {
      display: inline-flex;
      background: var(--secondary-color);
      border: none;
      padding: 0.9rem 2rem;
      font-weight: 700;
      font-size: 1rem;
      border-radius: 40px;
      color: white;
      cursor: pointer;
      transition: 0.25s;
      text-decoration: none;
      box-shadow: 0 8px 18px rgba(230, 126, 34, 0.2);
    }

    .btn-primary:hover {
      background: #cf711f;
      transform: translateY(-3px);
      box-shadow: 0 12px 24px rgba(230, 126, 34, 0.25);
    }

    .hero-image {
      flex: 1 1 40%;
      text-align: center;
    }

    .hero-image img {
      max-width: 100%;
      height: auto;
    
      box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
      object-fit: cover;
    }
.theme_btn{
    background-color: var(--secondary-color);
    color: #fff !important;
    padding: 10px 15px;
    border-radius: 35px;
    transition: 0.4s all;
 }
 .theme_btn:hover{
  background-color: var(--primary);
  color: #fff;
 }
    

    /* INFO ROW (TRUST + HELP) */
    .info-row {
      max-width: 1280px;
      margin: 2.5rem auto 3rem;
      padding: 1.8rem 2rem;
      background: #fefefe;
      border-radius: 48px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 1.5rem;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.02);
      border: 1px solid #eef2fa;
    }

    .trusted-box {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .stars-rating {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      flex-wrap: wrap;
    }

    .stars {
      color: #f4b942;
      font-size: 1.4rem;
      letter-spacing: 2px;
    }

    .rating-number {
      font-weight: 800;
      font-size: 1.5rem;
      color: #1f3b4c;
    }

    .review-text {
      color: #4f6f8a;
      font-weight: 500;
    }

    .help-box {
      display: flex;
      align-items: center;
      gap: 1.8rem;
      flex-wrap: wrap;
      background: #fafcff;
      padding: 0.6rem 1.5rem;
      border-radius: 60px;
    }

    .phone-info {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .phone-number {
      font-weight: 700;
      font-size: 1.1rem;
      color: #1f3b4c;
    }

    .btn-quote {
      background: transparent;
      border: 1.5px solid #e67e22;
      padding: 0.6rem 1.5rem;
      border-radius: 40px;
      font-weight: 700;
      color: #e67e22;
      transition: 0.2s;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
    }

    .btn-quote:hover {
      background: #e67e22;
      color: white;
      border-color: #e67e22;
    }

    .footer-spacer {
      height: 2rem;
    }

    /* RESPONSIVE */
    @media (max-width: 850px) {
      .hero-container {
        flex-direction: column;
        text-align: center;
      }
      
      .hero-content {
        text-align: left;
        padding:60px 20px;
      }
      .hero-content p {
        max-width: 100%;
        text-align: justify;
        hyphens: auto;
      }
    }

    @media (max-width: 768px) {
      .header {
        padding: 0.3rem 0.6rem;
      }
      .nav-links {
        display: none;
      }
      .hamburger {
        display: block;
      }
      
      .features-section {
        gap: 1.2rem;
      }
      .info-row {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 32px;
      }
      .help-box {
        width: 100%;
        justify-content: space-between;
      }
    }

    @media (max-width: 480px) {
      .feature-card h3 {
        font-size: 1.1rem;
      }
      .btn-primary {
        padding: 0.7rem 1.5rem;
      }
      .phone-number {
        font-size: 0.95rem;
      }
      .hero-image {
        max-width: 100%;
      }
    }

.card-grid-1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}
.card-1 {
    background: white;
    border-radius: 32px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 12px 28px -8px rgba(0, 35, 55, 0.08);
    border: 1px solid rgba(26, 24, 24, 0.151);
    position: relative;
}
.card-1:hover {border: 1px solid var(--primary);}
.icon-circle-1 {
    background: #edeff125;
  box-shadow: 0px 12px 28px -8px rgba(113, 117, 117, 0.37);
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 60px;
    margin: 0 auto 24px auto;
    transition: 0.2s;
}
.card-1 i {
    font-size: 2.6rem;
    color: var(--secondary-color);
    padding: 21px 0 0 0;
}
.card-1 h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}
.card-1 p {
    color: #334155;
    line-height: 1.5;
    font-size: 0.95rem;
}

        .stats-section {
            background-color: var(--light-color);
            padding: 80px 0;
            position: relative;
            z-index: 1;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
            color: #000;
            font-size: 34px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: #071A52;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        .section-tag{color: var(--secondary-color);}
        
        .stat-card {
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .stat-icon {
            font-size: 2rem;
            color: var(--secondary-color);
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 10px;
        }
        
        .stat-label {
            font-size: 1rem;
            color: var(--dark-color);
            font-weight: 600;
        }

    /* accessibility & performance */
    a:focus-visible, button:focus-visible {
      outline: 2px solid #e67e22;
      outline-offset: 2px;
    }
    img {
      display: block;
      max-width: 100%;
    }

    .section-5 {
    background: #eef2f3;
    border-top: 1px solid #cddfe7;
}
section{padding: 60px 0;}

.services { background: #f2f2f2; }
.services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}

.service-card {
position: relative;
padding: 30px;
background: #ffffff;
border: 1px solid #e8e8e8;
border-radius: 18px;
overflow: hidden;
transition: all 0.35s ease;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.service-card::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: #f28c28;
transform: scaleX(0);
transform-origin: left;
transition: transform 0.35s ease;
}

.service-card:hover {
transform: translateY(-8px);
border-color: #f28c28;
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.service-card:hover::before {
transform: scaleX(1);
}

.service-top {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 22px;
}

.service-icon {
width: 65px;
height: 65px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 15px;
background: #fff4e8;
color: #f28c28;
font-size: 28px;
transition: all 0.35s ease;
}

.service-card:hover .service-icon {
background: #f28c28;
color: #ffffff;
transform: rotate(-5deg) scale(1.05);
}

.service-number {
font-size: 13px;
font-weight: 700;
color: #999;
letter-spacing: 1px;
}

.service-card h3 {
margin: 0 0 13px;
font-size: 21px;
font-weight: 700;
color: #222;
}

.service-card p {
margin: 0 0 22px;
color: #6c6c6c;
font-size: 14px;
line-height: 1.8;
}

.service-link {
display: inline-flex;
align-items: center;
gap: 8px;
color: #f28c28;
font-size: 14px;
font-weight: 700;
transition: all 0.3s ease;
}

.service-link i {
transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
transform: translateX(5px);
}

@media (max-width: 991px) {
.services-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 575px) {
.services-grid {
grid-template-columns: 1fr;
gap: 18px;
}

.service-card {
    padding: 25px;
}

.service-card h3 {
    font-size: 19px;
}

}

.promise-stack {
background: #0a0a0a2e;
border-radius: 6px;
padding: 32px 40px;
box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
border: 1px solid rgba(255, 253, 253, 0.1);
}
.promise-item {
display: flex;
gap: 28px;
align-items: flex-start;
padding: 28px 0;
border-bottom: 2px dashed #cbdde6;
transition: 0.2s;
}
.promise-item:last-child {border: none;padding-bottom: 0;}
.promise-text h3{color: #ffffff;font-size: 1.6rem;}
.promise-text p{color: #f3f0f0;}
.promise-icon {
flex-shrink: 0;
background: #d9e1fa;
width: 68px;
height: 68px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 30px;
font-size: 2rem;
color: var(--primary);
transition: 0.2s;
}
.bg_dark{background:linear-gradient(135deg,#071A52,#0B3D91,#176BDB);}
.form_sec{box-shadow: -6px -4px 0px 4px #071A52, 0 0 5px 1px rgba(0, 0, 0, 0.2);}
.form_sec h4{background-color: var(--primary);color: #fff;padding: 8px ;}
.form-control{border: 1px dotted #071A52 !important}
.form-group{padding: 5px 20px 20px 20px;}
.vision-box {background-color: #f3f3f3;padding: 10px 15px;}
.vision-box h4{color: var(--primary);}
.testimonials-section{background-color: aliceblue;}
.testimonial-card {
position: relative;
height: 100%;
padding: 35px 30px 30px;
background: #ffffff;
border: 1px solid #eeeeee;
border-radius: 18px;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
transition: all 0.3s ease;
}

.testimonial-card:hover {
transform: translateY(-8px);
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.quote-icon {
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: #f4f4f4;
font-size: 20px;
margin-bottom: 18px;
}

.testimonial-rating {
margin-bottom: 18px;
}

.testimonial-rating i {
font-size: 14px;
margin-right: 3px;color:orange;
}

.testimonial-text {
color: #666;
font-size: 15px;
line-height: 1.8;
margin-bottom: 25px;
}

.testimonial-user {
display: flex;
align-items: center;
gap: 14px;
padding-top: 18px;
border-top: 1px solid #eeeeee;
}

.testimonial-avatar {
width: 48px;
height: 48px;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: #f1f1f1;
font-size: 20px;
}

.testimonial-author {
margin: 0 0 4px;
font-size: 17px;
font-weight: 700;
}

.testimonial-role {
font-size: 13px;
color: #888;
}

@media (max-width: 767px) {
.testimonial-card {
padding: 28px 22px;
}
}

.cta-section{
    padding:30px 20px;
    color:#f8f7f7;
    background: var(--secondary-color);
}


.cta-phone{
    font-size:22px;
    margin-bottom:30px;
}
.cta-phone i{
    margin-right:10px;
}
.cta-phone a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
}
.cta-btn{
    display:inline-block;
    padding:10px 35px;
    background:#fff;
    color:#1565c0;
    font-weight:700;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;
}

.cta-btn:hover{
    background:#ffb703;
    color:#fff;
}
.company_name{display: flex;
justify-content: space-between;
align-items: center;
background-color: #071A52;
color: #fff;
gap: 20px;
padding: 10px;
}
.company_name a{
    text-decoration: none;
    color: #ffb703;
}

@media (max-width:768px){
    .cta-content h2{
        font-size:30px;
    }
    .cta-phone{
        font-size:18px;
    }
    .company_name{flex-direction: column;}
}
.contact_sec{background-color: var(--primary);padding: 20px;border: 1px solid #000;border-radius: 15px;}
.contact_sec .cont{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:30px;
    padding-bottom: 20px;
    border-bottom: 1px dotted #fff;
}
.contact_sec .cont:last-child{padding-bottom: 0;border: none;margin-bottom: 0;}

.contact_sec .cont i{
    width:55px;
    height:55px;
    background:#e8eaec;
    color:var(--secondary-color);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;
}

.cont-info h4{
    margin-bottom:8px;
    font-size:20px;
    font-weight:600;
    color: #f4b942;
}

.cont-info a,
.cont-info p{
    color:#e7e4e4;
    text-decoration:none;
    margin:0;
    line-height:1.7;
}

.cont-info a:hover{
    color:#e42006;
}
.text-justify{
  text-align: justify;
  hyphens: auto;
}