* {
    margin: 0;
    padding: 0;
    outline: 0;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
li,
ul {
    margin: 0;
    padding: 0;
}
:root{
    --ff1: "Bebas Neue", sans-serif;
    --ff2: "Roboto", sans-serif;
    --main-color: #F47E20;
    --dark-blue: #0A1D3C;
    --light-blue: #1E90FF;
}
/* nav section */
.contact-btn{
    border: 1px solid #000;
}
.main-menu{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
}
.main-menu ul li a{
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--ff2);
    margin: 0 15px;
}
.main-menu ul li a:hover{
  color: var(--light-blue);
}
.navbar-brand{
    font-size: 25px;
    font-weight: 700;
    font-family: var(--ff1);
    color: #fff;
}
.navbar-brand img{
    max-width: 250px;
}
/* nav section */

/* banner section */
#banner{
    height: 100vh;
    position: relative;
    z-index: 111;
}
#banner::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.banner-text h1 span{
    display: block;
}
.banner-text p{
    font-size: 21px;
    font-weight: 400;
    color: #fff;
    font-family: var(--ff2);
}
.banner-text{
    padding: 200px 0;
}
.banner-text h1{
    font-size: 70px;
    font-weight: 700;
    color: #fff;
    font-family: var(--ff1);
}
.banner-text p span{
    display: block;
}
.banner-btn{
    margin-top: 30px;
}
.banner-btn a{
    padding: 13px 20px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 16px;
}
.call-btn{
    margin-left: 15px;
}
/* banner section */

/* delivery section */
#delivery{
    padding: 140px 0;
    background: var(--main-color);
}

.delivery-text h2{
    font-size: 60px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    line-height: 80px;
}
.delivery-text h4{
    font-size: 34px;
    font-weight: 600;
    color: #000;
    line-height: 40px;
    margin-top: 30px;
    text-transform: uppercase;
}
/* delivery section */
/* transport section */
#transport{
    background-color: var(--dark-blue);
    padding: 100px 0;
}
.tran-title h2{
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    line-height: 80px;
    text-align: center;
}
.trans-text h4{
    color: #fff;
    font-family: var(--ff1);
    font-size: 29px;
    font-weight: 600;
    padding-top: 20px;
    text-transform: uppercase;
}
.trans-text p{
    color: #fff;
    font-family: var(--ff2);
    font-size: 15px;
    font-weight: 400;
    padding-top: 15px;
}
.transport-card-box img{
    border-radius: 10px;
}
.tran-title{
    margin-bottom: 50px;
}
/* transport section */

/* slider section */
.slider-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }
  .slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  .slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
  }
  .slide.active {
    opacity: 1;
    position: relative;
  }
  .slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
  }
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
  }
  .arrow.left {
    left: 10px;
  }
  .arrow.right {
    right: 10px;
  }
  .dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
  }
  .dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
  }
  .dot.active {
    background: white;
  }
  @media (max-width: 768px) {
    .slide img {
      height: 300px;
    }
    .arrow {
      padding: 8px;
    }
    .dot {
      width: 8px;
      height: 8px;
    }
  }
  @media (max-width: 576px) {
    .slide img {
      height: 200px;
    }
    .arrow {
      padding: 6px;
    }
  }
/* slider section */


