body{
  font-family: Arial, sans-serif;
  background:#f7fbff;
  color:#1e2d3d;
}

.navbar{
  border-bottom:1px solid #d8e7f5;
  transition:all .3s ease;
}

.navbar-brand{
  font-weight:700;
  color:#0d47a1 !important;
  letter-spacing:.3px;
}

.nav-link{
  font-weight:500;
  color:#31475f !important;
}

.hero-section{
  background:linear-gradient(135deg, #eef6ff 0%, #d9ebff 100%);
  padding:100px 0 85px;
}

.hero-label{
  display:inline-block;
  margin-bottom:16px;
  color:#1565c0;
  font-size:.85rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1.6px;
}

.hero-title{
  font-size:3rem;
  font-weight:700;
  line-height:1.1;
  color:#12345b;
}

.hero-text{
  font-size:1.1rem;
  color:#4c647c;
  max-width:650px;
}

.hero-image-card{
  background:#fff;
  border:1px solid #dbe8f5;
  border-radius:20px;
  padding:14px;
  box-shadow:0 12px 28px rgba(13, 71, 161, 0.08);
}

.hero-main-image{
  border-radius:14px;
  width:100%;
  height:420px;
  object-fit:cover;
}

.section-padding{
  padding:85px 0;
}

.section-title{
  font-size:2.2rem;
  font-weight:700;
  margin-bottom:16px;
  color:#12345b;
  text-align:center;
}

.section-subtitle{
  color:#5c7289;
  max-width:760px;
  margin:0 auto;
}

.section-label{
  display:inline-block;
  margin-bottom:12px;
  color:#1565c0;
  font-size:.82rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1.7px;
}

.section-text{
  color:#5a7087;
  font-size:1.02rem;
}

.bg-soft{
  background:#f2f8ff;
}

.btn-mgul{
  background:#0d47a1;
  color:#fff;
  border:none;
  padding:12px 24px;
  font-weight:600;
}

.btn-mgul:hover{
  background:#0b3d8c;
  color:#fff;
}

.image-card,
.service-card,
.feature-box,
.contact-box{
  background:#fff;
  border:1px solid #dbe8f5;
  border-radius:18px;
  box-shadow:0 10px 24px rgba(13, 71, 161, 0.06);
}

.image-card{
  overflow:hidden;
  height:100%;
}

.section-image{
  width:100%;
  height:240px;
  object-fit:cover;
}

.image-card-body{
  padding:22px;
}

.image-card-body h5{
  font-weight:700;
  margin-bottom:10px;
  color:#143a66;
}

.image-card-body p{
  color:#5c7289;
  margin-bottom:0;
}

.service-card{
  padding:28px 24px;
  height:100%;
  transition:all .35s ease;
}

.service-card:hover,
.image-card:hover,
.feature-box:hover{
  transform:translateY(-5px);
}

.service-card h4{
  font-weight:700;
  margin-bottom:12px;
  color:#143a66;
}

.service-card p{
  color:#5c7289;
  margin-bottom:0;
}

.content-image{
  width:100%;
  height:500px;
  object-fit:cover;
  border:1px solid #dbe8f5;
}

.feature-box{
  padding:28px 22px;
  text-align:center;
  height:100%;
}

.feature-box h5{
  font-weight:700;
  margin-bottom:10px;
  color:#143a66;
}

.feature-box p{
  color:#5c7289;
  margin-bottom:0;
}

.stats-strip{
  background:linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
  color:#fff;
  border-radius:20px;
  padding:34px 20px;
  box-shadow:0 14px 30px rgba(13, 71, 161, 0.15);
}

.stats-number{
  font-size:2rem;
  font-weight:700;
  margin-bottom:6px;
}

.stats-label{
  font-size:.95rem;
  opacity:.95;
}

.contact-box{
  padding:32px;
}

.contact-list li{
  margin-bottom:12px;
  color:#526a82;
}

.footer{
  background:#0f2742;
  color:#e2edf8;
  padding:30px 0;
}

.footer p{
  margin-bottom:0;
}

.service-card,
.feature-box,
.image-card{
  opacity:0;
  transform:translateY(30px);
  transition:all .6s ease;
}

.service-card.visible,
.feature-box.visible,
.image-card.visible{
  opacity:1;
  transform:translateY(0);
}

.btn-mgul.active{
  transform:scale(.96);
}

@media (max-width: 991px){
  .hero-title{
    font-size:2.35rem;
  }

  .hero-main-image{
    height:320px;
  }

  .content-image{
    height:320px;
  }
}

.top-marquee{
  background: linear-gradient(90deg, #0d47a1 0%, #1976d2 100%);
  color: #ffffff;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 6px 18px rgba(13, 71, 161, 0.10);
}

.top-marquee-track{
  display: inline-flex;
  align-items: center;
  gap: 42px;
  padding: 12px 0;
  min-width: max-content;
  animation: marqueeMove 24s linear infinite;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.top-marquee-track span{
  position: relative;
  padding-left: 18px;
}

.top-marquee-track span::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  transform: translateY(-50%);
  opacity: 0.85;
}

@keyframes marqueeMove{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}

.hero-world{
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(6, 24, 52, 0.72), rgba(8, 30, 64, 0.78)),
    url("../images/world-bg.jpg") center center / cover no-repeat;
  color: #ffffff;
}

.hero-content-wrap{
  z-index: 5;
}

.hero-world-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 25%, rgba(90, 200, 255, 0.28), transparent 25%),
    radial-gradient(circle at 70% 65%, rgba(0, 140, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(6,22,49,0.15) 0%, rgba(5,18,41,0.35) 100%);
  z-index: 1;
  animation: pulseOverlay 7s ease-in-out infinite alternate;
}

