@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
body {
    font-family: "Montserrat", sans-serif;
}
input , select , textarea , a , button {
    font-family: "Raleway", sans-serif;
}
a {
    text-decoration: none;
    color: #8a2be2;
}
h1, h2, h3, h4, h5, h6 , p, span , strong , b {
    font-family: "Open Sans", sans-serif;
}
* {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
@media only screen and (max-width: 600px) {
    .int {
        padding: 13px 15px;
        border-radius: 125px;
        border: none;
        outline: none;
        background: #e7e7e7;
        font-size: 14px;
        color: #000;
        font-weight: 500;
    }
    .int::placeholder {
        font-weight: 500;
        color: #000;
    }
    .btn {
        padding: 12px 0;
        border-radius: 125px;
        background: #635a00;
        color: #fff; 
        font-size: 16px;
        font-weight: bolder;
        text-transform: uppercase;
        border: #635a00;
    }
    .text > h2 {
        color: #333;
        font-weight: 600;
        font-size: 22px;
        text-transform: uppercase;
    }
    .text > p {
        font-size: 18px;
        color: #333;
    }
    #cityCard .card {
        width: 90%;
        margin: 10px auto;
        border-radius: 25px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        background: #fff;
        transition: transform 0.3s ease;
    }
    #cityCard .card:hover { transform: translateY(-5px); }
    #cityCard .card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
    }
    #cityCard .card h3 {
        margin: 10px;
        font-size: 18px;
        color: #333;
    }
    #cityCard .card p {
        margin: 0 10px 10px;
        font-size: 14px;
        color: #666;
    }
    #cabCard .card {
        width: 90%;
        margin: 10px auto;
        border-radius: 25px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        background: #fff;
        transition: transform 0.3s ease;
    }
    #cabCard .card:hover { transform: translateY(-5px); }
    #cabCard .card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
    }
    #cabCard .card h3 {
        margin: 10px;
        font-size: 18px;
        color: #333;
    }
    #cabCard .card p {
        margin: 0 10px 10px;
        font-size: 14px;
        color: #666;
    }
    #review {
        max-width: 400px;
        /*margin: 30px auto;*/
        text-align: center;
    }
    #review .card {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
        background: #ddd;
        transition: transform 0.3s ease;
        border-radius: 0;
    }
    #review .card:hover {
        transform: scale(1.02);
    }
    #review .card img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 50%;
        margin-bottom: 15px;
    }
    #review .card h4 {
        font-size: 20px;
        color: #333;
        margin: 0 0 10px;
    }
    #review .card p {
        font-size: 15px;
        color: #555;
        line-height: 1.5;
    }
    #whatsapp {
        max-width: 600px;
        margin: 40px auto;
        padding: 20px;
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        border-radius: 20px;
        color: #fff;
        font-family: 'Segoe UI', sans-serif;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    #whatsapp::before {
        content: '';
        background-image: url('https://cdn.pixabay.com/photo/2021/01/28/11/18/whatsapp-5950788_1280.png'), url('https://cdn-icons-png.flaticon.com/512/2111/2111728.png');
        background-repeat: no-repeat;
        background-position: left bottom, right top;
        background-size: 100px 100px, 80px 80px;
        opacity: 0.05;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    #whatsapp p {
        font-size: 16px;
        margin: 10px 0;
        z-index: 1;
        position: relative;
    }
    #whatsapp a button {
        margin-top: 10px;
        background: #fff;
        color: #128C7E;
        font-weight: bold;
        padding: 12px 24px;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        font-size: 16px;
        transition: background 0.3s ease, transform 0.2s ease;
        z-index: 1;
        position: relative;
    }
    #whatsapp a button:hover {
        background: #f1f1f1;
        transform: scale(1.05);
    }
    #installPopup {
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    #installPopup.hide {
        transform: translateY(-100%);
        opacity: 0;
    }
    .cab-text { display: none; }
}
@media only screen and (min-width: 786px) {
    .int::placeholder {
        font-weight: 500;
        color: #000;
    }
     #whatsapp {
        width: 800px;
        margin: 40px auto;
        padding: 20px;
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        border-radius: 20px;
        color: #fff;
        font-family: 'Segoe UI', sans-serif;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    #welcome {
        margin: 10px 15%;
        font-size: 18px;
        font-weight: 400;
        text-align: center;
        letter-spacing: 1.6;
    }
    #whatsapp::before {
        content: '';
        background-image: url('https://cdn.pixabay.com/photo/2021/01/28/11/18/whatsapp-5950788_1280.png'), url('https://cdn-icons-png.flaticon.com/512/2111/2111728.png');
        background-repeat: no-repeat;
        background-position: left bottom, right top;
        background-size: 100px 100px, 80px 80px;
        opacity: 0.05;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    #whatsapp p {
        font-size: 16px;
        margin: 10px 0;
        z-index: 1;
        position: relative;
    }
    #whatsapp a button {
        margin-top: 10px;
        background: #fff;
        color: #128C7E;
        font-weight: bold;
        padding: 12px 24px;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        font-size: 16px;
        transition: background 0.3s ease, transform 0.2s ease;
        z-index: 1;
        position: relative;
    }
    #whatsapp a button:hover {
        background: #f1f1f1;
        transform: scale(1.05);
    }
    .center {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .int {
        padding: 10px 15px;
        border-radius: 125px;
        border: none;
        outline: none;
        background: #e7e7e7;
        font-size: 14px;
        color: #000;
        font-weight: 500;
    }
    .btn {
        padding: 10px 0;
        border-radius: 125px;
        background: #635a00;
        color: #fff; 
        cursor: pointer;
        font-size: 16px;
        font-weight: bolder;
        text-transform: uppercase;
        border: #635a00;
    }
    #review {
        width: 100%;
        /*margin: 30px auto;*/
        text-align: center;
        overflow: hidden;
    }
    #review .card {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        padding: 80px 0;
        background: #fff1ef;
        transition: transform 0.3s ease;
        border-radius: 0;
        width: 100%;
        overflow: hidden;
    }
    #review .card:hover {
        transform: scale(1.02);
    }
    #review .card img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 50%;
        margin-bottom: 15px;
    }
    #review .card h4 {
        font-size: 20px;
        color: #333;
        margin: 0 0 10px;
    }
    #review .card p {
        font-size: 15px;
        color: #555;
        line-height: 1.5;
    }
    #cityCard .card {
        border-radius: 0;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        width: 300px;
        margin: 10px;
        cursor: pointer;
        transition: transform 0.3s ease;
    }
    #cityCard {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    #cityCard .card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.3s ease;
        display: block;
    }
    #cityCard .card:hover img {
        transform: scale(1.1);
    }
    #cityCard .card h3 {
        font-size: 18px;
        margin: 10px;
        color: #333;
    }
    #cityCard .card p {
        font-size: 14px;
        margin: 0 10px 10px;
        color: #555;
    }
    #cabCard .card {
        border-radius: 0;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        width: 300px;
        margin: 10px;
        cursor: pointer;
        transition: transform 0.3s ease;
    }
    #cabCard {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    #cabCard .card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.3s ease;
        display: block;
    }
    #cabCard .card:hover img {
        transform: scale(1.1);
    }
    #cabCard .card h3 {
        font-size: 18px;
        margin: 10px;
        color: #333;
    }
    #cabCard .card p {
        font-size: 14px;
        margin: 0 10px 10px;
        color: #555;
    }
    .cab-text {
        margin: 10px 15%;
        font-size: 18px;
        font-weight: 400;
        text-align: center;
        letter-spacing: 1.6;
    }
}
