/*---------------------------------------------------------------
        CSS INDEX
        ==================
        
        01.  Basic Styles 
        03.  Toggle Switch CSS
        04.  Header & Navbar CSS
        05.  Home Slider Area CSS
        06.  Feature Area CSS
        07.  About Us Area CSS
        08.  Services Area CSS
        09.  Why Choose Area CSS
        10.  CTA Area CSS
        15.  Contact Area CSS
        16.  Our Clients Area CSS
        18.  Footer Area CSS
        19.  Back to top Styles

----------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

/* ==================
   Basic Styles 
================== */

[data-wheeltheme="light"]{
    --body-color : #ffff;
    --primary-color: #613d16;
    --primary-light-bg:#fff9f7;
    --secondary-color: #b07332;
    --secondary-color-overlay: 5, 12, 22;
    --alt-color:#F8F8F9;
    --white-color:#ffff;
    --card-color:#ffff;
    --border-primary: #613d16;
    --DangerColor: #f03939;
    --dark-color : #613d16;
    --toggle-bg:#bababa;
    --box-shadow:  0px -1px 20px 0px #f3efef;

  /* text-colors */
  --primary-text: #010101;
  --para-text: #3f3f3f;
  --heading-text: #613d16;
  --white-text: #ffffff;

  /* font family */
  --primary-font: "Titillium Web", sans-serif;
}

* {
  box-sizing: border-box;
  font-family: var(--primary-font);
  word-break: break-word;
}

a {
  color: inherit;
  text-decoration: none;
  box-shadow: none;
}
a:hover{
  color: var(--primary-color);
}
body {
  overflow-x: hidden;
}

@media(min-width:768px){
  .w-md-50{
    width: 50% !important;
  }
}
.alertmsg {
  z-index: 50;
}

.fs-0 {
  font-size: 0px;
}

/* Background-Color*/

.body-color {
  background-color: var(--body-color) !important;
}

.primary-color {
  background-color: var(--primary-color) !important;
}

.secondary-color {
  background-color: #b07332 !important;
}

.white-color {
  background-color: var(--white-color) !important;
}

.alt-color {
  background-color: var(--alt-color) !important;
}

.card-color {
  background-color: var(--card-color) !important;
}

.primary-light-bg{
  background-color: var(--primary-light-bg);
}

.dark-color{
  background-color: #613d16;
}
.copyright-area{
  background-color: #b07332 !important;
}
/* Text-Color*/

.primary-text {
  color: var(--primary-text) !important;
}

.para-text {
  color: var(--para-text) !important;
}

.heading-text {
  color: var(--heading-text) !important;
}

.white-text {
  color: var(--white-text);
}

.border-color {
  border-color: var(--border-primary);
}

.border-primary{
  border-color:  var(--primary-color)!important;
}

/* buttons */

.btn-primary {
  background: var(--white-color);
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
}

.btn-primary:hover {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--white-color) !important;
  padding: 10px 22;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
}

.btn-outline-white {
  background-color: unset !important;
  border-color: var(--white-color) !important;
  color: var(--white-color) !important;
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
}

.btn-outline-white:hover {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--white-color) !important;
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
}

.btn-secondary {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--white-color) !important;
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
}

.btn-secondary:hover {
  background-color: unset !important;
  border-color: var(--white-color) !important;
  color: var(--white-color) !important;
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
}

p {
  margin-bottom: 15px;
  line-height: 1.8;
  font-weight: 400;
  font-family: "Titillium Web", sans-serif;
  font-size: 16px;
}

