/*
Theme Name: Nri
Author: MBG Nri
Description: Custom theme for my website
Version: 1.0
*/

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    background: #f5f7fc;
    color: #1b1b1b;
}
.container { width: 90%; max-width: 1200px; margin: auto; }

/* HEADER */
.header {
    position: sticky;
    top: 0;
    background: #ffffff;
    padding: 5px 0;
    box-shadow: 0 3px 14px rgba(0,0,0,.05);
    z-index: 50;
}
.nav { display: flex; justify-content: space-between; align-items: center; }
.nav a { margin: 0 12px; text-decoration: none; color: #333; font-weight: 500; }
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #1F3C88;
}
.logo { height: 60px; }

.btn-primary {
    padding: 10px 20px;
    background: linear-gradient(90deg,#5A3FD9,#2BC1FF);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

/* HERO */
.hero {
    text-align: center;
    padding: 70px 20px;
    color: #000;
    background: linear-gradient(to bottom,#eaf3ff,#f7faff);
    position: relative;
    overflow: hidden;
}
.hero-content { max-width: 800px; margin: auto; position: relative; z-index: 2; }
.hero h1 { font-size: 50px; font-weight: 800;  margin: 0px;}
.hero h2 span {
    font-size: 40px;
    font-weight: 800;
    background: #1F3C88;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p { margin-top: 12px; font-size: 16px; }

.hero-stats {
    display: flex; justify-content: center; gap: 50px;
    margin: 30px 0;
}
.stat-box { text-align: center; }
.stat-box h3 {
    font-size: 34px;
    margin: 0;
    color: #F2B705;
}
.stat-box p { font-size: 14px; }

.btn-large {
 padding: 11px 34px;
    background: #1F3C88;
    color: white;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #ccc;
    margin-top: 10px !important;
}

/* HERO SHAPES */
.shape, .shape2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .35;
}
.shape {
    width: 600px; height: 600px;
    background: #6c47ff;
    top: -50px; right: -200px;
}
.shape2 {
    width: 450px; height: 450px;
    background: #2bc1ff;
    bottom: -80px; left: -150px;
}

/* SECTIONS */
.section { padding: 60px 20px; }
.section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* SERVICES */
.service-grid {
    display: grid;
      grid-template-columns: repeat(auto-fit, minmax(222px, 0fr));
    gap: 15px;
}
.service-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
    transition: .2s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(0,0,0,.09);
}



/* TEAM */
.team-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}
.team-card img {
    width: 150px; height: 150px;
    border-radius: 50%;
}
.team-card h4 { margin-top: 12px; }

/* CTA */
.cta {
    text-align: center;
    padding: 50px 20px;
    background: #1F3C88;
    color: white;
}
.cta h2 { font-size: 32px; margin-bottom: 10px; }

/* FOOTER */
.footer {
    background: #111;
    padding: 2px  0px 1px 0px;
    text-align: center;
    color: white;
        font-size: 14px;
}

/* ANIMATIONS */
.fade-in { animation: fadeIn 1.2s ease-in-out; }
.fade-up { animation: fadeUp 1s ease-out; }
.slide-up { animation: slideUp .8s ease-out; }

@keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}


/* Section */
.faq-section {
  padding: 70px 0;
      background: #E4EFFE;
}

/* Container */
.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  gap: 40px;
}

/* LEFT */
.faq-left {
  flex: 1.2;
}

/* FAQ Item */
.faq-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 16px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h4 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.faq-question i {
  background: #111827;
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Answer */
.faq-answer {
  margin-top: 14px;
}

.faq-answer p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

/* RIGHT */
.faq-right {
  flex: 0.8;
}

.faq-right h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
}

.faq-right h2 span {
  color: #1F3C88;
}

.faq-right p {
  margin: 14px 0 24px;
  color: #6b7280;
  line-height: 25px;
}

/* Buttons */
.btn-primary {
     display: inline-block;
    padding: 12px 22px;
    background: #1F3C88;
    color: #ffffff !important;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
}

