/* Carousel Sliders */
.slider-container {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}

.slider-track {
  display: flex;
  width: max-content;
  gap: 30px;
}

.slider-track-ltr {
  animation: scroll-ltr 60s linear infinite;
}

.slider-track-rtl {
  animation: scroll-rtl 60s linear infinite;
}

.slider-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-ltr {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes scroll-rtl {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-item {
  width: 140px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.logo-item:hover {
  transform: scale(1.1);
}
/* Global Styles - Exrox Inspired */
body {
  font-family: "Roboto", sans-serif;
  color: #444444;
  background-color: #ffffff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: #002147;
}

.top-bar {
  background-color: #002147;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-header {
  transition: all 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
}
.header-scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 0 !important;
}

.hero-section {
  background:
    linear-gradient(rgba(0, 33, 71, 0.8), rgba(0, 33, 71, 0.7)),
    url("../images/hero.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-header {
  background:
    linear-gradient(rgba(0, 33, 71, 0.9), rgba(0, 33, 71, 0.9)),
    url("../images/hero.png");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: white;
  text-align: center;
}

.btn-primary {
  background-color: #ff3115;
  color: white;
  padding: 15px 35px;
  border-radius: 5px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary:hover {
  background-color: #002147;
  transform: translateY(-3px);
  color: white;
}

.section-title {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: #ff3115;
}
.section-title.center::after {
  left: 50%;
  transform: translateX(-50%);
}

.service-card {
  background: white;
  padding: 40px;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
  border-bottom: 3px solid transparent;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-10px);
  border-bottom-color: #ff3115;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.service-card .icon-box {
  width: 70px;
  height: 70px;
  background: #f4f7f6;
  color: #ff3115;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 25px;
  font-size: 30px;
  transition: 0.3s;
}
.service-card:hover .icon-box {
  background: #ff3115;
  color: white;
}

.partner-card {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.partner-info {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: rgba(0, 33, 71, 0.9);
  padding: 20px;
  transition: 0.5s;
  text-align: center;
}
.partner-card:hover .partner-info {
  bottom: 0;
}

footer {
  background-color: #002147;
  color: #b0c4de;
}
footer h3 {
  color: white;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: #ff3115;
}

.bg-exrox-grey {
  background-color: #f4f7f6;
}
.bg-exrox-navy {
  background-color: #002147;
}
.text-exrox-red {
  color: #ff3115;
}
.bg-exrox-red {
  background-color: #ff3115;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 33, 71, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
  backdrop-filter: blur(8px);
}
.modal-content {
  background: white;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.modal-body {
  overflow-y: auto;
  padding: 40px;
}
.modal-body::-webkit-scrollbar {
  width: 6px;
}
.modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.modal-body::-webkit-scrollbar-thumb {
  background: #ff3115;
  border-radius: 10px;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #f4f7f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002147;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
}
.modal-close:hover {
  background: #ff3115;
  color: white;
  transform: rotate(90deg);
}

.profile-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: #f4f7f6;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: #002147;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
