body {
  font-family: 'Inter', sans-serif;
}

img{
  width: 100%;
  height: 100%;
}

p{
  margin-bottom: 0;
}

/* header */
.nav-link{
      color: #000;
}

.nav-link:hover {
    color: #ffc107;
}

.bg-dark{
  background-color: #fff !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 20px;
        padding-left: 10px;
    }
}

.navbar-toggler{
  background-color: #000000 !important;
}

/* Hero Section Background */
.hero-section {
  background: linear-gradient(rgb(0 0 0 / 74%), rgb(0 0 0 / 69%)), url(../image/hero-banner.png);
  background-size: cover;
  background-position: center;
  padding: 160px 0 100px;
  color: white;
}

.aboutus-section {
  padding: 80px 0;
}

.experience-box{
    position:absolute;
    bottom:25px;
    right:-20px;
    background:#ffc107;
    padding:20px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.experience-box h3{
    margin:0;
    font-size:32px;
    font-weight:700;
    color:#000;
}

.experience-box span{
    font-size:14px;
    font-weight:600;
    color:#000;
}

.about-feature{
    background:#fff;
    padding:15px 18px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    display:flex;
    align-items:center;
    gap:12px;
    transition:.3s;
}

.about-feature:hover{
    transform:translateY(-5px);
}

.about-feature i{
    font-size:24px;
    color:#ffc107;
}

.about-feature span{
    font-weight:600;
    color:#222;
}

.pbmit-btn {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #000;
  padding: 10px 15px;
  border-radius: 50px;
}

/* Card Hover Effect */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Custom Button */
.btn-primary-custom {
  background-color: #ffc107;
  color: #212529;
  border: none;
  font-weight: 600;
  padding: 10px 25px;
}

.btn-primary-custom:hover {
  background-color: #ffcd38;
  color: #212529;
}

/* Section Titles */
.aboutus-section .section-title {
  font-weight: 700;
  color: #f8bc08;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: block;
}

/* Process Steps Number */
.step-number {
  background-color: #f8bc08;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

/* who we are */
.who-bg-section {
  position: relative;
  background: url('../image/who-banner.png') center center/cover no-repeat;
  padding: 50px 0;
  color: #fff;
}

.who-bg-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
}

.who-content {
  position: relative;
  z-index: 2;
  margin: auto;
  text-align: center;
  border: 2px solid #fff;
  padding: 25px;
}

.who-content h2 {
    font-weight: 700;
    margin-bottom: 25px;
}

.who-content p {
    line-height: 1.8;
    font-size: 16px;
}

/* Our presence */
.presence-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.presence-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.presence-section .section-title span {
  font-weight: 700;
  color: #f8bc08;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: block;
}

.presence-section .section-title h2 {
    margin-top: 15px;
    font-weight: 700;
}

.presence-section .branch-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
}

.presence-section .branch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.presence-section .branch-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #f8bc08;
}

.presence-section .branch-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* services */
.service-section {
    padding: 50px 0;
    background: #f2f2f2;
}

.service-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.service-section .section-title span {
  font-weight: 700;
  color: #f8bc08;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: block;
}

.service-box{
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    margin-bottom:40px;
}

.service-box img{
    width:100%;
    height:380px;
    object-fit:cover;
    border-radius:15px;
}

.service-badge{
    display:inline-block;
    background:#fff3cd;
    color:#a97800;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.service-box h3{
    font-size:34px;
    font-weight:700;
    margin-bottom:20px;
}

.service-box p{
    color:#666;
    margin-bottom:25px;
}

.feature-box{
    background:#f8f9fa;
    border-left:4px solid #ffc107;
    padding:14px 18px;
    border-radius:10px;
    font-weight:600;
    height:100%;
}

@media(max-width:768px){
    .service-box{
        padding:25px;
    }

    .service-box img{
        height:250px;
        margin-bottom:25px;
    }

    .service-box h3{
        font-size:28px;
    }
}

/* why choose section */
.why-choose-section {
  padding: 50px 0;
}

.why-choose-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.why-choose-section .section-title span {
  font-weight: 700;
  color: #f8bc08;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: block;
}

/* our work */
.our-work-section {
   padding: 50px 0;
}

.our-work-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.our-work-section .section-title span {
  font-weight: 700;
  color: #f8bc08;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: block;
}

