/* Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  margin: 0;
  padding: 0;
}

/* Header and Logo */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #f4a300;
}

.logo {
  display: flex;
  align-items: center;
  width: 300px;
}

.logo img {
  height: 60px;
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
}

.logo-text {
  font-size: 24px;
  font-weight: bold;
  white-space: nowrap;
}

.logo-text strong:first-child {
  color: red;
}

.logo-text strong:last-child {
  color: blue;
}

/* Navigation */
nav a {
  margin: 0 10px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  padding: 8px 12px;
}

nav a:hover {
  background: black;
  color: white;
}

/* Auth Buttons */
.auth-buttons a {
  margin-left: 10px;
  background: black;
  color: white;
  text-decoration: none;
  padding: 6px 10px;
}

/* Partners Carousel */
.partners-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin: 40px 0 20px;
}


@keyframes dotPulse {
  0%, 100% { background: #ccc; }
  10%, 90% { background: #007bff; }
}

/* Content */
#content {
  padding: 20px;
  min-height: 200px;
  background: #f9f9f9;
  text-align: center;
}

/* Footer */
footer {
  display: flex;
  justify-content: space-around;
  background: #e6e6e6;
  padding: 20px;
  font-size: 14px;
}

footer div {
  max-width: 200px;
}

footer h4 {
  margin-bottom: 10px;
}

footer a {
  display: block;
  text-decoration: none;
  color: #000;
  margin-bottom: 5px;
}

.copyright {
  background: #f4a300;
  text-align: center;
  padding: 10px;
  font-weight: bold;
}

/* Mobile Menu */
.menu-toggle {
  font-size: 18px;
  cursor: pointer;
  color: white;
  background: black;
  padding: 10px;
  border-radius: 5px;
}

.side-menu {
  position: absolute;
  right: 20px;
  top: 60px;
  width: 250px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: none;
  z-index: 999;
}

.side-menu p {
  margin: 10px 0;
}

/* Login Button */
.login-btn {
  background-color: orange;
  color: white;
  border: none;
  padding: 10px 16px;
  width: 100%;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.social-icons img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* WhatsApp Help Button */
.whatsapp-help-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.help-tooltip {
  position: absolute;
  right: 60px;
  bottom: 10px;
  background: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: black;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Dropdown Container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content Hidden by Default */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  z-index: 1;
}

/* Style for Submenu Links */
.dropdown-content a {
  color: black;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
}

/* Show Submenu on Hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Highlight on Hover */
.dropdown-content a:hover {
  background-color: #f4a300;
  color: white;
  padding: 10px 14px;
}

/*Welcome page*/

.welcome-split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 2px 20px;
  background-color: #f4f6f8;
  font-family: 'Segoe UI', sans-serif;
}

.welcome-content {
  flex: 1 1 500px;
  max-width: 600px;
  padding: 2px;
}

.welcome-content h1 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #333;
}

.welcome-content .brand {
  color: #007b5e;
}

.welcome-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.welcome-content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.welcome-content ul li {
  margin: 10px 0;
  font-size: 16px;
  color: #444;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #007b5e;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #005c46;
}

.welcome-image {
  flex: 1 1 400px;
  text-align: center;
  padding: 20px;
}

.welcome-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.forgot-password {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.9em;
  color: #1a73e8; /* Dark gray for better readability */
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.forgot-password:hover {
  color: #ff9800; /* Match your login button color */
  text-decoration: underline;
}
/* Welcome section */
.welcome-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Intro */
.welcome-intro {
  text-align: center;
  margin-bottom: 30px; /* tighter gap */
}

.welcome-intro h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #111; /* high contrast for "Welcome to" */
  letter-spacing: 0.5px;
}

.welcome-intro h1 .brand {
  color: #007B46; /* deep green (your brand accent) */
  font-weight: 900;
}

.welcome-intro h1::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #007B46; /* underline in brand color */
  margin: 10px auto 0;
  border-radius: 2px;
}


.welcome-intro p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.5;  /* reduced line spacing */
  margin: 6px auto;  /* small gap instead of big space */
  max-width: 850px;
}

/* Split content */
.welcome-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 25px; /* smaller gap between text and image */
}

/* Text content */
.welcome-content {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

.welcome-content p {
  margin: 8px 0; /* reduced spacing */
}

.welcome-content ul {
  margin: 12px 0;
  padding: 0;
  list-style: none;
}

.welcome-content ul li {
  margin-bottom: 8px; /* tighter list */
  font-size: 1.02rem;
}

/* Image */
.welcome-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Mobile adjustments */
@media (max-width: 900px) {
  .welcome-split {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .welcome-image {
    order: -1; /* image first */
  }

  .welcome-content ul {
    text-align: left;
    display: inline-block;
  }
}



