/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Arial" ;
  color: #444444;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
}

a {
  color: #2b4c6b;
  text-decoration: none;
}

a:hover {
  color: #de2616;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Arial" ;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: rgb(0, 0, 0);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #de2616;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

--------------------------------------------------------------*/

#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: white;
}

#header .logo {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.fixed-top{
  background: white;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
/* Navbar styling */
.navbar {
  padding: 0px;
}

.navbar .container{
  margin-left: 0;
}

.navbar ul {
  margin-right: 0;
  padding: 0;
  margin-left: 30%;
  list-style: none;
  align-items: center;
  font-weight:bold;
}

.navbar li {
  position: relative;
  list-style: none;
  padding-left: 3px;
}

.navbar a,
.navbar a:focus {
  
  align-items: center;
  justify-content: space-between;
  padding: 0px 0 0px 0px;
  font-size: 18px;
  
  color: #233d56;
  white-space: nowrap;
  transition: 0.3s;

}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #de2616;
}



@media (min-width: 992px) and (max-width: 1199px) {
  .navbar ul {
    margin-left: 25%;
  }

  .navbar a {
    font-size: 17px;
  }
}

@media (min-width: 1200px) {
  .navbar .container {
    margin-left: 0;
    margin-right: 0;
  }

  .navbar ul {
    margin-left: 30%;
  }

  .navbar a {
    font-size: 18px;
  }
}

@media (min-width: 1440px) {
  .navbar ul {
    margin-left: 85%;
  }

  .navbar a {
    font-size: 19px;
  }
}

.navbar-collapse {
  flex-grow: 0; /* Prevent the collapse from growing */
}


/* ---------------------------- */
.navbar .dropdown-menu li a,
.navbar .dropdown-menu li a:hover {
  padding: 10px 20px;
  text-transform: none;
  color: #0c3c53;
  display: block;
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar .dropdown-menu li a i {
  font-size: 12px;
  margin-right: 15px;
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
}

/* ---------------------------- */

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #de2616;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #de2616;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* 
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  background: #f9fcfe;
}

#hero .container {
  padding-top: 15px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #2b4c6b;
}

#hero h2 {
  color: #2b4c6b;
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Arial", sans-serif;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #2b4c6b;
  border: 2px solid #de2616;
}

#hero .btn-get-started:hover {
  color: white;
  background: #de2616;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #de2616;
}

@keyframes move-left-to-right {
  0% {
    left: 0; /* Start position */
  }
  50% {
    left: calc(100%); /* Move to the right, adjust the value as needed */
  }
  100% {
    left: 0%; /* End position */
  }
}

@keyframes disappear-and-reappear {
  0% {
    opacity: 1; /* Fully visible */
  }
  50% {
    opacity: 0; /* Disappear */
  }
  100% {
    opacity: 0; /* Reappear */
  }
}

#hero .animated {
  position: relative; /* Ensure the element's position is relative or absolute for left property to work */
  animation: move-left-to-right 4s ease-in-out infinite alternate both, disappear-and-reappear 4s ease-in-out infinite both;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: left;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: none;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #2b4c6b;
}

/* .section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #de2616;
  bottom: 0;
  left: calc(50% - 20px);
} */

.section-title p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #de2616;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Arial", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #de2616;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #de2616;
}

.about .content .btn-learn-more:hover {
  background: #de2616;
  color: #fff;
  text-decoration: none;
}

.about-spares
{
  padding: 30px 40px;
}

.about,
.contact {
  padding-top: 120px; /* Adjust this value based on the height of your navbar */
  margin-top: -120px; /* Same value as padding-top but negative */
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
/* Increase height and width of cards */
.services .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 10px 40px; /* Adjusted padding */
  transition: all ease-in-out 0.4s;
  background: #2b4c6b;;
  height: 320px; /* Adjusted height */
  width: 100%; /* Adjusted width */
  margin-bottom: 30px; /* Added margin bottom */
}

/* Control number of cards per row in desktop mode */
@media (min-width: 992px) {
  .services .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .services .col-xl-3 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}


.services .icon-box img {
  margin-right: 0px; /* Add spacing between image and text */
  max-width: 100%;
  max-height: 150px; /* Adjust image height */
  object-fit: contain;
}

/* Adjust width to accommodate 3 cards per row */
@media (min-width: 992px) {
  .services .col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 22px;
  margin-top: 5px;
}

.services .icon-box h4 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: #fff;
}

.services .icon-box:hover {
  transform: translateY(-10px);
}


/*--------------------------------------------------------------
# partnership
--------------------------------------------------------------*/

.partnership-models .section-title {
  text-align: center;
  margin-bottom: 30px;
}

.partnership-models .section-title h2 {
  font-size: 28px;
  font-weight: bold;
  color: #2b4c6b;
}

.partnership-models .section-title p {
  margin-top: 15px;
  font-size: 16px;
  color: #6c757d;
}

