   * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
     font-family: 'Poppins', sans-serif;
   }


   .menu-toggle {
     display: none;
     font-size: 30px;
     cursor: pointer;
     color: white;
   }

   #navbar {
     padding: 1rem;
     color: white;
   }

   .nav-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
   }

   .nav-links {
     display: flex;
     gap: 1.5rem;
   }

   .nav-links a,
   .get-started {
     color: white;
     text-decoration: none;
     font-weight: 500;
   }

   .get-started {
     background-color: #176B87;
     padding: 0.5rem 1rem;
     border-radius: 8px;
   }

   @media (max-width: 768px) {
     .nav-content {
       flex-direction: column;
       align-items: flex-start;
     }

     .nav-links {
       flex-direction: column;
       gap: 1rem;
       width: 100%;
     }

     .get-started {
       align-self: flex-start;
       margin-top: 1rem;
     }
   }

   .hero {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     align-items: center;
     padding: 100px 50px;
     background: linear-gradient(to right, #041c32, #064663);
   }

   .hero-text {
     max-width: 50%;
   }

   .hero-text h2 {
  font-size: 20px; /* ka yar 48px */
  line-height: 1;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 14px; /* ka yar 18px */
  margin-bottom: 30px;
  color: #d1d1d1;
}


   .buttons a {
     padding: 12px 25px;
     border-radius: 6px;
     margin-right: 15px;
     text-decoration: none;
     font-weight: bold;
     font-size: 16px;
     cursor: pointer;
   }

   .download {
     background-color: #00C897;
     color: #000;
   }

   .signup {
     background-color: #176B87;
     color: #fff;
     border: 1px solid #ccc;
   }

   .hero-image img {
     max-width: 350px;
     border-radius: 10px;
   }

   .stats {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-around;
     padding: 60px 20px;
     background-color: #064663;
     text-align: center;
   }

   .stat {
     flex: 1;
     margin: 20px;
   }

   .stat h3 {
     font-size: 28px;
     color: #00C897;
     margin-bottom: 10px;
   }

   .stat p {
     font-size: 18px;
     color: #ccc;
   }

   .main-section {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 40px;
     padding: 60px 20px;
     background: #fff;
     color: #333;
     scroll-behavior: smooth;
   }

   .welcome {
     background: #f1f5f9;
     padding: 40px;
     border-radius: 10px;
     margin-bottom: 40px;
   }

   .welcome h1 {
     color: #003366;
     margin-bottom: 20px;
     font-size: 28px;
   }

   .welcome p {
     font-size: 16px;
     color: #333;
   }

   .info {
     max-width: 400px;
     display: flex;
     flex-direction: column;
     gap: 20px;
   }

   .info div {
     background: #f1f5f9;
     padding: 20px;
     border-radius: 8px;
   }

   .info i {
     font-size: 24px;
     color: #003366;
   }

   .info h4 {
     margin-top: 10px;
     margin-bottom: 10px;
     color: #003366;
   }

   .phone-container img {
     width: 250px;
     border-radius: 10px;
   }

   .scroll-top {
     position: fixed;
     bottom: 30px;
     right: 30px;
     background: #176B87;
     color: white;
     border: none;
     padding: 12px 16px;
     border-radius: 50%;
     font-size: 20px;
     cursor: pointer;
     display: none;
     z-index: 1000;
   }

   /* Modal */
   .modal {
     display: none;
     position: fixed;
     z-index: 2000;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     overflow: auto;
     background-color: rgba(0, 0, 0, 0.7);
   }

   .modal-content {
     background-color: #fff;
     color: #000;
     margin: 10% auto;
     padding: 30px;
     border-radius: 10px;
     width: 90%;
     max-width: 400px;
     text-align: center;
     position: relative;
   }

   .modal-content h2 {
     margin-bottom: 20px;
   }

   .modal-content input {
     width: 100%;
     padding: 12px;
     margin: 10px 0;
     border: 1px solid #ccc;
     border-radius: 5px;
   }

   .modal-content button {
     padding: 10px 20px;
     background-color: #176B87;
     border: none;
     color: #fff;
     border-radius: 5px;
     cursor: pointer;
   }

   .close {
     position: absolute;
     top: 10px;
     right: 20px;
     font-size: 30px;
     font-weight: bold;
     color: black;
     cursor: pointer;
   }

   @media (max-width: 768px) {
     .menu-toggle {
       display: block;
     }

     nav {
       display: none;
       flex-direction: column;
       align-items: flex-start;
       background-color: #04293A;
       padding: 10px 30px;
       width: 100%;
     }

     nav.show {
       display: flex;
     }

     nav a,
     nav button {
       margin: 10px 0;
       width: 100%;
     }

     .hero {
       flex-direction: column;
       text-align: center;
       padding: 60px 20px;
     }

     .hero-text,
     .hero-image {
       max-width: 100%;
     }

     .hero-image img {
       margin-top: 30px;
     }

     .stats {
       flex-direction: column;
       gap: 40px;
     }
   }

   .values {
     background-color: #f9f9f9;
     padding: 60px 20px;
     text-align: center;
   }

   .values h2 {
     font-size: 32px;
     margin-bottom: 40px;
     color: #003366;
   }

   .values-container {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 30px;
   }

   .value-card {
     background: #fff;
     border: 1px solid #ddd;
     border-radius: 10px;
     padding: 30px 20px;
     max-width: 300px;
     flex: 1;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease;
   }

   .value-card:hover {
     transform: translateY(-5px);
   }

   .value-card .icon {
     font-size: 40px;
     color: #00C897;
     margin-bottom: 20px;
   }

   .value-card h3 {
     font-size: 22px;
     margin-bottom: 15px;
     color: #003366;
   }

   .value-card p {
     font-size: 16px;
     color: #555;
   }

   /* Responsive */
   @media (max-width: 768px) {
     .values-container {
       flex-direction: column;
       align-items: center;
     }
   }

   .steps {
     padding: 60px 20px;
     background-color: #f9f9f9;
     text-align: center;
     scroll-behavior: smooth;

   }

   .steps .subtitle {
     color: #00C897;
     font-weight: 600;
     text-transform: uppercase;
     margin-bottom: 10px;
   }

   .steps h2 {
     font-size: 28px;
     color: #003366;
     margin-bottom: 40px;
   }

   .steps-container {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 40px;
     align-items: flex-start;
   }

   .steps-list {
     flex: 1 1 300px;
     max-width: 400px;
   }

   .step {
     display: flex;
     align-items: flex-start;
     margin-bottom: 30px;
     text-align: left;
   }

   .step .icon {
     font-size: 30px;
     color: #00C897;
     margin-right: 15px;
   }

   .step .content h3 {
     font-size: 20px;
     margin-bottom: 5px;
     color: #003366;
   }

   .step .content p {
     font-size: 15px;
     color: #555;
   }

   .steps-image {
     flex: 1 1 300px;
     text-align: center;
   }

   .steps-image img {
     max-width: 85%;
     border-radius: 20px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
   }

   /* Responsive */
   @media (max-width: 768px) {
     .steps-container {
       flex-direction: column;
       align-items: center;
     }

     .step {
       justify-content: center;
       text-align: center;
     }

     .step .icon {
       margin-right: 0;
       margin-bottom: 10px;
     }
   }

   header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 20px 50px;
     background-color: #04293A;
     position: sticky;
     top: 0;
     z-index: 1000;
     color: #fff;
   }

   .logo {
     display: flex;
     align-items: center;
   }

   .logo img {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     object-fit: cover;
     margin-right: 15px;
   }

   .logo h1 {
     font-size: 1.5rem;
     color: #fff;
   }


   .container {
     max-width: 1200px;
     margin: auto;
     padding: 2rem;
   }

   .header-scroll {
     overflow: hidden;
     width: 100%;
     padding: 10px 0;
   }

   .header-icons {
     display: flex;
     gap: 2rem;
     width: max-content;
     animation: scrollIcons 20s linear infinite;
   }

   .header-icons img {
     height: 40px;
   }

   @keyframes scrollIcons {
     0% {
       transform: translateX(0%);
     }

     100% {
       transform: translateX(-50%);
     }
   }

   .content {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: space-between;
   }

   .mockup {
     flex: 1 1 350px;
     text-align: center;
   }

   .mockup img {
     border-radius: 20px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
     max-width: 100%;
     height: auto;
   }

   .features {
     flex: 1 1 500px;
     padding: 1rem;
   }

   .features h2 {
     font-size: 2rem;
     margin-bottom: 1rem;
   }

   .feature-item {
     margin-bottom: 1.5rem;
   }

   .feature-item h4 {
     margin: 0.4rem 0;
     color: #027368;
   }



   .header-scroll {
     overflow: hidden;
     width: 100%;
     padding: 10px 0;
     border-radius: 12px;
     margin-bottom: 2rem;
   }

   .header-icons {
     width: 100%;
   }

   .icons-track {
     display: flex;
     gap: 2rem;
     width: max-content;
     /* MUHIIM: si scroll u shaqeeyo */
     animation: scrollIcons 30s linear infinite;
   }

   .icons-track img {
     height: 40px;
     width: auto;
     filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.1));
     transition: transform 0.3s ease;
   }

   .icons-track img:hover {
     transform: scale(1.1);
   }

   @keyframes scrollIcons {
     from {
       transform: translateX(0%);
     }

     to {
       transform: translateX(-50%);
     }
   }


   /* Existing styles for .content, .mockup, .features, etc. stay unchanged */



   .countries-section {
     background-color: #f9fdfb;
     padding: 4rem 2rem;
     font-family: 'Segoe UI', sans-serif;
   }

   .countries-container {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 3rem;
     align-items: flex-start;
   }

   .countries-text h4 span {
     display: block;
     color: #027368;
     font-weight: 700;
     font-size: 1rem;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     margin-bottom: 1rem;
   }

   .countries-text p {
     font-size: 1.05rem;
     margin: 1rem 0;
     color: #333;
     line-height: 1.6;
   }

   .countries-text .note {
     font-size: 0.95rem;
     color: #444;
     font-style: italic;
   }

   .points {
     list-style: none;
     padding: 0;
     margin-top: 1rem;
   }

   .points li {
     margin-bottom: 0.5rem;
     color: green;
     font-weight: 500;
     font-size: 1rem;
   }

   .countries-cards {
     display: grid;
     grid-template-columns: 1fr;
     gap: 1rem;
     background: #e9f1f7;
     padding: 1.5rem;
     border-radius: 12px;
   }

   .country-card {
     background: white;
     border-radius: 10px;
     padding: 1rem;
     display: flex;
     align-items: center;
     gap: 1rem;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
     transition: transform 0.3s ease;
   }

   .country-card:hover {
     transform: translateY(-3px);
   }

   .country-card img {
     width: 50px;
     height: 35px;
     object-fit: cover;
     border-radius: 5px;
   }

   .country-card h5 {
     margin: 0;
     font-size: 1.1rem;
     color: #111;
   }

   .country-card p {
     margin: 0.3rem 0 0;
     font-size: 0.95rem;
     color: #555;
   }

   @media screen and (max-width: 992px) {
     .countries-container {
       grid-template-columns: 1fr;
     }

     .countries-cards {
       grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     }
   }



   .faq-section {
     background-color: #fff;
     padding: 4rem 2rem;
     font-family: 'Segoe UI', sans-serif;
   }

   .faq-container {
     display: flex;
     flex-wrap: wrap;
     max-width: 1200px;
     margin: auto;
     gap: 2rem;
   }

   .faq-text {
     flex: 1 1 40%;
   }

   .faq-text small {
     color: #2ca58d;
     font-weight: 600;
     font-size: 0.85rem;
     text-transform: uppercase;
   }

   .faq-text h2 {
     font-size: 2rem;
     margin: 1rem 0 0.5rem;
     color: #111;
   }

   .faq-text h2 span {
     color: #027368;
   }

   .faq-text p {
     color: #444;
     margin: 0.5rem 0;
     font-size: 1rem;
   }

   .faq-text .support-text {
     margin-top: 1rem;
   }

   .faq-button {
     margin-top: 0.8rem;
     padding: 0.6rem 1.2rem;
     background-color: #027368;
     color: #fff;
     border: none;
     border-radius: 6px;
     cursor: pointer;
     transition: background 0.3s ease;
   }

   .faq-button:hover {
     background-color: #025b56;
   }

   .faq-items {
     flex: 1 1 55%;
     display: flex;
     flex-direction: column;
     gap: 1rem;
   }

   .faq-items details {
     background: #f8f9fa;
     padding: 1rem;
     border-radius: 8px;
     cursor: pointer;
     border: 1px solid #ddd;
   }

   .faq-items summary {
     font-weight: bold;
     font-size: 1.05rem;
     color: #027368;
     cursor: pointer;
   }

   .faq-items p {
     margin-top: 0.5rem;
     font-size: 0.95rem;
     color: #333;
   }


   .container {
     max-width: 900px;
     margin: auto;
     background: #fff;
     padding: 40px;
     box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
     border-radius: 10px;
     scroll-behavior: smooth;
   }

   h1,
   h2 {
     color: #027368;
   }

   ul {
     margin-left: 1.5rem;
   }




   .contact-section {

     padding: 60px 20px;
     font-family: 'Poppins', sans-serif;
   }

   .contact-container {
     max-width: 1000px;
     margin: auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 2rem;
     background: #fff;
     padding: 40px;
     border-radius: 12px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
   }

   .contact-form h2 {
     font-size: 28px;
     color: #003366;
     margin-bottom: 20px;
   }

   .contact-form form {
     display: flex;
     flex-direction: column;
     gap: 15px;
   }

   .contact-form input,
   .contact-form textarea {
     padding: 12px;
     border: 1px solid #ccc;
     border-radius: 6px;
     font-size: 16px;
     font-family: 'Poppins', sans-serif;
   }

   .contact-form textarea {
     resize: vertical;
     min-height: 120px;
   }

   .contact-form button {
     padding: 12px;
     background-color: #027368;
     color: white;
     border: none;
     border-radius: 6px;
     cursor: pointer;
     transition: background 0.3s ease;
   }

   .contact-form button:hover {
     background-color: #025b56;
   }

   .contact-info {
     display: flex;
     flex-direction: column;
     justify-content: center;
     gap: 15px;
   }

   .contact-info h3 {
     color: #003366;
     font-size: 22px;
   }

   .contact-info p {
     font-size: 16px;
     color: #555;
   }

   .contact-info i {
     color: #027368;
     margin-right: 10px;
     font-size: 20px;
   }

   /* Responsive */
   @media screen and (max-width: 768px) {
     .contact-container {
       grid-template-columns: 1fr;
       padding: 20px;
     }
   }

   .social-icons {
     display: flex;
     justify-content: center;
     gap: 15px;
     margin-top: 20px;
     flex-wrap: wrap;
   }

   .social-icons a {
     color: white;
     background-color: rgba(255, 255, 255, 0.1);
     width: 45px;
     height: 45px;
     display: flex;
     justify-content: center;
     align-items: center;
     border-radius: 10px;
     font-size: 18px;
     text-decoration: none;
     transition: background-color 0.3s;
   }

   .social-icons a:hover {
     background-color: rgba(255, 255, 255, 0.2);
   }