* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #ffffff;
}

/* TOP BAR */
.top-bar {
  background: #111;
  color: #fff;
  font-size: 13px;
  padding: 6px 0;
}

.top-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.top-container span {
  margin-right: 18px;
}

/* HEADER */
.header {
  background: #b01244;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

.logo span {
  font-weight: 600;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  margin: 0 14px;
  font-weight: 500;
}

.login-btn {
  background: #fff;
  border: none;
  padding: 7px 18px;
  border-radius: 6px;
  font-weight: 600;
  color: #b01244;
  cursor: pointer;
}

/* HERO */
.hero {
  background: #b01244;
  border-bottom-left-radius: 70px;
  border-bottom-right-radius: 70px;
  padding: 70px 0 90px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero-text h1 {
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
}

.hero-text h1 span {
  font-weight: 600;
}

.hero-text p {
  color: #fff;
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 28px;
}

.cta {
  background: #fff;
  color: #b01244;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  display: block;
  margin-left: auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image img {
    margin: 40px auto 0;
  }
}


.services {
  padding: 60px 0;
  text-align: center;
}

.services h2 {
  color: #c0003a;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 22px;
}

.service-tags {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.service-tags span {
  background: #c0003a;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}


.partners {
  background: #ffd6e2;
  padding: 40px 0 45px;
  text-align: center;
}

.partners h2 {
  color: #c0003a;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
}

.partner-logos {
  max-width: 1000px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

.partner-logos img {
  height: 40px;
  object-fit: contain;
  filter: grayscale(0);
}


.trust-wrapper {
  background: #ffd6e2;
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.trust-card {
  background: #b01244;
  width: 90%;
  max-width: 900px;
  border-radius: 40px;
  padding: 45px 40px 50px;
  color: #fff;
}

.trust-subtitle {
  text-align: center;
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 6px;
}

.trust-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 40px;
}

.trust-metrics {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.metric {
  display: flex;
  align-items: center;
  gap: 18px;
}

.metric .icon {
  width: 56px;
  height: 56px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.metric .text span {
  display: block;
  font-size: 15px;
  font-weight: 500;
}

.metric .text strong {
  font-size: 22px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 600px) {
  .trust-card {
    padding: 35px 25px 40px;
  }

  .trust-title {
    font-size: 20px;
  }
}


.whyus-section {
  background: #ffd6e2;
  padding: 70px 0 60px;
}

.whyus-header {
  text-align: center;
  margin-bottom: 30px;
}

.whyus-header .badge {
  display: inline-block;
  background: #c0003a;
  color: #fff;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.whyus-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
}

.whyus-card {
  background: #b01244;
  max-width: 1000px;
  margin: auto;
  border-radius: 40px;
  padding: 40px 45px;
}

.whyus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 35px;
}

.whyus-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.whyus-item .icon {
  width: 46px;
  height: 46px;
  background: #c0003a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.whyus-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.whyus-item p {
  font-size: 13px;
  line-height: 1.5;
  color: #333;
}

.whyus-footer {
  max-width: 1000px;
  margin: 35px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.whyus-footer p {
  font-size: 14px;
  color: #c0003a;
  font-weight: 600;
}

.join-btn {
  background: #c0003a;
  color: #fff;
  padding: 10px 22px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .whyus-grid {
    grid-template-columns: 1fr;
  }

  .whyus-footer {
    flex-direction: column;
    text-align: center;
  }
}


.journey-section {
  padding: 70px 0 80px;
  text-align: center;
  background: #fff;
}

.journey-title {
  font-size: 22px;
  font-weight: 700;
  color: #c0003a;
  margin-bottom: 40px;
}

.journey-steps {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

.journey-step {
  width: 150px;
}

.circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 6px;
  margin: auto;
  background: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.step-title {
  font-size: 14px;
  font-weight: 600;
  margin: 12px 0 6px;
}

.step-label {
  display: inline-block;
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 14px;
  color: #fff;
  font-weight: 600;
}

/* Color Variants */
.red { background: #c0003a; }
.blue { background: #2f80ed; }
.orange { background: #f2994a; }
.green { background: #27ae60; }
.navy { background: #1f3c88; }
.purple { background: #9b51e0; }

/* Responsive */
@media (max-width: 768px) {
  .journey-step {
    width: 140px;
  }
}


.feedback-section {
  padding: 80px 0 90px;
  background: #fff;
  text-align: center;
}

.feedback-title {
  color: #c0003a;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 45px;
}

.feedback-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.feedback-card {
  border: 3px solid #c0003a;
  border-radius: 22px;
  padding: 22px 20px 26px;
  background: #fff;
  width: 300px;
  text-align: left;
}

.feedback-card.main {
  width: 360px;
  transform: scale(1.05);
}

.feedback-card.small {
  opacity: 0.95;
}

.stars {
  color: #f4c430;
  font-size: 14px;
  margin-bottom: 10px;
}

.profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.profile img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.profile h4 {
  font-size: 14px;
  font-weight: 700;
}

.feedback-card p {
  font-size: 13px;
  line-height: 1.55;
  color: #333;
}

/* Responsive */
@media (max-width: 900px) {
  .feedback-wrapper {
    flex-direction: column;
  }

  .feedback-card,
  .feedback-card.main {
    width: 90%;
    transform: none;
  }
}
.footer {
  background: #b01244;
  color: #fff;
}

.footer-main {
  padding: 60px 0 45px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-logo span {
  font-weight: 600;
}

.footer-col p {
  font-size: 13.5px;
  line-height: 1.6;
  opacity: 0.95;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
  font-size: 13.5px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  opacity: 0.95;
}

.footer-socials {
  margin-top: 14px;
}

.footer-socials a {
  display: inline-block;
  margin-right: 10px;
  background: #fff;
  color: #b01244;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  font-weight: 600;
  text-decoration: none;
}

/* Bottom Bar */
.footer-bottom {
  background: #8f0e35;
  padding: 12px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials a {
    margin: 0 6px;
  }
}
