/*--------------------------------------------------------------
# Variables & Base Styles
--------------------------------------------------------------*/
:root {
  --main-color: rgba(255, 255, 255, 0.9);
  --second-color: #014895; /* Primary Brand Blue */
  --third-color: #f38f1b; /* Accent Orange */
  --dark-color: #0a0f1f; /* Darker, richer blue-ish black */
  --light-dark-color: #121829; /* Slightly lighter dark */
  --light-color: #f8f9fa;
  --primary-gradient: linear-gradient(135deg, var(--second-color), #007bff);
  --accent-gradient: linear-gradient(135deg, var(--third-color), #ffaf4d);
  --card-bg-color: rgba(18, 24, 41, 0.5); /* Semi-transparent card bg */
  --card-border-color: rgba(255, 255, 255, 0.1);
  --transition: all 0.4s ease-in-out;
  --navbar-height: 130px;
  --third-color-rgb: 243, 143, 27;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MyriadPro-Regular.woff2") format("woff2"),
    url("../fonts/MyriadPro-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MyriadPro-Bold.woff2") format("woff2"),
    url("../fonts/MyriadPro-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
}
body {
  font-family: "Myriad Pro", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: var(--main-color);
  background-color: var(--dark-color);
  line-height: 1.7;
  font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--light-color);
}
a {
  text-decoration: none;
  color: var(--third-color);
  transition: var(--transition);
}
a:hover {
  color: #ffac47;
}
img {
  height: auto;
  vertical-align: middle;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn i {
  font-size: 0.9em;
}
.btn-primary {
  background: var(--primary-gradient);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-gradient);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(1, 72, 149, 0.3);
}
.btn-outline-light {
  background-color: transparent;
  color: var(--light-color);
  border: 2px solid var(--light-color);
  box-shadow: none;
}
.btn-outline-light:hover {
  background-color: var(--light-color);
  color: var(--dark-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 255, 255, 0.1);
}
.btn-outline-accent {
  background-color: transparent;
  color: var(--third-color);
  border: 2px solid var(--third-color);
  box-shadow: none;
}
.btn-outline-accent:hover {
  background-color: var(--third-color);
  color: var(--dark-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(var(--third-color-rgb), 0.2);
}
.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

/* Utility */
.bg-light-dark {
  background-color: var(--light-dark-color);
}
.text-accent {
  color: var(--third-color) !important;
}
.link-hover:hover {
  color: var(--third-color) !important;
  text-decoration: underline !important;
}

/*--------------------------------------------------------------
# Scroll Progress Indicator
--------------------------------------------------------------*/
.scroll-progress-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--accent-gradient);
  width: 0%;
  z-index: 1050;
  transition: width 0.1s linear;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1080;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  opacity: 1;
  visibility: visible;
}
.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader p {
  margin-top: 25px;
  color: var(--main-color);
  font-size: 1rem;
  letter-spacing: 1px;
}
.satellite-loader {
  position: relative;
  width: 100px;
  height: 100px;
}
.orbit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: orbit 3s linear infinite;
}
.satellite {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background-color: var(--third-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--third-color);
}
.planet {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: var(--primary-gradient);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(1, 72, 149, 0.5);
}
@keyframes orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Floating Buttons (Contact & Back to Top)
--------------------------------------------------------------*/
.floating-contact {
  position: fixed;
  bottom: 95px;
  right: 1rem; /* Use rem for better scaling */
  z-index: 999;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}
.floating-contact.hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
}
.contact-pulse {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: var(--accent-gradient);
  color: #fff;
  border-radius: 50%;
  font-size: 1.4rem;
  box-shadow: 0 5px 20px rgba(var(--third-color-rgb), 0.4);
  position: relative;
  animation: pulse 2s infinite;
}
.contact-pulse:hover {
  animation-play-state: paused;
  transform: scale(1.1);
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 5px 20px rgba(var(--third-color-rgb), 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(var(--third-color-rgb), 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 5px 20px rgba(var(--third-color-rgb), 0.4);
  }
}
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 1rem;
  width: 55px;
  height: 55px;
  background: var(--primary-gradient);
  color: #fff;
  border-radius: 50%;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(1, 72, 149, 0.3);
  border: none;
}
.back-to-top.active {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--primary-gradient);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(1, 72, 149, 0.5);
}