/* Card */
.faq-card {
  margin-top: 30px;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
}

.faq-card-content {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.faq-card-content img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

/* Dark Button */
.btn-dark {
  display: inline-block;
  padding: 12px 22px;
  background: #f2b705;
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
}
/* FAQ Item */
.faq-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 16px;
  cursor: pointer;
}

/* Question */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  background: #111827;
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

/* Answer (hidden by default) */
.faq-answer {
  display: none;
  margin-top: 14px;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Rotate icon when active */
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 900px) {
  .faq-container {
    flex-direction: column;
  }
}

/* Section */
.process-seq {
  padding: 30px 0px;
  background: #f8fafc;
}

.process-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #111827;
}

/* Layout */
.process-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* Steps */
.process-steps {
  flex: 1;
  position: relative;

}

/* Vertical line */
.process-steps::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #f2b70575;
  height: 445px;
}

/* Step */
.process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 27px;

  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.process-step.show {
  opacity: 1;
  transform: translateY(0);
}

/* Number */
.step-number {
  width: 30px;
  height: 30px;
  background: #1F3C88;
  color: #ffffff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Box */
.step-box {
  background: #ffffff;
  padding: 20px 24px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.step-box h4 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #1F3C88;
}

.step-box p {
  margin: 0;
  font-size: 15px;
  color: #6b7280;
  line-height: 1.5;
}

/* Image */
.process-image {
  flex: 1;
}

.process-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Mobile */
@media (max-width: 900px) {
  .process-wrapper {
    flex-direction: column;
  }

  .process-steps {
    padding-left: 30px;
  }
}
.why-msg-dark {
  padding: 40px 0px;
  background: radial-gradient(circle at top, #1f3c88, #0b1c3d);
  color: #e5e7eb;
}

.msg-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.msg-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.msg-title span {
  color: #f2b705; /* Gold accent */
}

.msg-subtitle {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 70px;
}

/* Comparison layout */
.msg-compare {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
}

/* Cards */
.msg-card {
  width: 400px;
  padding: 38px 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
}

.msg-card h3 {
  font-size: 20px;
  margin-bottom: 22px;
      text-align: left;
}

/* Lists */
.msg-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.msg-card li {
  font-size: 15px;
  margin-bottom: 14px;
  padding-left: 28px;
  position: relative;
  color: #e2e8f0;
}

/* Icons */
.msg-without li::before {
  content: "\2716";
  color: #f87171;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.msg-with li::before {
  content: "\2714";
  color: #f2b705;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Divider */
.msg-divider {
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    #f2b705,
    transparent
  );
}

/* CTA */
.msg-cta {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.btn-msg-primary {
  padding: 14px 28px;
  background: #f2b705;
  color: #0b1c3d;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-msg-outline {
  padding: 14px 28px;
  border: 1px solid #f2b705;
  color: #f2b705;
  border-radius: 30px;
  text-decoration: none;
}
.service-card p {
    font-size: 14px;
    line-height: 22px;
}
.service-card h3 {
    color: #1F3C88;
}
/* Responsive */
@media (max-width: 900px) {
  .msg-compare {
    flex-direction: column;
  }

  .msg-divider {
    width: 100%;
    height: 2px;
  }
}

.msg-icon {
  filter: brightness(0) saturate(100%)
          invert(72%) sepia(88%)
          saturate(747%) hue-rotate(358deg)
          brightness(101%) contrast(104%);
              width: 45px;
}

/* Section */
.team-premium {
  padding:40px 0px 70px 0px;
      background: #fff;
}

.team-premium h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111827;
}

.team-premium p {
  text-align: center;
  color: #6b7280;
  margin-bottom: 60px;
}

/* Grid container */
.team-grid {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* Card */
.team-box {
  background: #ffffff;
  width: 370px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.team-box:hover {
  transform: translateY(-8px);
}

/* Image */
.team-photo {
  width: 100%;
  height: 329px;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
}

/* Info */
.team-info {
  padding: 22px 20px 26px;
  text-align: center;
}

.team-info h4 {
  font-size: 18px;
  margin-bottom: 4px;
  color: #1F3C88;
}

.team-info span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}

.team-info p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .team-grid {
    gap: 24px;
  }

  .team-box {
    width: 100%;
    max-width: 360px;
  }
}


.team-dark {
  background: #0b2a55;
  padding: 70px 20px;
  color: #ffffff;
}

.team-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 80px;
  align-items: center;
}

/* LEFT GRID */
.team-cards {
  display: grid;
  grid-template-columns: repeat(2, 250px);
  gap: 30px;
}

/* CARD */
.team-card {
  background: #ffffff;
  color: #111827;
  padding: 22px 20px 26px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 14px 40px rgba(0,0,0,0.15);
}

.team-card.offset {
  transform: translateY(40px);
}

.team-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
}

