html, body { 
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #333;
}

/* General Styles */
body {
  margin: 0;
  padding: 0;
  color: #333;
}

/* Header Styles */
/* Dropdown Button */
.dropbtn {
  background-color: #04AA6D;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: black;
}

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

/* Links inside the dropdown */
.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: white;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: black;}

header {
  background-color: #000;
  padding: 10px 20px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

header .logo img {
  width: 120px;
  object-fit: cover;
}

header ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 0;
  padding: 0;
}

header ul li a,
button {
  text-decoration: none;
  color: #fff;
  background-color: #000;
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

header ul li a:hover,
button:hover {
  background-color: #283231;
  color: #fff;
}

/* Share Button */
.share-btn {
  background-color: #fff;
  color: #000;
  border: none;
}

.share-btn:hover {
  background-color: #00c3a0;
  color: #000;
}

/* General Button Styles */
a.sign-up-btn, a.btn.sign-up {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #00c3a0;
  border-radius: 25px;
  text-align: center;
  transition: background-color 0.3s ease;
}

a.sign-up-btn:hover, a.btn.sign-up:hover {
  background-color: #008b6e;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  background-color: #f5f5f5;
}

.hero-slider {
  width: 50%;
  overflow: hidden;
}

.hero-slider .slides {
  display: flex;
}

.hero-image {
  width: 50%;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
}

/* Discover Section */
.discover {
  text-align: center;
  padding: 50px 20px;
  background-color: #fff;
}

.discover h2 {
  font-size: 24px;
  font-weight: bold;
  color: #000;
}

.testimonials {
  display: flex;
  gap: 20px;
  animation: moveContainer 24s infinite linear;
}

.testimonials blockquote {
  flex: 0 0 33%;
  padding: 20px;
  background-color: #d4f0ec;
  color: #333;
  text-align: left;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@keyframes moveContainer {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-250%);
  }
}

/* Key Features Section */
.key-features {
  text-align: center;
  padding: 30px 20px;
  background-color: #fff;
}

.key-features h3 {
  font-size: 20px;
  font-weight: bold;
  color: #000;
}

.features-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-bubble {
  background-color: #000;
  color: #00c3a0;
  border: 2px solid #00c3a0;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  width: 220px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-bubble:hover {
  transform: scale(1.05);
  background-color: #00c3a0;
  color: #fff;
}

/* Sign-Up Section */
.sign-up {
  padding: 30px 10px;
  text-align: center;
  background-color: #fff;
}

.sign-up-form {
  width: 90%;
  margin: 0 auto;
  padding: 15px;
}

.sign-up-form label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

