/* --------- Base --------- */
:root {
  --dark: #0f172a;
  --grad: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Poppins', sans-serif;
  color: #334155;
  background: #f8fafc
}

.section-padding {
  padding: 100px 0
}

.section-title h2 {
  font-weight: 800;
  margin-bottom: 10px
}

.btn-gradient {
  background: var(--grad);
  color: #fff;
  border: 0;
  border-radius: 50px
}

.btn-gradient:hover {
  opacity: .92;
  color: #fff
}

.text-gradient {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.blur-bg {
  background: rgba(15, 23, 42, 1) !important;
  backdrop-filter: blur(10px)
}

.navbar .nav-link {
  color: #e2e8f0
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #00b4d8
}

.logo {
  width: 100px;
}

/* Hero */
.hero {
  background: #0f172a;
  color: #fff;
  position: relative
}

.hero .wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px
}

#bg-canvas {
  position: absolute;
  inset: 0
}

.floating {
  animation: floating 7s ease-in-out infinite
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-14px)
  }
}

/* Slider */
.slider-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover
}

.slider-swiper .swiper-button-prev,
.slider-swiper .swiper-button-next {
  color: #0077b6
}

.slide-box {
  position: relative;
}

.slide-box img {
  width: 100%;
  display: block;
}

.slide-box .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, 0));
  color: #fff;
  padding: 40px 30px;
}

/*about */

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Services */
.service-box {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, .06);
  transition: .25s
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, .08)
}

.service-box .icon {
  width: 80px;
  height: 80px;
  margin: auto;
  margin-bottom: 15px
}

.service-box .icon img {
  width: 100%;
  height: 100%
}

/* Portfolio */
.filters .btn.active {
  background: #002b5c !important;
  color: #fff !important;
  border-color: #002b5c !important
}

.portfolio-box {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .05)
}

.portfolio-box img {
  width: 100%;
  transition: transform .4s
}

.portfolio-box:hover img {
  transform: scale(1.05)
}

.portfolio-box .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 43, 92, .85);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: .3s
}

.portfolio-box:hover .overlay {
  opacity: 1
}

.hover-fade {
  transition: opacity .3s
}

.hover-fade:hover {
  opacity: 1 !important
}

/* Partners */
.partners-swiper .swiper-slide img {
  max-height: 60px
}

/* Why Us (Features) */
.features-swiper .feature-box {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
  margin-bottom: 10px;
}


.features-swiper .feature-box .info-text {
  height: 40px;
}

.features-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #0077b6
}

/* Timeline */
.timeline {
  position: relative;
  margin-top: 40px
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #e2e8f0;
  transform: translateX(-50%)
}

.timeline-item {
  position: relative;
  width: 50%;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 40px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .05)
}

.timeline-item:nth-child(odd) {
  margin-left: auto
}

.timeline-item::before {
  content: attr(data-step);
  position: absolute;
  top: -16px;
  left: -16px;
  width: 32px;
  height: 32px;
  background: #0077b6;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700
}

/* Footer */
.footer {
  background: #111
}

.footer a {
  text-decoration: none
}