/* our relocation process */
.process-section{
    background:#0f172a;
}

.process-section .section-title span{
    color:#ffc107;
}

.process-section .section-title h2{
    color:#fff;
}

.process-section .section-title p{
    max-width:800px;
    margin:auto;
    color:#cbd5e1 !important;
}

.process-box{
    position:relative;
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    overflow:hidden;
}

.process-box:hover{
    transform:translateY(-8px);
}

.process-number{
    position:absolute;
    top:15px;
    right:20px;
    font-size:50px;
    font-weight:800;
    color:rgba(255,193,7,.18);
    line-height:1;
}

.process-box h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
    padding-right:40px;
}

.process-box p{
    color:#666;
    margin-bottom:0;
    line-height:1.8;
}

/* benefits section */
.benefits-section{
    background:#ededed;
    position:relative;
}

.benefit-card{
    background:#fff;
    padding:35px 30px;
    border-radius:18px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    border-top:4px solid transparent;
}

.benefit-card:hover{
    transform:translateY(-8px);
    border-color:#ffc107;
}

.benefit-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:rgba(255,193,7,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.benefit-icon i{
    font-size:32px;
    color:#ffc107;
}

.benefit-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.benefit-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:0;
}

/* Serving Clients Section  */
.client-categories{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    max-width:1100px;
    margin:auto;
}

.client-categories span
 {
    background: #ffffff;
    padding: 16px 28px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgb(0 0 0 / 17%);
    transition: .3s;
}

.client-categories span:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.client-categories span::before{
    content:'';
    width:10px;
    height:10px;
    background:#ffc107;
    border-radius:50%;
    display:block;
}

/* Commitment Section */
.excellence-section{
    background:#fafafa;
}

.quality-point{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
    font-weight:600;
}

.quality-point i{
    color:#ffc107;
    font-size:20px;
}

/* last cta section */
.final-cta-section{
    position:relative;
    padding:70px 0;
    background:url('../image/packers-and-movers-india.jpg') center center/cover no-repeat;
    overflow:hidden;
}

.final-cta-section::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.75);
}

.cta-wrapper{
    position:relative;
    z-index:2;
}

.cta-tag{
    background:rgba(255,193,7,.15);
    color:#ffc107;
    padding:10px 22px;
    border-radius:50px;
    font-weight:600;
}

.final-cta-section h2{
    color:#fff;
    font-size: 45px;
}

.cta-description{
    color:#d1d5db;
    font-size:18px;
    line-height:1.9;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta-btn-primary{
    background:#ffc107;
    color:#000;
    padding:16px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

.cta-btn-secondary{
    border:2px solid rgba(255,255,255,.2);
    color:#fff;
    padding:16px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

.cta-btn-primary:hover,
.cta-btn-secondary:hover{
    transform:translateY(-3px);
}

/* footer */

footer{
    position: relative;
    overflow: hidden;
    padding-bottom: 25px;
    padding-top: 60px;
}

 .bg-secondary {
    background-color: #062439 !important;
}

/* Top Border Accent */
footer::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#ffc107;
}

/* Headings */
footer h4,
footer h5{
    color:#ffc107 !important;
    font-weight:700;
    position:relative;
    padding-bottom:10px;
    margin-bottom:25px;
}

footer h5::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:50px;
    height:2px;
    background:#ffc107;
}

/* Paragraphs */
footer p{
    color:rgba(255,255,255,0.85);
    line-height:1.8;
    margin-bottom:10px;
    font-size:15px;
}

/* Links */
footer a{
    color:#fff !important;
    text-decoration:none !important;
    transition:all .3s ease;
}

footer a:hover{
    color:#ffc107 !important;
    padding-left:5px;
}

/* Contact Icons */
footer .bi{
    color:#ffc107;
    font-size:18px;
}

/* Services & Links Hover */
footer .col-md-2 p,
footer .col-md-3 p{
    transition:all .3s ease;
}

footer .col-md-2 p:hover,
footer .col-md-3 p:hover{
    transform:translateX(5px);
}

/* Footer Divider */
footer .row.align-items-center{
    border-top:1px solid rgba(255,255,255,0.15);
    padding-top:20px;
}

/* Copyright */
footer .row.align-items-center p{
    margin-bottom:0;
    font-size:14px;
}

/* Company Name */
footer strong.text-warning{
    color:#ffc107 !important;
}

/* Privacy Menu */
.menu{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    list-style:none;
    padding:0;
    margin:0;
}

.menu li{
    display:inline-block;
}

.menu a{
    color:#fff !important;
    font-size:14px;
    transition:all .3s ease;
}

.menu a:hover{
    color:#ffc107 !important;
    padding-left:0;
}

/* Mobile */
@media(max-width:767px){

    footer{
        text-align:start;
    }

    footer h5::after{
        left:6%;
        transform:translateX(-50%);
    }

    .menu{
        justify-content:start;
        margin-top:15px;
    }

    footer .row.align-items-center{
        text-align:start;
    }
}

/* CSS*/
.fix-icon {
    display: inline-block;
    position: fixed;
    bottom: 100px;
    left: 20px;
    z-index: 999999;
}
#fix-icon {
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}
.fix-icon-item {
    animation: bounce 1s infinite alternate;
    animation-duration: 1s;
    -webkit-animation: bounce 1s infinite alternate;
        animation-duration: 1s;
        animation-timing-function: ease;
        animation-iteration-count: infinite;
        animation-fill-mode: none;
}

