/* Global styles */
body {
  background-color: #ffffff;
  color: #050e0c;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  margin: 20px 70px 10px;
}

a {
  color: #ffffff;
  text-decoration: none;
}

.logo-section {
  padding: 20px;
}


/* Header styles */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  background-color: rgba(5, 14, 12, 0.02);
  padding: 10px;
}
nav {
  display: flex;
  align-items: flex-end;
  margin: 0 20px;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
nav ul li {
  
  margin-right: 20px;
}

nav ul li a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #050e0c;
  color: #ffffff;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-decoration: none;
  font-weight: bold;
}


.contact-button, .alternative-button {
  padding: 10px 20px;
  background-color: #cc5801;
  color: #ffffff;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.contact-button:hover, .alternative-button:hover {
  background-color: #0b8c0a;
}

.alternative-button {
  margin-top: 20px;
}

/* Hero section styles */
.hero {
  text-align: center;
  padding: 40px;
  background-image: url('Payoneer.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero h1 {
  font-size: 36px;
  color: #ffffff; /* Added white text color */
  font-weight: bold;
  text-shadow: 1px 1px 0 #050e0c, -1px -1px 0 #050e0c, 1px -1px 0 #050e0c, -1px 1px 0 #050e0c; /* Surrounding line with color #050e0c */

}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ffffff; /* Added white text color */
  font-weight: bold;
  text-shadow: 1px 1px 0 #050e0c, -1px -1px 0 #050e0c, 1px -1px 0 #050e0c, -1px 1px 0 #050e0c; /* Surrounding line with color #050e0c */

}
.contact-form-section {
  color: #050e0c;
  padding: 0 200px;
  display: flex;
  flex-direction: column;
}

.contact-info {
  text-align: left;
  color: #050e0c;
  
}

.contact-info h2 {
  margin-bottom: 10px;
}