p:last-child {
  margin-bottom: 0;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-75 {
  padding-bottom: 75px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Titillium Web", sans-serif;
  font-weight: bold;
}

.error:not(.form-control){
  color: var(--DangerColor) !important;
  font-size: 16px;
  font-weight: 700;
  padding: 5px;
  background-color: var(--body-color)!important;
}

.why-choose-text .error:not(.form-control) {
  color: var(--DangerColor) !important;
  font-weight: 400;
  font-size: 16px;
  font-weight: 700;
  background-color: var(--body-color)!important;
}

::placeholder {
  color: #868686 !important;
}

input:focus, input:active, textarea:focus, textarea:active{
  border: 1px solid var(--primary-color) !important;
}

.form-control:focus {
  outline: 0;
  box-shadow: none;
}

/*================================================
  Header & Navbar CSS
=================================================*/

/* Sticky Navbar */
#stickyHeader {
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: var(--body-color);
  box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
  position: relative;
  color: var(--heading-text);
  font-weight: 500;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color)
}

@media (min-width: 992px) {
  .navbar-nav .nav-link {
    font-size: 16px;
    padding: 8px 10px;
  }

.top-header-optional li a {
  width: 30px;
  height: 30px;
}

.top-header-optional li a:hover {
  transform: translateY(-2px);
}

#header .nav-link:hover,
.nav-link.active {
  color: var(--primary-color) !important;
}
}

@media (max-width: 991.98px) {
  .offcanvas-body .navbar-nav {
    align-items: flex-start !important;
    text-align: left;
  }
  .display-2{
    font-size: 27px;
    margin-top: 30px !important;
  }
}
.custom-toggle-btn{
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px; 
  box-shadow: none;
}

.custom-toggle-btn i {
  color: var(--white-color);
  font-size: 18px;
}

.custom-btn-close {
  all: unset; 
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px; 
  box-shadow: none;
  color: var(--white-color);
  cursor: pointer;
}

.custom-btn-close i {
  font-size: 1.5rem; /* Icon size */
  color: inherit; /* Color inherit from parent */
}
.navbar-toggler:focus{
  box-shadow: none;
}

/*================================================
   Home Slider Area CSS
=================================================*/

.home-slides .owl-item {
  width: 100%;
}

.item-bg4 {
  background: linear-gradient(0deg, rgba(var(--secondary-color-overlay), 0.7), rgba(var(--secondary-color-overlay), 0.4)),
    url(../../assets/img/slider_img/sl1.jpg) no-repeat;
  background-size: cover;
}

.item-bg5 {
  background: linear-gradient(0deg, rgba(var(--secondary-color-overlay), 0.7), rgba(var(--secondary-color-overlay), 0.4)),
    url(../../assets/img/slider_img/sl2.jpg) no-repeat;
  background-size: cover;
}

.item-bg6 {
  background: linear-gradient(0deg, rgba(var(--secondary-color-overlay), 0.7), rgba(var(--secondary-color-overlay), 0.4)),
    url(../../assets/img/slider_img/hero_slider_3.webp) no-repeat;
  background-size: cover;
}

