/* General Reset */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.number {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 200px;
    position: absolute;
    z-index: 1;
    left: 40px;
    top: 0;
}

.contact-numbers {
    display: flex;
    align-items: center;
}

.contact-numbers .phone-numbers {
    margin: 0 10px;
}

.contact-numbers p {
    margin-bottom: 0;
    font-size: 14px;
}

.vertical-line {
    width: 2px;
    height: 50px;
    background-color: #333;
    opacity: 0.5;
}

.banner-strip {
    background-color: #d9d9d9;
    color: #342e5d;
}

.banner-info {
    padding: 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.banner-info h2 {
    font-size: 1.5rem;
}

.location-tag {
    background-color: #342e5d;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: -1px;
    font-size: 14px;
}

.location-arrow {
    height: 10px;
}

.madhapur-text {
    color: #727272;
    font-size: 14px;
}

.banner-hr {
    height: 5px;
    background-color: #ef4268;
    margin: 0;
}

.social-section {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

.social-section .security-icons,
.social-section .social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-section .security-icons img,
.social-section .social-icons img {
    height: 25px;
}

.social-section .security-text {
    display: flex;
    align-items: center;
}

.social-section p {
    font-size: 14px;
    margin: 0;
    font-weight: bold;
}

.amenity-card {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0;
}

.amenity-card .amenity-text {
    width: 45%;
}

.amenity-card .amenity-img {
    width: 40%;
    display: flex;
    justify-content: center;
}

.amenity-card .amenity-img img {
    max-width: 100%;
    height: auto;
}

.amenity-card .main-color {
    color: #ef4268;
}

.amenity-card .secondary-color {
    color: #1ab3b1;
}

.amenity-card h2 {
    font-size: 1.5rem;
}

.amenity-card p {
    font-size: 14px;
}

.amenity-card .view-more-btn {
    background-color: #1ab3b1;
    color: #fff;
    border: none;
    border-radius: 5px;
}

.view-more-btn:hover {
    background-color: #ef4268;
}

.amenity-card.food-section {
    height: auto;
}

.amenity-card.food-section .amenity-text {
    width: auto;
}

.amenity-list {
    padding-left: 0;
    list-style: none;
}

.amenity-list li {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 5px;
}

.amenity-list li .list-icon {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ef4268;
    border-radius: 50%;
    margin-right: 10px;
}

.service-icons {
    display: flex;
    justify-content: space-around;
}

.service-icons .d-flex {
    flex-direction: row;
    align-items: center;
}

.service-icons img {
    width: 30px;
    height: auto;
}

.service-icons p {
    font-size: 14px;
    margin: 0;
}

.others-about-us {
    margin: 20px 0;
    padding: 10px;
}

.others-about-us h2 {
    text-align: left;
}

.others-about-us .review-box {
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    border: #333 solid 2px;
}

.others-about-us .review-box p {
    margin-bottom: 0;
    font-size: 14px;
}

.others-about-us .review-box .review-author {
    font-size: 12px;
    font-style: italic;
    text-align: right;
}

.contact {
    margin: 20px 0;
    padding: 10px;
}

.contact h2 {
    text-align: left;
}

.contact form label {
    display: block;
    margin-top: 10px;
}

.contact form input,
.contact form select,
.contact form button {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
}

.contact form button {
    background: #ef4268;
    color: #fff;
    border: none;
    cursor: pointer;
}

.contact form button:hover {
    background: #333;
}

.contact .map {
    text-align: center;
}

.contact .map p {
    margin: 0;
    font-size: 14px;
    text-align: left;
    font-weight: bold;
}

.contact .map img {
    width: 100%;
    height: auto;
    max-height: 300px;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 60px;
    margin-bottom: 10px;
}

footer .footer-logo {
    height: 80px;
    position: absolute;
    top: -60px;
    left: 60px;
}

footer p.copy-right {
    font-size: 14px;
    margin: 0;
}

footer .social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .social-links a {
    color: #fff;
    font-size: 18px;
}


/* Responsive Design */

@media (max-width: 768px) {
    .logo-img {
        height: 100px;
        position: absolute;
        z-index: 1;
        right: 20px;
        top: 30px;
        left: auto;
    }
    .number {
        display: block;
    }
    .img-fluid1 {
        display: none;
    }
    .about {
        padding-top: 10px;
    }
    .contact-numbers p {
        font-size: 12px;
    }
    .vertical-line {
        height: 40px;
    }
    .banner-info {
        padding: 10px;
        flex-wrap: wrap;
    }
    .banner-info h2 {
        font-size: 1.2rem;
    }
    .location-tag {
        font-size: 12px;
    }
    .madhapur-text {
        font-size: 12px;
    }
    .social-section {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .amenity-card {
        flex-direction: column;
        text-align: center;
    }
    .amenity-card .amenity-text {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .amenity-card .amenity-img {
        width: 80%;
        margin-bottom: 10px;
    }
    .amenity-list li {
        font-size: 14px;
    }
    .service-icons {
        flex-direction: column;
    }
    .service-icons .d-flex {
        margin-bottom: 5px;
    }
    .service-icons p {
        font-size: 12px;
    }
    footer .social-links {
        flex-wrap: wrap;
    }
    .footer-logo {
        display: none;
    }
    .submit-btn {
        width: 200px;
        height: 40px;
        text-align: center;
        margin-bottom: 20px;
    }
}