.section-title {
    text-align: center;
    font-weight: 900;
    font-size: 50px;
    margin: 40px 0 20px;
    font-family: var(--ff1);
    text-transform: uppercase;
  }

  .card-box {
    background-color: var(--main-color);
    /* border: 1px solid #ccc; */
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }

  .card-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 5px;
  }

  .card-title {
    font-weight: 900;
    font-size: 18px;
    margin-top: 15px;
    text-transform: uppercase;
  }

  .more-btn {
    width: 100%;
    border: 2px solid #000;
    padding: 8px 0;
    background: transparent;
    font-weight: 500;
    margin: 15px 0;
    transition: 0.3s ease;
  }

  .more-btn:hover {
    background-color: var(--dark-blue);
    color: #fff;
  }

  .feature-list {
    padding-left: 0;
    list-style: none;
  }

  .feature-list li {
    margin-bottom: 6px;
    position: relative;
    padding-left: 25px;
    font-size: 15px;
  }

  .feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
  }

  .popular-badge {
    display: inline-block;
    background-color: var(--dark-blue);
    color: #fff;
    font-size: 12px;
    padding: 3px 12px;
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: -5px;
  }
  #services{
    background-color: var(--main-color);
    padding-bottom: 100px;
    padding-top: 50px;
  }

  /* tan */
  #tran{
    background-color: var(--dark-blue);
    padding: 100px 0;
  }
  .tran-img img{
    border-radius: 10px;
  }
  .tran-text h2{
    padding-top: 50px;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    line-height: 40px;
  }
  .tran-text p{
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 30px;
    margin-top: 20px;
  }
  /* tan */

  /* testmonial  */
  .testimonial-bg{
    /* background-color:#fff; */
     /* border: 5px solid #ee0979; */
     border: 5px solid var(--dark-blue);
      font-family: 'Raleway', sans-serif;
     padding: 35px 70px;
     text-align: center;
     position: relative;
 }
 .testimonial-bg:before{
     content: "\f10d";
     font-family: "fontawesome";
     width: 75px;
     height: 75px;
   border: 5px solid var(--dark-blue);
     line-height: 75px;
     background: #fff;
     text-align: center;
     font-size: 50px;
     color: var(--dark-blue);
     position: absolute;
     top: -40px;
     left: 2%;
 }
 .testimonial{
     padding: 0 15px;
 }
 .testimonial .description{
     font-size: 20px;
     font-weight:400;
     font-style: italic;
     color: #848484;
     line-height: 30px;
     padding-bottom: 25px;
     margin-bottom: 15px;
     position: relative;
 }
 .testimonial .description:before{
     content: "";
     width: 75%;
     border-top: 1px solid var(--dark-blue);
     margin: 0 auto;
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
 }
 .testimonial .description:after{
     content: "";
     width: 20px;
     height: 20px;
     background: var(--dark-blue);
     position: absolute;
     bottom: -10px;
     left: 50%;
     border-bottom: 1px solid var(--dark-blue);
     border-right: 1px solid var(--dark-blue);
     transform: translateX(-50%) rotate(45deg);
 }
 .testimonial .pic{
     width: 100px;
     height: 100px;
     border-radius: 50%;
     margin: 25px auto;
     overflow: hidden;
 }
 .testimonial .pic img{
     width: 100%;
     height: auto;
 }
 .testimonial .title{
   font-family: 'Raleway', sans-serif;
     display: inline-block;
     font-size: 24px;
     font-weight: 700;
     color: #000;
     text-transform: capitalize;
     margin: 0;
 }
 .testimonial .post{
   font-family: 'Raleway', sans-serif;
     display: inline-block;
     font-size: 20px;
     color: #848484;
 }
 .owl-theme .owl-controls{
     margin-top: 10px;
     position: absolute;
     bottom: -20%;
     right: 0;
 }
 .owl-theme .owl-controls .owl-buttons div{
     width: 50px;
     height: 50px;
     line-height: 50px;
     background: var(--dark-blue);
     opacity: 1;
     padding: 0;
    display:inline-block;
    margin:0 10px; 
 }
 .owl-prev:before,
 .owl-next:before{
     content: "\f104";
     font-family: "fontawesome";
     font-size: 23px;
     font-weight: 700;
     color: #fff;
 }
 .owl-next:before{
     content:"\f105";
 }
 @media only screen and (max-width:767px){
     .testimonial-bg{ padding: 50px 40px; }
     .owl-theme .owl-controls{ bottom: -22%; }
 }
 @media only screen and (max-width:480px){
     .testimonial-bg:before{
         width: 55px;
         height: 55px;
         line-height: 55px;
         font-size: 40px;
     }
     .testimonial-bg{ padding: 30px 10px; }
     .owl-theme .owl-controls{ bottom: -15%; }
 }
 @media only screen and (max-width:360px){
     .testimonial .title,
     .testimonial .post{
         font-size: 16px;
     }
     .owl-theme .owl-controls{ bottom: -12%; }
 }
 #testimonial{
    background-color: var(--main-color);
    padding: 100px 0;
 }
  /* testmonial  */

  /* faq  */
  #faq{
    background-color: var(--dark-blue);
    padding: 100px 0;
  }
  .faq-header h2{
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    line-height: 80px;
    text-align: center;
    padding-bottom: 40px;
  }

  .accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5;
  }
  .accordion .accordion-item button[aria-expanded=true] {
    border-bottom: 1px solid var(--main-color);
  }
  .accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: var(--main-color);
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
  }
  .accordion button:hover, .accordion button:focus {
    cursor: pointer;
    color: var(--main-color);
  }
  .accordion button:hover::after, .accordion button:focus::after {
    cursor: pointer;
    color: var(--main-color);
    border: 1px solid var(--main-color);
  }
  .accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
    font-weight: 600;
    font-size: 30px;
    font-family: var(--ff1);
    color: white;
  }
  .accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
  }
  .accordion button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
  }
  .accordion button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
  }
  .accordion button[aria-expanded=true] {
    color: var(--light-blue);
  }
  .accordion button[aria-expanded=true] .icon::after {
    width: 0;
  }
  .accordion button[aria-expanded=true] + .accordion-content {
    opacity: 1;
    max-height: 9em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
  }
  .accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
  }
  .accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 500;
    margin: 2em 0;
    color: #fff;
    font-family: var(--ff2);
  }
  .accordion {
	--bs-accordion-color: var(--bs-body-color);
	--bs-accordion-bg: var(--dark-blue) !important;
    --bs-accordion-border-color: none !important;
	
}
  /* faq  */

  /* footer */
  footer{
    background-color: var(--dark-blue);
    padding: 50px 0;
    color: #fff;
  }
  .login-btn{
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--ff2);
    padding: 10px 20px;
    margin-top: 20px;
  }
  .call-btn{
    margin-left: 15px;
    padding: 10px 20px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
  }
  /* footer */

  /* service_banner */
  #service-banner{
    position: relative;
    z-index: 111;
    /* height: 50vh; */
  }
  #service-banner::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(244, 126, 32, 0.829);
  z-index: -1;
  }
  .banner-content h1{
    font-size: 70px;
    font-weight: 700;
    color: #000;
    font-family: var(--ff1);
    
  }
  .banner-content{
    padding: 150px 0;
  }
  #a{
    padding: 200px 0;
  }
  /* service_banner */

  /* login */
  .courier-login-signup-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.courier-login-form-section {
   
}
.courier-login-illustration-section {
    text-align: center;
}
.courier-login-illustration-section img {
    max-width: 100%;
    height: auto;
}
.courier-login-signup-container h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}
.courier-login-form-control {
    border-radius: 5px;
    padding-left: 40px;
}
.courier-login-input-group {
    position: relative;
}
.courier-login-input-group .courier-login-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}
.courier-login-btn-register {
    background-color: var(--main-color);
    border: none;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    color: #fff;
    font-weight: bold;
}
.courier-login-btn-register:hover {
    background-color: var(--dark-blue);
    color: #fff !important;
}
.courier-login-member-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #6c757d;
    text-decoration: underline;
}
.courier-login-member-link:hover {
    color: var(--main-color);
}
  /* login */

  /* contact form */
  
  /* contact form */

  /* button */
  /* From Uiverse.io by cssbuttons-io */ 
  .top-btn a,
  .top-btn button {
    --color: #560bad;
    font-family: inherit;
    display: inline-block;
    /* width: 8em; */
    height: 2.6em;
    line-height: 2.5em;
    /* margin: 20px; */
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid var(--light-blue);
    transition: color 0.5s;
    z-index: 1;
    font-size: 17px;
    border-radius: 6px;
    font-weight: 500;
    color: #fff !important;
    background: transparent;
    padding: 5px 20px;
    line-height: 30px;
  }

  .top-btn a::before, .top-btn button::before {
    content: "";
    position: absolute;
    z-index: -1;
    background: var(--light-blue);
    height: 153px;
    width: 384px;
    border-radius: 50%;
  }

