/* Basic reset and styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #2a2a2a;
    width: 100%;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.header .logo {
    max-height: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .logo img {
    height: auto;
    max-height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background-color: #2a2a2a;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    padding: 1rem;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #ccc;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
}

.menu-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background: #00aaff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.show-nav {
    display: flex !important;
    flex-direction: column;
    background-color: #2a2a2a;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    padding: 1rem;
}

.hero {
    background: #f4f4f4;
    color: black;
    text-align: center;
    padding: 100px 20px;
    margin-top: 5vh;
    width: 100%;
    min-height: 50vh;
}

.about, .services, .technology, .payment, .contact {
    padding: 40px 20px;
    background-color: #fff;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-item {
    margin-bottom: 20px;
}

.contact a {
    color: #007BFF;
    text-decoration: none;
}

.contact a:hover {
    color: #0056b3;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item img {
    width: 20px; /* Adjust size to your preference */
    height: auto;
}

.footer {
    text-align: center;
    padding: 10px;
    background-color: #2a2a2a;
    color: #fff;
}

@media (max-width: 768px) {
    .header {
        padding: 0.5rem 1rem;
    }
    .header .logo {
        max-height: 50px;
    }
    .nav {
        display: none;
        flex-direction: column;
        gap: 1rem;
        background-color: #2a2a2a;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 1rem;
    }
    .menu-toggle {
        display: block;
    }
}
