/* General styles */
body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    color: #fff;
    background-color: #000;
    line-height: 1.6;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header styles */
header {
    background: #000;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

.logo img {
    max-height: 50px;
    margin-right: 15px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ddd;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin-bottom: 5px;
    transition: 0.3s ease;
}
.hero-content {
    text-align: center;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 20px;
}

.cta-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    width: 200px; /* Adjust width as needed */
}

.cta-button:hover {
    background-color: #0056b3;
}




/* Hero section styles */
.hero {
    background-image: url('https://i.ibb.co/mBjfmWJ/Capture.png');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-content {
    background: rgba(0, 0, 0, 0.75);
    padding: 30px;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 30px;
    color: #bbb;
}

.cta-button {
    background: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    color: #000;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #ddd;
    transform: translateY(-3px);
}

/* Features section styles */
.features {
    padding: 60px 0;
    text-align: center;
    background-color: #111;
    color: #fff;
}

.features h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background: #222;
    padding: 30px;
    border-radius: 15px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.feature-item .icon {
    font-size: 40px;
    color: #fff;
    margin-bottom: 15px;
    display: inline-block;
    background-color: #444;
    border-radius: 50%;
    padding: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.feature-item:hover .icon {
    background-color: #555;
}

.feature-item h3 {
    margin-bottom: 15px;
    font-size: 26px;
    color: #fff;
}

.feature-item p {
    color: #bbb;
}

/* How It Works section styles */
.how-it-works {
    padding: 60px 0;
    text-align: center;
    background-color: #000;
    color: #fff;
}

.how-it-works h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

.how-it-works ul {
    list-style: none;
    padding: 0;
}

.how-it-works ul li {
    margin-bottom: 15px;
    font-size: 18px;
    text-align: left;
    position: relative;
    padding-left: 40px;
}

.how-it-works ul li::before {
    content: '✔';
    position: absolute;
    left: 10px;
    top: 0;
    color: #fff;
    font-size: 20px;
}

/* About section styles */
.about {
    padding: 60px 0;
    background-color: #111;
    color: #fff;
    text-align: center;
}

.about h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: #bbb;
}

/* Contact section styles */
.contact {
    padding: 60px 0;
    background-color: #000;
    color: #fff;
    text-align: center;
}

.contact h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #111;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.contact-form label {
    display: block;
    margin: 15px 0 5px;
    font-size: 18px;
    color: #bbb;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #555;
    border-radius: 8px;
    background-color: #222;
    color: #fff;
    font-size: 16px;
}

/* General Button Styles */
button {
    background-color: #000000; /* DodgerBlue background */
    color: #fff; /* White text */
    border: none; /* Remove border */
    padding: 15px 30px; /* Padding */
    font-size: 16px; /* Font size */
    font-weight: bold; /* Bold text */
    border-radius: 8px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effects */
}

/* Hover Effects */
button:hover {
    background-color: #575757; /* Change background color on hover */
    text-decoration: #fff;
    transform: translateY(-3px); /* Lift button slightly on hover */
}

.static-button {
    background-color: #6c757d;
    pointer-events: none;
}

.static-button:hover {
    background-color: #6c757d;
}


.contact-form button {
    background: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
    background-color: #ddd;
    transform: translateY(-3px);
}

/* Footer styles */
footer {
    background: #111;
    padding: 30px 0;
    text-align: center;
    color: #bbb;
}

footer p {
    margin: 0;
    font-size: 16px;
}

.how-it-works .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.how-it-works-steps {
    margin-top: 30px;
    text-align: left;
    position: relative;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
}

.step-number {
    width: 30px;
    height: 30px;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content {
    font-size: 18px;
    line-height: 1.5;
    flex-grow: 1;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 54px;
    top: 37px;
    width: 2px;
    height: 66px;
    background-color: #fff;
  }



/* Responsive styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    .step:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 54px;
        top: 118px;
        width: 2px;
        height: 66px;
        background-color: #fff;
      }
    nav.active .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: #000;
        width: 100%;
        text-align: right;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}
