* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0f0a1f;
    color: #fff;
    line-height: 1.6;
}

/* Header */
header {
    background: rgba(15, 10, 31, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
   
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo {
    font-size: 32px;
    font-weight: 800;
    color: #ff69b4;
    letter-spacing: 2px;
}

.phone {
    color: #ff1493;
    font-size: 24px;
    font-weight: bold;
}

/* Section */
.section {
    
    max-width: 1400px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #ff69b4;
}

/* Categories */
.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 50px;
}

.cat-btn {
    background: #2a1a4d;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 15px;
}

.cat-btn:hover {
    background: #ff1493;
    transform: translateY(-3px);
}

/* Girls Grid */
.girls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.girl-card {
    background: #1a0f2e;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #3a2a5c;
}

.girl-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.25);
    border-color: #ff69b4;
}

.girl-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.card-info {
    padding: 18px;
}

.card-info h3 {
    color: #ff69b4;
    font-size: 22px;
    margin-bottom: 6px;
}

.nationality {
    font-size: 14px;
    color: #c8a2ff;
    font-weight: normal;
}

.price {
    color: #00ff9d;
    font-weight: bold;
    margin-top: 8px;
    font-size: 17px;
}

/* Footer */
footer {
    background: #0a0519;
    padding: 70px 20px 40px;
    text-align: center;
    border-top: 1px solid #3a2a5c;
}

footer p {
    margin: 8px 0;
    opacity: 0.9;
}
/* Main Search Bar - Like Original Website */
.search-container {
    position: relative;
    max-width: 100%;
    margin-bottom: 25px;
}

.main-search-bar {
    width: 100%;
    padding: 16px 50px 16px 20px;
    font-size: 16px;
    background: #fff;
    color: #333;
    border: 2px solid #8B0000;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.main-search-bar::placeholder {
    color: #777;
}

.search-icon-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #8B0000;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
}

.search-icon-btn:hover {
    background: #ff1493;
}

/* Filter Group */
.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.filter-group select {
    padding: 12px 16px;
    background: #2a1a4d;
    border: 1px solid #ff69b4;
    border-radius: 8px;
    color: white;
    min-width: 160px;
}

/* Rest of your existing styles (girl-card, etc.) same rakh sakte ho */

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  overflow-y: auto;
}

.modal-content {
  background: #1a0f2e;
  margin: 5% auto;
  padding: 20px;
  width: 90%;
  max-width: 1100px;
  border-radius: 12px;
  position: relative;
  color: white;
}

.close-btn {
  position: absolute;
  right: 25px;
  top: 15px;
  font-size: 40px;
  cursor: pointer;
  color: #ff69b4;
}

.close-btn:hover { color: white; }

/* Profile Layout */
.profile-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.profile-image {
  flex: 1;
  min-width: 300px;
}

.profile-image img {
  width: 100%;
  border-radius: 12px;
}

.profile-info {
  flex: 2;
  min-width: 300px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.stat-item {
  background: #2a1a4d;
  padding: 12px 16px;
  border-radius: 8px;
}

.stat-item strong {
  color: #ff69b4;
}
.features, .services-grid, .testimonials, .faq {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.feature-box, .service-card {
    background: #2a1a4d;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 220px;
    font-weight: bold;
    border: 1px solid #ff69b4;
}

.testimonial {
    background: #2a1a4d;
    padding: 25px;
    border-radius: 12px;
    max-width: 350px;
    font-style: italic;
}

.faq p {
    background: #2a1a4d;
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 15px;
}
/* Navbar */
.navbar {
    background: #0f0a1f;
    position: sticky;
    top: 0;
    z-index: 1000;

}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
    gap: 20px;
}

.logo {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 2px;
    white-space: nowrap;
    cursor: pointer;
}

/* Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16.5px;
    transition: 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff69b4;
}

/* Phone */
.phone {
    color: #ff1493;
    font-size: 21px;
    font-weight: bold;
    white-space: nowrap;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #ff69b4;
    transition: 0.3s;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 992px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        
        background: #0f0a1f;
        flex-direction: column;
        align-items: center;
        padding-top: 60px;
        gap: 30px;
        font-size: 22px;
        transition: 0.4s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .phone {
        display: none;
    }

    .logo {
        font-size: 28px;
    }
}

/* Main Heading - Centered with nice color */
.main-heading {
    text-align: center;
    color: #FF1493;           /* Bright Pink */
    margin: 10px 0 10px 0;
    font-weight: 900;
    letter-spacing: 1px;
}

/* Sub Heading */
.sub-heading {
    text-align: center;
    font-size: 18px;
    color: #ddd;
    max-width: 1100px;
    
    line-height: 1.7;
}

/* Hero Heading bhi center (optional) */
.hero-content h1 {
    text-align: center;
}

/* Video Hero Banner */
.video-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.55); /* Dark overlay */
    padding: 40px 60px;
    border-radius: 15px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 48px;
    color: white;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.8);
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 24px;
    color: #fff;
    margin-bottom: 30px;
}

/* Mobile ke liye */
@media (max-width: 768px) {
    .hero-content {
        padding: 25px 30px;
    }
    .hero-content h1 {
        font-size: 36px;
    }
}
/* Footer */
.main-footer {
    background: #0a0519;
    color: #ccc;
    padding: 60px 20px 20px;
    border-top: 2px solid #ff1493;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h3, .footer-col h4 {
    color: #ff69b4;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin: 8px 0;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
}

.footer-col a:hover {
    color: #ff69b4;
}

.city-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 15px;
}

.city-links a {
    color: #ff69b4;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #3a2a5c;
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        text-align: center;
    }
}
/* Call Girl Table */
.callgirl-table {
    width: 100%;
    max-width: 1100px;
    margin: 30px auto;
    border-collapse: collapse;
    background: #1a0f2e;
    border-radius: 12px;
    overflow: hidden;
}

.callgirl-table th {
    background: #ff1493;
    color: white;
    padding: 18px 12px;
    text-align: left;
    font-size: 16px;
}

.callgirl-table td {
    padding: 16px 12px;
    border-bottom: 1px solid #3a2a5c;
    color: #ddd;
}

.callgirl-table tr:hover {
    background: #2a1a4d;
}

.callgirl-table a {
    color: #00ff9d;
    text-decoration: none;
}

.callgirl-table a:hover {
    color: #ff69b4;
    text-decoration: underline;
}
/* Floating Call & WhatsApp Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s;
    color: white;
}

.call-btn {
    background: #ff1493;
}

.whatsapp-btn {
    background: #25D366;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Small text below icon on hover */
.float-btn::after {
    content: attr(data-text);
    position: absolute;
    right: 70px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.call-btn:hover::after { content: "Call Now"; opacity: 1; }
.whatsapp-btn:hover::after { content: "Chat on WhatsApp"; opacity: 1; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    .float-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}