/* Global Reset */
* {
  box-sizing: border-box;
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Base Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

/* ---------- */
/* Full-Width Fixed Navbar (Header) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  /* box-shadow: 0 2px 6px rgba(0,0,0,0.1); */
  z-index: 999;
}
.nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between; /* remains unchanged */
  padding: 0 20px;
  align-items: center;
  margin-top: 16px;
}
.nav-left {
  display: flex;
  align-items: center;
}
.logo-img {
  width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-right ul {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
}
.nav-right ul li {
  position: relative;
  line-height: 65px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-style: unset;
}

/* Arrow gap */
.nav-right ul li .fas,
.nav-right ul li .dropdown-arrow {
  margin-left: 8px;
}
.nav-right ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  line-height: 25px;
}

/* Improved Dropdowns */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  min-width: 180px;
  border-radius: 8px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}
.nav-right ul li:hover > .dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-right ul li .dropdown a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #000;
  font-weight: normal !important;
  transition: background 0.3s ease, color 0.3s ease;
  font-style: initial;
}
.nav-right ul li .dropdown a:hover {
  background: #000;
  color: #fff;
}
/* Expertise Dropdown Heading */
.nav-right ul li .dropdown h4 {
  font-size: 18px;
  font-weight: normal !important;
  margin: 0 20px 2px;
  padding-bottom: 0;
  border-bottom: 1px solid #8de794;
}

/* Nested Dropdown */
.sub-dropdown {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  min-width: 180px;
  border-radius: 8px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1100;
}
.by-industry:hover + .sub-dropdown,
.hrms-parent:hover + .sub-dropdown,
.sub-dropdown:hover {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ---------- */
/* Navbar Buttons */
/* Always Display as Icon Buttons */
/* Remove text-based styles and force icons for all screen sizes */
.nav-buttons {
  display: flex;
  gap: 10px;
}
.nav-buttons a {
  width: 30px;
  height: 30px;
  padding: 5px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-decoration: none;
  /* Hide any text (even if present in HTML) */
  color: transparent;
  font-size: 0;
  /* Optional: set a fallback background color if images fail */
  background-color: #00c389;
}
.nav-buttons a.login {
  background-image: url('/images/job-seeker-icon.png');
}
.nav-buttons a.signup {
  background-image: url('/images/employer-icon.png');
}

/* (Optional additional small-screen tweaks)
@media (max-width: 600px) {
  .nav-buttons a {
    width: 28px;
    height: 28px;
    padding: 4px;
  }
}
*/

/* ---------- */
/* Hamburger (Mobile) */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ---------------- Responsive Navbar ---------------- */
@media (max-width: 820px) {
  .nav-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .nav-left {
    flex: 0 0 auto;
    text-align: left;
  }
  .logo-img {
    max-width: 150px;
    height: auto;
    object-fit: contain;
  }
  .nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
  }
  .hamburger {
    display: block;
    position: absolute;
    left: 5px;
    top: 19px;
    margin: 0;
  }
  /* Mobile Menu (toggle via JS) */
  #nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    position: absolute;
    top: 70px;
    left: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  #nav-menu.active {
    display: flex;
  }
  #nav-menu li {
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
    width: 100%;
  }
  /* Stack dropdowns vertically */
  #nav-menu li .dropdown,
  #nav-menu li .sub-dropdown {
    position: static;
    box-shadow: none;
    border-radius: 0;
    margin-top: 5px;
  }
  #nav-menu li .dropdown a,
  #nav-menu li .sub-dropdown a {
    padding: 10px 20px;
  }
}

/* ---------- */
/* Main Content (Centered Container) */
.main-content {
  margin-top: 40px; /* Offset fixed navbar */
  padding: 10px 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- */
/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  flex-wrap: wrap;
}
.text {
  width: 40%;
}
.text h3 {
  font-size: 40px;
  margin-bottom: 40px;
  margin-top: 40px;
}
.text h3 .bold-text {
  font-weight: bold;
}
.text h3 .normal-text {
  font-weight: normal;
}
.text p {
  font-size: 22px;
  color: #3f3a3a;
  margin-bottom: 90px;
  line-height: 1.6;
}
.text a.signup {
  margin-top: 20px;
}
.image-container {
  width: 50%;
  position: relative;
  top: 20px;
}
.main-image {
  width: 100%;
  border-radius: 10px;
}

