* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #000;
    color: #fff;
}

.site-banner {
    width: 100%;
    height: 500px;
    background-image: url('images/banner.webp');
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.banner-content {
    max-width: 600px;
}

.brand-logo {
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.pink-text {
    color: #ff1493;
}

h1 {
    font-size:32px;
    color: #fff;
    margin-bottom: 10px;
    text-transform:capitalize;
}

h2 {
    font-size: 1.5rem;
    color: #ff1493;
    margin-bottom: 20px;
    display: inline-block;
}

h3 {
    font-size: 1.2rem;
    color: #ff1493;
    margin-bottom: 20px;
    display: inline-block;
}

p {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 25px;
}

a{ color:#FFFF00;
text-decoration:none}
.cta-box {
    display: inline-block;
    padding: 12px 30px;
    background:#339933;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}


.cta-box a{
color:#FFFFFF;
text-decoration:none}



.bottom-logo-section {
    padding: 40px 10%;
    background-color: #050505;
    text-align: left;
}

.txt-logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff1493;
    text-transform: uppercase;
    text-align: center;
}

.tagline-div {
    font-size: 1rem;
    color: #888;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 5px;
    text-align: center;
}

@media (max-width: 768px) {
    .site-banner { height: 400px; }
    h1 { font-size: 2.5rem; }
    .txt-logo { font-size: 1.8rem; }
}

.new-nav {
    width: 100%;
    background: #000;
    border-bottom: 3px solid #e91e63;
    position: relative;
    z-index: 9999;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    flex: 1;
    text-align: center;
}

.nav-links li a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    padding: 18px 5px;
    transition: 0.3s;
    border-right: 1px solid #222;
    text-transform: uppercase;
}

.nav-links li a.active-home {
    background: #e91e63;
    color: #fff;
}

.nav-links li a:hover:not(.active-home) {
    background: #1a1a1a;
    color: #e91e63;
}

.nav-btn, #nav-check {
    display: none;
}

@media (max-width: 992px) {
    .nav-btn {
        display: block;
        color: #fff;
        background: #e91e63;
        padding: 15px;
        text-align: center;
        cursor: pointer;
        font-weight: bold;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #111;
        flex-direction: column;
        transition: 0.4s ease;
        z-index: 10000;
        padding-top: 50px;
        box-shadow: 5px 0 15px rgba(0,0,0,0.5);
    }

    #nav-check:checked ~ .nav-links {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: left;
    }

    .nav-links li a {
        padding: 15px 25px;
        border-right: none;
        border-bottom: 1px solid #222;
    }
}

.layout-container {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
    gap: 20px;
    padding: 0 15px;
}

.sidebar {
    flex: 0 0 300px;
}

.widget {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    color: #fff;
}

