:root {
  --brand-color: #124265;
}

.text-brand {
  color: var(--brand-color);
}

.btn-brand {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--brand-color);
  --bs-btn-border-color: var(--brand-color);

  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0f3957;
  --bs-btn-hover-border-color: #0f3957;

  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0d314a;
  --bs-btn-active-border-color: #0d314a;

  --bs-btn-focus-shadow-rgb: 18, 66, 101;
}


.btn-outline-brand {
  --bs-btn-color: var(--brand-color);
  --bs-btn-border-color: var(--brand-color);

  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--brand-color);
  --bs-btn-hover-border-color: var(--brand-color);

  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0f3957;
  --bs-btn-active-border-color: #0f3957;

  --bs-btn-focus-shadow-rgb: 18, 66, 101;
}

body {
  font-family: 'Lato', sans-serif !important;
}

.hero-section {
  background-image: url('/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.75),
      rgba(255, 255, 255, 0.85));
  z-index: 0;
}

.hero-image {
  transform: translateY(40px);
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .hero-image {
    transform: translateY(20px);
  }
}
/* fetures */
.feature-card {
  padding: 20px 22px;
  border-radius: 14px;
  background: #fff;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.icon-box {
  width: 55px;
  height: 55px;
  margin: 0 auto 12px;
  background-color: rgba(18, 66, 101, 0.1);
  color: var(--brand-color);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
  background-color: var(--brand-color);
  color: #fff;
  box-shadow: 0 8px 20px rgba(18, 66, 101, 0.35);
}

.feature-card h5 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.feature-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}


.dashboard-image {
  max-height: 420px;
  width: auto;
  border-radius: 16px;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.10);
}

@media (max-width: 991px) {
  .dashboard-image {
    margin-top: 10px;
  }
}

/* Technology */
.icon-box-sm {
  width: 45px;
  height: 45px;
  background-color: rgba(18, 66, 101, 0.1);
  color: var(--brand-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.feature-highlight:hover .icon-box-sm {
  background-color: var(--brand-color);
  color: #fff;
  transform: scale(1.05);
}

.stat-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(18, 66, 101, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.bg-brand {
  background-color: var(--brand-color) !important;
  color: white !important;
}

.bg-brand-subtle {
  background-color: rgba(18, 66, 101, 0.1) !important;
  color: var(--brand-color) !important;
}

.logo-wrapper {
  transition: all 0.3s ease;
}

.logo-wrapper:hover {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .logo-wrapper {
    text-align: center;
  }

  .logo-wrapper img {
    max-height: 50px !important;
  }
}

.logo-item {
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.5) !important;
}

@media (max-width: 768px) {
  .logo-item {
    padding: 1rem !important;
  }

  .logo-item img {
    height: 60px !important;
  }
}

@media (max-width: 576px) {
  .d-flex.gap-3 {
    gap: 1.5rem !important;
  }

  .logo-item {
    padding: 0.75rem !important;
  }
}

/* contact */


.ud-contact {
  padding: 120px 0px;
  position: relative;
}

.ud-contact::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 0;
  left: 0;
  height: 50%;
  background: #124265;
}

.ud-contact-title {
  margin-bottom: 150px;
}

.ud-contact-title span {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 20px;
}

.ud-contact-title h2 {
  font-weight: 600;
  font-size: 35px;
  line-height: 41px;
}

.ud-contact-info-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.ud-contact-info-wrapper .ud-single-info {
  display: flex;
  max-width: 100%;
  width: 330px;
  margin-bottom: 30px;
}

.ud-contact-info-wrapper .ud-info-icon {
  font-size: 32px;
  color: var(--primary-color);
  margin-right: 10px;
}

.ud-contact-info-wrapper .ud-info-meta h5 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
}

.ud-contact-info-wrapper .ud-info-meta p {
  font-size: 15px;
  line-height: 24px;
}

.ud-contact-form-wrapper {
  box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  background: var(--white);
  padding: 60px;
}

.ud-contact-form-wrapper .ud-contact-form-title {
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 30px;
}

.ud-contact-form-wrapper .ud-form-group {
  margin-bottom: 25px;
}

.ud-contact-form-wrapper .ud-form-group label {
  display: block;
  font-weight: normal;
  font-size: 12px;
}

.ud-contact-form-wrapper .ud-form-group input,
.ud-contact-form-wrapper .ud-form-group textarea {
  display: block;
  width: 100%;
  padding: 15px 0;
  border: none;
  outline: none;
  border-bottom: 1px solid #f1f1f1;
  resize: none;
}

.ud-contact-form-wrapper .ud-form-group input:focus,
.ud-contact-form-wrapper .ud-form-group textarea:focus {
  border-color: var(--primary-color);
}

.ud-info-icon {
    width: 52px;
    height: 52px;
    background-color: rgba(18, 66, 101, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ud-info-icon i {
    font-size: 26px;
    color: #124265;
}


@media (max-width: 575.98px) {
  .ud-contact {
    padding: 80px 0;
  }

  .ud-contact-title {
    margin-bottom: 50px;
  }

  .ud-contact-info-wrapper {
    margin-bottom: 50px;
  }

  .ud-contact-form-wrapper {
    padding: 40px 30px;
  }

  .ud-contact-form-wrapper .ud-contact-form-title {
    font-size: 24px;
  }
}

@media (max-width: 991.98px) {
  .ud-contact-title {
    margin-bottom: 50px;
  }

  .ud-contact-info-wrapper {
    margin-bottom: 50px;
  }
}

@media (max-width: 1199.98px) {
  .ud-contact::after {
    height: 45%;
  }
}

@media (max-width: 1399.98px) {
  .ud-contact-form-wrapper {
    padding: 50px 40px;
  }
}

.footer-bottom {
  background-color: #124265;
  padding: 16px 0;
}

.footer-bottom p {
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}


.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 0.75;
}

