/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4; /* Softer background for readability */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 20px;
}

/* Card Styling */
.card {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 5px; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Logo Styling */
.logo img {
    width: 160px;
    height: auto;
}

/* Google Review Section */
.google-img {
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.gmb-link {
    text-decoration: none;
    background-color: #4285F4; /* Google Blue */
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.gmb-link i {
    font-size: 18px;
}

.gmb-link:hover {
    background-color: #3367D6;
}

/* Section Titles */
.section-title h2 {
    font-size: 20px;
    margin: 10px 0;
    color: #333;
    font-weight: bold;
}

/* Social Media Icons */
.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    text-decoration: none;
    font-size: 24px;
    color: #555;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #0073e6;
}

/* Contact Info */
.contact p {
    font-size: 16px;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.contact a {
    text-decoration: none;
    color: #0073e6;
}

.contact a:hover {
    color: #005bb5;
}

.phone {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Location Section */
.location {
    text-align: center;
}

.location p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.map-link {
    text-decoration: none;
    color: #4285F4;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.map-link i {
    font-size: 18px;
}

.map-link:hover {
    color: #3367D6;
}

/* Footer */
footer {
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}
.border{
    width: 100%;
    margin-top: .8vmax;
    border-top: 1px dashed black;
}
/* Responsive Design */
@media (max-width: 600px) {
    .card {
        /* padding: 20px; */
    }

    .gmb-link {
        font-size: 14px;
        padding: 10px 20px;
    }

    .social-icon {
        font-size: 20px;
    }

    .contact p,
    .location p {
        font-size: 14px;
    }

    .google-img {
        height: 70px;
    }
   .card {
        box-shadow: none;
        width: initial;
        gap: 15px;
        padding: initial;
        box-shadow: none;
    }

    .card:hover {
        transform: none;
        box-shadow: none;
    }
   body{
        background-color: white;
        padding: 0 1vmax;
        justify-content: flex-start;
        height: max-content;
    }
}
