:root {
            --primary-color: #ff0000; /* Red */
            --secondary-color: #7209b7; /* Purple */
            --dark-color: #1a1a2e;
            --light-color: #f8f9fa;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            font-size: 16px;
        }
        
        .navbar {
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            background-color: white !important;
        }
        
        .navbar-brand img {
            height: 60px;
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--dark-color) !important;
            position: relative;
            margin: 0 4px;
        }
        
        .nav-link.active:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 5px;
            width: 100%;
            height: 3px;
            background: var(--primary-color);
        }
        
        .hero-section {
            background: linear-gradient(rgba(26, 26, 46, 0.4), rgba(26, 26, 46, 0.4)), 
                        url('../img/banner-3.jpg') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 70px 0;
            position: relative;
        }
        .hero-section.house{
            background: linear-gradient(rgba(26, 26, 46, 0.4), rgba(26, 26, 46, 0.4)), 
                        url('../img/banner-house.jpg') no-repeat center center;padding:27px 0;
        }
        .hero-section.office{
            background: linear-gradient(rgba(26, 26, 46, 0.4), rgba(26, 26, 46, 0.4)), 
                        url('../img/banner-office.jpg') no-repeat center center;
                        padding:27px 0;
        }
        .hero-section.packing{
            background: linear-gradient(rgba(26, 26, 46, 0.4), rgba(26, 26, 46, 0.8)), 
                        url('../img/banner-packing.jpg') no-repeat center center;padding:27px 0;
        }
        .hero-section.vehicle{
           background: linear-gradient(rgba(26, 26, 46, 0.4), rgba(26, 26, 46, 0.9)), 
                        url('../img/banner-vehicle.jpg') no-repeat center center;padding:27px 0;
        }
        .hero-section.loading{
            background: linear-gradient(rgba(26, 26, 46, 0.4), rgba(26, 26, 46, 0.4)), 
                        url('../img/banner-loading.jpg') no-repeat center center;padding:27px 0;
        }
        .hero-section.warehousing{
            background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.4)), 
                        url('../img/banner-warehousing.jpg') no-repeat center center;padding:27px 0;
        }
        .hero-section.insurance{
            background: linear-gradient(rgba(26, 26, 46, 0.4), rgba(26, 26, 46, 0.4)), 
                        url('../img/banner-insurance.jpg') no-repeat center center;padding:27px 0;
        }
        .hero-section.international{
            background: linear-gradient(rgba(26, 26, 46, 0.4), rgba(26, 26, 46, 0.4)), 
                        url('../img/banner-2.webp') no-repeat center center;padding:27px 0;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 12px 25px;
            font-weight: 500;
            border-radius: 50px;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #c1121f;
            border-color: #c1121f;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
        }
        
        .btn-secondary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            padding: 12px 25px;
            font-weight: 500;
            border-radius: 50px;
            transition: all 0.3s;
        }
        
        .btn-secondary:hover {
            background-color: #560bad;
            border-color: #560bad;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(114, 9, 183, 0.3);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 20px;
            color: var(--dark-color);
            font-weight: 700;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: -11px;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }
        .about_sec .section-title:after {
            content: '';
            position: absolute;
            left: 16%;
            transform: translateX(-50%);
            bottom: -6px;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }
        
        .service-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s;
            margin-bottom: 30px;
            background: white;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .service-card .card-img-top {
            transition: transform 0.5s;
        }
        
        .service-card:hover .card-img-top {
            transform: scale(1.05);
        }
        
        .service-card .card-body {
            padding: 25px;
        }
        
        .service-card .card-title {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 15px;
        }
        
        .service-card .card-text {
            color: #666;
            margin-bottom: 20px;
        }
        
        .why-choose-item {
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            transition: all 0.3s;
            background: white;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            text-align: center;
            height: 100%;
        }
        
        .why-choose-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .why-choose-item .icon {
            width: 70px;
            height: 70px;
             background: linear-gradient(135deg, var(--primary-color), #800505);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
        }
        
        .testimonial-card {
            padding: 30px;
            border-radius: 15px;
            background: white;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            margin: 15px;
        }
        
        .testimonial-card .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .client-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary-color);
        }
        
        .process-step {
            position: relative;
            padding-left: 80px;
            margin-bottom: 25px;
        }
        
        .process-step .step-number {
            position: absolute;
            left: 0;
            top: 0;
            width: 46px;
            height: 46px;
            background: linear-gradient(135deg, var(--primary-color), #800505);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), #810505);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section:before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }
        
        .cta-section:after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 300px;
            height: 300px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        .faq-item .faq-question {
            padding: 15px 20px;
            background: rgb(231, 231, 231);
            font-weight: 500;
            cursor: pointer;
            position: relative;
            color: #000000;
        }
        
        .faq-item .faq-question:after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 20px;
            top: 15px;
            transition: all 0.3s;
        }
        
        .faq-item .faq-question.collapsed:after {
            transform: rotate(0deg);
        }
        
        .faq-item .faq-question:not(.collapsed):after {
            transform: rotate(180deg);
        }
        
        .faq-item .faq-answer {
            padding: 15px 20px;
            background: #f9f9f9;
        }
        
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 80px 0 20px;
        }
        
        footer h5 {
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
        }
        
        footer h5:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 50px;
            height: 3px;
            background: var(--primary-color);
        }
        
        footer ul li {
            margin-bottom: 10px;
        }
        
        footer ul li a {
            color: #ddd;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        footer ul li a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            color: white;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .carousel-control-prev, .carousel-control-next {
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 1;
        }
        
        .carousel-control-prev {
            left: -20px;
        }
        
        .carousel-control-next {
            right: -20px;
        }
        
        /* Animation Classes */
        .fade-in {
            animation: fadeIn 1s ease-in;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .slide-up {
            animation: slideUp 1s ease-out;
        }
        
        @keyframes slideUp {
            from { 
                opacity: 0;
                transform: translateY(50px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        .my-form {
    box-shadow: rgba(19, 19, 19, 0.31) 0px 0px 6px;
    background-color: transparent;
    padding: 20px;
    border-radius: 8px;
}
.form-control {
    display: block;
    width: 100%;
    height: calc(2px + 2.25rem);
    font-size: 1rem;
    line-height: 1.5;
    color: rgb(73, 80, 87);
    background-color: rgb(255, 255, 255);
    background-clip: padding-box;
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border: 1px solid hsla(0, 0%, 51%, 0.438);
    border-image: initial;
    margin-bottom: 5px;
}
textarea{
    /* height: 80px !important; */
    display: none;
}
.prr-5{padding-right:2px;}
.pll-5{padding-left:2px;}
@media (max-width: 800px){
.prr-5 {
padding-right: 15px;
}
.pll-5 {
padding-left: 15px;
}
}
input::placeholder, textarea::placeholder, input[type="date"]::placeholder{
    font-size: 14px;
}

.cont_button {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  cursor: pointer;
  padding: 10px 30px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 30px;
  border: 1px solid #8F9092;
  transition: all 0.2s ease;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ff0000;
  text-decoration: none;
  transition: 0.4s all;
}

.cont_button:hover {
  background-color: #d3a06c;
  color: #ffffff;
}

/* From Uiverse.io by adeladel522 */ 
.theme_button {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: #ff0000;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffff;
  gap: 10px;
  font-weight: 600;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
  text-decoration: none;
}

.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.theme_button:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.theme_button:hover .icon {
  transform: translate(4px);
}

.theme_button:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.theme_button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}
.about_sec h5{
    color: #070707;
    font-size: 18px;
}
.about_sec .about_ul{
    /* border: 1px solid #ccc; */
    border-radius: 8px;
   padding: 0px 10px;
}
img{
    max-width: 100%;
}

.text-justify{
    text-align: justify;
}
.process-step h4{
    font-size: 18px;
}
.process_sec {
    text-align: center;
    background-color: "";
    border: 1px solid hsla(0, 0%, 51%, 0.438);
    border-radius: 10px;
    padding-bottom: 20px;
}
.process_sec h4{
    text-align: center;
    background-color: #383736;
    color: #fcfbfb;
    padding: 10px 0;
    font-size: 19px;
    font-weight: 600;
    border-radius: 10px 10px 0 0;
    background: linear-gradient(180deg, #db2929, #9b0404);
}
.process_sec p{
    padding: 0px 15px;
    text-align: justify;
}
.why__us .why-choose-item{
    margin-bottom: 15px;
}
.why__us .why-choose-item h4{
    color: #020202;
    font-size: 20px;
    font-weight: 600;
}
.hero-content h1{
    text-shadow: 0px 0px 5px #000;
}
.faq-answer.collapse.show{
    /* background-color: #ffffff; */
}
input.parsley-success,
select.parsley-success,
textarea.parsley-success {
color: #468847;
background-color: #DFF0D8;
border: 1px solid #D6E9C6;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
color: #B94A48;
background-color: #F2DEDE;
border: 1px solid #EED3D7;
}

.parsley-errors-list {
margin: 2px 0 3px;
padding: 0;
list-style-type: none;
font-size: 0.9em;
line-height: 0.9em;
opacity: 0;
color:#FF0000;

transition: all .3s ease-in;
-o-transition: all .3s ease-in;
-moz-transition: all .3s ease-in;
-webkit-transition: all .3s ease-in;
}

.parsley-errors-list.filled {
opacity: 1;
}
.my-form h5{color:#000;}
.my-form{
padding:20px;
background-color: #fff;
box-shadow:0px 0px 6px #ccc;
}
.prr-5{padding-right:2px;}
.pll-5{padding-left:2px;}
@media (max-width: 800px){
    .my-form{margin-top: 20px;}
.prr-5 {
padding-right: 15px;
}
.pll-5 {
padding-left: 15px;
}
.about_sec .section-title:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

}