/*--------------------------------------------------------------
# Navigation Bar
--------------------------------------------------------------*/
.navbar {
  padding: 15px 0;
  transition: all 0.5s ease;
  background-color: transparent;
}
.navbar.scrolled {
  background-color: rgba(18, 24, 41, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.navbar-brand {
  display: flex;
  align-items: center;
}
.navbar-brand .logo-img {
  transition: height 0.4s ease;
  width: 70px;
}

.navbar-brand .brand-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--light-color);
  letter-spacing: 0.5px;
}
.navbar-toggler {
  border: none;
  padding: 0.5rem 0.75rem;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav > .nav-item:not(:last-child) {
  margin-right: 0.5rem;
}

.nav-underline-container .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  padding: 0.7rem 1rem !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  position: relative;
  transition: color 0.3s ease;
  display: inline-block;
  border-bottom: 3px solid transparent;
}

.nav-underline-container .nav-link::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--third-color);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-underline-container .nav-link:hover::before {
  width: 100%;
}

.nav-underline-container .nav-link.active {
  color: var(--light-color);
}
.nav-underline-container .nav-link.active::before {
  width: 100%;
  transition: none;
}
.nav-underline-container .nav-link:hover {
  color: var(--light-color);
}

.dropdown-menu {
  background-color: rgba(18, 24, 41, 0.95);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-top: 0.5rem !important;
}
.dropdown-item {
  color: rgba(255, 255, 255, 0.8);
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  transition: var(--transition);
}
.dropdown-item:hover,
.dropdown-item:focus {
  background-color: var(--second-color);
  color: var(--light-color);
}
.navbar .btn-outline-accent {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}
.navbar .btn-outline-accent:hover {
  background-color: var(--third-color);
  color: var(--dark-color);
}

/* Mobile Nav Styles */
@media (max-width: 991.98px) {
  .navbar-collapse {
    max-height: calc(100vh - var(--navbar-height) - 10px);
    overflow-y: auto;
  }
  .navbar-nav {
    margin-top: 1rem;
    background-color: rgba(18, 24, 41, 0.98);
    padding: 1rem;
    border-radius: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }
  .navbar-nav > .nav-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 0.25rem;
  }
  .nav-underline-container .nav-link {
    padding: 0.8rem 0.5rem !important;
    display: inline-block;
    width: auto;
    text-align: center;
  }
  .nav-underline-container .nav-link::before {
    left: 0;
  }
  .nav-underline-container .nav-link.active::before,
  .nav-underline-container .nav-link:hover::before {
    width: 100%;
  }
  .navbar .nav-item.d-block.d-lg-none .btn {
    display: inline-block;
    width: auto;
    margin-top: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Hero Section v3 (Background Zoom Effect)
--------------------------------------------------------------*/
.hero-section-v2 {
  height: 100vh;
  min-height: 700px;
  position: relative;
  overflow: hidden;
}
#heroCarousel .carousel-item {
  height: 100vh;
  min-height: 700px;
}
#heroCarousel.carousel-fade .carousel-item {
  transition: opacity 0.8s ease-in-out;
}

.hero-slide-content {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
  position: relative;
  display: flex;
  overflow: hidden;
  transition: transform 5.5s ease-out;
  transform: scale(1);
}
.hero-slide-overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(10, 15, 31, 0.85) 0%,
    rgba(10, 15, 31, 0.4) 50%,
    rgba(10, 15, 31, 0.85) 100%
  );
  z-index: 1;
}
#heroCarousel .carousel-item.active .hero-slide-content {
  transform: scale(1.05);
}

.hero-text-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  color: #fff;
}
#heroCarousel .justify-content-end .hero-slide-overlay {
  background: linear-gradient(
    to left,
    rgba(10, 15, 31, 0.85) 0%,
    rgba(10, 15, 31, 0.4) 50%,
    rgba(10, 15, 31, 0) 100%
  );
}
#heroCarousel
  .align-items-center:not(.justify-content-end)
  .hero-slide-overlay {
  background: linear-gradient(
    to right,
    rgba(10, 15, 31, 0.85) 0%,
    rgba(10, 15, 31, 0.4) 50%,
    rgba(10, 15, 31, 0) 100%
  );
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--third-color);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}
.hero-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 550px;
}
#heroCarousel .carousel-indicators {
  bottom: 30px;
  z-index: 3;
}
#heroCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  margin: 0 6px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
#heroCarousel .carousel-indicators button.active {
  background-color: var(--third-color);
  transform: scale(1.2);
}
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  display: none !important;
}

/*--------------------------------------------------------------
# Sections Common Styles
--------------------------------------------------------------*/
.section-header {
  margin-bottom: 4rem;
}
.section-subtitle {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--third-color);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--light-color);
  margin-bottom: 1rem;
  text-transform: capitalize;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}
