/* Base styles */
body {
  font-family: 'Quicksand', sans-serif;
  color: #717171;
  background-color: #f9f9f9;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h2 {
  color: #717171;
}

section {
  padding: 60px 0;
}

/* Scroll to top button */
#scrollTopBtn {
  z-index: 999;
  display: none;
}

/* Navbar customization */
.navbar {
  background-color: #fff;
}

.navbar .nav-link {
  color: #717171;
  font-weight: 600;
}

.navbar .nav-link:hover {
  color: #000000;
}

/* Service section styles */
.service-section {
  padding: 60px 0;
}

.service-section:nth-child(even) {
  background-color: #f0f0f0;
}
/*section#our-services {
    background: url(../images/services.jpg) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    color: #ffffff;
}
section#our-services h2 {
    color: #ffffff;
}*/
.form-control {
    border-radius: 0;
}

.service-section .img-fluid {
  max-height: 320px;
  object-fit: cover;
}

section#home {
    background: url('../images/banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
    padding: 0;
}

#home2 {
    padding: 160px 0 60px;
    background: #023e6838;
}

/* Industries */
#industries .border {
  background-color: #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

#industries .border:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#industries i {
  font-size: 30px;
}

/* Footer */
footer {
  font-size: 0.9rem;
}

footer a {
  color: #717171;
}

footer a:hover {
  text-decoration: underline;
}

/* Form */
form input,
form textarea {
  border-radius: 8px;
  border: 1px solid #ccc;
}

form button.btn-primary {
  background-color: #717171;
  border: none;
}

form button.btn-primary:hover {
  background-color: #025093;
}

section#industries .bg-light {
    border-radius: 10px;
}
.bg-light {
    background-color: rgb(249 249 249) !important;
}

/* Animations */
.wow {
  visibility: hidden;
}

.animate__animated {
  visibility: visible;
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loader {
  text-align: center;
}

#loader img {
  width: 120px;
  margin-bottom: 20px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 5px solid #ccc;
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}