* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #F5F7FA;
  color: #1B1F23;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  background: white;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links a {
  margin: 0 15px;
  text-decoration: none;
  color: #1B1F23;
  font-weight: 500;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Header logo sizing */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;        /* same size as header */
  width: auto;         /* keeps aspect ratio */
  object-fit: contain;
  display: block;
}


.login {
  text-decoration: none;
  color: #1B1F23;
  font-weight: 500;
}

/* BUTTONS */
.btn-primary {
  background: #F5B400;
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.large {
  padding: 14px 28px;
  font-size: 16px;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #142C56, #0F2346);
  color: white;
  padding: 120px 0;
  text-align: center;
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
}

.hero h1 span {
  color: #F5B400;
}

.hero p {
  margin: 30px auto;
  max-width: 700px;
  font-size: 18px;
  opacity: 0.9;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.stats {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  gap: 80px;
}

.stats h3 {
  font-size: 28px;
  color: #F5B400;
}

.stats p {
  font-size: 14px;
  opacity: 0.8;
}
.hero{
  position: relative;
  overflow: hidden;     /* prevents extra space */
  padding-bottom: 120px; /* gives room for the wave */
}

.hero-wave{
  position: absolute;
  left: 0;
  bottom: -1px; /* kills the tiny gap line */
  width: 100%;
  line-height: 0;
  pointer-events: none;
}

.hero-wave svg{
  display: block;
  width: 100%;
  height: 140px; /* adjust curve height */
}


/* SERVICES SECTION */
.services {
  background: #F5F7FA;
  padding: 90px 0;
}

.section-label {
  text-align: center;
  color: #F5B400;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin-bottom: 14px;
}

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 14px;
}

.section-subtitle {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
  color: #6B7280;
  line-height: 1.7;
  font-size: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  background: #fff;
  border: 1px solid #E7ECF3;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #F2F5FA;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 10px;
}

.service-card p {
  color: #6B7280;
  line-height: 1.7;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 34px; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}
/* HOW IT WORKS */
.how-it-works {
  padding: 100px 20px;
  background: #F5F7FA;
  text-align: center;
}

.section-label {
  color: #F4B400;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-header h2 {
  font-size: 36px;
  margin: 15px 0;
  color: #0F172A;
}

.section-header p {
  color: #64748B;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step-card {
  background: #FFFFFF;
  padding: 40px 25px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #F4B400;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 20px;
}

.step-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.step-card h3 {
  margin-bottom: 15px;
  color: #0F172A;
}

.step-card p {
  font-size: 14px;
  color: #64748B;
}
@media (max-width: 992px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
/* DARK STATS SECTION */
.stats-dark {
  background: linear-gradient(135deg, #0F274F, #152E5C);
  padding: 70px 20px;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 38px;
  font-weight: 700;
  color: #F4B400; /* gold */
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
/* CTA SECTION (outer background) */
.cta-section {
  background: #F5F7FA;
  padding: 120px 20px;
}

/* Blue rounded container */
.cta-box {
  background: linear-gradient(135deg, #142C56, #0F2346);
  border-radius: 30px;
  padding: 80px 40px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Headline */
.cta-box h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

/* Paragraph */
.cta-box p {
  max-width: 650px;
  margin: 0 auto 40px auto;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* White outline button */
.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-outline-light:hover {
  background: #ffffff;
  color: #142C56;
}

.cta-box small {
  display: block;
  margin-top: 15px;
  color: rgba(255,255,255,0.6);
}
/* FOOTER (Exact clone style) */
.footer{
  background: #0f2a4d;              /* deep navy */
  color: rgba(255,255,255,.78);
  padding: 64px 0 28px;
}

.footer-inner{
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

/* Left brand */
.footer-brand .footer-logo{
  width: 72px;
  height: 56px;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  margin-bottom: 14px;
}
.footer-brand .footer-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.footer-desc{
  margin: 0 0 18px;
  line-height: 1.6;
  max-width: 320px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
}

.footer-contact{
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.footer-contact-item{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,.78);
  text-decoration: none;
}
.footer-contact-item:hover{
  color: #ffffff;
}
.footer-contact-item .icon{
  opacity: .9;
  width: 18px;
  text-align: center;
}

/* Columns */
.footer-cols{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.footer-col h4{
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.footer-col ul{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-col a{
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: 14px;
}
.footer-col a:hover{
  color: #ffffff;
}

/* Bottom line */
.footer-bottom{
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.footer-bottom-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-copy{
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}

.footer-loc{
  font-size: 13px;
  color: rgba(255,255,255,.62);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Responsive */
@media (max-width: 980px){
  .footer-inner{
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .footer-cols{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px){
  .footer-cols{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom-inner{
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Modal */
.modal-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 9999;
}

.modal-overlay.is-open{
  display: flex;
}

.modal-box{
  width: min(720px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  max-height: 85vh;
  overflow: auto;
}

.modal-close{
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

.modal-box h3{
  margin: 0 0 16px;
}

.modal-box label{
  display: block;
  margin: 12px 0 6px;
  font-weight: 600;
}

.modal-box input{
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dfe6f1;
  border-radius: 10px;
  outline: none;
}

.modal-box input:focus{
  border-color: #14315f;
}

.modal-actions{
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}
.modal-overlay.is-open{
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.modal-overlay{
  visibility: hidden;
  opacity: 0;
}

.modal-overlay.is-open{
  visibility: visible;
  opacity: 1;
}
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}
.modal-box h3 {
  margin-bottom: 15px;
}

.modal-box input[type="file"] {
  padding: 10px 0;
}
