 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1a0202;  
    font-family: 'Georgia', serif;
}

 
.banner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(145deg, #2b0303 0%, #4d0505 50%, #2b0303 100%);
    padding: 30px;
    border-bottom: 3px solid #d4af37;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    flex-wrap: wrap;  
    max-width: 1300px;
    margin: 20px auto;
    border-radius: 15px;
}

 
.logo-box {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 150px;
}

.glow-circle {
    width: 120px;
    height: 120px;
    border: 2px solid #d4af37;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    color: #d4af37;
    background: radial-gradient(circle, #3d0505, #000);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    transition: 0.3s;
}

.glow-circle:hover {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
    transform: scale(1.05);
}

 
.content-box {
    flex: 2;
    text-align: center;
    padding: 10px;
}

.brand-name {
    color: #d4af37;
    font-size: clamp(24px, 5vw, 42px);  
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px #000;
}



.gold-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #d4af37;
    margin-bottom: 20px;
}

.gold-line::before, .gold-line::after {
    content: "";
    height: 1px;
    width: 80px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
}

 
.action-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    transition: 0.3s;
    font-size: 15px;
}

.btn-whatsapp {
    background-color: #075e54;
    color: white;
}

.btn-call {
    background-color: #800000;
    color: #d4af37;
}

.btn-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background-color: #0088cc;
    color: white;
    font-size: 20px;
    border: 1px solid #d4af37;
}

