/* Reset some default styles */
body, h1, h2,h3, p, ul, li {
    margin: 0;
    padding: 0;
    color: rgb(255, 255, 255);
    justify-content: center;
}
#choose-us-heading {
    text-align: center; /* Center the text horizontally */
    margin: 100px auto;/* Adjust the top and bottom padding for vertical centering */
}


body {
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background-color: black;

    background-size: cover;
    background-position: center;
    color: #fff;
}
.logo{
    max-height: 10%;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}


.hero {
  
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 150px 0;
}

.hero .container {
    position: relative;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    flex: 1;
    text-align: left;
    padding: 20px;
}

.hero-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #2980b9;
}

.hero-image {
    flex: 1;
    text-align: center;
    background-size: fit;
    height: auto;

    
}

.hero-image img {
    max-width: 50%;
    height: 50%;
    border-radius: 1px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}


nav {
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1;
}

nav .logo {
    font-size: 24px;
    color: #fff;
    float: left;
}

nav .nav-links {
    list-style: none;
    float: right;
}

nav .nav-links li {
    display: inline;
    margin-left: 20px;
}

nav .nav-links li a {
    color: #fff;
    text-decoration: none;
}

header.hero {
    padding: 150px 0;
    text-align: center;
}

header.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

header.hero p {
    font-size: 18px;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #2980b9;
}

section {
    padding: 60px 0;
    text-align: center;
}

section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

section p {
    font-size: 18px;
    margin-bottom: 40px;
}

ul {
    list-style: none;
}

ul li {
    font-size: 18px;
    margin-bottom: 10px;
}

.auth-buttons {
    display: inline-block;
    margin-left: 20px;
}

.login-btn,
.signup-btn {
    background: transparent;
    color: #425e79;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-left: 10px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.login-btn:hover,
.signup-btn:hover {
    background-color: #3498db;
    color: #435484;
}


.card-container {
   /* background-color: rgb(26, 25, 25);*/
    display: flex;
    justify-content:space-between;
    flex-wrap:nowrap; /* Wrap cards to the next row if needed */
    margin: 10px; /* Add negative margin to counteract spacing between cards */
}

/* Adjust the card styling as needed */
.card {
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex: 0 1 calc(33.333% - 20px); /* Three cards per row, considering spacing */
    margin: 20px; /* Add spacing between cards */
}
.section2{
background-color: #fff;
}

/* No right margin for the last card in a row */