.partnership-models .icon-box {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.partnership-models .icon-box .icon {
  margin: 0 auto 20px auto;
  width: 64px;
  height: 64px;
  background-color: #de2616;
  color: #fff;
  text-align: center;
  line-height: 64px;
  border-radius: 50%;
}

.partnership-models .icon-box .icon img {
  width: 60px;
  height: 60px;
  border-radius: 50%; /* Apply border-radius to make the image circular */
}

.partnership-models .icon-box h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #2b4c6b;
}

.partnership-models .icon-box p {
  font-size: 16px;
  line-height: 24px;
  color: #6c757d;
}

@media (max-width: 768px) {
  .partnership-models .icon-box {
    padding: 20px;
  }
  
  .partnership-models .section-title h2 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# idustries
--------------------------------------------------------------*/

.industries .section-title h2 {
  font-size: 28px;
  font-weight: bold;
  color: #2b4c6b;
}


.industries .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

.industries .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.industries .card {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  margin: 10px;
  width: calc(25% - 20px); /* Fixed width for 4 cards per row minus margin */
  height: 320px; /* Fixed height for all cards */
  position: relative; /* To position the button at the bottom */
  box-sizing: border-box; /* Include padding and border in element's total width and height */
}

.industries .card:hover {
  transform: translateY(-5px);
}

.industries .card h4 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #fff;
  font-weight: bold;
}

.industries .card .more-info-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: none;
  color: white;
  border: 2px solid white;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.industries .card .more-info-btn:hover {
  background-color: white;
  color: black;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #de2616;
  border-bottom: 3px solid #de2616;
  padding: 10px;
  background: #2b4c6b;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #de2616;
  float: left;
  width: 44px;
  height: 44px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #ffff;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #de2616;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #de2616;
  color: #fff;
}

.contact .email-form {
  width: 100%;
  border-top: 3px solid #de2616;
  border-bottom: 3px solid #de2616;
  padding: 10px;
  background: #2b4c6b;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .email-form .form-group {
  padding-bottom: 5px;
}

.contact .email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .email-form .error-message br+br {
  margin-top: 25px;
}

.contact .email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .email-form .form-group {
  margin-bottom: 10px;
}

.contact .email-form label {
  color: #fff;
  padding-bottom: 5px;
}

.contact .email-form input,
.contact .email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .email-form input:focus,
.contact .email-form textarea:focus {
  border-color: #de2616;
}

.contact .email-form input {
  height: 44px;
}

.contact .email-form textarea {
  padding: 10px 12px;
  height: 104px;
}

.contact .email-form button[type=submit] {
  background: #de2616;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .email-form button[type=submit]:hover {
  background: #209dd8;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #2b4c6b;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #2b4c6b;
  margin-top: 0;
}


#footer .footer-top {
  padding: 5px 0 0px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 0px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: none;
  font-weight: 600;
  color: #2b4c6b;
}

#footer .footer-top .footer-contact p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
  color: #5e5e5e;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #2b4c6b;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #de2616;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #de2616;
}

#footer .footer-top .social-links {
  margin-top: 20px; /* Adjust margin for better positioning */
  text-align: left;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #209dd8;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin: 0 4px; /* Adjusted margin */
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #209dd8;
  color: #fff;
  text-decoration: none;
}

#footer .footer-img {
  width: 150px;
  height: 100px;
  display: flex; /* Adjust to display block */
  margin: 0; 
}

#footer .footer-bottom {
  padding-top: 10px;
  padding-bottom: 0px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}

.footer-images {
  display: flex;
  align-items: start; /* Align items vertically in the center */
  /*justify-content: center;  Center the items horizontally, adjust as needed */
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1;
}
/*==============================Styles for Technology Pages==================================*/

/* Adjusted CSS for Features */

.features .section-title h2
{
  margin-top: 30px;
}

.features .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 60px 40px; /* Adjusted padding */
  transition: all ease-in-out 0.4s;
  background: #fff;
  height: 500px; /* Adjusted height */
  width: 100%; /* Adjusted width */
  margin-bottom: 30px;
}

.unclickable {
  pointer-events: none;
} 
/* Control number of cards per row in desktop mode */
@media (min-width: 992px) {
  .features .row {
      display: flex;
      flex-wrap: wrap;
      margin-right: -15px;
      margin-left: -15px;
  }
  .features .col-xl-3 {
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
  }
}

.features .icon-box ul {
  margin-top: 20px;
  padding-left: 20px;
}

.features .icon-box ul li {
  list-style-type: none; /* Remove default bullet points */
  margin-bottom: 10px;
}

.features .icon-box ul li a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.features .icon-box ul li a img {
  margin-right: 10px; /* Add spacing between image and text */
  max-width: 30px; /* Adjust image width as needed */
}

/* Adjust width to accommodate 3 cards per row */
@media (min-width: 992px) {
  .features .col-xl-4 {
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
  }
}

.features .icon-box .icon {
  margin-bottom: 10px;
}

.features .icon-box .icon i {
  color: #de2616;
  font-size: 36px;
  transition: 0.3s;
}

.features .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}

.features .icon-box h4 a {
  color: #2b4c6b;
  transition: ease-in-out 0.3s;
}

.features .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.features .icon-box:hover {
  transform: translateY(-10px);
}

.features .icon-box:hover h4 a {
  color: #de2616;
}

/*========================Pages========================================*/