.team-card h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.role {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin: 4px 0 10px;
}
.team-card.offset.show {
    transform: translateY(40px);
}
.role.highlight {
 
  font-weight: 600;
}

/* SOCIAL */
.social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #0b2a55;
  font-size: 13px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* RIGHT CONTENT */
.team-content h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.team-content p {
  font-size: 16px;
  color: #cbd5f5;
  line-height: 1.6;
  margin-bottom: 14px;
}

.team-content .small {
  font-size: 14px;
  opacity: 0.8;
}

.team-btn {
  display: inline-block;
  margin-top: 26px;
  padding: 14px 28px;
  background: #ffffff;
  color: #0b2a55;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}
/* INITIAL STATE (hidden) */
.team-card,
.team-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

/* SHOW STATE */
.team-card.show,
.team-content.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .team-container {
    flex-direction: column;
    gap: 50px;
  }

  .team-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-card.offset {
    transform: none;
  }
}


.flow-section {
  padding: 90px 0;
}

.flow-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 120px;
}

.flow-visual {
  width: 240px;
  height: 240px;
  display: grid;
  place-items: center;
}

.flow-core {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  display: grid;
  place-items: center;
  animation: breathe 5s ease-in-out infinite;
}

.flow-core span {
  font-weight: 500;
  letter-spacing: .3px;
  color: #0f2a44;
}

/* Soft breathing only */
@keyframes breathe {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.03); }
}
.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.flow-step strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #0f2a44;
}

.flow-step span {
  font-size: 14px;
  color: #6b7280;
}
.flow-layout::after {
  content: "";
  width: 1px;
  height: 160px;
  background: linear-gradient(transparent,#f2b705,transparent);
}

.site-footer {
  padding: 35px 0px;
 
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 40px;
}

/* LEFT LINKS */
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-col h4 {
  color: #f2b705;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #1f3c88;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.footer-col ul li.highlight a {
  color: #f2b705;
  font-weight: 600;
}

/* DIVIDER */
.footer-divider {
  width: 1px;
  background: #d6e2f3;
}

/* LOCATIONS */
.footer-locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.location h4 {
  color: #f2b705;
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 600;
}

.location p {
  color: #1f3c88;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.location a {
  color: #1f3c88;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

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

  .footer-divider {
    display: none;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-locations {
    grid-template-columns: 1fr;
  }
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 30px 0 0 0;
}

.social-icon {
  width: 52px;
  height: 52px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f3c88;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(31, 60, 136, 0.15);
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-4px);
  background: #1f3c88;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(31, 60, 136, 0.25);
}
@media (max-width: 992px) {
    .nav {
    position: relative;
  }

  nav {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    display: none;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    border-radius: 0 0 18px 18px;
    animation: slideDown 0.3s ease forwards;
  }

  nav a {
    margin: 0;
    font-size: 16px;
  }

  nav.active {
    display: flex;
  }

  .btn-primary {
    display: none; /* hide CTA on mobile */
  }

  .menu-toggle {
    display: block;
  }

  .logo {
    height: 50px;
  }
  
  .service-grid {
      grid-template-columns: repeat(auto-fit, minmax(100%, 0fr));
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}