@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;1,400&display=swap');

/*================= 
#Variables
===================*/
:root {
  --main-color: #FF3414;
  --bg-light: #F5FBFF;
  --bg-dark: #001D38;
  --gray: #919191;
  --white: #FFFFFF;
  --border: 1px solid rgba(234, 234, 234, 1);
  --basic-font-size: 14px;

}

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-transform: capitalize;
  text-decoration: none;
  transition: .2s linear;
}

html,
body {
  font-size: 62.5%;
  scroll-padding-top: 40px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  /* Prevent horizontal scrolling if not needed */
}

h1 {
  font-size: 60px;
  font-weight: 600;
}

h2 {
  color: var(--bg-dark);
  font-size: 46px;
}

h3 {
  color: var(--bg-dark);
  font-size: 30px;
}

h4 {
  color: var(--bg-dark);
  font-size: 22px;
}

h5 {
  font-size: 15px;
  color: var(--bg-dark);
  font-weight: 600;
  margin: 0;
}

p {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  color: var(--gray);
  text-transform: none;
}

p:last-child {
  margin-bottom: 0;
}

ul,
li {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

a,
a:hover {
  text-decoration: none;
  text-transform: none;
}

a {
  color: var(--gray);
}



/*================= 
#Component
===================*/
/* BUTTON */
.btn-primary {
  border: 1.6px solid rgba(255, 52, 20, 1);
  background: var(--main-color);
  padding: 15px 30px;
  font-size: 15px;
  cursor: pointer;
  color: #fff;
  display: inline-block;
  text-transform: capitalize;
  text-align: center;
  white-space: nowrap;
  /* Prevent text wrapping */
}

.btn-primary:hover {
  border: 1.6px solid rgba(255, 52, 20, 1);
  color: var(--main-color);
  text-transform: capitalize;
  background: transparent;
}

.btn-outline {
  border: 1.6px solid rgba(255, 52, 20, 1);
  padding: 15px 30px;
  font-size: 15px;
  cursor: pointer;
  color: var(--main-color);
  display: inline-block;
  text-transform: capitalize;
  text-align: center;
  white-space: nowrap;
  /* Prevent text wrapping */
}

.btn-outline:hover {
  background: var(--main-color);
  color: #fff;
  text-transform: capitalize;
}


/* header */
.ci-top-header {
  padding: 20px 0;
  border-bottom: var(--border);
}

.ci-top-header img {
  height: 80px;
}

.ci-top-header .ci-header-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--basic-font-size);
  color: var(--gray);
}

.ci-header-right ul li {
  display: inline-block;
  padding-right: 50px;
}

.ci-header-right i {
  font-size: 14px;
  color: var(--main-color);
}




/* Display the nav-menu when the 'open' class is added */
.nav-menu {
  display: flex;
  /* Flex layout to show the menu */
}

/* Style individual menu items */
.nav-menu li {
  padding: 15px 20px;
  /* Add padding to menu items */
  border-bottom: 1px solid #ddd;
  /* Optional divider between items */
  text-align: center;
  /* Center align the text */
}

.nav-menu li:last-child {
  border-bottom: none;
  /* Remove the border from the last item */
}

.nav-menu li a {
  text-transform: capitalize;
  font-size: 18px;
  text-decoration: none;
  color: var(--gray);
  /* Text color */
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--main-color);
  /* Highlight color on hover */
}



/* Hide the times icon by default */
.ci-ham-icon .bars-icon {
  display: none;
}

.ci-ham-icon .times-icon {
  display: none;
}