.section-header.text-center .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
}
.section-header:not(.text-center) .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
}
.section-description {
  max-width: 750px;
  color: var(--main-color);
  opacity: 0.8;
  font-size: 1.1rem;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services-section-v3 {
  background-color: var(--light-dark-color);
}
.service-card-v3 {
  position: relative;
  border-radius: 15px;
  background-color: var(--dark-color);
  min-height: 400px;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid transparent;
}
.service-card-v3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  transition: opacity 0.6s ease,
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}
.service-card-v3-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(10, 15, 31, 0.6) 20%,
    rgba(10, 15, 31, 0.3) 70%,
    transparent 100%
  );
  transition: background 0.5s ease;
  z-index: 2;
}
.service-card-v3-content {
  position: relative;
  z-index: 3;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  height: 100%;
  color: #fff;
}
.service-icon-v3 {
  width: 75px;
  height: 75px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.service-icon-v3 img {
  width: 38px;
  height: 38px;
  filter: brightness(0) invert(1);
}
.service-card-v3 .card-title {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #fff;
}
.service-card-v3 .card-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  flex-grow: 1;
  max-height: 100px;
  overflow: hidden;
}
.service-card-v3 .service-link {
  color: var(--third-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  margin-top: auto;
}
.service-card-v3 .service-link:hover {
  color: #fff;
}
.service-card-v3:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}
.service-card-v3:hover::before {
  opacity: 0.3;
  transform: scale(1.05);
}
.service-card-v3:hover .service-card-v3-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 15, 31, 0.9) 20%,
    rgba(10, 15, 31, 0.5) 70%,
    transparent 100%
  );
}
.service-card-v3:hover .service-icon-v3 {
  background: var(--accent-gradient);
  transform: scale(1.1) rotate(5deg);
  border-color: transparent;
}

/*--------------------------------------------------------------
# About/Mission Section Stats
--------------------------------------------------------------*/
.mission-vision-card {
  background-color: var(--card-bg-color);
  border: 1px solid var(--card-border-color);
  border-radius: 15px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mission-vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  border-left: 4px solid var(--third-color);
  background-color: rgba(var(--third-color-rgb), 0.05);
}

.mission-vision-card .card-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: var(--dark-color);
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(var(--third-color-rgb), 0.3);
}

.mission-vision-card .card-title {
  font-size: 1.4rem;
  color: var(--light-color);
  margin-bottom: 0.75rem;
}

.mission-vision-card .card-text {
  color: var(--main-color);
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
  text-align: left;
}
.about-mission-vision-section .text-center.text-md-start {
  margin-top: 2rem;
}
.about-mission-section {
  background-color: var(--light-dark-color);
}
.about-mission-section .section-title {
  color: #fff;
}
.stats-container-v2 {
  display: grid;
  gap: 1.5rem;
}
.stat-card {
  background: var(--card-bg-color);
  border: 1px solid var(--card-border-color);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.stat-card:hover {
  transform: translateX(5px) scale(1.01);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background-color: rgba(18, 24, 41, 0.8);
}
.stat-card:hover::before {
  opacity: 1;
}
.stat-icon {
  font-size: 2.5rem;
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
  text-align: center;
  background: -webkit-linear-gradient(135deg, var(--third-color), #ffc107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.stat-content {
  flex-grow: 1;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--light-color);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}
.stat-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--main-color);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients-section-v3 {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
}
.clientsSwiper {
  padding-bottom: 60px !important;
  position: relative;
}

.clientsSwiper .swiper-slide {
  height: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.clientsSwiper .swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: row;
}

