/* General Body and Page Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.container {
  margin-top: 40px;
  margin-bottom: 40px;
}

.top-bar {
    background: linear-gradient(to right, #65d6b4, #45b3d7);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    color: white;
}
 nav {
   background:transparent;
   box-shadow:none;

}
.connect-text {
    font-size: 14px;
}

.social-icons a {
    color: white;
    margin-left: 10px;
    text-decoration: none;
    font-size: 18px;
}

.social-icons a:hover {
    color: #e0e0e0;
}

.menu-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 59px;
    margin-right: 10px;
}

.brand-name {
    font-weight: bold;
    color: #2a2a2a;
}

.tagline {
    display: block;
    font-size: 12px;
    color: gray;
}

.nav-menu {
    flex-grow: 1;
display:flex;
flex-direction: row-reverse;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-links a:hover {
    color: #65d6b4;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

button {
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.sign-up {
    background-color: #65d6b4;
    color: white;
}

.log-in {
    background-color: white;
    border: 1px solid #65d6b4;
    color: #65d6b4;
}

button:hover {
    opacity: 0.9;
}

footer {
  background-color: #607D8B;
  color: white;
  padding: 20px 0;
  text-align: center;
  margin-top: 40px;
}

/* Section Styles */
.section {
  padding: 40px 20px;
  margin-bottom: 40px;
  background-color: #f5f5f5;
  border-radius: 8px;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
}

/* List Styles for Services Section */
ul {
  list-style-type: none;
  padding: 0;
}

ul li {
  margin-bottom: 15px;
}

/* Card and Content Section Styles */
.card {
  margin-bottom: 30px;
}

.content-text {
  margin-bottom: 30px;
  margin-left: 10px;
}

.menu-mobile{
  color: black;
}

.sidenav-trigger{

}



/* About Us Section Styles */


.about-us-section .card-content h5 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 20px;
}

.about-us-section .card-content p {
  font-size: 1rem;
  color: #555;
}

.about-us-section .card .card-content i.material-icons {
  font-size: 3rem;
  color: #2a9d8f; /* Icon color */
  margin-bottom: 10px; /* Space between icon and text */
}

.about-us-section .card {
  margin-bottom: 20px;
}

.about-us-section .card-title {
  font-size: 1.25rem;
  background-color: rgba(0, 0, 0, 0.5); /* Dark background for the card title */
  color: white;
  text-align: center;
  padding: 10px;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .about-us-section .row {
    display: block;
  }
  .about-us-section .col {
    margin-bottom: 20px;
  }
}