/* search icon */
.ci-search,
button {
  width: 40px;
  height: 40px;
  background-color: var(--main-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  margin-left: auto;
}

.ci-search i,
button i {
  font-size: var(--basic-font-size);
  color: var(--white);
}


/* Container for the search form */
.search-container {
  display: flex;
  justify-content: right;
  /* Center the search box */
  align-items: center;
  /* Center vertically */
}

/* Styling the search box wrapper */
.search-box {
  display: flex;
  align-items: center;
  background: white;
  /* Background for the search box */
  border-radius: 50px;
  /* Rounded edges */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  /* Subtle shadow */
  overflow: hidden;
  /* Clip content to rounded edges */
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Styling the input field */
.search-box input[type="text"] {
  border: none;
  /* Remove default border */
  padding: 8px 20px;
  /* Add padding */
  font-size: 16px;
  /* Font size */
  flex-grow: 1;
  /* Allow the input to take available space */
  outline: none;
  /* Remove focus outline */
  color: var(--gray);
  /* Text color */
}

/* Placeholder text styling */
.search-box input[type="text"]::placeholder {
  color: #aaa;
  /* Placeholder text color */
}

/* Button styling */


/* Hover effect for the button */
.search-box button:hover {
  background: var(--white);
  border: 1.6px solid rgba(255, 52, 20, 1);

  /* Darker shade on hover */
}

/* Hover effect for the search box */
.search-box:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  /* More pronounced shadow */
  border-color: var(--main-color);
  /* Highlight border */
}

.search-box button:hover i {
  color: var(--main-color);
}

/* search box */

/* hero banner */
.ci-hero {
  min-height: 100vh;
  background-color: #919191;
  align-items: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.ci-hero::before {
  background: #001D38;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  opacity: .5;
}

.ci-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  /* Places the image behind the content */
}

.ci-hero-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ci-hero-caption {
  text-align: center;
  color: var(--white);
}

.ci-hero-caption p {
  font-size: 20px;
  color: var(--white);
  text-transform: capitalize;
}

.ci-call-to-action .btn-primary,
.ci-form-btn .btn-primary {
  margin-top: 20px;
}

/* Style the dots container */
.owl-dots {
  display: none;
}

/* Style the navigation container */
.owl-nav {
  position: absolute;
  /* Position relative to the carousel */
  top: 50%;
  /* Vertically center the nav buttons */
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  /* Place buttons at edges */
  transform: translateY(-50%);
  /* Adjust for exact centering */
  pointer-events: none;
  /* Disable hover effects outside buttons */
}
.owl-nav .owl-prev {
  position: absolute;
  left: 10px; /* Offset from the left edge */
  transform: translateY(-50%); /* Center vertically */
}

.owl-nav .owl-next {
  position: absolute;
  right: 10px; /* Offset from the right edge */
  transform: translateY(-50%); /* Center vertically */
}
/* Style previous and next buttons */
.owl-nav .owl-prev,
.owl-nav .owl-next {
  pointer-events: auto;
  /* Enable clicking */
  background: #1eaddc;
  /* Button background color */
  color: white;
  /* Button text/icon color */
  border: none;
  /* Remove border */
  width: 40px;
  /* Button size */
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /* Make buttons circular */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  /* Add shadow */
  cursor: pointer;
  /* Pointer cursor on hover */
  transition: background 0.3s ease;
  /* Smooth hover effect */
}

/* Hover effect for nav buttons */
.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
  background: #1c9cc2;
  /* Darker shade on hover */
}

/* Customize previous button */
.owl-nav .owl-prev::before {
  content: '\276E';
  /* Unicode for left arrow */
  font-size: 18px;
  /* Adjust arrow size */
}

/* Customize next button */
.owl-nav .owl-next::before {
  content: '\276F';
  /* Unicode for right arrow */
  font-size: 18px;
  /* Adjust arrow size */
}


/* hero banner */


/* about us */
.ci-about-us {
  margin-top: 100px;
}

.ci-about-us .ci-feat-image {
  position: relative;
  width: 100%;
  z-index: 0;
}

.ci-about-us .ci-feat-image::before,
.ci-about-us .ci-feat-image::after {
  position: absolute;
  background-color: var(--main-color);
  content: '';
  z-index: -1;
  height: 100px;
  width: 200px;
}

.ci-about-us .ci-feat-image::before {
  top: 0;
  left: 0;
}

.ci-about-us .ci-feat-image::after {
  bottom: 0;
  right: 0;
}

