body{padding-top: 40px; font-family: Roboto, Arial, Helvetica, sans-serif;}
/* header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000;
  } */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #28235B;
    z-index: 9999; /* Make sure header stays on top */
  }
  
  .navbar {
    position: relative;
    z-index: 9999; /* Ensure navbar stays above other content */
  }
.frist__reviewlist{
    display: flex;
    justify-content: space-between;
    padding: 0px;
    list-style-type: none;
}
.frist__reviewitem {
    width: 15%;
}

.solid-border{border: 2px solid #000; border-radius: 4px;}
.pe-flip-outer {
    position: relative;
    width: 140px;
    height: 140px;
    perspective: 1000px; /* Depth effect */
  }
  .f-25{font-size: 23px; color: #000; font-weight: 700 ;}
  .f-65{font-size: 52px; color: #000; font-weight: 700; }
  .f-40{font-size: 40px; color: #000; font-weight: 700; }
  .f-30{font-size: 30px; color: #000; font-weight: 700; }
  .f-18{
    font-size: 21px;
    color: #000;
    line-height: 1.8;
   }
  .f-16{
    font-size: 16px;
    color: #000;
    line-height: 1.8;
   }
   .bg-f7f7f7{background: #f7f7f7;}
   .type-none{list-style-type: none;}
  /* Roboto, Arial, Helvetica, sans-serif */
  .pe-flip-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1); /* Smooth easing for rotation */
    transform-style: preserve-3d;
  }
  
  .pe-flip-outer:hover .pe-flip-inner {
    transform: rotateY(180deg); /* Rotates 180 degrees smoothly on hover */
  }
  
  .pe-flip-front,
  .pe-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; /* Hides the back side when not flipped */
  }
  
  .pe-flip-front {
    z-index: 2;
    transform: rotateY(0deg);
  }
  
  .pe-flip-back {
    transform: rotateY(180deg); /* Backside is flipped by default */
  }
  .pe-flip-front img {
    width: 140px;
    height: 140px;
}
  .pe-flip-back img {
    width: 180px;
    height: 180px;
}
.line {
  width: 100%; /* Adjust line width */
  height: 1px;
  background-color: #ccc; /* Line color */
  position: relative;
  /* margin-bottom: -25px;  */
}
.btn-custom {
    display: inline-block;
    padding: 15px 30px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background-color: #28235B;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth transition */
    text-decoration: none; /* Removes underline if it's a link */
    text-align: center;
  }
.btn-fff {
    display: inline-block;
    padding: 15px 15px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #28235B;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth transition */
    text-decoration: none; /* Removes underline if it's a link */
    text-align: center;
    text-transform:uppercase;
  }
  .re-icon{font-size: 20px; padding-right: 6px;}
.custom-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background-color: #28235B;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth transition */
    text-decoration: none; /* Removes underline if it's a link */
    text-align: center;
  }

  .btn-custom:hover {
    background-color: #000; /* Darker blue on hover */
   color: #fff;
  }
  .custom-btn:hover {
    background-color: #000; /* Darker blue on hover */
   color: #fff;
  }
  .btn-fff:hover {
    background-color: #000; /* Darker blue on hover */
   color: #fff;
  }

  h2.after::after {
    content: "";
    display: block;
    width: 60%; /* Line will match the text width */
    height: 2px;
    background-color: #ccc; /* Line color */
    margin: 5px auto 0;
  }
  .profile-image {
    width: 150px; /* Image size */
    height: 150px;
    margin: 20px auto; /* Centers the image */
    border-radius: 50%; /* Makes the image circular */
    overflow: hidden;
    border: 3px solid #ccc; /* Optional border */
  }

  .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fits inside the circle */
  }
  
  /* Button styling */
  .custom-button {
    background-color: #fff; /* White background */
    border: 1px solid #ddd; /* Light border */
    border-radius: 8px; /* Rounded corners */
    padding: 10px 15px; /* Padding inside the button */
    font-size: 16px; /* Text size */
    text-align: left; /* Align text to the left */
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth hover effect */
    width: 100%; /* Make all buttons equal width */
     /* Optional: limit the width */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin-bottom: 10px;
  }
  
  /* Hover effect */
  .custom-button:hover {
    background-color: #f1f1f1; /* Light gray background on hover */
    border-color: #bbb; /* Slightly darker border on hover */
    transform: translateY(-2px); /* Button moves up slightly */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* More pronounced shadow */
  }
  
  /* Active/pressed state */
  .custom-button:active {
    background-color: #e9e9e9; /* Even lighter background */
    transform: translateY(1px); /* Button moves down slightly */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15); /* Subtle shadow */
  }
  .fusion-li-icon {
    background-color: black; /* Black background */
    color: white;           /* White icon color */
    border-radius: 50%;     /* Circular shape */
    padding: 10px;          /* Space inside the circle */
    display: inline-block;  /* Ensure it's treated as a block element for padding */
    text-align: center;     /* Center the icon */
    width: 40px;            /* Define circle size */
    height: 40px;           /* Define circle size */
    line-height: 20px;      /* Adjust vertical centering */
    margin-right: 25px;
}
.bg-24444b{background: #24444b;}
.form-container {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* Form group styles */
.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-bottom: 2px solid #ccc;
  background: none;
  outline: none;
  transition: border-color 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-bottom: 2px solid #24444b;
}

textarea {
  resize: none;
  height: 100px;
}

/* CAPTCHA styles */
.captcha {
  display: flex;
  align-items: center;
}

.captcha input {
  width: auto;
  margin-right: 10px;
}

/* Submit button */
.submit-button {
  background-color: #28235B;
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #000;
}
/* Form group general styles */
.phone-input {
  margin-bottom: 15px;
}

.phone-input label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.phone-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Country code dropdown */
#country-code {
  width: 30%; /* Adjust width for dropdown */
  padding: 10px;
  font-size: 16px;
  border: none;
  border-bottom: 2px solid #ccc;
  background: none;
  outline: none;
  transition: border-color 0.3s ease;
}

