/* what we deliver css */
/* Navbar */
    /* Navbar Base */
.navbar {
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2.5rem;
  background: rgba(5, 10, 25, 0.4);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  box-shadow: 0 0 30px rgba(0, 170, 255, 0.05);
}

/* Navbar Scroll Effect */
.navbar.scrolled {
  background: rgba(10, 20, 40, 0.85);
  box-shadow: 0 0 25px rgba(0, 170, 255, 0.15);
  backdrop-filter: blur(22px);
}

/* Logo */
.logo img{
height: 60px;
}

/* Links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 50;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.97rem;
  transition: 0.3s ease;
  position: relative;
}

/* Hover Glow Line */
.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #00aaff, #0088ff);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: #00aaff;
  text-shadow: 0 0 10px rgba(0, 170, 255, 0.5);
}

.nav-links li a:hover::after {
  width: 100%;
}

/* Get a Free Quote Button */
.quote-btn {
  background: linear-gradient(135deg, #0088ff, #00d4ff);
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.3);
  transition: all 0.3s ease;
  margin-right: 42px;
}

.quote-btn:hover {
  background: linear-gradient(135deg, #00c6ff, #0077ff);
  box-shadow: 0 0 40px rgba(0, 170, 255, 0.6);
  transform: translateY(-2px);
}

:root{
  --bg:#020611;
  --accent1:#00eaff;
  --accent2:#0077ff;
  --muted:#b7c5d8;
  --card:#081526;
  --gradient:linear-gradient(90deg, var(--accent1), var(--accent2));
}

/* General resets */
body{ margin:0; font-family:'Poppins',sans-serif; background:var(--bg); color:#fff; overflow-x:hidden;}
section{position:relative; overflow:hidden;}
.container{max-width:1200px; margin:0 auto; padding:60px 20px;}
.section-heading{text-align:center; font-size:2rem; color:var(--accent1); margin-bottom:1rem; text-shadow:0 0 20px rgba(0,234,255,0.15);}
.section-subtitle{text-align:center; color:var(--muted); margin-bottom:3rem;}
/* Hero */
.deliver-hero{
  margin-top: 70px;
  height:70vh;
  background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.9)),url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  display:flex; align-items:center; justify-content:center; text-align:center;
}
.deliver-hero .hero-content h1{
  font-size:3.5rem;
  background: radial-gradient(circle at top, #021331 0%, var(--bg-dark) 100%);
  -webkit-background-clip: text;
  color: #1992fc;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:2px;
}
.deliver-hero .hero-content p{
  color:var(--muted);
  max-width:600px;
  margin:20px auto 0;
  font-size:1.1rem;
  line-height:1.6;
}

/* Services Grid */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:30px;
}
.service-card{
  background:linear-gradient(180deg, rgba(25, 62, 113, 0.7), rgba(5,10,20,0.8));
  border-radius:16px;
  padding:30px;
  text-align:center;
  border:1px solid rgba(0,140,255,0.1);
  box-shadow:0 10px 40px rgba(0,120,255,0.05);
  transition:transform .4s ease, box-shadow .4s ease;
}
.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 18px 60px rgba(0,140,255,0.15);
}
.service-card .icon{
  font-size:2rem;
  background:var(--gradient);
  -webkit-background-clip:text;
  color:transparent;
  margin-bottom:12px;
}
.service-card h3{ color:var(--accent1); margin-bottom:8px; }
.service-card p{ color:var(--muted); font-size:0.95rem; line-height:1.6; }

/* Highlight */
.deliver-highlight{
  background:radial-gradient(circle at 30% 50%,rgb(2, 83, 149),transparent 60%);
  text-align:center;
  padding:100px 20px;
}
.deliver-highlight h2{
  font-size:2.4rem;
  font-weight:700;
  background:var(--gradient);
  -webkit-background-clip:text;
  color:transparent;
}
.deliver-highlight h2 span{color:var(--accent1);}
.deliver-highlight p{
  color:var(--muted);
  max-width:700px;
  margin:20px auto;
  line-height:1.7;
}

/* Global Section */
.deliver-global .container{
  display:flex; flex-wrap:wrap; align-items:center; gap:40px; justify-content:space-between;
}
.global-left{flex:1; min-width:300px;}
.global-left h2{color:var(--accent1); font-size:2rem; margin-bottom:12px;}
.global-left p{color:var(--muted); margin-bottom:20px; line-height:1.7;}
.countries{list-style:none; padding:0;}
.countries li{margin-bottom:6px; color:#fff; font-weight:500; opacity:0.9;}
.world-globe {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(0, 234, 255, 0.3), inset 0 0 20px rgba(0, 234, 255, 0.1);
  background: radial-gradient(circle at center, rgba(0, 20, 40, 0.9), rgba(0, 0, 0, 0.9));
}

#globeCanvas {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}

.glow-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 80px 20px rgba(35, 127, 226, 0.2);
  pointer-events: none;
  animation: pulseGlow 4s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 80px 20px rgba(162, 210, 242, 0.2); }
  50% { box-shadow: 0 0 120px 35px rgba(237, 239, 240, 0.4); }
  100% { box-shadow: 0 0 80px 20px rgba(240, 241, 241, 0.144); }
}

/* CTA */
.deliver-cta{text-align:center; padding:100px 20px; background:linear-gradient(180deg,rgba(4, 73, 142, 0.4),rgba(0,0,0,0.7));}
.deliver-cta h2{color:var(--accent1); font-size:2.2rem;}
.deliver-cta p{color:var(--muted); margin:12px auto 24px; max-width:600px;}
.btn-primary{
  display:inline-block; padding:14px 36px; border-radius:30px;
  background:var(--gradient); color:#001; font-weight:600; text-decoration:none;
  box-shadow:0 8px 30px rgba(0,140,255,0.2); transition:transform .3s ease, box-shadow .3s ease;
}
.btn-primary:hover{transform:translateY(-6px); box-shadow:0 16px 50px rgba(0,140,255,0.3);}

/* Animation for fade/slide-up */
.animate-up{opacity:0; transform:translateY(40px); transition:all .8s ease;}
.animate-up.visible{opacity:1; transform:translateY(0);}
.delay1{transition-delay:.2s;}
.delay2{transition-delay:.4s;}
.delay3{transition-delay:.6s;}
.delay4{transition-delay:.8s;}
.delay5{transition-delay:1s;}

@media (max-width:900px){
  .deliver-hero h1{font-size:2.5rem;}
  .deliver-global .container{flex-direction:column;}
  .rotating-globe{width:200px; height:200px;}
}





