 
    body { margin:0; font-family: Arial, sans-serif; }

    /* Header */
    .header {
      display:flex; justify-content:space-between; align-items:center;
      background:#0066cc; padding:10px 20px; color:#fff;
    }
    .header .logo { font-size:20px; font-weight:bold; }
    .header .auth { display:flex; gap:15px; align-items:center; }
    .header .auth a { color:#fff; text-decoration:none; font-weight:bold; }
    .header .auth a:hover { text-decoration:underline; }
    .header .auth img { width:35px; height:35px; border-radius:50%; }

   
/* Main Menu */
nav {
  background:#004080;
  overflow-x:auto;
}
nav ul {
  list-style:none; margin:0; padding:0;
  display:flex; flex-wrap:nowrap; justify-content:center;
}
nav ul li { flex:0 0 auto; }
nav ul li a {
  display:block; padding:12px 20px; color:#fff; text-decoration:none;
  white-space:nowrap;
}
nav ul li:hover { background:#0059b3; }

    /* Slider */
    .slider {
      position:relative; overflow:hidden;
      max-width:100%; height:450px;
    }
    .slides {
      display:flex; transition:transform 0.5s ease-in-out;
    }
    .slide {
      min-width:100%; box-sizing:border-box; position:relative;
    }
    .slide img {
      width:100%; height:450px; object-fit:cover; cursor:pointer;
    }
    .caption {
      position:absolute; top:50%; left:50%;
      transform:translate(-50%, -50%);
      background:rgba(0,0,0,0.6);
      color:#fff; padding:20px; border-radius:8px;
      text-align:center;
    }
    .caption h3 { margin:0 0 10px; font-size:20px; }
    .caption a {
      display:inline-block; padding:10px 20px;
      background:#0066cc; color:#fff; text-decoration:none;
      border-radius:5px; font-weight:bold;
    }
    .caption a:hover { background:#0059b3; }
    /* Subscribe */
    .subscribe { background:#f2f2f2; padding:20px; text-align:center; }
    .subscribe input[type=email] { padding:10px; width:250px; max-width:80%; }
    .subscribe button { padding:10px 20px; background:#0066cc; color:#fff; border:none; cursor:pointer; }

    /* Middle Container */
    .middle {
  display:flex;
  flex-wrap:wrap;
  padding:20px;
  gap:20px;
}

/* Equal halves */
.middle .left, .middle .right {
  flex:1;
  min-width:280px;
  display:flex;
  flex-direction:column;
  justify-content:center; /* vertical centering */
  align-items:center;     /* horizontal centering */
  text-align:center;
  padding:20px;
  box-sizing:border-box;
 
  border-radius:8px;
}

/* Bullet list styling */
.features {
  list-style:none;
  padding:0;
  margin:20px 0;
}
.features li {
  margin-bottom:10px;
  font-size:16px;
  color:#004080;
   text-align:left;
}
.features li::before {
  content:"✔ ";
  color:green;
  font-weight:bold;
 
}

/* Buttons */
.btn {
  display:inline-block;
  margin-top:15px;
  padding:10px 20px;
  background:#0066cc;
  color:#fff;
  text-decoration:none;
  border-radius:5px;
  font-weight:bold;
}
.btn:hover { background:#0059b3; }

/* Responsive stacking */
@media (max-width:768px) {
  .middle {
    flex-direction:column;
  }
  .middle .left, .middle .right {
    width:100%;
  }
}




.journey {
  text-align: center;
  padding: 40px 20px;
  background: #f2f2f2;
  width: 90%;
  box-sizing: border-box;
}

.journey h2 {
  color: #0066cc;
  font-size: 2rem;
  margin-bottom: 30px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* auto responsive */
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.stat-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
}

.stat-card h3 {
  color: #004080;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.stat-card p {
  font-size: 1.6rem;
  font-weight: bold;
  color: #0066cc;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #0066cc;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #004080;
}

/* Tablet adjustments */
@media (max-width: 1024px) {
  .journey h2 {
    font-size: 1.8rem;
  }
  .stat-card {
    padding: 20px;
  }
}

/* Mobile adjustments */
@media (max-width: 500px) {
  .journey h2 {
    font-size: 1.5rem;
  }
  .stat-card {
    width: 97%;
    padding: 18px;
  }
  .stat-card img {
    width: 50px;
    height: 50px;
  }
  .stat-card p {
    font-size: 1.3rem;
  }
}


.we-support {
  
  margin: auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 0px;
   width:97.5%;
}

.we-support h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #0066cc;
}

.support-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.support-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 350px;
  text-align: center;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.support-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

.support-card h3 {
  margin: 10px 0 5px;
  font-size: 18px;
  color: #333;
}

.support-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.support-card a {
  display: inline-block;
  padding: 8px 12px;
  background: #ccc;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.support-card a:hover {
  background: #004080;
}


.more-btn-container {
  text-align: center;
  margin-top: 20px;
}

.more-btn {
  padding: 10px 20px;
  background: #0066cc;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.more-btn:hover {
  background: #004080;
}

@media (max-width: 768px) {
  .support-grid {
    flex-direction: column;
    align-items: center;
  }
  .support-card {
    width: 90%;
  }
}

   

    /* Footer */
    .footer { background:#004080; color:#fff; padding:40px 20px; }
    .footer-container {
      display:flex; flex-wrap:wrap; justify-content:space-between;
      max-width:1200px; margin:auto;
    }
    .footer-col { flex:1; min-width:220px; margin:15px; }
    .footer-col h3 {
      margin-bottom:15px; font-size:18px; border-bottom:2px solid #0066cc; padding-bottom:5px;
    }
    .footer-col ul { list-style:none; padding:0; margin:0; }
    .footer-col ul li { margin-bottom:8px; }
    .footer-col ul li a { color:#fff; text-decoration:none; }
    .footer-col ul li a:hover { text-decoration:underline; }
    .footer-col p { font-size:14px; line-height:1.5; }
    .footer-bottom {
      text-align:center; margin-top:20px; border-top:1px solid #0066cc; padding-top:10px;
      font-size:14px;
    }

    /* Responsive */
    @media (max-width:768px) {
      .middle { flex-direction:column; }
      .middle .right { display:none; }
      .footer-container { flex-direction:column; align-items:flex-start; }
      .footer-col { width:100%; }
    }