.ci-about-us .ci-feat-image img {
  width: 100%;
  height: 100%;
  /* background-color: var(--gray); */
  padding: 18px;
}

.ci-about-us .ci-feat-info {
  width: 90%;
}

.ci-about-us .ci-feat-info h2 {
  color: var(--bg-dark);
  font-weight: 400;
}

.ci-about-us .ci-feat-info p {
  font-size: 16px;
  margin-bottom: 22px;
  margin-top: 28px;
  line-height: 28px;
  color: var(--gray);
  font-weight: 100;
}

/* about us */


/* transportaion */
.ci-transporation {
  padding: 100px 0;
}

.ci-icon img {
  height: 80px;

}

.ci-transport-card {
  width: 80%;
}

.ci-transport-card h4 {
  margin: 15px 0;
  font-weight: 500;
  transition: 0.3s;
  color: var(--bg-dark);
}

.ci-transport-card h4:hover {
  color: var(--main-color);
}

.ci-transport-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--gray);
}

/* transportaion */

/* services */
.ci-services {
  background-color: var(--bg-light);
  padding: 100px 0;
}

.ci-section-title h2 {
  padding-bottom: 40px;
  text-align: center;
  color: var(--bg-dark);
}

.ci-service-card {
  overflow: hidden;
  /* width: 50%; */
  margin-right: 20px;
  margin-bottom: 40px;
}

.ci-service-image {
  width: 100%;
  height: 200px;
  background-color: var(--gray);
  overflow: hidden;
  border-radius: 20px;
}

.ci-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ci-service-info {
  margin-top: 20px;
}

.ci-service-info h4 {
  color: var(--bg-dark);
  font-weight: 500;
  transition: 0.3s;
}


/* services */

/* contact action area */
.ci-contact-action {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: auto;
  background-position: center;
  min-height: 60vh;
  background-color: #919191;
  position: relative;
  z-index: 0;
}

.ci-contact-action::before {
  height: 100%;
  width: 100%;
  position: absolute;
  background: var(--bg-dark);
  left: 0;
  top: 0;
  content: '';
  opacity: .5;
}

.ci-contact-action img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  top: 0;
  left: 0;
}

.ci-contact-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ci-contact-caption h2 {
  color: var(--white);
  font-weight: 400;
}

.ci-contact-caption p {
  color: var(--white);
}

.ci-contact-cta {
  text-align: center;
}

.ci-contact-cta .btn-primary {
  border-radius: 50px;
  font-size: 26px;
}

.ci-contact-cta .btn-primary:hover {
  color: var(--bg-dark);
  text-transform: capitalize;
  background: white;
  border: none;
}

/* contact action area */

/* why choose us */
.ci-choose-us {
  padding: 100px 0;
}

.ci-choose-us .ci-feat-image {
  position: relative;
  width: 100%;
  z-index: 0;
}

.ci-choose-us .ci-feat-image::before {
  position: absolute;
  background-color: var(--main-color);
  content: '';
  z-index: -1;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
}

.ci-choose-us .ci-feat-image img {
  width: 100%;
  height: 100%;
  background-color: var(--gray);
  /* height: 575px; */
}

.ci-choose-us .ci-feat-info {
  margin-left: 50px;
}

.ci-choose-us .ci-feat-info h2 {
  color: var(--bg-dark);
  font-weight: 400;
}

.ci-choose-us .ci-feat-info p {
  font-size: 16px;
  margin-bottom: 22px;
  margin-top: 28px;
  line-height: 28px;
  color: var(--gray);
  font-weight: 100;
}

.ci-choose-us .ci-feat-info i {
  color: var(--main-color);
}

.ci-choose-us .ci-feat-info ul {
  margin-bottom: 40px;
}

.ci-choose-us .ci-feat-info ul li {
  font-size: 13px;
  line-height: 28px;
  color: var(--gray);
}

/* why choose us */

/* counter block */
.ci-counter-block {
  margin-bottom: 100px;
}

