body,
html {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
    background-color: #fff;
    color: #333;
}

.nav_bar {
    height: 80px;
    display: flex;
    background: #ffc107;
    justify-content: space-between;
    align-items: center;
}

.logo_box {
    height: 80px;
    width: 160px;
    background: #ffc107;
}

.logo {
    width: 90%;
    height: auto
}

.btnDownload {
    width: 180px;
    height: 50px;
    margin-right: 20px;
    font-size: medium;
    background: #ffffff;
    border: #ffffff;
    border-radius: 10px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff9800;
    margin-right: 10px;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #e67e00;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 40px 0;
}

.hero {
    text-align: center;
    background: linear-gradient(to right, #ffc107, #ff9800);
    color: #fff;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-img {
    width: 300px;
    margin: 30px auto;
    display: block;
}

.buttons .btn {
    display: inline-block;
    margin: 10px;
    padding: 12px 24px;
    background: white;
    color: #ff9800;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.btn-secondary {
    background: #333;
    color: #fff;
}

.features {
    background: #f7f7f7;
    text-align: center;
}

.features h2 {
    margin-bottom: 40px;
    font-size: 2rem;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature {
    width: 280px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.screenshots {
    text-align: center;
    background: #fff;
}

.carousel img {
    width: 180px;
    margin: 10px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.carousel img:hover {
    transform: scale(1.05);
}

.cta {
    background: #ff9800;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta h2 {
    font-size: 2rem;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
}