.client-logo-box {
  background-color: white;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 140px;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.client-logo-box img {
  display: block;
  object-fit: contain;
  filter: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 135px;
}

/* Size for large screens */
@media (min-width: 1200px) {
  .client-logo-box {
    width: 170px;
  }
}

.client-logo-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.client-logo-box:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.clients-pagination {
  z-index: 10;
  display: flex;
  justify-content: center;
}
.clients-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 5px !important;
}
.clients-pagination .swiper-pagination-bullet-active {
  background-color: var(--third-color);
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Technology Partners Section
--------------------------------------------------------------*/

.tech-partners-section {
  background-color: var(--light-dark-color);
  position: relative;
  overflow: hidden;
}

.partnersSwiper {
  padding-bottom: 60px !important;
  position: relative;
}

.partnersSwiper .swiper-slide {
  height: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partnersSwiper .swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: row;
}

.partnersSwiper .partner-item {
  background-color: white;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 140px;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.partnersSwiper .partner-item img {
  display: block;
  object-fit: contain;
  filter: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 160px;
  height: auto;
}

@media (min-width: 1200px) {
  .partnersSwiper .partner-item {
    width: 180px;
  }
}

.partnersSwiper .partner-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.partnersSwiper .partner-item:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.partners-pagination {
  z-index: 10;
  display: flex;
  justify-content: center;
}

.partners-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 5px !important;
}

.partners-pagination .swiper-pagination-bullet-active {
  background-color: var(--third-color);
  transform: scale(1.2);
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-section {
  background: linear-gradient(rgba(10, 15, 31, 0.9), rgba(10, 15, 31, 0.9)),
     center center fixed;
  background-size: cover;
}
.contact-info,
.contact-form-wrapper {
  background-color: rgba(18, 24, 41, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
}
.contact-item h6 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.social-links .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--main-color);
  transition: var(--transition);
  font-size: 1rem;
}
.social-links .social-link:hover {
  background-color: var(--third-color);
  color: var(--dark-color);
  transform: translateY(-3px);
}
.contact-form .form-control {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light-color);
  padding: 0.9rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
  font-size: 0.95rem;
}
.contact-form .form-control:focus {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--light-color);
  box-shadow: none;
  border-color: var(--third-color);
}
.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-form .btn {
  padding: 0.9rem 1.5rem;
}
/* Form Status Message Styling */
.form-message {
  font-size: 0.9rem;
  font-weight: 500;
}
.form-message.success {
  color: #198754;
  background-color: rgba(25, 135, 84, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 5px;
  border: 1px solid rgba(25, 135, 84, 0.2);
}
.form-message.error {
  color: #dc3545;
  background-color: rgba(220, 53, 69, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 5px;
  border: 1px solid rgba(220, 53, 69, 0.2);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer-v2 {
  background-color: #050810;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-logo-v2 {
  width: 80px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.footer-logo-v2:hover {
  opacity: 1;
}

.footer-about-v2 {
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.8;
  width: 50%;
}
.footer-contact-link {
  text-align: right;
}
.footer-contact-link a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  transition: var(--transition);
}
footer-bottom-v2 a:hover {
  color: var(--third-color);
}
footer-bottom-v2 i {
  color: var(--third-color);
}

.footer-bottom-v2 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

footer-bottom-v2 a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-legal-links-v2 a:hover {
  color: var(--third-color);
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .footer-bottom-v2 .text-md-start {
    text-align: center !important;
  }
  .footer-bottom-v2 .justify-content-md-end {
    justify-content: center !important;
  }
  .footer-about-v2 {
    font-size: 0.95rem;
    width: 100%;
  }
  .footer-logo-v2_ {
    margin: auto;
  }
}
/*--------------------------------------------------------------
# Responsive Styles
--------------------------------------------------------------*/
@media (max-width: 991.98px) {
  :root {
    --navbar-height: 70px;
  }
  html {
    scroll-padding-top: 70px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-text-content {
    max-width: 90%;
    margin: 0 auto;
    text-align: center !important;
  }
  #heroCarousel
    .align-items-center:not(.justify-content-end)
    .hero-slide-overlay,
  #heroCarousel .justify-content-end .hero-slide-overlay {
    background: linear-gradient(
      to bottom,
      rgba(10, 15, 31, 0.6) 0%,
      rgba(10, 15, 31, 0.9) 80%
    );
  }
  .hero-buttons {
    justify-content: center;
  }
  .service-card-v3 {
    min-height: auto;
  }
  .about-mission-section .container {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .stats-container-v2 {
    margin-top: 2rem;
  }
  .contact-info,
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  .footer .text-md-start {
    text-align: center !important;
  }
  .footer .justify-content-md-end {
    justify-content: center !important;
    margin-top: 1rem;
  }
  .client-logo-box {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .mission-vision-card {
    text-align: center;
  }
  .mission-vision-card .card-icon {
    margin-bottom: 1rem;
  }
  .mission-vision-card .card-title {
    font-size: 1.3rem;
  }
  .about-mission-vision-section .text-center.text-md-start {
    text-align: center !important;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-text {
    font-size: 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .partner-item {
    min-height: 100px;
  }
  .stat-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .stat-icon {
    margin-bottom: 0.5rem;
    width: auto;
  }
  .client-logo-box {
    height: 130px;
  }

  .floating-contact {
    right: 4%;
    bottom: 85px;
  }
  .back-to-top {
    right: 3%;
    bottom: 20px;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand .logo-img {
    width: 65px;
    margin-left: 10px;
  }
  .navbar-brand .brand-text {
    font-size: 1.2rem;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 0.5rem auto;
    display: flex;
  }
  .hero-buttons .btn:last-child {
    margin-bottom: 0;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .section-description {
    font-size: 1rem;
  }

  .floating-contact {
    width: 50px;
    height: 50px;
  }
  .back-to-top {
    width: 50px;
    height: 50px;
  }
}