#country-code:focus {
  border-bottom: 2px solid #24444b;
}

/* Phone number input */
#handynummer {
  width: 70%; /* Adjust width for input field */
  padding: 7.9px;
  font-size: 16px;
  border: none;
  border-bottom: 2px solid #ccc;
  background: none;
  outline: none;
  transition: border-color 0.3s ease;
}

#handynummer:focus {
  border-bottom: 2px solid #24444b;
}
.bg-000{background: #000;}
.number-box {
  background-color: #24444b; /* Black background */
  color: #fff; /* White text color */
  border-radius: 50%; /* Rounded corners */
  padding: 15px;
  font-size: 20px;
  text-align: center;
  width: 40px; /* You can adjust the size */
  height: 40px; /* You can adjust the size */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
.checkmark-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #008080; /* Dark teal */
  border: 2px solid #80ced7; /* Light teal */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.checkmark {
  width: 25px;
  height: 25px;
  color: white;
  font-size: 20px;
}
/* .m-auto{margin: 0 auto;} */
.text-type{list-style-type: none; padding: 0;}
.text-type li a{color: #fff; text-decoration: none;}
.img-center{
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
   /* Full screen height */
}
.image-container{
  max-width: 100%; /* Ensures responsiveness */
  height: auto; /* Maintains aspect ratio */
  display: block; /* Removes extra spacing caused by inline images */
  margin: 0 auto;
  text-align: center;
}
.center-container {
  display: flex;                /* Flexbox for centering */
  justify-content: center;      /* Horizontally center content */
  align-items: center;          /* Vertically center content */
  margin: 0;                    /* Remove any default margin */
  padding: 0;                   /* Remove any default padding */
  box-sizing: border-box;       /* Ensure proper sizing */
}
.focus-none{
  /* border: 1px solid #ccc !important; */
  box-shadow: none !important;
  color: #000 !important;
  background: none !important;
  font-size: 20px !important;
  font-weight: 800 !important;
}
.accordion-item {
  margin-bottom: 20px; /* Adds 20px space below each item */
  /* Adds a solid border around each accordion item */
   /* Optional: Rounded corners for the border */
  overflow: hidden; /* Ensures content doesn't overflow the border */
 border: none !important;
 border-radius: 0px !important;
  /* border-top: 1px solid #ccc; */
  border: 1px solid #ccc !important;
}
.resize{
  font-weight: 700 !important;
  color: #4a4e57 !important;
  font-size: 18px !important;
  line-height: 1.8;
}
.w-80{width: 80%;}
.m-auto{margin: 0 auto;}
.c-000{color: #000;}
.f-13{font-size: 13px;}
.text-left{text-align: left}
#testimonials {
  background-color: #f8f9fa;
  border-radius: 10px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
}

.testimonial-author img.testimonial-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border: 2px solid #fff;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  background-color: #6c757d;
  border: none;
}

.carousel-indicators button.active {
  background-color: #495057;
}

.carousel-control-prev span,
.carousel-control-next span {
  font-size: 1.5rem;
  color: #6c757d;
}

.text-bg-dark {
  background-color: #343a40 !important;
  color: #f8f9fa !important;
}
.testimonial-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}
.icon-cammelcase-top {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url(/econoomy/assets/image/cammelcase-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border: 1px solid transparent;
}
.carousel-indicators {
  position: absolute;
  /* right: 0; */
  bottom: -50px;
}
.carousel-control-next {
  position: absolute;
  right: -35px;
}
.carousel-control-prev {
  position: absolute;
  left: -35px;
}
.carousel-indicators [data-bs-target] {
  background-color: #6c757d;
}
.carousel-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  background-color: #000 !important;
  border: none;
  margin: 0 5px;
  transition: background-color 0.3s ease;
}
.float {
  position: fixed;
  /* width: 50px;
  height: 50px; */
  bottom: 30px;
  right: 40px;
  background-color: #2e9f32;
  color: #FFF;
  /* border-radius: 50px; */
  text-align: center;
  font-size: 20px;
  /* box-shadow: 2px 2px 3px #999; */
  padding: 10px 20px;
  border-radius: 20px;
  z-index: 9999999;
  text-decoration: none;
}

.header-image{
    padding: 0 !important;
    margin: 0 !important;
    line-height: 0;
    height: 86px;
}


.whattsApp img{width: 95%;}
@media (max-width: 768px) {
  .f-65{font-size: 24px;}
  .f-40{font-size: 24px;}
  .testemonial-container {
    min-height: 310px;
    width: 90%;
    font-size: 14px;
    padding: 24px !important;
}
}

@media (max-width: 440px) {
.nowrap{display: flex !important; flex-wrap: nowrap !important;}
}