html, body {
    height: 100%;
    margin: 0;
    overflow-y: auto;
}


body {
    font-family: 'Poppins', sans-serif;
    background-color: #F8F8F8;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 0;
    
}

.card {
    background: white;
    width: 90%;
    max-width: 400px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.logo {
    max-width: 200px;
    margin-bottom: 15px;
    margin-top: 15px;
}

h2 {
    color: #333;
    margin: 10px 0;
}

.company-name {
    font-size: 14px;
    color: #777;
}

.contact-buttons {
    display: flex;
    justify-content: space-around;
    margin: 15px 0;
}

.btn {
    background: #f1f1f1;
    padding: 10px 15px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
}

.map-btn {
    display: block;
    background: #e0e0e0;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    margin: 10px auto;
    width: 80%;
}

.about {
    font-size: 14px;
    color: #555;
    margin: 15px 0;
}

.catalogs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.catalog {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-size: 12px;
}

.catalog img {
    width: 80%;
    border-radius: 5px;
}

.share-section {
    margin-top: 20px;
}

input {
    width: 70%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    outline: none;
}

button {
    background: #4CAF50;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
.icon-buttons {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    flex-wrap: wrap;
}

.circle-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    margin: 10px;
}

.circle-btn img {
    background-color: #6bb767;
    border-radius: 73%;
    padding: 2px;
    width: 40px;
    height: 41px;
    object-fit: contain;
    margin-bottom: 4px;
}

.save-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #6bb767, #6bb767, #6bb767);
    color: #000000;
    padding: 12px 20px;
    margin-top: 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.save-contact-btn img {
    width: 18px;
    margin-right: 10px;
}



.brand-swiper {
    margin-top: 20px;
    width: 100%;
    max-width: 400px;
}

.swiper-slide img {
    width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.swiper-slide img:hover {
    filter: grayscale(0%);
}

