* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    overflow-x: hidden;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

.brandlogo {
    height: 50px;
}

.nav-link {
    font-weight: 500;
    margin: 0 5px;
}

.btn {
    border-radius: 20px;
}

.herosectiondown {
    background-color: black;
    min-height: 600px;
    padding: 40px 15px;
    color: white;
}

.textofsec {
    padding: 2% 5%;
    text-align: center;
}

.heroseccards {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.btnherosec {
    display: block;
    margin: 15px auto;
    width: fit-content;
}

.hero-banner {
    background: linear-gradient(120deg, #2d3436 0%, #000000 100%);
    color: white;
    padding: 0;
    margin-bottom: 0;
}

.faislabadsection {
    background-color: #212529;
    min-height: auto;
    padding: 60px 0;
}

.faislabadsectext {
    text-align: center;
    padding: 5%;
}

.faislabadimgtextdetail,
.faislabadimgtextdetails {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 10%;
    gap: 40px;
    margin-bottom: 60px;
}

.leftimg img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.faislabadtext {
    flex: 1;
}

.cardssection {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 60px 20px;
    background-color: #000000;
}

.cardsectexts {
    margin-bottom: 3%;
    text-align: center;
}

.cardsbtn {
    margin: 7%;
}

.cardtext {
    text-align: center;
    color: white;
}

.cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}

.cards>div {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(30% - 20px);
    min-width: 300px;
}

.card {
    height: 220px;
    margin: 3%;
    border-radius: 12px;
    overflow: hidden;
}

.villagediv {
    padding-bottom: 3%;
    background-color: #212529;
    padding-top: 2%;
    color: white;
    font-weight: bold;
}

.villagepic {
    height: 390px;
    overflow: hidden;
    width: 46%;
}

.villagetext {
    text-align: center;
    padding-bottom: 3%;
}

.villagedivtext {
    padding-right: 10%;
}

.villageunderdetails {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.opening-soon-section {
    background: #000;
    padding: 80px 20px;
    text-align: center;
    width: 100%;
    overflow-x: hidden;
}

.soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1100px;
    width: 100%;
    margin: 50px auto 0;
    padding: 0 15px;
}

.soon-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: transform .2s;
    width: 100%;
}

.soon-card:hover {
    transform: translateY(-4px);
}

.soon-pin {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
}

.soon-pin svg {
    width: 44px;
    height: 44px;
}

.soon-label {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ef112b;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.soon-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 400;
    color: #111;
    line-height: 1.4;
}

.soon-name strong {
    font-weight: 900;
}

.custom-footer {
    background-color: #111111;
    color: #cccccc;
}

.footer-logo {
    max-width: 180px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background-color: #e52b34;
    color: #ffffff;
    border-radius: 50%;
    margin-right: 12px;
    transition: 0.3s;
}

@media (max-width:992px){
    .villageunderdetails{
        flex-direction:column;
        text-align:center;
    }

    .villagepic{
        width:100%;
        height:auto;
    }

    .villagedivtext{
        padding-right:0;
    }
}

@media (max-width:576px){
    .villageunderdetails{
        gap:20px;
        padding:0 20px;
    }

    .villagetext h1{
        font-size:1.8rem;
    }

    .villagedivtext h3{
        font-size:1.4rem;
    }
}

@media (max-width: 992px) {
    .faislabadimgtextdetail,
    .faislabadimgtextdetails {
        flex-direction: column !important;
        text-align: center;
    }

    .faislabadimgtextdetail {
        flex-direction: column-reverse !important;
    }

    .cards>div {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .herosectiondown {
        height: auto;
    }

    .cards>div {
        flex: 0 0 calc(50% - 20px);
    }

    .textofsec h1 {
        font-size: 1.8rem;
    }

    .faislabadtext h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cards>div {
        flex: 0 0 100%;
    }

    .navbar .d-flex {
        flex-direction: column;
        width: 100%;
    }

    .navbar .btn {
        width: 100%;
    }
}