/* Top bar */
body {
  overflow-x: hidden;
}
.bg-secondary
{
  background-color: rgb(30 89 105) !important;
}
.text-primary
{
  color: rgb(30 89 105) !important;
}
.btn-submit
{
  background-color: rgb(30 89 105) !important;

}
.top-bar {
  background: #f8f9fa;
  font-size: 14px;
  padding: 5px 20px;
  text-align: right;
}

/* Navbar */
.navbar-brand {
  font-weight: 700;
  font-size: 18px;
}
.navbar-brand span {
  color: #0d6efd;
  font-style: italic;
}

/* Hero Section */
.hero-slider {
  position: relative;
  height: 500px;
}
.hero-slider .carousel-item img {
  object-fit: cover;
  height: 500px;
  width: 100%;
  filter: brightness(70%);
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
}
.hero-text h2 {
  font-size: 40px;
  font-weight: bold;
}

/* Services section */
.services {
  padding: 60px 0;
  text-align: center;
}
.services h5 {
  margin-top: 15px;
  font-weight: 500;
}

/* What we offer */
.offer-section {
  background: #6c757d;
  color: #fff;
  padding: 60px 20px;
}
.offer-section h2 {
  margin-bottom: 40px;
  text-align: center;
}
.offer-box {
  text-align: center;
  padding: 20px;
}
.offer-box i {
  margin-bottom: 15px;
}

/* Partners */
.partners {
  padding: 40px 0;
  text-align: center;
  background: #f8f9fa;
}
.partners img {
  max-height: 100px;
  margin: 10px 20px;
}

/* Footer */
footer {
  background: #343a40;
  color: #fff;
  padding: 20px;
  text-align: center;
}

/* Dropdown hover menus */
@media screen and (min-width: 992px) {
  .dropdown {
    .dropdown-menu {
      display: none;
    }
  }
  .dropdown,
  .dropend {
    &:hover {
      & > .dropdown-menu {
        display: block;
      }
    }
  }
  .dropdown {
    &:hover {
      & > .dropdown-menu {
        margin-top: -.5rem;
      }
    }
  }
  .dropend {
    &:hover {
      & > .dropdown-menu {
        position: absolute;
        top: -.5rem;
        left: 100%;
        margin-left: 0;
      }
    }
  }
}

/* Testimonials */
.testimonials {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}
.testimonials h2 {
  margin-bottom: 40px;
}
.testimonial-box {
  padding: 20px;
  font-style: italic;
  background: #f8f9fa;
  border-radius: 10px;
}

/* Carousel arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(100%); /* white → black */
}
.carousel-control-prev {
  justify-content: start !important;
}
.carousel-control-next {
  justify-content: end !important;
}

/* Utilities */
.f-50 {
  font-size: 50px;
}
.logo-text {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #1d3557;
}
.logo-text .bold {
  font-weight: 700;
}
.logo-text .light {
  font-weight: 400;
  color: #2a9d8f;
}
a {
  text-decoration: none;
}
/* ===================== */
/* Universal Form Styles */
/* ===================== */
.form-container {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  margin: 0 auto 40px auto;
  font-family: Arial, sans-serif;
}

.form-container h3 {
  margin-bottom: 20px;
  font-size: 22px;
  color: #004080;
}

/* Input labels */
.form-container label {
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
  font-size: 14px;
}

/* Form controls */
.form-control,
.form-select,
textarea.form-control {
  padding: 12px;
  border-radius: 6px;
  font-size: 15px;
  border: 1px solid #ccc;
}

/* Submit Button */
.btn-submit {
  background: #004080;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-submit:hover {
  background: #0066cc;
}