.search-filter h3 {
    border-bottom: 2px solid #e91e63;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.search-filter h3 span { color: #e91e63; }


.search-filter label { display: block; margin: 10px 0 5px; font-size: 14px; }

.search-filter select {
    width: 100%;
    padding: 10px;
    background: #000;
    color: #fff;
    border: 1px solid #444;
    border-radius: 4px;
}

.search-filter input {
    width: 100%;
    padding: 10px;
    background: #000;
    color: #fff;
    border: 1px solid #444;
    border-radius: 4px;
}

.search-filter button {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    background: #e91e63;
    border: none;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.main-content {
    flex: 1;
    background: #000;
    color: #fff;
}

.banner-section img {
    width: 100%;
    border-radius: 8px;
    border: 2px solid #e91e63;
}

.content-text { padding: 20px 0; }

.content-text h2 span { color: #e91e63; }

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-whatsapp { background: #25d366; color: white; padding: 12px 25px; text-decoration: none; border-radius: 5px; font-weight: bold; }
.btn-call { background: #008cba; color: white; padding: 12px 25px; text-decoration: none; border-radius: 5px; font-weight: bold; }

@media (max-width: 850px) {
    .layout-container {
        flex-direction: column;
    }
    .sidebar {
        flex: 1;
    }
}

.profile-gallery {
    padding: 30px 0;
}

.section-title {
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
    color: #fff;
}

.section-title span { color: #e91e63; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.profile-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.profile-card:hover {
    border-color: #e91e63;
    transform: translateY(-5px);
}

.card-img {
    position: relative;
    height: 250px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #25d366;
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
}

.status-tag.busy { background: #ff4444; }

.card-info {
    padding: 15px;
}

.card-info h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 5px;
}

.card-info p {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 10px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #e91e63;
    font-weight: bold;
    margin-bottom: 15px;
}

.view-btn {
    display: block;
    text-align: center;
    background: #e91e63;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
}

.view-btn:hover { background: #c2185b; }

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .card-img { height: 180px; }
}

.category-widget {
    background: #000;
    padding: 15px;
    border: 1px solid #222;
    border-radius: 10px;
    width: 100%;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list li a {
    display: flex;
    align-items: center;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid #1a1a1a;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 5px rgba(233, 30, 99, 0.1);
}

.category-list li a i {
    margin-right: 15px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.category-list li a:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #e91e63;
    transform: translateX(5px);
    box-shadow: 0px 0px 10px rgba(233, 30, 99, 0.4);
}

.category-list li a.active {
    background: linear-gradient(to right, #6e4e11, #4a350c);
    color: #fff;
    border: 1px solid #8a6d3b;
}

.category-list li a:hover i {
    color: #e91e63;
}

.full-width-content {
    width: 100%;
    background-color: #000;
    padding: 40px 0;
    color: #fff;
}

.content-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-block {
    margin-bottom: 40px;
}

.text-block h2 {
    font-size: 26px;
    color: #ffcc00;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: bold;
    text-transform: capitalize;
}

.text-block h2 .pink-text {
    color: #e91e63;
}

.text-block p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 20px;
}

.text-block p strong {
    color: #fff;
    font-weight: 800;
}

.action-area {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.action-btn {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.whatsapp-btn {
    background-color: #25d366;
    color: #fff;
}

.call-btn {
    background-color: #e91e63;
    color: #fff;
}

.action-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .text-block h2 {
        font-size: 22px;
    }
    
    .action-area {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn {
        width: 100%;
        justify-content: center;
    }
}

.graphics-container {
    background-color: #000;
    padding: 20px;
    width: 100%;
}

.graphics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.graphic-box {
    background: #111;
    border: 2px solid #0056b3;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 86, 179, 0.5);
    transition: transform 0.3s ease;
    aspect-ratio: 16 / 9;
}

.graphic-box:hover {
    transform: scale(1.02);
    border-color: #007bff;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.8);
}

.graphic-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

@media (max-width: 768px) {
    .graphics-grid {
        grid-template-columns: 1fr; 
    }
    
    .graphic-box {
        aspect-ratio: auto; 
    }
}

.top-ranked-section {
    background-color: #000;
    padding: 50px 20px;
    text-align: center;
}

.section-title {
    color: #ffcc00; 
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: bold;
}

.ranked-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.rank-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background: #000;
    padding: 10px;
    position: relative;
}

.image-wrapper {
    position: relative;
    border: 2px solid #0056b3; 
    box-shadow: 0 0 15px rgba(0, 86, 179, 0.4);
    overflow: hidden;
    margin-bottom: 15px;
}

.image-wrapper img {
    width: 100%;
    display: block;
    transition: 0.5s;
}

.pink-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 15px solid transparent;
    border-image: url('https://i.imgur.com/your-floral-border.webp') 30 stretch; 
    pointer-events: none;
}

.rank-btn {
    border: 2px solid #007bff;
    background: #111;
    color: #e91e63; 
    padding: 10px;
    font-weight: bold;
    letter-spacing: 5px;
    text-transform: uppercase;
    border-radius: 8px;
    box-shadow: inset 0 0 10px rgba(0, 123, 255, 0.5);
    transition: 0.3s;
    cursor: pointer;
}

.rank-btn:hover {
    background: #e91e63;
    color: #fff;
    box-shadow: 0 0 20px #e91e63;
}

@media (max-width: 768px) {
    .ranked-container {
        flex-direction: column;
        align-items: center;
    }
    .rank-card {
        width: 100%;
        max-width: 350px;
    }
}

.location-section {
    background-color: #000;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
}

.main-title {
    color: #ffcc00; 
    font-size: 24px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-container {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #0056b3; 
    box-shadow: 0 0 15px rgba(0, 86, 179, 0.3);
}

.map-box {
    flex: 1;
    background: #fff;
    padding: 10px;
}

.map-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.list-box {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: left;
}

.list-overlay {
    background: rgba(0, 0, 0, 0.4); 
    height: 100%;
    padding: 30px;
}

.list-title {
    color: #e91e63;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 2px 2px #000;
}

.list-box ul {
    list-style: none;
    padding: 0;
}

.list-box ul li {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px #000;
}

.location-tags {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.location-tags a{
color:#FFFFFF; text-decoration:none;
}



.tag {
    background: linear-gradient(to bottom, #ff007f, #800040); 
    color: #fff;
    padding: 8px 50px;
    border-radius: 20px 0 20px 0; 
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid #ff007f;
}

.tag:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px #ff007f;
}

@media (max-width: 768px) {
    .location-container {
        flex-direction: column;
    }
    .map-box, .list-box {
        width: 100%;
    }
    .list-box {
        height: 400px;
    }
    .main-title {
        font-size: 18px;
    }
}

.content-wrapper {
    background-color: #000;
    color: #fff;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.title-gold {
    color: #ffcc00; 
    font-size: 22px;
    margin: 25px 0 15px 0;
    font-weight: bold;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 15px;
}

.bullet-list {
    list-style: none;
    padding-left: 10px;
}

.bullet-list li::before {
    content: "•";
    color: #fff;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}

.banner-full {
    border: 2px solid #333;
    border-radius: 15px;
    padding: 10px;
    margin: 30px 0;
    text-align: center;
    position: relative;
}

.banner-full img {
    width: 100%;
    border-radius: 10px;
}

.banner-full2 img {
    width: 40%;
    border-radius: 10px;
}

.graphics-grid-4, .quote-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.grid-item img, .quote-card img {
    width: 100%;
    border: 1px solid #444;
}

.two-column-banners {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.small-banner {
    flex: 1;
    height: 150px;
    border: 2px solid #333;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.monitor-container {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 40px;
}

.monitor-img { flex: 1; }
.monitor-text { flex: 1; text-align: left; }

.note-red {
    color: #ff0055; 
    font-weight: bold;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .graphics-grid-4, .quote-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .two-column-banners, .monitor-container {
        flex-direction: column;
    }
    .title-gold { font-size: 18px; }
}

.vip-facilities-section {
    background-color: #000;
    padding: 50px 20px;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.section-title {
    color: #ffcc00; 
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title span {
    color: #ff0055; 
}

.section-subtitle {
    color: #ff0055;
    font-size: 18px;
    margin-bottom: 40px;
}

.facilities-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.facility-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    text-align: left;
}

.facility-item:hover {
    transform: translateY(-5px);
    border-color: #ffcc00;
    background: rgba(255, 204, 0, 0.1);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.2);
}

.facility-item .icon {
    font-size: 24px;
    margin-right: 15px;
    background: #222;
    padding: 10px;
    border-radius: 50%;
    border: 1px solid #444;
}

.facility-item p {
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 600px) {
    .section-title { font-size: 22px; }
    .facility-item { padding: 15px; }
}

.main-footer {
    background-color: #111;  
    padding: 30px 0;
    position: relative;
    border-top: 1px solid #333;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-menu li a {
    color: #bbb;  
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-menu li a:hover {
    color: #fff;  
}

.scroll-top {
    position: absolute;
    right: 30px;
    bottom: 5px;
    background-color: #00ff99;  
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.scroll-top:hover {
    transform: scale(1.1);
}

.scroll-top .arrow {
    color: #000;
    font-size: 24px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .footer-menu {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .scroll-top {
        position: relative;
        right: 0;
        margin-top: 20px;
    }
    
    .footer-container {
        flex-direction: column;
    }
}