.fix-icon-item img {
    width: 55px !important;
	height: 55px !important;
    background: 
    #ff7400;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    padding: 10px;
}

.fix-icon-whataap {
    display: inline-block;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999999;
    transition: all0.5s ease-in-out;
}

.fix-icon-whataap-item img {
    border-radius: 50%;
    box-shadow: 1px 1px 4px 
rgba(60, 60, 60, .4);
transition: box-shadow .2s;
cursor: pointer;
overflow: hidden;
width: 55px !important;
height: 55px !important;
background:
    #25d366 !important;
}
.fix-icon-whataap-item:before {
    content: "";
    border: 20px solid rgba(37, 211, 102, .51);
    border-radius: 50%;
    height: 80px;
    width: 80px;
    position: absolute;
    animation: pulsate 1s ease-out;
    animation-iteration-count: infinite;
    opacity: 0;
    z-index: -1;
    top: -12px;
    left: -13px;
}

@keyframes pulsate {
    0% {
        transform: scale(.6, .6);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.5, 1.5);
        opacity: 0;
    }
}

.fix-icon-call {
    display: inline-block;
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 999999;
    transition: all0.5s ease-in-out;
}

html, body {
  overflow-x: hidden;
}

.fix-icon-call img{
    width: 55px !important;
    height: 55px !important;
    background: #ff0000;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    padding: 10px;
}

.feature-section .one {
    padding: 0;
}

.service-section .abotimglft img {
    border: 4px solid #000;
    border-radius: 10px;
}

/* .navbar img {
  width: 150px;
} */

.form-group textarea::placeholder {
  font-size: 17px;  
}

.footer-logo {
  width: 220px;
}

.why-choose-section .icon-box {
  margin: 0 auto;
}

/* PRIVACY POLICY PAGE */
.privacy-policy-section{
    background:#f8f9fa;
    padding:80px 0;
}

.privacy-card{
    margin-top: 50px;
}

.privacy-card h1{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.privacy-card h3{
    font-size:24px;
    font-weight:600;
    margin-top:35px;
    margin-bottom:15px;
}

.privacy-card p,
.privacy-card li{
    color:#666;
    margin-bottom:15px;
}

.privacy-card ul{
    padding-left:20px;
}

.policy-date{
    color:#999;
    margin-bottom:30px;
}

@media(max-width:768px){
    .privacy-card{
        padding:25px;
    }

    .privacy-card h1{
        font-size:32px;
    }
}

/* TERMS CONDITIONS PAGE */
.terms-section{
    background:#f8f9fa;
    padding:80px 0;
}

.terms-card{
    margin-top: 50px;
}

.terms-card h1{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.terms-card h3{
    font-size:24px;
    font-weight:600;
    margin-top:35px;
    margin-bottom:15px;
}

.terms-card p,
.terms-card li{
    color:#666;
    margin-bottom:15px;
}

.terms-card ul{
    padding-left:20px;
}

.policy-date{
    color:#999;
    margin-bottom:30px;
}

@media(max-width:768px){

    .terms-card{
        padding:25px;
    }

    .terms-card h1{
        font-size:32px;
    }
}