/* Hide Owl Carousel Navigation Arrows */
#index12 .owl-nav {
    display: none !important;
}

#index12 .owl-prev,
#index12 .owl-next {
    display: none !important;
}

/* Footer Contact Info Styling */
.footer-sky .list-content ul li {
    margin-bottom: 8px;
    color: #fff !important;
    text-align: left !important;
    display: flex;
    align-items: flex-start;
}

.footer-sky .list-content ul li i {
    margin-right: 10px;
    color: #c9a96e;
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 20px;
}
.footer-map-link:hover {
    color: #8E7037 !important; /* Your gold shade */
}
/* Quick Links Center Alignment */
.footer-sky .col-md-4:nth-child(2) .list-content {
    text-align: center !important;
}


/* Premium Gallery Banner Styles */
.banner-tems {
    position: relative;
    padding: 150px 0 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.banner-tems::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') repeat;
    opacity: 0.05;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-wrapper {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.breadcrumb-wrapper a {
    color: #c9a961;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-wrapper a:hover {
    color: #fff;
}

.breadcrumb-wrapper span {
    margin: 0 10px;
    color: #666;
}

.banner-tems h2 {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 10px;
    margin: 0 0 30px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.banner-divider .line {
    width: 80px;
    height: 2px;
    background: #c9a961;
}

.banner-divider i {
    color: #c9a961;
    font-size: 22px;
    margin: 0 20px;
}

.banner-subtitle {
    font-size: 18px;
    color: #fff;
    font-weight: 300;
    letter-spacing: 3px;
    margin: 0;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .banner-tems {
        padding: 100px 0 80px;
    }
    .banner-tems h2 {
        font-size: 36px;
        letter-spacing: 5px;
    }
    .banner-subtitle {
        font-size: 14px;
    }
}


/* Amenities Hover Effect */
.amenity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 20px rgba(201, 169, 110, 0.3) !important;
}


/* Premium Statistics Card Hover */
.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(201, 169, 110, 0.15) !important;
    box-shadow: 0 15px 40px rgba(201, 169, 110, 0.3);
}

.stat-card:hover > div:first-child {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(201,169,110,0.4), rgba(201,169,110,0.2)) !important;
}

/* footer  */
    .footer-mid .list-content,
.footer-mid .list-content ul,
.footer-mid .list-content li,
.footer-mid .list-content a {
    text-align: left !important;
}
    .footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color:#d4af37;
   
}
/* WRAPPER SPACING */
.features-wrapper {
    margin-bottom: 20px;
}

/* EACH ROW */
.feature-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

/* ICON CIRCLE */
.icon-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;      /* Mobile पर circle खराब नहीं होगा */
    margin-right: 15px;  /* Same spacing as original */
}

/* ICON INSIDE */
.icon-circle i {
    color: #fff;
    font-size: 20px;
}

/* TITLE */
.feature-text h4 {
    color: #2c3e50;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

/* PARAGRAPH */
.feature-text p {
    color: #666;
    font-size: 14px;
    margin: 0;
}


/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    color: #fff;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 35px;
        bottom: 80px;
        right: 7px;
    }
}
