  /* Modern General Setup */
  body {
    /* Upgrading from Arial to modern, sleek system fonts */
    font-family:
      system-ui,
      -apple-system,
      BlinkMacSystemFont,
      'Segoe UI',
      Roboto,
      sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6; /* Softer, modern off-white */
    color: #444;
    line-height: 1.6;
  }

  /* Navbar Styling */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 15px 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); /* Softer shadow */
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .nav-logo {
    height: 50px; /* This locks the layout height so the navbar stays thin */
    width: auto;
    display: block;
    transform: scale(1.8); /* This zooms in the logo. Change 1.8 to make it bigger or smaller */
  }

  .nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center; /* <--- This forces everything onto the same center line */
    gap: 40px;
  }

  .nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
  }

  .nav-links li a:hover {
    color: #0056b3;
  }

  /* Dropdown Menu */
  /* Dropdown Menu */
  .dropdown {
    position: relative;
    padding: 10px 0; /* Keeps the safe hover bridge active */
  }

  /* Update this block to fix the cutoff */
  .dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    right: 0; /* This pulls the menu inward so it doesn't get cut off */
    left: auto; /* Removes the old left alignment */
    background-color: #fff;
    min-width: 250px;
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 100;
    border-radius: 12px;
    overflow: hidden;
    transform: translateY(-10px);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      visibility 0.3s ease;
  }

  /* Add this NEW block for your Contact Us button */
  .nav-contact-btn {
    background-color: #0056b3;
    color: #fff !important; /* Forces the text to be white */
    padding: 10px 24px;
    border-radius: 30px;
    transition:
      background-color 0.2s,
      transform 0.2s;
  }

  .nav-contact-btn:hover {
    background-color: #003d82;
    transform: translateY(-2px);
  }

  .dropdown-content a {
    color: #555;
    padding: 14px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition:
      background 0.2s,
      color 0.2s,
      padding-left 0.2s;
  }

  /* Removes the border from the last item */
  .dropdown-content a:last-child {
    border-bottom: none;
  }

  .dropdown-content a:hover {
    background-color: #f8fcfb;
    color: #0056b3;
    padding-left: 25px; /* Tiny modern indent effect on hover */
  }

  /* Triggers the slide and fade when hovering */
  .dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  /* Hero Section */
  .hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: white;
  }

  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    margin-top: 0;
    font-weight: 800;
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 1.25rem;
    max-width: 750px;
    margin: 0 auto;
    opacity: 0.9;
  }

  /* --- THE MODERN FADING CARDS --- */
  .services-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 80px 20px;
  }

  .service-card {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 24px; /* Big, modern rounded corners */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06); /* Soft, floating shadow */
    width: 100%;
    max-width: 1000px;
    min-height: 380px;
    overflow: hidden;
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
  }

  /* Subtle lift effect when hovering over the card */
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  }

  /* The Fading Image Layer */
  .card-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%; /* The image takes up 60% of the card, fading out halfway */
    height: 100%;
    background-size: cover;
    background-position: center;

    /* THE MAGIC FADE: Makes the image turn transparent as it goes right */
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
  }

  /* Reversing the fade for the middle card */
  .service-card.reverse .card-bg-image {
    left: auto;
    right: 0;
    /* Fades from right to left */
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
  }

  /* Temporary solid colors until you add photos */
  .placeholder-color-1 {
    background-color: #a1c4fd;
  }
  .placeholder-color-2 {
    background-color: #ffecd2;
  }
  .placeholder-color-3 {
    background-color: #cfd9df;
  }

  /* The Text Content Layer */
  .card-content {
    position: relative;
    width: 45%;
    margin-left: 50%; /* Pushes text to the right side */
    padding: 40px;
    z-index: 2; /* Ensures text stays on top of the image */
  }

  /* Reversing text position for the middle card */
  .service-card.reverse .card-content {
    margin-left: 5%; /* Pushes text to the left side */
  }

  .card-content h3 {
    color: #111;
    margin-top: 0;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
  }

  .card-content p {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 30px;
  }

  /* Modern Learn More Button */
  .learn-more-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #f0f4f8;
    color: #0056b3;
    text-decoration: none;
    border-radius: 30px; /* Pill shape */
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
  }

  .learn-more-btn:hover {
    background-color: #0056b3;
    color: #fff;
  }

  /* Bottom CTA Section */
  .cta-section {
    text-align: center;
    padding: 60px 20px 100px;
  }

  .whatsapp-btn {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: transform 0.2s;
  }

  .whatsapp-btn:hover {
    transform: scale(1.05);
  }

  /* Floating WhatsApp Button */
  .floating-wa-btn {
      position: fixed;
      bottom: 30px; /* Distance from the bottom of the screen */
      right: 30px;  /* Distance from the right of the screen */
      width: 60px;
      height: 60px;
      background-color: #25D366; /* WhatsApp Green */
      border-radius: 50%; /* Makes it a perfect circle */
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); /* Soft green glow */
      z-index: 1000; /* Ensures it stays on top of all other elements */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  /* Controls the image inside the button */
  .floating-wa-btn img {
      width: 35px;
      height: 35px;
      object-fit: contain;
  }

  /* Pop animation when the user hovers over it */
  .floating-wa-btn:hover {
      transform: scale(1.1) translateY(-5px);
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  }

  /* --- CONTACT PAGE FORM STYLING --- */
  .contact-page-container {
      padding: 60px 20px 100px;
      display: flex;
      justify-content: center;
  }

  .contact-form-card {
      background: #fff;
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 15px 35px rgba(0,0,0,0.05);
      width: 100%;
      max-width: 600px;
      display: flex;
      flex-direction: column;
      gap: 25px;
  }

  .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
  }

  .form-group label {
      font-weight: 600;
      color: #333;
      font-size: 0.95rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
      width: 100%;
      padding: 15px;
      border: 2px solid #eaeaea;
      border-radius: 10px;
      font-size: 1rem;
      font-family: inherit;
      color: #444;
      transition: all 0.3s ease;
      box-sizing: border-box;
  }

  /* Enables resizing only vertically for the paragraph box */
  .form-group textarea {
      resize: vertical;
      min-height: 120px;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
      outline: none;
      border-color: #0056b3;
      box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
  }

  .form-submit-btn {
      width: 100%; /* Makes the button full width inside the card */
      margin-top: 10px;
      font-size: 1.2rem;
  }

  /* Checkout Page Specifics */
  .section-title {
      text-align: center;
      font-size: 2rem;
      color: #0056b3;
      margin-bottom: 40px;
  }

  /* Roadmap / Timeline */
  .roadmap-container {
      max-width: 600px;
      margin: 0 auto;
      position: relative;
      padding-left: 50px;
  }

  .roadmap-step {
      position: relative;
      padding-bottom: 40px; /* Space between steps */
  }

  /* The Dotted Line */
  .roadmap-step::before {
      content: "";
      position: absolute;
      left: -32px; /* Center under the circle */
      top: 30px;
      bottom: 0;
      border-left: 3px dotted #0056b3;
  }

  .roadmap-step:last-child::before {
      display: none; /* No line after the last step */
  }

  .roadmap-circle {
      position: absolute;
      left: -48px;
      width: 35px;
      height: 35px;
      background: #0056b3;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      z-index: 2;
  }

  .roadmap-content h3 {
      margin: 0 0 10px 0;
      font-size: 1.3rem;
      color: #333;
  }

  /* Pricing Grid */
  .pricing-grid {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      padding: 0 20px;
  }

  .price-card {
      background: white;
      padding: 30px;
      border-radius: 20px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      flex: 1;
      min-width: 250px;
      max-width: 300px;
  }

  .price-card.featured {
      border: 2px solid #0056b3;
      transform: scale(1.05);
  }

  .price-value {
      font-size: 1.5rem;
      font-weight: 800;
      color: #0056b3;
      margin: 15px 0;
  }

  .fee-tag {
      background: #e3f2fd;
      color: #0056b3;
      display: inline-block;
      padding: 5px 15px;
      border-radius: 20px;
      font-weight: bold;
      margin-top: 10px;
  }

  /* Shipping Grid */
  .shipping-grid {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      max-width: 1000px;
      margin: 0 auto;
  }

  .ship-box {
      background: #fff;
      padding: 20px;
      border-radius: 15px;
      text-align: center;
      flex: 1;
      min-width: 200px;
      border-top: 5px solid #0056b3;
  }

  .ship-box h3 { margin-top: 0; }
  .ship-box .eta { display: block; color: #666; font-size: 0.9rem; }
  .ship-box .rate { display: block; font-weight: bold; font-size: 1.2rem; margin-top: 10px; color: #2ecc71; }

  /* Calculator Styling */
  .calculator-card {
      background: #fff;
      max-width: 800px;
      margin: 0 auto;
      border-radius: 24px;
      display: grid;
      grid-template-columns: 1fr 1fr; /* Split into two columns */
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }

  .calc-inputs {
      padding: 40px;
      background: #f8f9fa;
  }

  .calc-results {
      padding: 40px;
      background: #0056b3;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
  }

  .result-item {
      display: flex;
      justify-content: space-between;
      margin-bottom: 15px;
      font-size: 1.1rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      padding-bottom: 10px;
  }

  .result-total {
      margin-top: 20px;
      text-align: right;
  }

  .result-total h2 {
      font-size: 2.5rem;
      margin: 10px 0 0;
  }

  .calc-note {
      font-size: 0.8rem;
      opacity: 0.7;
      margin-top: 20px;
  }

  /* Responsive adjustment for mobile */
  @media (max-width: 600px) {
      .calculator-card { grid-template-columns: 1fr; }
  }

  /* Forwarding Page Specifics */

/* The Warning Tag for Marking Code */
.warning-tag {
    display: inline-block;
    background-color: #fff3cd;
    color: #856404;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 10px;
    border-left: 4px solid #ffeeba;
}

/* Volumetric Rules Box */
.volume-rules-card {
    background-color: #f8fcfb;
    border: 2px solid #e0f0eb;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    text-align: center;
}

.volume-rules-card h3 {
    color: #e74c3c; /* A soft red/orange to grab attention */
    margin-top: 0;
}

.volume-formulas {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.formula-box {
    background: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 200px;
}

.formula-box strong {
    color: #0056b3;
    display: block;
    margin-bottom: 5px;
}

/* Top Up Page Specifics */
.live-rate-box {
    display: inline-block;
    background: #fff;
    padding: 20px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-top: 4px solid #0056b3;
    margin-bottom: 20px;
}

.live-rate-box span {
    color: #666;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.live-rate-box h2 {
    color: #0056b3;
    font-size: 2.5rem;
    margin: 5px 0 0 0;
}

.promo-banner {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
    color: #d63031;
    padding: 15px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 154, 158, 0.3);
}
