:root {
  --primary: #0d2b55;
  --blueMid: #1a6eb5;
  --light: #e8f0f7;
}
body {
  background: #f0f4f8;
  font-family: "Poppins", Arial;
}
.btn {
  background: var(--light);
  color: var(--blueMid);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 500;
  transition: 0.3s;
}
.btn:hover {
  color: var(--blueMid);
  transform: translateY(-2px);
}

/* NAV */
.main-nav {
  transition: 0.3s ease;
  background: transparent;
}
.main-nav.scrolled {
  background: var(--blueMid);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.navbar-toggler {
  border: none;
  color: var(--light) !important;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.nav-link {
  color: var(--light) !important;
  font-weight: 500;
}
.brand-logo i {
  color: var(--light) !important;
}
.brand-logo h4 {
  color: var(--light) !important;
}

/* DROPDOWN */
.dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  min-width: 200px;
}
.dropdown-item {
  color: #333;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 20px;
}
.dropdown-item:hover {
  background: var(--light);
  color: var(--primary);
}

/* HERO */
.hero-modern {
  padding: 120px 0 90px;
  background: linear-gradient(rgba(13,43,85,0.55), rgba(13,43,85,0.75)),
              url('https://images.unsplash.com/photo-1670121180530-cfcba4438038?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  border-radius: 0 0 35px 35px;
  color: #fff;
}
.hero-title {
  font-weight: 800;
  font-size: 38px;
  line-height: 1.2;
}
.hero-desc {
  margin-top: 10px;
  max-width: 440px;
  opacity: 0.9;
  color: #fff;
}
.hero-btn {
  background: #fff;
  color: var(--primary);
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}
.hero-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}
.hero-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 10px 18px;
  width: max-content;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-badge i {
  font-size: 18px;
}
.hero-badge span {
  font-size: 14px;
  font-weight: 500;
}
.hero-visual {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.hero-ship-icon {
  font-size: 110px;
  color: rgba(255, 255, 255, 0.85);
}

/* QUICK-ACTION CARDS */
.action-bar {
  background: var(--light);
  border-radius: 20px;
  padding: 28px 24px;
  margin-top: -50px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 10;
}
.action-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: 0.25s;
}
.action-card:hover {
  transform: translateY(-5px);
}
.action-card i {
  font-size: 32px;
  color: var(--blueMid);
  margin-bottom: 8px;
}
.action-card h5 {
  font-weight: 700;
  color: var(--primary);
}
.action-card p {
  color: #666;
  font-size: 0.9rem;
}
.action-card .btn-action {
  background: linear-gradient(135deg, #1a6eb5, #0d2b55);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 7px 18px;
  text-decoration: none;
  display: inline-block;
  margin-top: 8px;
  transition: 0.3s;
}
.action-card .btn-action:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.pill-badge {
  display: inline-block;
  background: var(--light);
  color: var(--primary);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  margin: 4px 3px;
}

/* SERVICES GRID */
.service-card {
  background: white;
  border-radius: 18px;
  padding: 28px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.25s;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-6px);
}
.service-card i {
  font-size: 36px;
  color: var(--blueMid);
  margin-bottom: 10px;
}
.service-card h5 {
  font-weight: 700;
  color: var(--primary);
  margin-top: 5px;
}
.service-card p {
  color: #6d6d6d;
  font-size: 0.9rem;
}
.service-tag {
  display: inline-block;
  background: var(--light);
  color: var(--blueMid);
  border-radius: 12px;
  padding: 3px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  margin: 2px 2px 0;
}

/* STATS */
.stats-box {
  background: linear-gradient(135deg, #1a6eb5, #5ba4d6);
  padding: 28px 35px;
  border-radius: 18px;
  color: #fff;
}
.stats-icon {
  font-size: 36px;
  color: var(--light);
  margin-bottom: 8px;
}
.counter {
  font-size: 32px;
  font-weight: 800;
  color: beige;
}
.stats-label {
  color: beige;
  font-size: 14px;
}

/* WHY CHOOSE US */
.why-box {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.25s;
  height: 100%;
}
.why-box:hover {
  transform: translateY(-6px);
}
.why-box i {
  font-size: 36px;
  color: var(--blueMid);
  margin-bottom: 10px;
}
.why-box h5 {
  font-weight: 700;
  color: var(--primary);
}
.why-box p {
  color: #6d6d6d;
  font-size: 0.9rem;
}

/* CORE VALUES */
.value-box {
  background: var(--light);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  border-left: 4px solid var(--blueMid);
  transition: 0.25s;
  height: 100%;
}
.value-box:hover {
  transform: translateY(-4px);
}
.value-box i {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 10px;
}
.value-box h5 {
  font-weight: 700;
  color: var(--primary);
}
.value-box p {
  color: #555;
  font-size: 0.9rem;
}

/* PROJECTS */
.project-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: 0.25s;
  height: 100%;
  border-top: 4px solid var(--blueMid);
}
.project-card:hover {
  transform: translateY(-5px);
}
.project-status {
  display: inline-block;
  background: #e3f5eb;
  color: #2e7d32;
  border-radius: 10px;
  padding: 3px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.project-status.upcoming {
  background: #fff3e0;
  color: #e65100;
}
.project-card h5 {
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}
.project-card p {
  color: #666;
  font-size: 0.88rem;
  margin: 0;
}
.project-meta {
  font-size: 0.8rem;
  color: var(--blueMid);
  font-weight: 600;
  margin-bottom: 5px;
}

/* CTA SECTION */
.cta-box {
  background: linear-gradient(135deg, #1a6eb5, #0d2b55);
  padding: 28px 35px;
  border-radius: 18px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.cta-btn {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 25px;
  transition: 0.2s;
}
.cta-btn:hover {
  background: var(--light);
  color: var(--primary);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
  }
}

/* SECTION LABELS */
.section-label {
  color: var(--blueMid);
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
}

/* FOOTER */
.footer-section {
  background: #ffffff;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 6px;
}
.footer-links a {
  text-decoration: none;
  color: #555;
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--blueMid);
}
.footer-contact {
  list-style: none;
  padding: 0;
}
.footer-contact li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #444;
}
.footer-contact i {
  color: var(--blueMid);
  margin-right: 6px;
}
.social-icons i {
  font-size: 18px;
  cursor: pointer;
  color: var(--blueMid);
}
.social-icons i:hover {
  color: var(--primary);
}
.logo {
  color: var(--blueMid) !important;
}