.top-btn a:hover ,
.top-btn button:hover {
  color: #000 !important;
}

.top-btn a:before ,
.top-btn button:before {
  top: 100%;
  left: 100%;
  transition: all 0.7s;
}

.top-btn a:hover:before ,
.top-btn button:hover:before {
  top: -30px;
  left: -30px;
}

.top-btn a:active:before ,
.top-btn button:active:before {
  background: var(--main-color);
  transition: background 0s;
}
/* .top-btn{
  margin-top: 40px;
} */
.transport-card-box{
  border: 1px solid var(--light-blue);
  /* border-radius: 10px 10px 0 0; */
  border-radius: 10px;
  box-shadow: rgba(134, 134, 134, 0.2) 0px 7px 29px 0px;
}
.trans-text{
  padding: 20px;
}
  /* button */

  /* Override inline colors and backgrounds in p tags from the database */
#banner p, .banner-text p, .tran-text p, .trans-text p, #tran p, .card-box p, 
.accordion-content p, .description p, .testimonial p,
#banner p span, .banner-text p span, .tran-text p span, .trans-text p span, #tran p span, 
.card-box p span, .accordion-content p span, .description p span, .testimonial p span {
  color: inherit !important;
  background-color: transparent !important;
}

/* Set specific colors for sections */
#banner p, .banner-text p, #banner p span, .banner-text p span {
  color: #fff !important;
  background-color: transparent !important;
}

#transport p, .trans-text p, #tran p, #faq p, .accordion-content p,
#transport p span, .trans-text p span, #tran p span, #faq p span, .accordion-content p span {
  color: #fff !important;
  background-color: transparent !important;
}

#delivery p, #services p, #testimonial p, .card-box p, .testimonial .description,
#delivery p span, #services p span, #testimonial p span, .card-box p span, .testimonial .description span {
  color: #000 !important;
  background-color: transparent !important;
}

/* Extra override for specific yellow backgrounds */
span[style*="background-color: #f1c40f"], span[style*="background-color: #f3a01d"] {
  background-color: transparent !important;
  color: inherit !important;
}

/* swiper slider  */
  
.section {
  margin: 0 auto;
}



.swiper-button-next::after, .swiper-button-prev::after {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 1rem;
  width: 2rem;
  height: 2rem;
  opacity: 0.75;
  border-radius: 50%;
  color: var(--white-100);
  background: var(--dark-blue);
}
  /* swiper slider  */