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

/* NAV */
.main-nav { transition: 0.3s ease; background: transparent; }
.main-nav.scrolled { background: #ffffff; box-shadow: 0 8px 25px rgba(0,0,0,0.08); }
.navbar-toggler { border: none; color: var(--blueMid) !important; }
.navbar-toggler:focus { box-shadow: none; }
.nav-link { color: var(--blueMid) !important; font-weight: 500; }
.brand-logo i { color: var(--blueMid) !important; }
.brand-logo h4 { color: var(--blueMid) !important; }
.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-section {
  min-height: 65vh;
  padding-top: 120px;
  background: linear-gradient(rgba(13,43,85,0.55), rgba(13,43,85,0.75)), url('https://images.unsplash.com/photo-1605745341112-85968b19335b?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  display: flex; justify-content: center; align-items: center;
}
.hero-title { color: #fff; font-weight: 800; font-size: 42px; }
.hero-text { color: rgba(255,255,255,0.85); font-size: 16px; max-width: 650px; margin: 10px auto 25px; }
.hero-btn { background: #fff; color: var(--primary); font-weight: 600; border-radius: 10px; transition: 0.3s; }
.hero-btn:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }
.hero-contact-strip { margin-top: 14px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.hero-contact-strip a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.9rem; font-weight: 500; }

/* FEATURE ROW */
.feature-row { background: var(--light); border-radius: 20px; padding: 24px; margin-top: -40px; position: relative; z-index: 10; box-shadow: 0 12px 30px rgba(0,0,0,0.07); }
.feature-card { background: #fff; border-radius: 16px; padding: 24px; display: flex; align-items: flex-start; gap: 16px; box-shadow: 0 6px 20px rgba(0,0,0,0.05); height: 100%; transition: 0.25s; }
.feature-card:hover { transform: translateY(-4px); }
.feature-card i { font-size: 32px; color: var(--blueMid); flex-shrink: 0; margin-top: 2px; }
.feature-card h6 { font-weight: 700; color: var(--primary); margin-bottom: 5px; }
.feature-card p { color: #666; font-size: 0.88rem; margin: 0; }

/* VESSEL CARDS */
.vessel-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.25s;
  height: 100%;
  border-top: 4px solid var(--blueMid);
}
.vessel-card:hover { transform: translateY(-6px); }
.vessel-card i { font-size: 46px; color: var(--blueMid); margin-bottom: 14px; }
.vessel-card h5 { font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.vessel-card p { color: #6d6d6d; font-size: 0.9rem; margin: 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; }

/* TRUST STATEMENTS */
.trust-box {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  border-left: 5px solid var(--blueMid);
  height: 100%;
}
.trust-box h5 { font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.trust-box p { color: #555; font-size: 0.92rem; margin: 0; }

/* CTA */
.cta-strip { background: linear-gradient(135deg, #1a6eb5, #0d2b55); border-radius: 22px; padding: 32px 40px; display: flex; justify-content: space-between; align-items: center; gap: 20px; position: relative; overflow: hidden; }
.cta-strip::before, .cta-strip::after { content: ""; position: absolute; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,0.08); }
.cta-strip::before { top: -60px; left: -30px; }
.cta-strip::after { bottom: -60px; right: 40px; }
.cta-strip h3 { color: #fff; font-weight: 700; position: relative; z-index: 1; }
.cta-strip p { color: rgba(255,255,255,0.75); margin: 0; position: relative; z-index: 1; }
.cta-btn-inner { background: #fff; color: var(--primary); font-weight: 700; padding: 10px 28px; border-radius: 25px; text-decoration: none; transition: 0.2s; position: relative; z-index: 1; white-space: nowrap; }
.cta-btn-inner:hover { background: var(--light); color: var(--primary); transform: translateY(-2px); }
@media (max-width: 768px) { .cta-strip { flex-direction: column; text-align: center; padding: 28px 24px; } }

/* 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; }