.btn:hover, .btn-icon:hover {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

 
@media (max-width: 900px) {
    .banner-container {
        flex-direction: column;
        gap: 25px;
    }
    
    .logo-box {
        order: -1;  
    }

    .action-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}



 
.main-navbar {
    background: linear-gradient(to bottom, #800000 0%, #4d0000 100%); /* Deep Maroon */
    border-top: 1px solid #d4af37;
    border-bottom: 2px solid #d4af37;
    padding: 10px 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

 
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #d4af37;  
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s;
    padding: 5px 10px;
}

.nav-links li a:hover, .nav-links li a.active {
    color: #fff;
    text-shadow: 0 0 10px #d4af37;
}

 
.nav-icons {
    display: flex;
    gap: 15px;
    margin-left: 20px;
}

.nav-icons i {
    color: #d4af37;
    font-size: 16px;
}

.badge {
    background: #d4af37;
    color: #000;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
    position: relative;
    top: -10px;
    left: -5px;
}

 
.menu-toggle {
    display: none;
    color: #d4af37;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 992px) {
    .menu-toggle { display: block; }
    
    .nav-links {
        display: none;  
        flex-direction: column;
        width: 100%;
        background: #4d0000;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px 0;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-icons { margin-left: 0; margin-top: 15px; }
}

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

 
.dl-sy-hero-banner {
    position: relative;
    padding: 80px 20px;
    background: radial-gradient(circle, #600000 0%, #1a0101 100%);
    text-align: center;
    color: white;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container { position: relative; z-index: 5; max-width: 1100px; margin: auto; }

 
.butterfly-logo { width: 70px; filter: drop-shadow(0 0 10px #d4af37); margin-bottom: 10px; }
.tagline { color: #d4af37; font-style: italic; font-size: 14px; letter-spacing: 1px; }

 
.main-heading { font-size: clamp(35px, 8vw, 75px); color: #d4af37; font-weight: 800; letter-spacing: 5px; margin: 10px 0; }
.sub-heading { font-size: 20px; font-weight: 300; letter-spacing: 1px; }

 
.divider-diamond { display: flex; align-items: center; justify-content: center; gap: 15px; margin: 25px 0; color: #d4af37; }
.gold-line { width: 60px; height: 1px; background: #d4af37; }

 
.hero-desc { font-size: 15px; color: #ccc; line-height: 1.6; max-width: 850px; margin: 0 auto 35px; }

 
.search-container { margin-bottom: 40px; }
.search-bar {
    background: #fff; border-radius: 50px; padding: 5px;
    display: flex; max-width: 650px; margin: 0 auto; box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.search-bar input { flex: 1; border: none; padding: 10px 15px; outline: none; border-radius: 50px; font-size: 14px; }
.search-bar i { color: #888; padding-left: 15px; align-self: center; }
.near-me-btn { background: none; border: none; color: #800000; font-weight: bold; cursor: pointer; border-left: 1px solid #ddd; padding: 0 15px; }
.main-search-btn { background: #800000; color: white; border: none; padding: 10px 30px; border-radius: 50px; cursor: pointer; font-weight: bold; }

 
.cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 50px; }

.btn-hover-effect {
    position: relative;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.5s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
}

 
.browse-btn { background: #d4af37; color: #000; }
.whatsapp-btn { background: transparent; border: 1px solid #d4af37; }

 
.hover-wave {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.6s;
    z-index: -1;
}

.btn-hover-effect:hover .hover-wave { left: 100%; }

.btn-hover-effect:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    background: #fff;
    color: #800000;
}

 
.banner-stats { display: flex; justify-content: space-around; border-top: 1px solid rgba(212, 175, 55, 0.3); padding-top: 30px; }
.stat strong { display: block; font-size: 26px; color: #d4af37; }
.stat span { font-size: 12px; color: #aaa; text-transform: uppercase; }

 
@media (max-width: 768px) {
    .search-bar { flex-direction: column; border-radius: 15px; gap: 10px; padding: 15px; }
    .near-me-btn { border-left: none; padding: 10px 0; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .btn-hover-effect { width: 100%; justify-content: center; }
    .banner-stats { flex-wrap: wrap; gap: 20px; }
}


 
.features-section {
    background-color: #1a0101;  
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}

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

 
.section-header { margin-bottom: 50px; }

.badge-gold {
    background: #d4af37;
    color: #000;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 32px;
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 1px;
}

 
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.feature-card {
    background: linear-gradient(145deg, #4d0000, #2b0000);  
    padding: 40px 25px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
}

 
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    border: 1px solid #d4af37;
}

.icon-circle {
    font-size: 30px;
    color: #d4af37;
    margin-bottom: 20px;
    transition: 0.3s;
}

.feature-card:hover .icon-circle {
    transform: scale(1.2);
    color: #fff;
}

.feature-card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

 
.checklist-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.check-item {
    font-size: 14px;
    color: #d4af37;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.check-item i { font-size: 16px; }

.check-item:hover {
    color: #fff;
    transform: scale(1.05);
}

 
@media (max-width: 768px) {
    .section-title { font-size: 24px; }
    .features-grid { grid-template-columns: 1fr; } /* Mobile par ek ke niche ek */
    .checklist-row { flex-direction: column; align-items: flex-start; padding-left: 20%; }
}


 
.content-section {
    background-color: #1a0101;  
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
}

 
.main-heading {
    font-size: clamp(22px, 5vw, 32px);
    color: #d4af37; 
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

 
.heading-line {
    width: 60px;
    height: 3px;
    background-color: #d4af37;
    margin: 0 auto 40px;
    border-radius: 2px;
}

 
.text-block {
    text-align: center;
    line-height: 1.8;
}

.text-block p {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 25px;
    font-weight: 300;
}

 
.text-block strong {
    color: #d4af37;
    font-weight: 600;
}

 
@media (max-width: 768px) {
    .content-section {
        padding: 50px 15px;
    }
    
    .text-block p {
        font-size: 15px;
        line-height: 1.6;
        text-align: justify;  
    }

    .main-heading {
        line-height: 1.3;
    }
}



 
.stories-section {
    background-color: #1a0101;  
    padding: 40px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

 
.stories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.header-left { display: flex; gap: 15px; align-items: center; }

.insta-icon {
    width: 45px; height: 45px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 24px;
}

.header-text h2 { color: #d4af37; font-size: 22px; margin: 0; }
.header-text p { color: #aaa; font-size: 13px; margin: 2px 0 0; }

.see-all-btn {
    background: #d4af37; color: #000;
    padding: 8px 18px; border-radius: 50px;
    text-decoration: none; font-size: 13px; font-weight: bold;
    transition: 0.3s;
}

.see-all-btn:hover { background: #fff; transform: scale(1.05); }

 
.stories-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
    max-width: 1200px;
    margin: 0 auto;
    scrollbar-width: none;  
}

.stories-wrapper::-webkit-scrollbar { display: none; }  

.story-item {
    display: flex; flex-direction: column;
    align-items: center; gap: 8px;
    cursor: pointer; transition: 0.3s;
    min-width: 90px;
}

 
.story-ring {
    position: relative;
    width: 85px; height: 85px;
    padding: 3px;
    border-radius: 50%;
    background: #444;  
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hot .story-ring {
    background: linear-gradient(45deg, #ff8a00, #e52e71);  
}

.story-ring img {
    width: 100%; height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #1a0101; 
}

 
.hot-badge {
    position: absolute;
    top: -5px; right: -5px;
    background: #ff4500; color: white;
    width: 22px; height: 22px;
    border-radius: 50%;
    font-size: 12px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.6);
}

.story-name { color: #ccc; font-size: 13px; font-weight: 500; }

 
.story-item:hover { transform: scale(1.1); }

.story-item:hover .story-ring {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.story-item:hover .story-name { color: #d4af37; }

 
@media (max-width: 768px) {
    .header-text h2 { font-size: 18px; }
    .story-ring { width: 75px; height: 75px; }
}


 
.cc-profile-section {
    background-color: #1a0101;  
    padding: 60px 15px;
     
}

.cc-container { max-width: 1250px; margin: auto; }

 
.cc-header { text-align: center; margin-bottom: 40px; }
.gold-butterfly { width: 55px; filter: drop-shadow(0 0 8px #d4af37); }
.cc-header h2 { color: #d4af37; font-size: 26px; margin: 10px 0; letter-spacing: 1px; }
.title-divider { display: flex; align-items: center; justify-content: center; gap: 15px; color: #d4af37; }
.title-divider span { width: 40px; height: 1px; background: #d4af37; }

 
.cc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);  
    gap: 20px;
}

.cc-card {
    background: #2b0000;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: 0.4s;
    position: relative;
}

 
.cc-img-box { position: relative; height: 320px; overflow: hidden; }
.cc-img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }

.cc-badge {
    position: absolute; top: 12px; right: 12px;
    background: #ff4500; color: white; padding: 2px 10px;
    font-size: 11px; border-radius: 4px; font-weight: bold; z-index: 2;
}

.cc-overlay {
    position: absolute; bottom: -100%; left: 0; width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 20px 15px; transition: 0.4s;
}

.overlay-stats { color: white; display: flex; gap: 15px; font-size: 12px; }

 
.cc-details { padding: 15px; }
.name-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; }
.name-row h3 { color: #d4af37; font-size: 18px; }
.price { color: #fff; font-size: 13px; font-weight: bold; }
.loc { color: #aaa; font-size: 12px; margin-bottom: 15px; }

.card-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 10px; }
.status { color:#FFFF00; font-size: 11px; display: flex; align-items: center; gap: 5px; }
.status i { font-size: 10px; }

.cc-btn {
    background: transparent; border: 2px solid #006600;
    color:#00CC00; padding: 5px 12px; border-radius: 4px;
    text-decoration: none; font-size: 12px; transition: 0.3s;
}

 
.cc-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.cc-card:hover .cc-img-box img { transform: scale(1.1); }
.cc-card:hover .cc-overlay { bottom: 0; }
.cc-btn:hover { background: #d4af37; color: #000; }

 
@media (max-width: 1024px) {
    .cc-grid { grid-template-columns: repeat(2, 1fr); }  
}

@media (max-width: 500px) {
    .cc-grid { grid-template-columns: repeat(1, 1fr); }  
    .cc-img-box { height: 380px; }
}


 
.help-section {
    background-color: #1a0202;  
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.help-container {
    max-width: 900px;
    width: 100%;
    background-color: #0e0101;  
    padding: 40px;
    border: 1px solid #4a0000;  
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
}

 
.help-title {
    color: #e63946;  
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.help-text {
    color: #cccccc;  
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.help-text strong {
    color: #ffffff;
    font-weight: 600;
}

 
.btn-wrapper {
    margin-top: 20px;
}

.browse-btn {
    background-color: #ffcc66;  
    color: #000000;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;  
    display: inline-block;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.browse-btn:hover {
    background-color: #ffb31a;
    transform: scale(1.05); 
}

 
@media (max-width: 768px) {
    .help-title {
        font-size: 22px;
    }
    .help-text {
        font-size: 16px;
    }
    .help-container {
        padding: 30px 20px;
    }
}


 
.premium-reviews {
    background-color: #120101;  
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.reviews-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.reviews-top-bar {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-top-bar h2 {
    color: #ffb300;
    font-size: 36px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.reviews-top-bar p {
    color: #bfa36a;
    font-size: 16px;
}

 
.reviews-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

 
.escort-review-card {
    background: linear-gradient(145deg, #1d0202, #2a0303);
    border: 1px solid rgba(255, 179, 0, 0.1);
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 500px;  
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.escort-review-card:hover {
    transform: translateY(-10px);
    border-color: #ffb300;
    box-shadow: 0 15px 40px rgba(255, 179, 0, 0.15);
}

 
.escort-img-wrapper {
    position: relative;
    width: 40%;
    min-height: 250px;
}

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

.status-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffb300;
    color: #000;
    font-size: 10px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
}

 
.escort-info {
    padding: 25px;
    width: 60%;
    display: flex;
    flex-direction: column;
}

.stars {
    color: #ffb300;
    font-size: 14px;
    margin-bottom: 10px;
}

.escort-info h3 {
    color: #fff;
    font-size: 24px;
    margin: 0 0 5px 0;
}

.review-meta {
    color: #888;
    font-size: 13px;
    margin-bottom: 15px;
}

.review-body {
    color: #ddd;
    font-size: 14px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: auto;
}

 
.card-footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 15px;
}

.card-footer span {
    color: #666;
    font-size: 12px;
}

.profile-link {
    color: #ffb300;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.profile-link:hover {
    text-decoration: underline;
}

 
.all-reviews-cta {
    text-align: center;
    margin-top: 50px;
}

.outline-gold-btn {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #ffb300;
    color: #ffb300;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.outline-gold-btn:hover {
    background: #ffb300;
    color: #000;
}

 
@media (max-width: 768px) {
    .escort-review-card {
        flex-direction: column;
    }
    .escort-img-wrapper, .escort-info {
        width: 100%;
    }
    .escort-img-wrapper {
        height: 250px;
    }
}


 
.custom-feature-section {
    background-color: #1a0101;  
    padding: 60px 20px;
    font-family: sans-serif;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.2);
}

 
.title-group {
    margin-bottom: 40px;
}

.main-heading {
    color: #ffb300;  
    font-size: 32px;
    margin-bottom: 5px;
}

.sub-heading {
    color: #ffffff;
    font-size: 16px;
    opacity: 0.8;
}

 
.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);  
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #4a0000;  
    border: 2px solid #800000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffb300;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.feature-content h3 {
    color: #ffb300;
    font-size: 20px;
    margin: 0 0 8px 0;
}

.feature-content p {
    color: #cccccc;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

 
.cta-card {
    text-align: center;
    background: #000000;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #4a0000;
}

.cta-title {
    color: #f73f3f;  
    font-size: 26px;
    margin-bottom: 15px;
}

.cta-desc {
    color: #bbbbbb;
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

 
.btn-gold-action {
    display: inline-block;
    padding: 14px 40px;
    background: #ffcc66;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 204, 102, 0.2);
}

.btn-gold-action:hover {
    background: #ffb31a;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 204, 102, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .section-container { padding: 20px; }
    .main-heading { font-size: 24px; }
    .feature-item { flex-direction: column; align-items: center; text-align: center; }
    .feature-icon { margin-bottom: 10px; }
}

 
.about-experience-section {
    background-color: #1a0101;  
    padding: 80px 20px;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
}

.content-wrapper {
    max-width: 1000px;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid #4a0000;  
    border-radius: 15px;
    padding: 50px;
    text-align: center;
    position: relative;
}

 
.top-badge {
    display: inline-block;
    background: transparent;
    border: 1px solid #ffcc66;  
    color: #ffcc66;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 25px;
}

 
.main-title {
    color: #ffcc66;  
    font-size: 42px;
   
    margin: 0;
}

.sub-title {
    color: #ffffff;
    font-size: 22px;
    margin-top: 5px;
    opacity: 0.9;
}

.about-description {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.8;
    margin: 35px 0;
    text-align: left;
}

 
.best-choice-group {
    text-align: left;
    margin-top: 40px;
}

.choice-title {
    color: #ffcc66;
    font-size: 28px;
    margin-bottom: 10px;
}

.choice-tagline {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.expandable-content {
    color: #999999;  
    font-size: 15px;
    line-height: 1.7;
}

 
.btn-container {
    margin-top: 40px;
}

.show-more-btn {
    display: inline-block;
    background: #800000; 
    color: #ffffff;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    border: 1px solid #ffcc66;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background: #ffcc66;
    color: #000000;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .content-wrapper { padding: 30px 20px; }
    .main-title { font-size: 30px; }
    .sub-title { font-size: 18px; }
}


 
.premium-service-section {
    padding: 60px 10%;
    background-color: #1a0202;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.service-container {
    display: flex;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;  
}

 
.content-card {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(145deg, #2b0303, #450505);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #d4af3733;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

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

.gold-title {
    color: #d4af37;
    font-size: 2.2rem;
    margin-bottom: 20px;
     
}

.service-text {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

 
.gallery-card {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: url('gallery/image.webp') center/cover no-repeat;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    border: 1px solid #d4af3733;
    cursor: pointer;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease;
}

.gallery-card:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.3);  
}

.gallery-title {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

 
.glass-btn, .gallery-btn {
    padding: 12px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
    display: inline-block;
}

.glass-btn {
    background: #800000;
    color: white;
    border: 1px solid #d4af37;
}

.glass-btn:hover {
    background: #d4af37;
    color: black;
    box-shadow: 0 0 15px #d4af37;
}

.gallery-btn {
    background: #ffcc00;
    color: black;
}

.gallery-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #ffcc00;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .premium-service-section { padding: 40px 5%; }
    .gold-title { font-size: 1.8rem; }
    .gallery-card { height: 300px; }
}

  

 
.sb-wrapper {
    background-color: #000;  
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.sb-container {
    max-width: 1200px;
    width: 100%;
    border: 1px solid #444;  
    border-radius: 10px;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;  
    gap: 40px;
    align-items: center;
}

 
.sb-text-area {
    flex: 1 1 400px;  
}

.sb-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.sb-highlight {
    color: #ffc800; 
    display: block;
}

.sb-desc {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.sb-btn {
    display: inline-block;
    background-color: #d32f2f;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

 
.sb-grid-container {
    flex: 1 1 500px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);  
    gap: 15px;
}

.sb-card {
    aspect-ratio: 1 / 1; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    font-size: 0.85rem;
    text-align: center;
    padding: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.sb-card:hover { transform: scale(1.05); }

.sb-card i { font-size: 2rem; margin-bottom: 10px; }

 
.bg-blue { background-color: #2962ff; }
.bg-pink { background-color: #d81b60; }
.bg-red { background-color: #d50000; }
.bg-yellow { background-color: #ffab00; }
.bg-navy { background-color: #1a237e; }
.bg-lightblue { background-color: #0091ea; }
.bg-teal { background-color: #00897b; }
.bg-magenta { background-color: #c2185b; }
.bg-green { background-color: #1b5e20; }

 
@media (max-width: 768px) {
    .sb-container {
        padding: 20px;
        text-align: center;
    }
    
    .sb-grid-container {
        grid-template-columns: repeat(2, 1fr);  
    }
}

@media (max-width: 480px) {
    .sb-title { font-size: 1.8rem; }
    .sb-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}



 
.loc-wrapper {
    background-color: #0d0d0d;
    padding: 60px 20px;
     
}

.loc-container {
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 40px;
    background: linear-gradient(145deg, #151515, #0a0a0a);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

 
.loc-header {
    text-align: center;
    margin-bottom: 50px;
}

.loc-main-title {
    color: #fff;
    font-size: 2.8rem;
    margin: 0;
    letter-spacing: 1px;
}

.loc-gold {
    color: #ffcc66;  
}

.loc-sub-title {
    color: #888;
    margin-top: 10px;
    font-size: 1.1rem;
}

 
.loc-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap; 
}

 
.loc-list {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.loc-item {
    background: rgba(255, 255, 255, 0.03);
    color: #ddd;
    padding: 15px 25px;
    border: 1px solid #222;
    border-radius: 50px;  
    text-align: center;
    font-weight: 500;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

 
.loc-item:hover {
    background: #ffcc66;
    color: #000;
    border-color: #ffcc66;
    transform: translateX(10px);
    box-shadow: 0 0 20px rgba(255, 204, 102, 0.4);
}

.loc-list.right .loc-item:hover {
    transform: translateX(-10px);
}

 
.loc-map-box {
    flex: 1 1 400px;
    position: relative;
    text-align: center;
}

.loc-map-img {
    max-width: 100%;
    height: auto;
     
    border-radius: 15px;
}

 
.loc-pulse-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #ff0080;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(255, 0, 128, 0.4);
    animation: loc-pulse 2s infinite;
}

@keyframes loc-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 0, 128, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(255, 0, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 0, 128, 0); }
}

 
@media (max-width: 992px) {
    .loc-map-box {
        order: -1;  
        flex: 1 1 100%;
    }
    .loc-main-title { font-size: 2rem; }
}

@media (max-width: 600px) {
    .loc-container { padding: 20px; }
    .loc-item { padding: 12px; font-size: 0.9rem; }
    .loc-list { flex: 1 1 100%; }
}



:root {
    --gold: #ffcc66;
    --dark-red: #4a0404;
    --glass: rgba(255, 255, 255, 0.05);
}

.premium-wrapper {
    background-color: #0d0d0d;
    color: white;
    font-family: 'Poppins', sans-serif;
    padding: 40px 20px;
    overflow-x: hidden;
}

 
.premium-hero {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2b0202 0%, #630000 100%);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-text { flex: 1 1 500px; }

.glow-text {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.glow-text span { color: var(--gold); }

.hero-btns { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 30px; }

.btn-primary {
    background: var(--gold);
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-whatsapp {
    border: 2px solid var(--gold);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(255,204,102,0.4); }

 
.hero-stats {
    flex: 1 1 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--glass);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.stat-item h3 { color: var(--gold); font-size: 2rem; margin: 0; }

 
.category-grid {
    max-width: 1200px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.grid-card {
    padding: 40px 20px;
    border-radius: 25px;
    text-align: center;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.grid-card:hover { transform: translateY(-15px); }

.grid-icon { font-size: 3rem; display: block; margin-bottom: 15px; }

 
.bg-gradient-blue { background: linear-gradient(45deg, #1e3c72, #2a5298); }
.bg-gradient-pink { background: linear-gradient(45deg, #ec008c, #fc6767); }
.bg-gradient-red { background: linear-gradient(45deg, #870000, #190a05); }
.bg-gradient-gold { background: linear-gradient(45deg, #bf953f, #fcf6ba); color: #000; }

 
@media (max-width: 768px) {
    .premium-hero { padding: 30px; text-align: center; }
    .hero-btns { justify-content: center; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
}


 
.dl-sy-wrapper-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px;
    background-color: transparent;  
}

.dl-sy-custom-section {
    background: linear-gradient(180deg, #2b0808 0%, #1a0505 100%);
    border: 1px solid #4a1414;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.dl-sy-gold-title {
    color: #f1d279 !important;  
    font-size: 28px !important;
    font-weight: 700 !important;
    margin: 0 0 8px 0 !important;
    font-family: sans-serif;
}

.dl-sy-white-subtitle {
    color: #ffffff !important;
    font-size: 18px !important;
    margin: 0 0 15px 0 !important;
    text-transform:capitalize;
    font-weight: 600 !important;
}

.dl-sy-text-content {
    color: #d1baba !important; 
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

.dl-sy-highlight {
    color: #f1d279 !important;
    font-weight: bold;
}



 
.dl-sy-blog-wrapper {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
}

 
.dl-sy-blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.dl-sy-main-heading {
    color: #efcf78;
    font-size: clamp(24px, 5vw, 40px);
    margin: 0;
}

.dl-sy-view-all {
    background-color: #800000;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid #efcf78;
}

 
.dl-sy-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

 
.dl-sy-blog-card {
    background-color: #1a0505;
    border: 1px solid #3d1212;
    padding: 25px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.dl-sy-blog-card:hover {
    transform: translateY(-5px);
    border-color: #efcf78;
}

.dl-sy-tag {
    background-color: #efcf78;
    color: #1a0505;
    padding: 3px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
}

.dl-sy-date {
    color: #888;
    font-size: 13px;
    margin: 15px 0 10px 0;
}

.dl-sy-card-title {
    color: #efcf78;
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.dl-sy-card-desc {
    color: #b19999;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.dl-sy-read-more {
    color: #efcf78;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

 
.dl-sy-disclaimer-box {
    max-width: 1000px;
    margin: 40px auto;
    border: 2px solid #efcf78;
    background-color: #4a0000;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.dl-sy-disclaimer-title {
    color: #efcf78;
    font-size: 32px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.dl-sy-disclaimer-text {
    color: white;
    line-height: 1.8;
    font-size: 16px;
}

.dl-sy-exit-btn {
    background-color: #efcf78;
    color: black;
    padding: 2px 8px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

 
@media (max-width: 768px) {
    .dl-sy-blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}



 
.dl-sy-footer-wrapper {
    background-color: #000000;  
    color: #ffffff;
    padding: 60px 20px 20px 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    border-top: 3px solid #800000;  
}

.dl-sy-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

 
.dl-sy-footer-logo {
    color: #f1d279;  
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.dl-sy-footer-logo span {
    color: #ffffff;
}

.dl-sy-footer-about {
    color: #b3b3b3;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Titles */
.dl-sy-col-title {
    color: #f1d279;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.dl-sy-col-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #800000;
}

/* Links List */
.dl-sy-footer-links {
    list-style: none;
    padding: 0;
}

.dl-sy-footer-links li {
    margin-bottom: 12px;
}

.dl-sy-footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.dl-sy-footer-links a:hover {
    color: #f1d279;
    padding-left: 5px;
}

/* Contact & Social */
.dl-sy-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #b3b3b3;
}

.dl-sy-social-icons {
    display: flex;
    gap: 15px;
}

.dl-sy-social-icons span {
    background-color: #1a1a1a;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #f1d279;
    border: 1px solid #333;
}

 
.dl-sy-footer-bottom {
    border-top: 1px solid #1a1a1a;
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
}

.dl-sy-footer-bottom a {
    color: #f1d279;
    text-decoration: none;
}

 
@media (max-width: 992px) {
    .dl-sy-footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .dl-sy-footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .dl-sy-col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .dl-sy-contact-item {
        justify-content: center;
    }
    .dl-sy-social-icons {
        justify-content: center;
    }
}


 
.dl-sy-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.dl-sy-social-icons a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;  
    border: 1px solid #333;
    border-radius: 50%;
    color: #f1d279;  
    font-size: 18px;
    transition: all 0.3s ease;
}

 
.dl-sy-social-icons a:hover {
    background-color: #f1d279; 
    color: #000;  
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(241, 210, 121, 0.3);
}

 
.dl-sy-social-icons .fa-x-twitter {
    font-size: 16px;  
}

 
.dl-sy-floating-actions {
    position: fixed;
    bottom: 30px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

 
.dl-sy-whatsapp-float {
    background-color: #25d366;  
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: 0.3s transform ease;
}

.dl-sy-whatsapp-float:hover {
    transform: scale(1.05);
}

 
.dl-sy-back-to-top {
    background-color: #f1d279;  
    color: #000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;  
    transition: 0.3s all ease;
}

.dl-sy-back-to-top:hover {
    background-color: #800000;  
    color: #fff;
}

.dl-sy-arrow {
    font-size: 24px;
    font-weight: bold;
}

 
@media (max-width: 600px) {
    .dl-sy-btn-text {
        display: none;  
    }
    .dl-sy-whatsapp-float {
        padding: 12px;
        border-radius: 50%;
    }
}