.main-slides-item {
  min-height: 860px;
  height: 100%;
  display: flex;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media(max-width:992px){
  .main-slides-item{
    min-height: 550px;
  }
  .main-slides-content h1{
    font-size: 50px;
  }
}
@media(max-width:500px){
  .main-slides-item {
    min-height: 400px;
    height: 100%;
    padding: 40px 0; 
  }
  .main-slides-content h1{
    font-size: 27px;
  }
  .main-slides-content p{
    font-size: 16px !important;
  }
  .btn-primary, .btn-outline-white{
    font-size: 15px !important;
  }
  .col-xs-6{
  width: 50%;
}
 .col-xs-6 .feature-card{
height: 340px;
}
}

@media (max-width: 400px) {
  .main-slides-item {
    min-height: 400px; 
    padding: 40px 0; 
  }

  .main-slides-content h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .main-slides-content p {
    font-size: 13px !important;
    line-height: 1.4;
    max-height: 80px;
    overflow: hidden;
  }

  .main-slides-content .btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

.main-slides-content p {
  max-width: 800px;
}

/*================================================
  Feature Area CSS
=================================================*/
.transport-section .transport-card .transport-text i {
  top: -40px;
  width: 80px;
  height: 80px;
  font-size: 30px;
  line-height: 80px;
  text-align: center;
  position: absolute;
  border-radius: 50px;
  background: var(--body-color);
  color: var(--heading-text);
  box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
  /* transition: .5s; */
}

.transport-section .transport-card .transport-text {
  position: relative;
  padding: 70px 30px 30px;
  /* transition: .5s; */
}

.transport-text a:hover {
  color: var(--primary-color) !important;
  /* transition: .5s; */
}
.features-section {
  margin-top: 50px;
}

@media(min-width:992px){
  .features-section {
    margin-top: -100px;
    position: relative;
    z-index: 1;
  }
}

.icon-bg {
  width: 50px;
  height: 50px;
  background: var(--alt-color);
  line-height: 50px;
}

.feature-card {
  box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid transparent;
  transition: all .5s;
  min-height: 250px;
}
@media(min-width:992px){
  .feature-card {
    height: 270px;
  }
}

.features-section .feature-card:hover {
  border: 1px solid var(--primary-color);
  margin-top: -10px;
}

.transport-section .transport-card {
  box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  border: 1px solid #ddd;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transport-section .transport-card .transport-img img {
  border-radius: 10px 10px 0 0;
  transition: .5s;
  width: 100%;
}

.transport-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.transport-card img {
  object-fit: cover;
  transition: transform 0.3s ease;
}
.transport-card:hover img {
  transform: scale(1.05);
}
.transport-card i {
  transition: transform 0.3s ease, color 0.3s ease;
}
.transport-card:hover i {
  transform: scale(1.1);
  color: var(--primary-color)!important;
}

/*================================================
  About Us Area CSS
=================================================*/

.about-info-card h3 {
  font-size: 24px;
  padding-bottom: 20px;
  margin-bottom: 25px;
  position: relative;
}

.about-info-card h3::before {
  content: "";
  position: absolute;
  background: var(--primary-color);
  width: 55px;
  height: 5px;
  left: 0;
  bottom: 0;
}

.about-info-card ul li {
  display: flex;        
  align-items: center;   
  margin-bottom: 10px;  
}

.about-info-card ul li i {
  background: var(--primary-light-bg);
  color: var(--primary-color);
  width: 30px;
  height: 30px;
  display: inline-flex; 
  justify-content: center;
  align-items: center;   
  border-radius: 50%;
  margin-right: 10px; 
}

.about-info-card ul li .para-text {
  font-size: 16px;        
  color: var(--primary-text);
}

/*================================================
   why Choose Area
=================================================*/
.choose-area {
  position: relative;
}
.choose-area .choose-contant {
  padding: 15px 20px;
  margin-bottom: 30px;
  box-shadow: var(--box-shadow);
  border-radius: 5px;
  background-color: var(--card-color);
}
.choose-area .choose-contant:last-child {
  margin-bottom: 0;
}
.choose-area .choose-contant .choose-card {
  padding-left: 100px;
  position: relative;
}
.choose-area .choose-contant .choose-card i {
  background: var(--primary-color);
  color: var(--white-color);
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 40px;
  border-radius: 10px;
  position: absolute;
  left: 0;
}
.choose-area .choose-contant .choose-card h3 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
}

/*================================================
  Contact Area CSS
=================================================*/

.c-info-wrap .contact-info li {
  font-size: 16px;
  color: #505050;
  font-weight: 400;
  margin-bottom: 28px;
  padding-bottom: 19px;
  line-height: 1.3;
  border-bottom: 1px solid #ebebeb;
}

.c-info-wrap .contact-info li .icon {
  float: left;
  margin-right: 20px;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 18px;
  height: 30px;
  width: 30px;
  align-items: center;
  text-align: center;
  line-height: 30px;
  border-radius: 5px;
 }

.c-info-wrap .contact-info li a {
  color: var(--heading-text);
  font-weight: 700;
  margin-left: 5px;
  display: block;
  font-size: 18px;
}

.c-info-wrap .contact-info li:hover a {
  color: var(--primary-color);
}

.c-info-wrap .contact-info li:last-child {
  margin-bottom: 0;
  border: 0 none;
}

#contactForm .form-group {
    margin-bottom: 15px;
}