.iso {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.iso img {
  height: 200px;
}


.swiper {
  width: 60%;
  height: 360px;
  padding-top: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.email-box {
  background-color: #4668a2;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  display: inline-block;
  border: 2px solid black;
}

.email-box a {
  color: #de2616;
  text-decoration: none;
}

.email-box a:hover {
  font-weight: bold;
}

.mail-container {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =================================  Spares Form  ================================= */

.search-quote-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
}

.search-box {
  position: relative; /* Add relative positioning */
  border-top: 3px ;
  border-bottom: 3px;
  padding: 10px;
  background: #2b4c6b;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}
.search-box input[type="text"] {
  box-shadow: none;
  font-size: 19px;
  border-radius: 8px;
  width: calc(100% - 60px);
}

.search-box input[type="text"]:disabled {
  background-color: white;
}


#searchResults {
  list-style-type: none;
  padding: 0;
  margin: 0;

}

#searchResults li {
  padding: 10px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  padding-right: 0px;
  display: flex;
  justify-content: space-between; /* Align items to the start and end of the container */
  align-items: center;
}

#searchResults li:last-child {
  border-bottom: none;
}

#searchResults li:hover {
  background-color: #f4f4f4;
}


#quoteForm {
  border-top: 3px;
  border-bottom: 3px;
  padding: 10px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

#quoteForm h3 {
  padding: 0 0 0 5px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2b4c6b;
}

#quoteForm .form-group {
  padding-bottom: 0px;
}

#quoteForm label {
  padding-bottom: 2px;
}

#quoteForm input,
#quoteForm textarea {
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
  width: 100%;
}

#quoteForm input:focus,
#quoteForm textarea:focus {
  border-color: #de2616;
}

#quoteForm input[type="text"],
#quoteForm input[type="email"],
#quoteForm input[type="tel"],
#quoteForm input[type="number"],
#quoteForm textarea {
  height: 30px;
  padding: 6px 12px;
}

#quoteForm input[type="submit"] {
  background: #de2616;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

#quoteForm input[type="submit"]:hover {
  background: #209dd8;
}

#quoteForm .form-group {
  margin-bottom: 5px;
}

#quoteForm p {
  padding-left: 60px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #6182ba;
}

#quoteForm .info i {
  font-size: 20px;
  color: #de2616;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

#quoteForm .info .email p {
  padding-top: 5px;
}

#quoteForm .email-form {
  width: 100%;
  border-top: 3px solid #de2616;
  border-bottom: 3px solid #de2616;
  padding: 10px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

#quoteForm .email-form .form-group {
  padding-bottom: 5px;
}

#quoteForm .email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

#quoteForm .email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#quoteForm .email-form .error-message br+br {
  margin-top: 25px;
}

#quoteForm .email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#quoteForm .email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#quoteForm .email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


@media (min-width: 768px) {
  .search-quote-container {
      flex-direction: row;
  }

  .search-box {
      width: 50%;
  }

  #quoteForm {
      width: 50%;
  }
}

.quote-button {
  background: #de2616;
  border: 1px solid black;
  padding: 1px 5px 1px 5px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  margin-left: 10px;
}

.quote-button:hover {
  background: #209dd8;
}

/* Styling for the "Submit" button */
#quoteRequestForm button[type="submit"] {
  background: #de2616;
  border: 0;
  padding: 5px 15px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  margin-top: 10px;
}

#quoteRequestForm button[type="submit"]:hover {
  background: #209dd8;
}


.loading-indicator {
  transform: translateX(-160%);
  width: 40px;
  height: 40px;
  background-image: url('/assets/img/Circles-menu-3.gif'); /* Replace with your loading spinner image */
  background-size: cover;
  display: none;
}

.loading-results .loading-indicator {
  display:  block;
}

.loading-results #searchResults {
  opacity: 0.5;
  pointer-events: none;
}

.Search-indicator {
  transform: translateX(-160%);
  width: 40px;
  height: 40px;
  background-image: url('/assets/img/search\ icon.svg'); /* Replace with your loading spinner image */
  background-size: cover;
  display: none;
  margin-top: 4%;
  margin-left: -2%;

}

.Search-results .search-indicator {
  display:  block;
}

.Search-results #searchResults {
  opacity: 0.5;
  pointer-events: none;
}

/* Button style */
.btn-get-started {
  font-family: "Arial", sans-serif;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #2b4c6b;
  border: 2px solid #de2616;
}

.btn-get-started:hover {
  color: white;
  background: #de2616;
}





.capabilities-btn {
  background-color: #2b4c6b; /* Change this to your desired button color */
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 18px; /* Increase font size */
  font-weight: bold; /* Make text bold */
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 5px;
}

.capabilities-btn:hover {
  background-color: #de2616; /* Darker shade for hover effect */
  color: white;
}

.capabilities-btn:focus {
  outline: none;
}


#customer-logos {
  padding: 60px 0px;
}

#customer-logos .row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

#customer-logos .col-lg-3,
#customer-logos .col-md-4,
#customer-logos .col-sm-6 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px; /* Adjust as needed */
}

#customer-logos img {
  max-width: 80%;
  height: auto;
}