* {
    
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #333;
    color: #333;
    text-align: center;
    min-height: 100vh;
}



.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
    color: white;
    padding: 15px;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
}



.hero-section {
    text-align: center;
    padding: 100px 20px;
    color: white;
    background-image: url('seffaf\ card.png');
    background-size: contain;
    background-position: center; 
    background-attachment: fixed;
    max-height: 60vh; 
    min-height: 400px;
    width: 100%; 
}

.hero-section h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 18px;
    margin-bottom: 20px;
}



.features {
    padding: 20px;
    text-align: center;
    color: white;
    background-image: url('seffaf\ card.png');
    background-size: contain;
    background-position: center;
    background-attachment: fixed;
    max-height: 500px; 
    min-height: 300px; 
    width: 100%;
}

.features h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.feature-card {
    display: inline-block;
    width: 30%;
    margin: 10px;
    background-color: #2ecc71;
    padding: 20px;
    color:#222
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}



.roadmap {
    padding: 60px 20px;
    text-align: center;
}

.roadmap h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: white;
}

.roadmap-container {
    display: flex;
    flex-direction: column; 
    align-items: center; 
}

.roadmap-item {
    width: 100%; 
    max-width: 600px;
    margin: 10px 0; 
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-left: 5px solid orange;
}

.roadmap-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.roadmap-item p {
    font-size: 16px;
    color: #222;
}



.social-media {
    padding: 40px 20px;
    text-align: center;
    color:white;
}

.social-media h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.social-icons a {
    text-decoration: none;
    color: orange;
    font-size: 18px;
}

.company-address {
    font-size: 16px;
    color: #555;
}




.faq {
    padding: 60px 20px;
    text-align: center;
}

.faq h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: white;
}

.faq-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-item {
    width: 100%;
    max-width: 800px;
    margin: 10px 0;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-left: 5px solid orange;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: orange;
}

.faq-item p {
    font-size: 16px;
    color: #222;
}



.contact {
    padding: 60px 20px;
    text-align: center;
    background-color: #333;
    color: #333;
}

.contact h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: white;
}

.contact p {
    margin-bottom: 30px;
    color: #aaa;
}

.contact-page footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}

.contact-form {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background: white;
}

.contact-form textarea {
    resize: vertical; 
    min-height: 100px; 
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    border: 0;
    background: orange;
    color: white;
    cursor: pointer;
}



footer {
    padding: 20px;
    background-color: #222;
    color: white;
    text-align: center;
}