.ci-counter-banner {
  background-color: var(--bg-light);
  padding: 40px 0;
}

.ci-single-counter {
  text-align: center;
}

.ci-single-counter h2 {
  color: var(--main-color);
}

.ci-single-counter p {
  text-transform: capitalize;
  line-height: 28px;
}

/* counter block */

/* testimonial block */
.ci-testimonials-block {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: auto;
  background-position: center;
  min-height: 80vh;
  background-color: #919191;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ci-testimonials-block img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.ci-single-testimonial {
  background-color: var(--white);
  width: 80%;
  padding: 40px;
  align-items: center;
  text-align: center;
  border-radius: 20px;
}

.ci-single-testimonial i {
  color: var(--main-color);
  font-size: 42px;
}

.ci-single-testimonial p {
  color: var(--bg-dark);
  margin: 20px 0;
}

.ci-testi-profile {
  display: flex;
  flex-direction: column;
  /* Arrange items vertically */
  align-items: center;
  /* Center items horizontally */
  text-align: center;
}

.ci-testi-img {
  position: relative;
  width: 50px;
  height: 50px;
  z-index: 0;
  margin-bottom: 10px;
}

.ci-testi-img img {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  object-fit: cover;
}

.ci-testi-profile p {
  font-size: 12px;
  text-transform: capitalize;
  color: var(--gray);
  margin: 0;
}

/* testimonial block */

/* contact address */
.ci-contact-address {
  position: relative;
  z-index: 0;
  background-color: var(--bg-light);
  padding: 80px 0;
}

.ci-contact-address img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}

.ci-contact-branch h4 {
  margin-bottom: 10px;
}

.ci-contact-card {
  margin-bottom: 30px;
}

.ci-contact-address .card-header {
  text-align: left;
  color: var(--gray);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 4px;
}

.card-body ul li i {
  color: var(--main-color);
}

.card-body ul li {
  text-align: left;
  color: var(--gray);
  font-size: 13px;
  text-transform: capitalize;
}

.ci-contact-form {
  margin-left: 20px;
}

.ci-contact-form input,
.ci-contact-form textarea {
  font-size: 14px;
  width: 100%;
  text-transform: capitalize;
  color: var(--gray);
  padding: 10px;
}

/* contact address */
/* footer */
.ci-footer-top {
  padding: 70px 0;
}

.ci-footer-top p {
  font-size: 14px;
  margin-top: 26px;
}

.ci-footer-top h5 {
  font-size: 18px;
  color: var(--bg-dark);
  margin-bottom: 20px;
  text-transform: capitalize;
  font-weight: 500;
}

.ci-footer-top ul li {
  line-height: 40px;
  font-size: 14px;
}

.ci-footer-top ul li a {
  text-transform: capitalize;
  font-weight: 500;
}

.ci-footer-top ul li a:hover {
  color: var(--main-color);
}

.ci-footer-top ul.ci-socials-block {
  display: inline-flex;
}