.sign-up-form input,
.sign-up-form button {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  font-size: 13px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.sign-up-form input:focus {
  border-color: #00c3a0;
}

.sign-up-form button {
  background-color: #00c3a0;
  color: #fff;
  border: none;
  padding: 10px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.sign-up-form button:hover {
  background-color: #008b6e;
}

/* Gender Selection Section */
.gender-selection {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.gender-btn {
  padding: 8px 15px;
  font-size: 14px;
  font-weight: bold;
  color: #00c3a0;
  background-color: #fff;
  border: 2px solid #00c3a0;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gender-btn.active {
  background-color: black;
  color: #fff;
}

.gender-btn:hover {
  background-color: #e8f9f4;
  color: #00c3a0;
}

html, body { 
  overflow-x: hidden;
}

/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Header Styles */
/* General Header Styles */
header {
  background-color: #000; /* Black background */
  padding: 10px 20px; /* Thin and delicate padding */
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px; /* Center align header content */
  margin: 0 auto;
}

/* Logo */
header .logo img {
  display: flex;

  width: 120px; 
  
  object-fit: cover; /* Ensures no white background is visible */
}

/* Navigation Links and Buttons */
header ul {
  list-style: none;
  display: flex;
  gap: 20px; /* Space between links */
  align-items: center;
  margin: 0;
  padding: 0;
}

header ul li a,
button {
  text-decoration: none;
  color: #fff; /* White text */
  background-color: #000; /* Black background */
  padding: 5px 15px; /* Add padding for button-like appearance */
  border-radius: 50px; /* Rounded corners */
  font-weight: bold;
  font-size: 14px; /* Thin and delicate text */
  cursor: pointer;
  border: none; /* No border */
  transition: all 0.3s ease; /* Smooth hover effect */
}

header ul li a:hover,
button:hover {
  background-color: #283231; /* Teal background on hover */
  color: #fff; /* White text */
}

/* Share Button */
.share-btn {
  background-color: #fff; /* Always white */
  color: #000; /* Black text */
  border: none;
}

.share-btn:hover {
  background-color: #00c3a0; /* Slight gray on hover */
  color: #000; /* Black text */
}

/* General Button Styles */
a.sign-up-btn, a.btn.sign-up {
display: inline-block;
padding: 10px 20px;
text-decoration: none;
font-size: 16px;
font-weight: bold;
color: #fff; /* White text */
background-color: #00c3a0; /* Teal background */
border-radius: 25px; /* Rounded corners */
text-align: center;
transition: background-color 0.3s ease;
}

a.sign-up-btn:hover, a.btn.sign-up:hover {
background-color: #008b6e; /* Darker teal on hover */
}







/* Button Styles */
button {
  border: none;
  padding: 10px 20px;
  border-radius: 50px; /* Rounded shape */
  cursor: pointer;
  transition: all 0.3s ease; /* Smooth hover transition */
}

/* Teal Buttons */
.sign-up-btn, 
header ul li a {
  background-color: #000; /* Teal background */
  color: #fff; /* White text */
}

.sign-up-btn:hover, 
header ul li a:hover {
  background-color: #fff; /* Turns white on hover */
  color: #000; /* Text turns black on hover */
}

/* Share Button */
.share-btn {
  background-color: #fff; /* Always white */
  color: #000; /* Black text */
  font-weight: bold;
  border: 2px solid #e0e0e0; /* Optional border for "Share" button */
}

.share-btn:hover {
  background-color: #e0e0e0; /* Slightly darker on hover */
}


/* Hero Section */
.hero-new-image {
  width: 60%;
  padding-left: 20%;
}

.new-hero-text {
  text-align: center;
}

.hero-description-new {
  font-style: italic;
  padding-left: 10px;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 50px;
  padding-bottom: 10px;
  background-color: #f5f5f5;
}

.hero-slider {
  width: 50%;
  overflow: hidden;
  position: relative;
}

.hero-slider .slides {
  display: flex;
}

.hero-slider img {
  width: 100%;
}

.hero-image {
  display: flex;
  width: 70%;
  overflow: hidden;
  position: relative;
}

.hero-image img {
  width: 100%;
}

.image-change-button {
  width: 50%;
  padding-left: 50%;
  background-color: #f5f5f5;
  padding-bottom: 10px;
}

/* Discover Section */
.discover {
text-align: center;
padding: 50px 20px;
background-color: #fff; /* White background */
}

.discover h2 {
font-size: 24px;
font-weight: bold;
margin-bottom: 30px;
color: #000; /* Black text for heading */
}

.testimonials {
display: flex;
width: 100%;
gap: 20px; /* Space between testimonials */
animation: moveContainer 24s infinite linear; /* Infinite sliding effect */
}

.testimonials blockquote {
flex: 0 0 33%;  /* Each testimonial takes up 33% of the container */
font-style: italic;
background-color: #d4f0ec; /* Light teal background */
color: #333; /* Darker text for readability */
padding: 20px;
border-radius: 10px; /* Rounded corners */
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
text-align: left;
}

/* Duplicate the testimonials to create a smooth, infinite scrolling effect */
.testimonials::after {
  content: '';
  display: flex;
  width: 100%;
  gap: 20px;
  flex: 1;
}

@keyframes moveContainer {
  0% {
    transform: translateX(0); /* Start at the left edge */
  }
  100% {
    transform: translateX(-250%); /* Move completely to the left (twice the container's width) */
  }
}


/* Features Section */
.feature-change-button {
height: 50px;
background-color: black;
padding: 0 20px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.circle-button {
padding: 0 20px;
width: 40px;
height: 40px;
background-color: tan;
border: none;
border-radius: 50%;
cursor: pointer;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
transition: transform 0.2s ease;
}

.circle-button:hover {
transform: scale(1.1);
}

.circle-button:active {
transform: scale(0.95);
}

.circle-button.selected {
background-color: teal; /* Selected color */
}

.circle-button2 {
  padding: 0 20px;
  width: 40px;
  height: 40px;
  background-color: tan;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
  }
  
  .circle-button2:hover {
  transform: scale(1.1);
  }
  
  .circle-button2:active {
  transform: scale(0.95);
  }
  
  .circle-button2.selected {
  background-color: teal; /* Selected color */
  }

.features {
text-align: center;
padding: 50px 20px;
}

.features h2 {
font-size: 24px;
margin-bottom: 20px;
}

.feature-slide {
width: 100%;
overflow: hidden;
position: relative;
display: flex;
}

.feature-slide img {
width: 100%;
}

/* Mobile Slider */
.mobile-slider {
position: relative;
overflow: hidden;
max-width: 1200px;
margin: 0 auto;
}

.slides {
display: flex;
}

.slide {
min-width: 100%;
display: flex;
justify-content: center;
align-items: center;
}

.black-background {
background-color: #000; /* Black background */
color: #fff; /* Default white text */
padding: 50px 40px; /* Increase padding to make it larger */
border-radius: 10px; /* Rounded corners */
display: flex;
flex-direction: row; /* Keep images and text side by side */
align-items: center; /* Align content vertically */
justify-content: space-between; /* Space out images and text */
gap: 40px; /* Increase gap between elements */
min-height: 400px; /* Ensure a minimum height */
width: 100%; /* Expand to full container width */
}


.images img {
width: 150px;
height: auto;
border-radius: 10px;
}

/* Text Styling Inside Black Background */
.text {
text-align: left;
max-width: 400px;
}

.slide-description {
font-size: 18px;
font-weight: bold;
color: #fff; /* White font */
margin-bottom: 10px;
font-weight: bold;
}

.slide-text {
font-size: 14px;
color: #00c3a0; /* Teal font */
line-height: 1.6;
font-weight: bold;
}


/* Key Features Section */
.key-features {
text-align: center;
padding: 30px 20px;
background-color: #fff; /* White background for contrast */
}

.key-features h3 {
font-size: 20px;
font-weight: bold;
margin-bottom: 20px;
color: #000; /* Black text for the heading */
}

.features-grid {
display: flex;
justify-content: center;
flex-wrap: wrap; /* Ensures responsiveness */
gap: 20px; /* Space between bubbles */
}

.feature-bubble {
background-color: #000; /* Black background */
color: #00c3a0; /* Teal text */
border: 2px solid #00c3a0; /* Teal border */
border-radius: 15px; /* Rounded corners */
padding: 20px;
text-align: center;
width: 220px; /* Fixed width for bubbles */
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
transition: transform 0.3s ease; /* Hover effect */
}

.feature-bubble p {
  font-weight: bold;
}

.feature-bubble:hover {
transform: scale(1.05); /* Slightly enlarge on hover */
background-color: #00c3a0; /* Change to teal background */
color: #fff; /* White text on hover */
}


/* One Marketplace Section */
.one-marketplace {
padding: 50px 20px;
display: flex;
justify-content: center;
align-items: center;
gap: 40px; /* Space between the collage and text */
flex-wrap: wrap; /* Enable wrapping for smaller screens */
background-color: #fff; /* White background */
}

.one-marketplace .content {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap; /* Adjust layout for responsiveness */
gap: 40px;
max-width: 768px; /* Limit width of the section */
}

.one-marketplace .collage img {
max-width: 100%; /* Adjust collage size */
width: 100%;
height: auto;
border-radius: 10px; /* Rounded corners */
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.one-marketplace .text {
max-width: 100%; /* Limit the width of the text */
}

.one-marketplace h2 {
font-size: 48px;
font-weight: bold;
margin-bottom: 20px;
color: #000; /* Black text for heading */
}

.one-marketplace p {
font-size: 16px;
line-height: 1.6;
color: #333; /* Dark gray text for body */
font-weight: bold;
}

/* Waitlist Section */
.waitlist {
background-color: #f5f5f5; /* Light grey background */
text-align: center;
padding: 40px 20px; /* Add space around the section */
}

.waitlist h2 {
font-size: 20px;
font-weight: bold;
color: #000; /* Black text */
margin-bottom: 20px;
}

.buy-me-a-coffee {
  display: flex;
  align-items: center;
  gap: 20px; /* Adjust spacing between the image and text */
  padding: 20px;
}

.buy-me-a-coffee-image img {
  max-width: 100px; /* Adjust size of the image */
  height: auto; /* Maintain aspect ratio */
}

.buy-me-a-coffee-text {
  font-size: 18px; /* Adjust text size */
  color: #333; /* Adjust text color */
  margin: 0; /* Remove any default margin */
}

.buttons {
display: flex;
justify-content: center;
align-items: center;
gap: 20px; /* Space between buttons */
}

.btn {
font-size: 16px;
font-weight: bold;
padding: 10px 20px;
border: none;
border-radius: 25px; /* Rounded buttons */
cursor: pointer;
transition: background-color 0.3s ease, color 0.3s ease;
}

/* Sign Up Button */
.btn.sign-up {
background-color: #00c3a0; /* Teal background */
color: #fff; /* White text */
}

.btn.sign-up:hover {
background-color: #008b6e; /* Darker teal on hover */
}

/* Share Button */
.btn.share {
background-color: #fdeacb; /* Light beige background */
color: #000; /* Black text */
}

.btn.share:hover {
background-color: #f7d6a5; /* Darker beige on hover */
}

/* Note Below Buttons */
.waitlist .note {
font-size: 14px;
color: #333; /* Dark grey text */
margin-top: 20px;
}

.bottomOfPage {
  display: inline;
}

/* Footer Section */
.footer {
background-color: #000; /* Black background */
color: #fff; /* White text */
padding: 30px 20px;
text-align: center;
align-items: center;
}

.footer .logo img {
width: 40px; /* Adjust logo size */
height: auto;
align-items: center;
}

.footer .logo-text {
font-size: 20px; /* Adjust font size */
font-weight: bold; /* Bold text */
color: #00c3a0; /* Teal color to match the theme */
}


/* Footer Links */
.footer .links {
display: flex;
align-items: center;
text-align: center;
margin-top: 10px;
}

.links {
display: inline;
text-align: center;  
margin: auto;
width: 280px;
}

.footer .links ul {
list-style: none;
}

.footer .links ul li {
margin-bottom: 10px;
}

.footer .links ul li a {
color: #fff; /* White text for links */
text-decoration: none;
font-size: 14px;
}

.footer .links ul li a:hover {
color: #00c3a0; /* Teal color on hover */
}

/* Social Icons */
.footer .social-icons {
display: inline;
gap: 20px; /* Space between social icons */
align-items: center;
}

.footer .social-icons img {
width: 40px; /* Adjust icon size */
height: 40px;
border-radius: 50%; /* Circular icons */
transition: transform 0.3s ease; /* Hover effect */
margin-bottom: 20px;
}

.footer .social-icons img:hover {
transform: scale(1.1); /* Slight zoom on hover */
}











/* Sign-Up Section */
.sign-up {
text-align: center;
background-color: #fff; /* White background */
}

.sign-up-form {
width: 90%; /* Still responsive for smaller screens */
margin: 0 auto;
padding: 15px; /* Smaller padding inside the form */
box-sizing: border-box;
}

.sign-up-form label {
display: block;
font-size: 14px; /* Slightly smaller font size */
font-weight: bold;
margin: 10px 0 5px;
color: #333;
}

.sign-up-form input,
.sign-up-form button {
width: 100%;
padding: 8px; /* Smaller padding for inputs */
margin-bottom: 15px; /* Reduced spacing between fields */
font-size: 13px; /* Smaller input text */
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
}

.sign-up-form input:focus {
border-color: #00c3a0; /* Teal focus */
}

.sign-up-form .gender-options {
display: flex;
gap: 10px;
align-items: center;
}

.sign-up-form .gender-options label {
margin: 0;
font-size: 13px;
}

.sign-up-form button {
background-color: #00c3a0; /* Teal background */
color: #fff; /* White text */
border: none;
padding: 10px;
font-size: 14px; /* Slightly smaller button text */
cursor: pointer;
border-radius: 5px;
transition: background-color 0.3s ease;
}

.sign-up-form button:hover {
background-color: #008b6e; /* Darker teal on hover */
}

.sign-up-form-width {
  width: 80%;
  align-items: center;
  text-align: center;
  padding-left: 10%;
}

.submit {
  padding-top: 20px;
}

/* Gender Selection Section */
.gender-selection {
display: flex;
justify-content: center;
gap: 10px; /* Reduced spacing between buttons */
margin: 15px 0; /* Reduced margin */
}

.gender-btn {
padding: 8px 15px; /* Smaller button padding */
font-size: 14px; /* Smaller font size for gender buttons */
font-weight: bold;
color: #00c3a0; /* Teal color */
background-color: #fff; /* White background */
border: 2px solid #00c3a0; /* Teal border */
border-radius: 20px; /* Rounded corners */
cursor: pointer;
transition: all 0.3s ease;
}

.gender-btn.active {
background-color: black; /* Teal background for active state */
color: #fff; /* White text for active state */
}

.gender-btn:hover {
background-color: #e8f9f4; /* Light teal hover effect */
color: #00c3a0;
}

.gender-btn:focus {
outline: none; /* Remove default focus outline */
}

.hero h1 {
  font-size: 56px;
  width: 70%;
}

.hero p {
  font-size: 24px;
  font-style: italic;
  width: 85%;
}

.privacy-policy-text {
  align-items: center;
  padding: 10px;
}

.privacy-policy-text h1 {
  font-weight: bold;
}

.title {
  align-items: center;
}

.title h1 {
  font-size: 60px;
  font-weight: bold;
  text-align: center;
}

.title h2 {
  font-size: 36px;
  text-align: center;
  font-weight: lighter;
}

.contact {
  display: inline;
}

.contact input {
  width: 80%;
  border-color: #00c3a0;
  align-items: center;
  padding: 20px;
}

.contact textarea {
  width: 76.75%;
  border-color: #00c3a0;
  align-items: center;
  padding: 20px;
}

.contact select {
  width: 80%;
  border-color: #00c3a0;
  align-items: center;
  padding: 20px;
  appearance: none;
  margin-bottom: 20px;
}

.contact-submit {
  width: 60%;
  padding-left: 20%;
  padding-top: 20px;
}

.MeetTeamHeader h1 {
  font-size: 60px;
  text-align: center;
}

.IndivPerson {
  display: inline;
  justify-content: center;
  align-items: center;
}

.Person-Details {
  padding-bottom: 50px;
}

.Person-Title {
  padding-right: 40px;
}

.Person-Details, .PersonTitle  {
  width: 90%;
  padding-left: 15px;
}

.Person img {
  width: 50%;
  height: auto;
  align-items: center;
  padding-left: 25%;
}

.Mission-title h1 {
  font-size: 60px;
}

.Mission-title h2 {
  font-size: 40px;
  font-weight: lighter;
}

.Mission-title {
  align-items: center;
  text-align: center;
  color: #000;
}

.vision h3 {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  width: 60%;
  padding-left: 20%;
}

.slogan {
  padding-top: 100px;
  text-align: center;
  font-style: italic;
  font-size: 36px;
  font-weight: bold;
}

.mission-image img {
  width: 80%;
  padding-left: 10%;
}

.mission-collage {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.mission-collage-text{
  width: 90%;
  padding-left: 5%;
}

.mission-collage-image {
  width: 70%;
  padding-left: 15%;
}

.mission-collage-text h3 {
  font-size: 36px;
}

.mission-italicize {
  font-weight: lighter;
  font-style: italic;
}

.mission-collage-image img {
  width: 100%;
  height: auto;
}

.blog-title {
  font-size: 60px;
  text-align: center;
}




/* Keyframe for Sliding Animation */
@keyframes slide {
0% {
  transform: translateX(0);
}
33% {
  transform: translateX(-100%);
}
66% {
  transform: translateX(-200%);
}
100% {
  transform: translateX(0);
}
}

@keyframes moveSlides {
  0% {
    transform: translateX(0); /* Start at the left edge */
  }
  100% {
    transform: translateX(-300%); /* Move completely to the left (twice the container's width) */
  }
}