/* Responsive Adjustments for Hero */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 20px 0;
  }
  .text {
    width: 90%;
    margin: 0 auto 20px;
    text-align: center;
  }
  .text h3 {
    font-size: 16px;
  }
  .text p {
    font-size: 10px;
  }
  .image-container {
    width: 90%;
    margin: 0 auto;
    top: 0;
  }
}

/* ---------- */
/* Clients Section & Owl Carousel */
.clients-section {
  text-align: center;
  padding: 60px 0;
  overflow: hidden;
}
.carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-bottom: 40px;
}
.client-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
}
.owl-dots {
  display: none !important;
}
.client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.client-logo {
  width: 200px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 10px;
}
.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.client-logos::-webkit-scrollbar {
  display: none;
}
.see-testimonials {
  display: inline-block;
  margin-top: 40px;
  color: #00c389;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 40px;
}
.see-testimonials:hover {
  color: #00c389;
}

/* ---------- */
/* Search Partner Section */
.search-partner-section {
  background-color: #00c389;
  border-radius: 40px;
  text-align: center;
  padding: 40px 20px;
  box-shadow: 0px 10px 25px rgba(0,0,0,0.2);
  margin-bottom: 90px;
}
.search-partner-section h2 {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 30px;
}
.search-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
.search-box {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.search-box label {
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 5px;
}
.search-box input {
  width: 200px;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.15);
  outline: none;
}
.search-button {
  background-color: #000;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}
.search-button:hover {
  background-color: #333;
}
.use-location {
  color: #ffffff;
  font-size: 14px;
  margin-top: 20px;
}

/* ---------- */
/* Support Section */
.sup-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  gap: 20px;
  margin-bottom: 60px;
}
.sup {
  width: 50%;
}
.sup h1 {
  font-size: 30px;
  color: #333;
  margin-bottom: 20px;
}
.sup p {
  font-size: 19px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}
.sup-button {
  background-color: #00c389;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
}
.sup-button:hover {
  background-color: #f0f0f0;
}
.supp-image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sup-image {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
}

/* ---------- */
/* Expertise Section */
.ex-container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  gap: 10px;
  margin-bottom: 40px;
}
.ex {
  width: 40%;
}
.ex h1 {
  font-size: 30px;
  color: #333;
  margin-bottom: 20px;
}
.ex p {
  font-size: 19px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}
.ex-button {
  background-color: #00c389;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
  align-items: left;
}
.ex-button:hover {
  background-color: #f0f0f0;
}

