/* Navigation Bar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0a3d62;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
  }
  
  .nav-links ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  .nav-links ul li {
    margin-left: 20px;
  }
  
  .nav-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  
  .nav-links ul li a:hover {
    color: #ffd32a;
  }
  
  /* Mobile Menu Toggle */
  .menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      width: 100%;
      background-color: #0a3d62;
      position: absolute;
      top: 60px;
      left: 0;
    }
  
    .nav-links ul {
      flex-direction: column;
      text-align: center;
    }
  
    .nav-links ul li {
      margin: 10px 0;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .nav-links.active {
      display: block;
    }
  }

  




  /* Banner Section */
.banner {
    width: 100%;
    height: 75vh;
    background: url('images/banner-bg.jpg') center center / cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: #fff;
    overflow: hidden;
  }
  
  /* Overlay for better text readability */
  .banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
  }
  
  /* Content styling */
  .banner-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 20px;
  }
  
  .banner-content h1 {
    font-size: 2.4rem;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 700;
  }
  
  .banner-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 400;
  }
  
  .banner-btn {
    background-color: #ffd32a;
    color: #0a3d62;
    padding: 14px 35px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .banner-btn:hover {
    background-color: #ffcb05;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .banner {
      height: 70vh;
      background-position: center;
    }
  
    .banner-content h1 {
      font-size: 1.8rem;
    }
  
    .banner-content p {
      font-size: 1rem;
    }
  
    .banner-btn {
      padding: 12px 25px;
      font-size: 0.95rem;
    }
  }

  



  /* How It Works Section */
.how-it-works {
  background: linear-gradient(135deg, #f5f7fa, #e4f0e2);
  padding: 70px 20px;
  text-align: center;
}

.how-it-works h2 {
  font-size: 2.2rem;
  color: #0a3d62;
  margin-bottom: 15px;
  font-weight: 700;
}

.how-it-works .intro-text {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 1rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.step {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.step h3 {
  color: #27ae60;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .how-it-works h2 {
    font-size: 1.8rem;
  }
  .step {
    padding: 20px;
  }
}




/* Why Choose Us Section */
.why-choose-us {
  background: linear-gradient(135deg, #f0fff4, #e6f7ee);
  padding: 80px 20px;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.2rem;
  color: #0a3d62;
  font-weight: 700;
  margin-bottom: 15px;
}

.why-choose-us .intro-text {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.choose-item {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.choose-item .icon {
  font-size: 2.2rem;
  color: #27ae60;
  display: inline-block;
  margin-bottom: 12px;
}

.choose-item h3 {
  color: #27ae60;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.choose-item p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose-us h2 {
    font-size: 1.8rem;
  }
  .choose-item {
    padding: 20px;
  }
}




/* About Section */
.about-section {
  background: #fff;
  padding: 80px 20px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2.2rem;
  color: #0a3d62;
  margin-bottom: 15px;
  font-weight: 700;
}

.about-text p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 1rem;
}

.about-btn {
  display: inline-block;
  margin-top: 10px;
  background: #27ae60;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.about-btn:hover {
  background: #1e874b;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-btn {
    padding: 10px 20px;
  }
}





/* Current Rates Section */
.current-rates {
  background: #fff;
  padding: 70px 20px;
  text-align: center;
}

.current-rates h2 {
  font-size: 2.2rem;
  color: #0a3d62;
  margin-bottom: 10px;
}

.current-rates .note {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.rate-table-wrapper {
  overflow-x: auto;
}

.rate-table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: collapse;
}

.rate-table th,
.rate-table td {
  border: 1px solid #ddd;
  padding: 12px 15px;
  font-size: 1rem;
}

.rate-table th {
  background-color: #0a3d62;
  color: #fff;
}

.rate-table td {
  color: #333;
}

@media (max-width: 768px) {
  .current-rates h2 {
    font-size: 1.8rem;
  }
  .rate-table th, .rate-table td {
    padding: 10px 8px;
    font-size: 0.9rem;
  }
}







/* What We Collect Section */
.what-we-collect {
  background: #f9fafb;
  padding: 80px 20px;
  text-align: center;
}

.what-we-collect h2 {
  font-size: 2.2rem;
  color: #0a3d62;
  font-weight: 700;
  margin-bottom: 15px;
}

.what-we-collect .intro-text {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.collect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.collect-item {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collect-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.collect-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: #27ae60;
}

.collect-item h3 {
  font-size: 1.1rem;
  color: #27ae60;
  margin-bottom: 10px;
}

.collect-item p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .what-we-collect h2 {
    font-size: 1.8rem;
  }
  .collect-item {
    padding: 20px;
  }
}









/* FAQ Section */
.faq-section {
  background: #f8f9fa;
  padding: 70px 20px;
}

.faq-section h2 {
  text-align: center;
  color: #0a3d62;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
  color: #27ae60;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.faq-item p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section h2 {
    font-size: 1.8rem;
  }
  .faq-item {
    padding: 18px;
  }
}





/* Footer Section */
.site-footer {
  background: #0a3d62;
  color: #fff;
  padding-top: 60px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-about h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 10px;
}

.footer-about p {
  color: #dcdcdc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-size: 1.1rem;
  color: #27ae60;
  margin-bottom: 12px;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 8px;
}

.footer-links ul li a,
.footer-services ul li a {
  color: #dcdcdc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
  color: #27ae60;
}

.footer-contact p {
  margin-bottom: 8px;
  color: #dcdcdc;
  font-size: 0.95rem;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #27ae60;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding: 15px 20px;
  font-size: 0.9rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    text-align: center;
  }
  .social-icons {
    margin-top: 10px;
  }
}








/* SECTION TITLE */
.main-title {
  text-align: center;
  padding: 30px 10px;
  font-size: 28px;
  font-weight: bold;
}

/* CONTAINER */
.section-container {
  display: flex;
  gap: 20px;
  padding: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD DESIGN */
.card {
  background: #fff;
  width: 100%;
  max-width: 350px; /* responsive */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.card img {
  width: 100%;
  height: 250px; /* better for portrait images */
  object-fit: cover;
  object-position: center;
}

/* CONTENT */
.card-content {
  padding: 20px;
}

.card h3 {
  margin-top: 0;
  font-size: 20px;
  color: #222;
}

.card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background: #28a745;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
}

.btn:hover {
  background: #218838;
}

/* TABLET */
@media (max-width: 992px) {
  .card img {
    height: 220px;
  }
}

/* MOBILE */
@media (max-width: 768px){
  .section-container {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .card {
    max-width: 100%;
  }

  .card img {
    height: 200px;
  }

  .main-title {
    font-size: 22px;
  }

  .card h3 {
    font-size: 18px;
  }

  .card p {
    font-size: 13px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px){
  .card img {
    height: 180px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}