/* styles.css */


body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

header {
    background-color: #4CAF50;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#login-btn {
    margin-left: 625px;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1rem;
}

.cart {
    position: relative;
    display: flex;
    align-items: center;
}

.about {
    text-align: center;
}

.cart img {
    width: 24px;
    height: 24px;
    background-color: transparent; /* Ensure the icon background is transparent */
}

.cart-count {
    position: absolute;
    top: -15px;  /* Adjust the value to properly position the count */
    right: -15px;  /* Adjust the value to properly position the count */
    background-color: green;
    color: white;
    border-radius: 50%;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
}



.hero {
    text-align: center;
    background-image: url('images/hero-image.jpg');
    background-position: center;
    background-size: cover;
    color: white;
    min-height: 100vh;
    width: 100%;
    position: relative;
    padding: 9rem 1rem;
}

.textbox {
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box h1 {
    font-size: 62px;
}

.text-box p {
    margin: 10px 0 40px;
    font-size: 0.875rem;
    color: #fff;
}

.cta-button {
    background-color: #FF9800;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e68900;
}

section {
    margin-bottom: 2rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

p, ul {
    margin-bottom: 1rem;
}

.benefits,
.overview,
.problem-statement {
    padding: 2rem 1rem;
}

.benefits {
    margin: auto;
    justify-content: space-around;
    text-align: center;
}

.row {
    display: flex;
    justify-content: space-between;
}

.benefit-item {
    text-align: center;
    width: 30%;
    background-color: #7df783;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.how-we-work {
    text-align: center;
}

.product-list {
    display: flex;
    justify-content: space-around;
    padding: 2rem 1rem;
}

.product-item {
    margin-right: 20px;
    text-align: center;
    width: 30%;
    background-color: #fff;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
    object-fit: cover;
    margin-bottom: 1rem;
}

.add-btn {
    background-color: #4CAF50;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.add-btn:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

form {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: 0 auto;
}

form label {
    margin: 0.5rem 0;
}

form input,
form textarea,
form button {
    padding: 0.5rem;
    margin: 0.5rem 0;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ddd;
}

form button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #45a049;
}

footer {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

footer p {
    margin: 0;
}
.team-row{
    display: flex;
}
.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
}

.team-member {
    margin: 20px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.collaborators {
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}

.collaborators-col {
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #a2eea6;
    padding: 25px;
    display: flex;
}

.collaborators-col img {
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}

.collaborators-col p {
    padding: 0;
}

.collaborators-col h3 {
    margin-top: 15px;
    text-align: left;
}

.collaborators-col h3 a {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f4f7;
    line-height: 1.6;
    box-sizing: border-box;
}

header {
    background-color: #4CAF50;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav {
    display: flex;
    align-items: center;
}