/* ---------- */
/* ORBITAL ANIMATION */
.orbit-container {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.center-logo img {
  width: 100%;
  height: 20%;
  object-fit: cover;
  border-radius: 0;
}
.orbit-path {
  position: absolute;
  border-radius: 50%;
  border: 3px dashed rgba(134,130,130,0.4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.inner-path {
  width: 250px;
  height: 250px;
}
.outer-path {
  width: 350px;
  height: 350px;
}
.inner-orbit {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  animation: rotate 12s linear infinite;
}
.outer-orbit {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  animation: rotate 18s linear infinite;
}
.inner-orbit .dot,
.outer-orbit .dot {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.inner-orbit .dot:nth-child(1) { background-color: #2ecc71; top: 0; left: 50%; transform: translateX(-50%); }
.inner-orbit .dot:nth-child(2) { background-color: #27ae60; top: 50%; right: 0; transform: translateY(-50%); }
.inner-orbit .dot:nth-child(3) { background-color: #16a085; bottom: 0; left: 50%; transform: translateX(-50%); }
.inner-orbit .dot:nth-child(4) { background-color: #1abc9c; top: 50%; left: 0; transform: translateY(-50%); }
.outer-orbit .dot:nth-child(1) { background-color: #48c9b0; top: 0; left: 50%; transform: translateX(-50%); }
.outer-orbit .dot:nth-child(2) { background-color: #58d68d; top: 50%; right: 0; transform: translateY(-50%); }
.outer-orbit .dot:nth-child(3) { background-color: #2ecc71; bottom: 0; left: 50%; transform: translateX(-50%); }
.outer-orbit .dot:nth-child(4) { background-color: #1abc9c; top: 50%; left: 0; transform: translateY(-50%); }
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.clarity-image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ---------- */
/* Your Data Section */
.your-data-container {
  display: flex;
  justify-content: flex-start; /* Changed from space-between */
  align-items: center;
  background-color: #ffffff;
  padding: 60px 8%;
  height: 450px;
}
.your-data-content {
  width: 55%;
  text-align: left;
}
.your-data-content h2 {
  font-size: 30px;
  font-weight: bold;
  color: #000000;
}
.your-data-content p {
  font-size: 19px;
  color: #666;
  line-height: 1.5;
  margin-top: 20px;
}
.read-more-btn {
  display: inline-block;
  background-color: #00c389;
  color: #ffffff;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  transition: background 0.3s;
}
.read-more-btn:hover {
  background-color: #333333;
}
.your-data-image {
  width: 50%;
  height: auto;
  border-radius: 10px;
  margin-left: auto;
  display: block;
  padding: 30px;
}

/* ---------- */
/* Testimonials Section */
/* Owl Carousel Testimonials */
.testimonial-carousel .testimonial-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 11px;
  width: 200px;          /* Fixed width for each card */
  height: 250px;         /* Fixed height for each card */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
}
.testimonial-carousel .owl-item {
  padding: 0 10px;  /* Uniform gap between items */
}
.testimonial-carousel .testimonial-card:hover {
  transform: scale(1.02);
}
.testimonial-carousel .testimonial-card p {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #555;
  height: 120px;  /* Fixed height for text area */
  overflow: hidden;
}
.testimonial-carousel .user-info {
  margin-top: 10px;
}
.testimonial-carousel .user-info h4 {
  font-size: 16px;
  margin: 0;
  color: #333;
}
.testimonial-carousel .user-info p {
  font-size: 12px;
  color: #777;
  margin: 0;
}
/* Navigation Buttons for Testimonials */
.testimonial-navigation {
  text-align: center;
  margin-top: 20px;
}
.testimonial-navigation button {
  background: #00c389;   /* Base background color */
  border: none;
  color: #fff;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 10px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.testimonial-navigation button:hover {
  background: #005f47;
  transform: scale(1.1);
}

/* ---------- */
/* Full-Width Footer */
.full-footer {
  width: 100%;
  background: #111111;
  color: #ffffff;
  padding: 30px 0;
  font-family: Arial, sans-serif;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 20px;
}
.footer-section {
  flex: 1;
  padding: 10px;
}
.logo-section {
  flex: 0.8;
  display: flex;
  align-items: flex-start;
}
.logo-section img {
  max-width: 180px;
  height: auto;
}
.footer-section h4 {
  font-size: 18px;
  margin-bottom: 10px;
  border-bottom: 2px solid #ffcc00;
  display: inline-block;
  padding-bottom: 5px;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin: 8px 0;
}
.footer-section ul li a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 14px;
}
.footer-section ul li a:hover {
  color: #ffcc00;
}
.footer-bottom {
  width: 100%;
  background: #000000;
  color: #bbbbbb;
  border-top: 1px solid #333333;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  font-size: 14px;
}
.footer-bottom-links a {
  color: #bbbbbb;
  text-decoration: none;
  margin-left: 15px;
  transition: color 0.3s;
}
.footer-bottom-links a:hover {
  color: #ffffff;
}

/* ---------- */
/* Responsive Adjustments */
@media (max-width: 768px) {
  /* Navbar adjustments */
  .navbar { padding: 15px 20px; }
  .nav-container { flex-direction: row; justify-content: space-between; align-items: center; }
  .nav-left { width: auto; margin-right: 10px; }
  .nav-right { width: auto; display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
  .hamburger { display: block; position: absolute; left: 5px; top: 28px; margin: 0; }
  #nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    position: absolute;
    top: 70px;
    left: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  #nav-menu.active {
    display: flex;
  }
  #nav-menu li {
    padding: 10px 20px;
    border-bottom: 1px solid #ffffff;
    width: 100%;
  }
  /* Stack dropdowns vertically */
  #nav-menu li .dropdown,
  #nav-menu li .sub-dropdown {
    position: static;
    box-shadow: none;
    border-radius: 0;
    margin-top: 5px;
  }
  #nav-menu li .dropdown a,
  #nav-menu li .sub-dropdown a {
    padding: 10px 20px;
  }
  
  /* Hero adjustments */
  .hero {
    flex-direction: column;
    padding: 20px 0;
  }
  .text {
    width: 90%;
    margin: 0 auto 20px;
    text-align: center;
  }
  .text h3 {
    font-size: 22px;
    text-align: center;
  }
  .text p {
    font-size: 16px;
    text-align: center;
  }
  .image-container {
    width: 90%;
    margin: 0 auto;
    top: 0;
  }
  /* Clients Section */
  .client-logos {
    justify-content: center;
    padding-left: 90px;
  }
  .client-logos {
    width: 200px;
    height: 160px;
  }
  /* Search Section */
  .search-row {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .search-box input, .search-button {
    width: 100%;
    max-width: 300px;
  }
  
  /* Support & Expertise Sections */
  .sup-container, .ex-container {
    flex-direction: column;
    padding: 0;
    text-align: center;
    width: 100%;
  }
  .sup, .ex {
    width: 100%;
    max-width: none;
  }
  .sup h1, .ex h1 {
    font-size: 24px;
    width: 100%;
    max-width: none;
    white-space: normal;
    padding-bottom: 8px;
  }
  .sup p, .ex p {
    font-size: 14px;
    width: 100%;
    max-width: none;
    white-space: normal;
    padding-bottom: 20px;
  }
  .supp-image, .clarity-image {
    width: 100%;
    max-width: 500px;
    height: auto;
  }
  
  /* Your Data Section */
  .your-data-container {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding: 0;
    width: 100%;
  }
  .your-data-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 20px;
  }
  .your-data-content p {
    width: 100%;
    max-width: none;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
  }
  .your-data-image {
    width: 100%;
    max-width: 700px;
    height: auto;
  }
  .read-more-btn {
    display: inline-block;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 6px;
    background-color: #00c389;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease-in-out;
  }
  .read-more-btn:hover {
    background-color: #0056b3;
  }
  
  /* Footer adjustments for small screens */
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .logo-section {
    width: 100%;
    text-align: left;
    margin-bottom: 15px;
  }
  .footer-section {
    width: 100%;
    margin-bottom: 10px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .footer-bottom-links {
    margin-top: 10px;
  }
  
  /* Additional adjustments for logo responsiveness */
  .nav-left {
    flex: 1;
    text-align: right;
  }
  .logo-img {
    max-width: 150px;
    height: auto;
    object-fit: contain;
  }
}
@media (max-width: 768px) {
  .supp-image,
  .sup-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ---------- */
/* About Header Styling */
.about-header {
  background: linear-gradient(135deg, #00c389, #00c389);
  text-align: center;
  padding: 2.5rem 0;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: bold;
}

/* About Content Container */
.about-content {
  max-width: 800px;
  margin: 2rem auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  animation: fadeIn 0.6s ease-in-out;
}
.about-content h2 {
  color: #00c389;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}
.about-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 1.5rem;
}
.about-content ul {
  list-style: none;
  padding: 0;
  text-align: left;
}
.about-content ul li {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.about-content ul li::before {
  content: "✅";
  position: absolute;
  left: 0;
  color: #00c389;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 850px) and (max-width: 1300px) {
  .nav-left {
    flex: 0 0 250px;
    min-width: 250px;
  }
  .logo-img {
    width: 100%;
    max-width: none;
    height: auto;
    object-fit: contain;
  }
}

/* ---------- */
/* Connect With Us Today Button */
.button-connect {
  background-color: #00c389; /* Green background */
  color: #ffffff;            /* White text */
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.button-connect:hover {
  background-color: #005f47; /* Darker green on hover */
}