#contactForm input {
  height:  50px!important;
}

/*================================================
  Our Clients Area CSS
=================================================*/
.clients-carousel .owl-stage {
  transition: all 1s linear !important;
}

.box {
  display: grid;
  align-items: center;
  justify-items: center;
  width: 60%;
  height: auto;
  transition: transform 0.5s ease-in;
  margin: 8px auto;
}

.box img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
}

.box:hover {
  transform: scale(1.2);
}

/*================================================
  Footer Area CSS
=================================================*/

.footer-area .footer-widget {
  margin-bottom: 30px;
}
.footer-area .footer-widget .logo {
  margin-bottom: 20px;
}
.footer-area .footer-widget .logo .white-logo {
  display: none;
}

.footer-area .footer-widget h3 {
  font-size: 20px;
  margin-bottom: 25px;
  padding-bottom: 10px;
}

.footer-area .footer-widget .footer-text li:last-child {
  margin-bottom: 0;
}

.footer-area .footer-widget .footer-text li a:hover {
  color: var(--primary-color);

}
.footer-area .footer-widget.pl-80 {
  padding-left: 80px;
}
.footer-area .footer-widget.pl-50 {
  padding-left: 50px;
}

@media (max-width: 767px) {
  .footer-area .footer-widget.pl-80 {
    padding-left: 0;
  }
  .footer-area .footer-widget.pl-50 {
    padding-left: 0;
  }
}

@media (max-width: 991px) {
  .footer-area .footer-widget.pl-80 {
    padding-left: 0;
  }
  .footer-area .footer-widget.pl-50 {
    padding-left: 0;
  }
}

.footer-area .footer-widget .info-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.footer-area .footer-widget .info-list li {
  padding-left: 35px;
  position: relative;
  margin-bottom: 15px;
}

.footer-area .footer-widget .info-list li a:hover {
  color: var(--primary-color);
}

.footer-area .footer-widget .info-list li i {
  color: var(--primary-color);
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
  background: var(--white-color);
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 4px;
}
.footer-area .footer-widget .info-list li i:hover {
  background: var(--primary-color);
  color:var(--white-color);
}
.footer-area .footer-widget .info-list li span {
  display: block;
  color: var(--white-color);
  font-size: 16px;
  margin-bottom: 5px;
}
.footer-area .footer-socials {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.footer-area .footer-socials li {
  display: inline-block;
  padding: 0 !important;
  margin: 0 10px 0 0;
}
.footer-area .footer-socials li:last-child {
  margin: 0;
}
.footer-area .footer-socials li a i {
  display: inline-block;
  background: var(--white-color);
  color: var(--primary-color);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 5px;
  font-size: 20px;
  position: relative;
  margin-top: 10px;
}
.footer-area .footer-socials li a i:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}
.footer-area.footer-two {
  padding-top: 170px;
}

/* ==================
  Back to top Styles
================== */

#backtotop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#backtotop:hover {
  cursor: pointer;
}
#backtotop.show {
  opacity: 1;
  visibility: visible;
}

.input-field {
  display: none;
  margin-top: 10px;
}

@media (max-width: 991px) {
  .offcanvas-header {
    background-color: var(--alt-color) !important;
  }

  .offcanvas-body {
    background-color: var(--body-color) !important;
  }
}

.input-group .btn {
  position: relative;
  z-index: 1!important;
}
.footer-area, .copyright-area{
  background-color: #fff !important;
  border-top: 1px solid #613d16;
}
.footer-area .mb-3, .footer-area p, .copyright-area .m-0{
color: #613d16;
}
.footer-area .mb-3:hover{
color: #000;
}