.contact-info p {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.contact-form {
  text-align: center;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.contact-form button[type="submit"] {
  padding: 10px 20px;
  background-color: #050e0c;
  color: #ffffff;
  border-radius: 5px;
  border: none;
  transition: background-color 0.3s ease;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  margin-bottom: 40px;
}

.contact-form button[type="submit"]:hover {
  background-color: #0b8c0a;
}

/* Calculator section styles */
.calculator {
  text-align: center;
  color: #ffffff;
  padding: 10px 0;
  background-color: rgba(5, 14, 12, 0.9);
  border-radius: 5px;
  border: none;
  margin: 0 50px;
}

.calculator h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.input-container,
.output-container {
  margin-bottom: 20px;
}

.input-container label,
.output-container label {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
}

.input-container input {
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  border: none;
}

.output-container span {
  font-size: 24px;
  font-weight: bold;
}

/* Features section styles */
.features {
  display: flex;
  justify-content: space-around;
  padding: 50px 0;
}

.feature {
  text-align: center;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 300px;
}

.feature img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}


.feature h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.feature p {
  font-size: 16px;
}

/* Footer styles */
footer {
  background-color: #050e0c;
  color: #ffffff;
  padding: 20px;
  font-size: 14px;
}
.copyright {
  text-align: center;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
}

.quick-links {
  margin-right: 20px;
  flex-basis: 50%;
  text-align: left;
  font-size: 16px;
}
.quick-links li {
  display: inline-block;
  margin-right: 10px;
}
.quick-links ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.quick-links a {
  text-decoration: none;
  color: #ffffff;
}
.quick-links ul li {
  margin-bottom: 5px;
}
.quick-links ul li a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.quick-links ul li a:hover {
  color: #cc5801;
}
.mpesa-section {

  flex-basis: 50%;
}

.mpesa-section p {
  margin: 0;
  text-align: left;
  font-size: 16px;
}

.mpesa-section img {
  margin-top: 20px;
  width: 100%;
  height: auto;
  text-align: left;
}
nav ul li a:hover,
nav ul li.active a {
  background-color: #0b8c0a;
  color: #ffffff; /* Added white text color on hover */
}
footer .copyright {
  font-size: 12px;
}
footer div:last-child {
  margin-top: 10px;
  text-align: center;
}
nav ul li.dropdown {
  position: relative;
}

nav ul li.dropdown:hover .dropdown-menu {
  display: block;
}

nav ul li.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #cc5801; /* Changed to orange */
  padding: 10px;
  border-radius: 5px;
  min-width: 150px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

nav ul li.dropdown .dropdown-menu li {
  margin-bottom: 5px;
  padding: 10px;
}

nav ul li.dropdown .dropdown-menu li a {
  color: #ffffff; /* Changed to green */
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.whywetop, .how-it-works {
  margin-top: 40px;
}

.how-it-works {
  margin-left: 100px;
}
.whywetop, .how-it-works h2 {
  text-align: center;
  font-size: 28px;
  color: #cc5801;
}

.comment {
  display: flex;
  margin-bottom: 20px;
}
.space {
  margin-bottom: 40px;
}
.rating {
  margin-right: 10px;
}

.stars {
  color: orange;
}

.name {
  color: green;
}

.comment-text {
  color: #050e0c;
}
.testimonial {
  margin-left: 100px;
}


.how-it-works .step {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.how-it-works .step h3 {
  font-size: 20px;
  margin-left: 20px;
  margin-right: 10px;
  color: #0b8c0a;
}
.gradient-heading {
  background: linear-gradient(to right, orange, #0b8c0a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* Added standard property /
  color: transparent; / Added to support browsers that don't understand background-clip */
  margin: 0;
  }


.how-it-works .step:before {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background-color: orange;
  border-radius: 50%;
  margin-right: 20px;
  text-align: center;
  line-height: 80px;
  background-size: cover;
  background-position: center;
}

.how-it-works .step:nth-child(1):before {
  background-image: url("number-1.png");
}

.how-it-works .step:nth-child(2):before {
  background-image: url("number-2.png");
}

.how-it-works .step:nth-child(3):before {
  background-image: url("number-3.png");
}

.how-it-works .step:nth-child(4):before {
  background-image: url("number-4.png");
}


@media (max-width: 768px) {
  .how-it-works .step {
    flex-direction: column;
    align-items: flex-start;
  }

  .how-it-works .step h3 {
    margin: 10px 0;
  }

  .how-it-works .step:before {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.chat-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: green;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.chat-icon img {
  width: 100px;
  height: 100px;
}

.avatar {
  width: 70px; /* Adjust the width as desired */
  height: 70px; /* Adjust the height as desired */
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-section {
  display: flex;
  align-items: center;
}

.logo {
  height: 40px;
  margin-right: 10px;
}
.logo-section h1 {
  margin: 0;
  font-size: 28px;
  font-weight: bold;
}
.gradient-line {
  margin-top: 10px;
  height: 2px;
  background: linear-gradient(to right, rgba(255, 165, 0, 0.1), rgba(0, 128, 0, 0.8), rgba(255, 165, 0, 0.1));
}
.logo-link {
  color: #050e0c;
  display: flex;
  cursor: pointer;
  align-items: center;
  text-decoration: none;
}
.quick-links p {
  text-decoration: underline;
}

.menu-drop {
  display: none; /* Hide the .menu-drop initially */
  transition: all 3s ease; /* Add transition for smooth animation */
}

.menu-drop.visible {
  display: block; /* Show the .menu-drop when it has the "visible" class */
}

.menu-drop {
  background-color: rgba(204, 88, 1, 0.9);
}

.menu-drop-item {
  width: 100%;
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
  box-sizing: border-box;
  border: 1px solid #ffffff;
}

.menu-drop-item:hover {
  background-color: #0b8c0a;
}

.notification-success {
  display: block;
  background-color: #28a745;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 16px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  margin: 20px auto;
  width: 75%;
}

.contact-us-alternatives:hover {
  color: #0b8c0a;
  text-decoration: underline;
  font-weight: bold;
  cursor: pointer;
}