: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 */
.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;
  position: relative;
  z-index: 1;
  background: linear-gradient(rgba(13,43,85,0.55), rgba(13,43,85,0.75)),
              url('https://images.unsplash.com/photo-1678182451047-196f22a4143e?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;
}
.hero-contact-strip a:hover {
  color: #fff;
}
.hero-contact-strip i {
  margin-right: 4px;
}

/* FEATURE CARDS (2-card row beneath hero) */
.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;
}

/* BODY CONTENT SECTIONS */
.content-section {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.content-section h4 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
}
.content-section h5 {
  color: var(--primary);
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 10px;
}
.content-section p {
  color: #555;
  line-height: 1.75;
}
.check-list {
  list-style: none;
  padding: 0;
}
.check-list li {
  padding: 6px 0;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.check-list li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  color: var(--blueMid);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* WHY SECTION (image + text) */
.why-img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.why-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}
.why-list li {
  font-size: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #444;
}
.why-list i {
  color: var(--blueMid);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* PILLAR CARDS */
.pillar-card {
  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%;
}
.pillar-card:hover {
  transform: translateY(-5px);
}
.pillar-card i {
  font-size: 34px;
  color: var(--blueMid);
  margin-bottom: 10px;
}
.pillar-card h5 {
  font-weight: 700;
  color: var(--primary);
}
.pillar-card p {
  color: #6d6d6d;
  font-size: 0.9rem;
}

/* OPERATIONS LIST */
.ops-item {
  background: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: 0.2s;
}
.ops-item:hover {
  transform: translateX(4px);
}
.ops-item i {
  font-size: 22px;
  color: var(--blueMid);
  flex-shrink: 0;
}
.ops-status {
  display: inline-block;
  background: #e3f5eb;
  color: #2e7d32;
  border-radius: 8px;
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 600;
}

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

/* STAT BANNER */
.stat-banner {
  background: linear-gradient(135deg, #0d2b55, #1a6eb5);
  border-radius: 18px;
  padding: 28px 35px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.stat-banner h3 {
  font-weight: 700;
  margin: 0;
}
.stat-banner p {
  color: rgba(255, 255, 255, 0.8);
  margin: 4px 0 0;
}
.stat-banner-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-stat {
  background: #fff;
  color: var(--primary);
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 20px;
  text-decoration: none;
  white-space: nowrap;
}
.btn-stat:hover {
  background: var(--light);
  color: var(--primary);
}
.btn-stat-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 20px;
  text-decoration: none;
  white-space: nowrap;
}
.btn-stat-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
@media (max-width: 768px) {
  .stat-banner {
    flex-direction: column;
    text-align: center;
  }
}

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