/* ---------- GLOBAL BASE ---------- */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
}

/* ---------- NAVBAR ---------- */
.navbar {
  padding: 0.8rem 1rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.navbar-brand img {
  height: 55px;
}

.navbar-nav .nav-link {
  color: #002E6E !important;
  margin: 0 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #FFD300 !important;
  transform: translateY(-2px);
}

.navbar-toggler {
  background-color: #FFD300;
  padding: 6px 10px;
  border-radius: 8px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,46,110, 1)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar.scrolled {
  background-color: #fff !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* ---------- BUTTONS ---------- */
.btn {
  border-radius: 10px;
  padding: 12px 28px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary {
  background-color: #002E6E;
  border: 2px solid #002E6E;
  color: #fff;
}
.btn-primary:hover {
  background-color: #0048A5;
  border-color: #0048A5;
  transform: translateY(-2px);
}
.btn-outline-primary {
  border: 2px solid #002E6E;
  color: #002E6E;
}
.btn-outline-primary:hover {
  background-color: #002E6E;
  color: #fff;
  transform: translateY(-2px);
}
.btn-warning {
  background-color: #FFD300;
  color: #002E6E;
}
.btn-warning:hover {
  background-color: #ffdb33;
  transform: translateY(-2px);
}

/* ---------- HERO SECTION ---------- */
.hero-modern {
  background-color: #f8faff;
  padding: 100px 0;
}
.hero-modern h1 {
  font-size: 2.8rem;
  color: #f6e245;
  line-height: 1.3;
}
.hero-modern .text-primary {
  color: #0f2279 !important;
  font-family: Georgia, serif;
}
.hero-modern p {
  color: #002E6E !important;
  font-size: 1.1rem;
}
.hero-shape {
  position: absolute;
  width: 500px;
  height: 400px;
  background: #f6e245;
  border-radius: 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(15deg);
  z-index: 1;
}
.hero-image-wrapper img {
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero-modern {
    text-align: center;
    padding: 60px 0;
  }
  .hero-modern h1 {
    font-size: 2rem;
  }
  .hero-shape {
    width: 280px;
    height: 230px;
  }
  .about-image-wrapper {
    display: none;
  }
}

/* ---------- SERVICES SECTION ---------- */
.services-enhanced {
  background-color: #002E6E;
  padding: 100px 0;
}
.services-enhanced h2 {
  font-size: 2rem;
  color: #fff;
}
.service-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px 25px;
  text-align: center;
  transition: 0.4s ease;
}
.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.icon-wrapper {
  background: rgba(255, 211, 0, 0.1);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
}
.icon-wrapper i {
  color: #FFD300;
  font-size: 2rem;
}
.service-box h5 {
  color: #002E6E;
  font-weight: 600;
  margin: 10px 0;
}
.service-box p {
  color: #555;
  font-size: 0.9rem;
}

/* ---------- WHY CHOOSE US ---------- */
.why-choose {
  background-color: #f8f9fa;
}
.why-choose h2 {
  color: #002E6E;
}
.why-list .metric {
  border-left: 4px solid #FFD300;
  padding-left: 20px;
  transition: 0.3s ease;
}
.why-list .metric:hover {
  border-color: #002E6E;
  transform: translateX(5px);
}
.counter {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0048A5;
}

/* ---------- PROCESS & TOOLS ---------- */
.process-tools-unified {
  background-color: #f8faff;
}
.timeline {
  position: relative;
  border-left: 3px solid #FFD300;
  padding-left: 25px;
}
.timeline-item {
  margin-bottom: 30px;
}
.timeline-icon {
  position: absolute;
  left: -47px;
  width: 38px;
  height: 38px;
  background: #FFD300;
  color: #002E6E;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-content {
  background: #fff;
  border-radius: 10px;
  padding: 18px 22px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}
.timeline-content:hover {
  transform: translateY(-4px);
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 25px;
  justify-items: center;
}
.tools-grid img {
  width: 55px;
  filter: grayscale(100%) brightness(0.9);
  opacity: 0.8;
  transition: 0.3s;
}
.tools-grid img:hover {
  transform: scale(1.1);
  filter: none;
  opacity: 1;
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-card {
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: #FFD300;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.testimonial-card img {
  border-radius: 50%;
  border: 4px solid #FFD300;
}

/* ---------- CTA FINAL ---------- */
.cta-final {
  background: linear-gradient(180deg, rgba(0,46,110,0.95), rgba(0,20,60,0.95)),
              url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 80px 20px;
}
.cta-final h2 {
  font-size: 2.5rem;
}
.cta-final p {
  color: rgba(255,255,255,0.9);
}
.cta-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}
.cta-stats h3 {
  color: #FFD300;
  font-weight: 700;
}

/* ---------- FOOTER ---------- */
.footer {
  background: linear-gradient(180deg, #002E6E 0%, #001A44 100%);
  color: white;
  font-size: 0.95rem;
  padding-top: 60px;
}
.footer h6 {
  color: #FFD300;
}
.footer-link {
  color: rgba(255,255,255,0.8);
  display: block;
  margin-bottom: 8px;
  transition: 0.3s;
}
.footer-link:hover {
  color: #FFD300;
}
.social-icons a {
  color: white;
  font-size: 1.3rem;
  margin-right: 12px;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #FFD300;
  transform: scale(1.1);
}
.footer hr {
  border-color: rgba(255, 255, 255, 0.2);
}