.hero-world-glow{
  position: absolute;
  left: 50%;
  top: 18%;
  width: 520px;
  height: 520px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(146, 231, 255, 0.30) 0%, rgba(81, 178, 255, 0.10) 35%, rgba(0,0,0,0) 72%);
  filter: blur(12px);
  z-index: 2;
  animation: heroGlow 6s ease-in-out infinite alternate;
}

.hero-label{
  display: inline-block;
  margin-bottom: 18px;
  color: #9ed7ff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.hero-title{
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.08;
  color: #ffffff;
  max-width: 760px;
}

.hero-text{
  font-size: 1.08rem;
  color: #d7eaff;
  max-width: 680px;
  margin-top: 20px;
}

.hero-info-card{
  position: relative;
  z-index: 5;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  color: #ffffff;
}

.hero-info-card h4{
  font-weight: 700;
  color: #ffffff;
}

.hero-info-card li{
  color: #dbeeff;
}

.hero-world .btn-mgul{
  background: #0d6efd;
  border: none;
  color: #fff;
}

.hero-world .btn-mgul:hover{
  background: #0b5ed7;
  color: #fff;
}

.hero-world .btn-outline-light{
  border-width: 1.5px;
}

/* PARTICLES */

.hero-particles{
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-particles span{
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 0 12px rgba(126, 220, 255, 0.9);
  animation: floatParticle linear infinite;
  opacity: 0.7;
}

.hero-particles span:nth-child(1){ left:8%; top:72%; animation-duration:11s; animation-delay:0s; }
.hero-particles span:nth-child(2){ left:16%; top:26%; animation-duration:13s; animation-delay:1s; }
.hero-particles span:nth-child(3){ left:24%; top:64%; animation-duration:10s; animation-delay:2s; }
.hero-particles span:nth-child(4){ left:33%; top:18%; animation-duration:15s; animation-delay:1s; }
.hero-particles span:nth-child(5){ left:42%; top:58%; animation-duration:12s; animation-delay:3s; }
.hero-particles span:nth-child(6){ left:51%; top:28%; animation-duration:14s; animation-delay:0.5s; }
.hero-particles span:nth-child(7){ left:60%; top:72%; animation-duration:10s; animation-delay:2.5s; }
.hero-particles span:nth-child(8){ left:69%; top:20%; animation-duration:16s; animation-delay:1.5s; }
.hero-particles span:nth-child(9){ left:77%; top:62%; animation-duration:13s; animation-delay:0s; }
.hero-particles span:nth-child(10){ left:85%; top:34%; animation-duration:11s; animation-delay:2s; }
.hero-particles span:nth-child(11){ left:91%; top:70%; animation-duration:12s; animation-delay:1s; }
.hero-particles span:nth-child(12){ left:12%; top:48%; animation-duration:15s; animation-delay:4s; }

/* NETWORK LINES */

.hero-network-lines{
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-network-lines .line{
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(132,220,255,0.9), rgba(255,255,255,0));
  transform-origin: left center;
  opacity: 0.45;
  animation: linePulse 4.5s ease-in-out infinite alternate;
}

.hero-network-lines .line-1{
  width: 340px;
  left: 8%;
  top: 62%;
  transform: rotate(-12deg);
  animation-delay: 0s;
}

.hero-network-lines .line-2{
  width: 380px;
  left: 28%;
  top: 48%;
  transform: rotate(10deg);
  animation-delay: 1s;
}

.hero-network-lines .line-3{
  width: 300px;
  right: 18%;
  top: 56%;
  transform: rotate(-18deg);
  animation-delay: 0.5s;
}

.hero-network-lines .line-4{
  width: 260px;
  right: 8%;
  top: 34%;
  transform: rotate(16deg);
  animation-delay: 1.5s;
}

/* ANIMATIONS */

@keyframes heroGlow{
  0%{
    transform: translateX(-50%) scale(1);
    opacity: 0.72;
  }
  100%{
    transform: translateX(-50%) scale(1.08);
    opacity: 1;
  }
}

@keyframes pulseOverlay{
  0%{
    opacity: 0.92;
  }
  100%{
    opacity: 1;
  }
}

@keyframes floatParticle{
  0%{
    transform: translateY(0px) scale(1);
    opacity: 0.25;
  }
  25%{
    opacity: 0.8;
  }
  50%{
    transform: translateY(-18px) scale(1.4);
    opacity: 1;
  }
  100%{
    transform: translateY(-40px) scale(0.9);
    opacity: 0.2;
  }
}

@keyframes linePulse{
  0%{
    opacity: 0.18;
    transform: scaleX(0.92);
  }
  100%{
    opacity: 0.65;
    transform: scaleX(1.04);
  }
}

@media (max-width: 991px){
  .hero-world{
    min-height: 680px;
    padding: 110px 0 70px;
  }

  .hero-title{
    font-size: 2.4rem;
  }

  .hero-info-card{
    margin-top: 10px;
  }

  .hero-world-glow{
    width: 320px;
    height: 320px;
    top: 14%;
  }

  .hero-network-lines .line{
    display: none;
  }
}