.ci-footer-top .ci-socials {
  position: relative;
  background-color: var(--main-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  margin-right: 15px;
}

.ci-footer-top ul li i {
  font-size: 14px;
  color: var(--white);
}

.ci-bottom-border {
  /* border-top: 1px solid #E8E8E8; */
  border-top: var(--border);
}

.ci-footer-bottom .ci-copyright {
  font-size: 12px;
  font-weight: 500;
  margin: 15px 0;
  color: var(--gray);
}

/* footer */

.nav-menu {
  display: flex;
  /* Show menu inline for larger screens */
  flex-direction: row;
  /* Horizontal alignment */
  position: static;
  /* Default position */
  box-shadow: none;
  /* Remove shadow */
}

/* MEDIA QUERY */

/* Adjust for larger screens (optional if already defined) */
@media (max-width: 768px) {

  html,
  body {
    font-size: 25%;
  }

  .search-box input[type="text"] {
    padding: 8px 10px;
    font-size: 13px;
  }

  .ci-ham-icon .bars-icon {
    display: none;
    /* Hide hamburger icon on larger screens */
  }

  .ci-ham-icon .times-icon {
    display: none;
    /* Hide hamburger icon on larger screens */
  }

  .nav-menu li a {
    font-size: 14px;
  }

  .ci-search,
  button {
    width: 35px;
    height: 35px;
  }

  .ci-single-testimonial {
    width: 60%;
  }

  .ci-footer-wrap {
    margin-bottom: 20px;
  }

}

@media (max-width: 450px) {
  h1 {
    font-size: 46px;
  }
  
  h2 {
    font-size: 36px;
  }
  
  .ci-top-header img {
    height: 50px;
  }

  .ci-contact-list {
    display: none;
  }

  .ci-top-header .btn-outline {
    padding: 10px 20px;
    font-size: 12px;
  }

  .ci-top-header .ci-header-right {
    justify-content: right;
  }

  .nav-menu {
    display: none;
  }

  /* Hide the nav-menu initially on smaller screens */
  .nav-menu.open {
    display: block;
    /* Hidden by default */
    padding: 0;
    margin: 0;
    flex-direction: column;
    /* Stack items vertically */
    background-color: var(--white);
    /* Menu background */
    width: 100%;
    /* Take full width of the parent container */
    position: absolute;
    /* Position relative to the parent */
    top: 138px;
    /* Adjust to align below the header */
    left: 0;
    /* Align to the left edge */
    z-index: 1000;
    /* Ensure it stays on top */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Add shadow for better visibility */
    border-top: 1px solid #ddd;
  }

  /* Show the hamburger icon on smaller screens */
  .ci-ham-icon .bars-icon {
    display: block;
    /* Ensure visibility */
    font-size: 30px;
    color: var(--main-color);
    cursor: pointer;
  }

  .ci-ham-icon .times-icon {
    font-size: 30px;
    color: var(--main-color);
    cursor: pointer;
  }

  nav a.ci-ham-icon i {
    /* font-size: 24px; */
    margin-left: 10px;
  }

  .search-container {
    /* overflow: hidden; */
    padding: 8px 0;
  }

  .search-box input[type="text"] {
    font-size: 10px;
    padding: 8px 10px;
  }

  .ci-search,
  button {
    width: 30px;
    height: 30px;
  }

  .ci-search,
  button i {
    font-size: 10px;
  }

  /* about */
  .ci-about-us .ci-feat-info {
    margin-left: 20px;
    margin-right: 20px;
  }

  /* transportation */
  .ci-transport-card {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  /* services */
  .ci-service-card {
    margin-left: 20px;
  }

  /* contact caption */
  .ci-contact-caption h2,
  .ci-contact-caption p {
    text-align: center;
  }

  .ci-contact-cta {
    text-align: center;
    margin-top: 20px;
  }

  /* why choose us */
  .ci-choose-us .ci-feat-image {
    margin-bottom: 70px;
    text-align: center;
  }

  .ci-choose-us .ci-feat-image img {
    width: 84%;
    height: 100%;
  }

  .ci-choose-us .ci-feat-image::before {
    top: 20px;
    left: 60px;
    right: 20px;
    bottom: -15px;
  }

  .ci-choose-us .ci-feat-info {
    margin-left: 20px;
  }

  /* counter */
  .ci-single-counter {
    margin-bottom: 20px;
  }

  .ci-counter-banner {
    margin: 0 20px;
  }

  /* testimonial */
  .ci-single-testimonial {
    margin: 40px;
  }

  /* contact */
  /* .ci-contact-branch h4,
  .ci-contact-address .card-header,
  .card-body ul li {
    text-align: center;
  } */
  .ci-contact-branch h4 {
    margin-left: 20px;
  }

  .ci-contact-card {
    margin: 20px;
  }

  .ci-contact-form {
    margin-top: 30px;
  }

  /* footer */
  footer {
    margin-left: 20px;
  }

  .ci-footer-wrap {
    margin-bottom: 40px;
  }

}