* {
  box-sizing: border-box;
}

/* ================= RESET ================= */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #020617;
  color: white;
}

/* ================= NAVBAR ================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  padding: 15px 30px;
  box-sizing: border-box; /* ✅ FIX */

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);

  display: flex;
  justify-content: space-between;
  align-items: center;

  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* LOGO */
.logo img {
  height: 50px;
}

/* NAV LINKS */
nav a {
  margin-left: 25px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

nav a:hover {
  color: #e11d48;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  background: url("worldmap.png") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

/* OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 23, 0.7);
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
}

/* TITLE ANIMATION */
.hero-title {
  font-size: 50px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.5s ease forwards;
}

.hero-title span {
  color: #e11d48;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= MAP ROUTES ================= */
.map-routes {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* DOT STYLE */
.route {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #ff4d6d;
  border-radius: 50%;
  box-shadow: 0 0 10px #ff4d6d;
}

/* ROUTE PATHS */
.r1 {
  top: 60%;
  left: 10%;
  animation: move1 6s linear infinite;
}

.r2 {
  top: 30%;
  left: 20%;
  animation: move2 8s linear infinite;
}

.r3 {
  top: 70%;
  left: 40%;
  animation: move3 10s linear infinite;
}

@keyframes move1 {
  0% { left: 10%; top: 60%; }
  100% { left: 85%; top: 30%; }
}

@keyframes move2 {
  0% { left: 20%; top: 30%; }
  100% { left: 80%; top: 70%; }
}

@keyframes move3 {
  0% { left: 40%; top: 70%; }
  100% { left: 90%; top: 40%; }
}

/* ================= BUTTON ================= */
.hero button {
  background: #e11d48;
  border: none;
  padding: 12px 30px;
  color: white;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.hero button:hover {
  background: #ff4d6d;
}

/* ================= SECTIONS ================= */
.section {
  padding: 60px 20px;  /* reduced */
}

.section h2 {
  color: #e11d48;
  margin-bottom: 20px;
  font-size: 32px;
  text-align: center;   /* ✅ FIX alignment */
}

/* ================= SERVICES ================= */

.service-box:hover {
  transform: scale(1.05);
}

/* ================= CONTACT ================= */
.contact-simple {
  padding: 100px 20px;
  text-align: center;
  background: #000;
}

.contact-simple h2 {
  color: #e11d48;
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-info p {
  color: #ccc;
  font-size: 18px;
  margin: 10px 0;
}

.contact-info strong {
  color: white;
}

/* ABOUT TEXT STYLING */
.about-text {
  max-width: 900px;
  margin: 15px auto;
  font-size: 17px;
  line-height: 1.7;
  color: #ccc;
}

/* Optional animation */
.about-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}

.about-text:nth-child(2) { animation-delay: 0.3s; }
.about-text:nth-child(3) { animation-delay: 0.6s; }
.about-text:nth-child(4) { animation-delay: 0.9s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services {
  padding: 60px 20px 70px;
}

.container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1100px;
  margin: auto;
}

.service-box {
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, #e11d48, #ff4d6d);
  color: #fff;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.service-box .icon {
  font-size: 40px;
  background: #5a6ea8;
  color: white;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 15px;
  margin: 0 auto 15px;
}

.service-box h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.service-box .line {
  width: 60px;
  height: 3px;
  background: #5a6ea8;
  margin: 10px auto 15px;
}

.service-box p {
  font-size: 14px;
  color: #f1f1f1;   /* ✅ clear & readable */
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
  }
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 50px;
  font-weight: 600; /* better clarity */
}

.section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #e11d48;
  display: block;
  margin: 12px auto 0;
}