        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f0f0f0;
            color: #333;
        }
        header {
            background: linear-gradient(to right, #ff4081, #f50057);
            color: white;
            padding: 40px 20px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        header h1 {
            margin: 0;
            font-size: 2.5em;
        }
        nav {
            background-color: #c2185b;
            padding: 10px;
            text-align: center;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
        }
        nav ul li {
            margin: 0 15px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }
        nav a:hover {
            color: #ffeb3b;
        }
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: white;
        }
        .search-bar {
            display: flex;
            align-items: center;
        }
        .search-bar input[type="text"] {
            padding: 8px;
            border: none;
            border-radius: 4px 0 0 4px;
            width: 200px;
        }
        .search-bar button {
            padding: 8px 12px;
            border: none;
            background: #880e4f;
            color: white;
            cursor: pointer;
            border-radius: 0 4px 4px 0;
            transition: background 0.3s;
        }
        .search-bar button:hover {
            background: #ad1457;
        }
        @media (max-width: 768px) {
            nav {
                flex-direction: column;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #c2185b;
            }
            nav ul li {
                margin: 10px 0;
                text-align: center;
            }
            .menu-toggle {
                display: block;
                align-self: flex-start;
            }
            nav ul.show {
                display: flex;
            }
            .search-bar {
                margin-top: 10px;
                width: 100%;
                justify-content: center;
            }
            .search-bar input[type="text"] {
                width: 70%;
            }
        }
        .slider {
            position: relative;
            height: 400px;
            overflow: hidden;
        }
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }
        .slide.active {
            opacity: 1;
        }
        .slide:nth-child(1) {
            background-image: url('./images/parimahajan-banner-1.webp');
        }
        .slide:nth-child(2) {
            background-image: url('images/russian-call-girls-banner-2.webp');
        }
        .slide:nth-child(3) {
            background-image: url('images/parimahajan-banner-3.webp');
        }
        section {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .gallery {
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
        }
        .card {
            width: 100%;
            max-width: 800px;
            display: flex;
            flex-direction: row;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            transition: transform 0.3s;
            background: #fff;
        }
        .card:hover {
            transform: scale(1.05);
        }
        .card img {
            width: 40%;
            height: auto;
            object-fit: cover;
        }
        .card-details {
            width: 60%;
            padding: 15px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .card-name {
            font-size: 1.2em;
            margin: 5px 0;
        }
        .card-rating {
            color: #ffc107;
            margin: 5px 0;
        }
        .card-content {
            font-size: 0.9em;
            color: #666;
            margin: 10px 0;
        }
        .card-info {
            display: flex;
            justify-content: flex-start;
            gap: 10px;
            margin: 10px 0;
        }
        .card-info button {
            padding: 8px 12px;
            border: none;
            border-radius: 20px;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.9em;
        }
        .location-btn {
            background: #2196f3;
        }
        .age-btn {
            background: #ff9800;
        }
        .online-btn {
            background: #4caf50;
        }
        .online-btn i {
            color: #fff;
        }
        .card-actions {
            display: flex;
            justify-content: flex-start;
            gap: 20px;
            padding: 10px 0;
        }
        .card-actions a {
            color: #333;
            text-decoration: none;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .card-actions a:hover {
            color: #c2185b;
        }
        @media (max-width: 768px) {
            .card {
                flex-direction: column;
                align-items: center;
            }
            .card img {
                width: 100%;
            }
            .card-details {
                width: 100%;
                text-align: center;
            }
            .card-info {
                justify-content: center;
            }
            .card-actions {
                justify-content: center;
            }
        }
        ul.services {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        ul.services li {
            background: #ffebee;
            margin: 10px 0;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            flex: 1 1 calc(33.333% - 20px);
        }
        ul.services li i {
            margin-right: 10px;
            color: #c2185b;
            font-size: 20px;
        }
        .faq details {
            margin: 10px 0;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
        }
        .faq summary {
            padding: 15px;
            background: #f8f8f8;
            cursor: pointer;
        }
        .faq p {
            padding: 15px;
            margin: 0;
            background: white;
        }
        .disclaimer {
            background: #fff3cd;
            color: #856404;
            padding: 20px;
            border-radius: 8px;
            margin: 20px auto;
            max-width: 1200px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        footer {
            background-color: #c2185b;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 40px;
        }
        /* New Gallery Section Styles */
        .new-gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .new-card {
            position: relative;
            width: calc(33.333% - 20px);
            min-width: 250px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            background: #fff;
        }
        .new-card img {
            width: 100%;
            height: auto;
            display: block;
        }
        .new-card-details {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 15px;
            opacity: 0;
            transition: opacity 0.3s;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        .new-card:hover .new-card-details {
            opacity: 1;
        }
        .new-card-name {
            font-size: 1.2em;
            margin-bottom: 10px;
        }
        .new-card-info {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
        }
        .new-card-info span {
            padding: 8px 12px;
            border-radius: 20px;
            background: #ffffff50;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .new-card-actions {
            display: flex;
            gap: 20px;
        }
        .new-card-actions a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .new-card-actions a:hover {
            color: #ffeb3b;
        }
        @media (max-width: 768px) {
            .new-card {
                width: calc(50% - 20px);
            }
        }
        @media (max-width: 480px) {
            .new-card {
                width: 100%;
            }
        }
        /* Responsive Table Styles */
        .responsive-table {
            overflow-x: auto;
            margin-bottom: 20px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        th, td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        th {
            background-color: #ffebee;
        }
        @media (max-width: 768px) {
            table, thead, tbody, th, td, tr {
                display: block;
            }
            thead tr {
                position: absolute;
                top: -9999px;
                left: -9999px;
            }
            tr {
                border: 1px solid #ccc;
                margin-bottom: 10px;
            }
            td {
                border: none;
                border-bottom: 1px solid #eee;
                position: relative;
                padding-left: 50%;
                text-align: right;
            }
            td::before {
                content: attr(data-label);
                position: absolute;
                top: 12px;
                left: 12px;
                width: 45%;
                padding-right: 10px;
                white-space: nowrap;
                font-weight: bold;
                text-align: left;
            }
        }
        /* Tags Section */
        .tags-section {
            margin-bottom: 20px;
        }
        .tag {
            display: inline-block;
            background-color: #ffebee;
            padding: 5px 10px;
            margin: 5px;
            border-radius: 5px;
            font-size: 14px;
        }
        .tag i {
            margin-right: 5px;
        }
        /* Location Tag */
        .location-tag {
            display: inline-block;
            background-color: #4CAF50;
            color: white;
            padding: 10px 15px;
            border-radius: 5px;
            font-size: 16px;
            margin: 5px;
        }
        .location-tag i {
            margin-right: 8px;
        }
        /* Locations Section */
        .locations-section {
            margin-bottom: 20px;
        }
		/* FAQ Accordion Enhancements */
#faq details {
    margin: 12px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

#faq summary {
    padding: 16px 20px;
    background: #ffebee; /* Light pink to match theme */
    color: #c2185b;
    font-weight: bold;
    cursor: pointer;
    list-style: none; /* Removes default marker */
    position: relative;
}

#faq summary::-webkit-details-marker {
    display: none; /* Hide default arrow in Chrome/Safari */
}

#faq summary::after {
    content: '▼';
    position: absolute;
    right: 20px;
    font-size: 0.9em;
    transition: transform 0.3s;
}

#faq details[open] summary::after {
    transform: rotate(180deg);
}

#faq details p {
    padding: 0 20px 20px;
    margin: 0;
    background: white;
    line-height: 1.6;
}

/* Hover effect */
#faq summary:hover {
    background: #ffcdd2;
}
/* Testimonials Carousel */
#testimonials {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
}

.carousel-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.review-card {
    flex: 0 0 48%;           /* Shows ~2 cards at a time */
    background: #ffebee;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: left;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-stars {
    color: #ffc107;
    font-size: 1.2em;
    margin-bottom: 12px;
}

.review-text {
    font-style: italic;
    color: #444;
    margin: 0;
    line-height: 1.6;
}

.review-author {
    margin-top: 15px;
    font-weight: bold;
    color: #c2185b;
    font-size: 0.95em;
    text-align: right;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(194, 24, 91, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5em;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.carousel-btn:hover {
    background: #c2185b;
}

.prev { left: 10px; }
.next { right: 10px; }

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 100%;     /* 1 card at a time on mobile */
    }
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
    }
}
/* Category Table Styling */
.category-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.category-table th,
.category-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.category-table th {
    background: linear-gradient(to right, #ff4081, #c2185b);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.95em;
}

.category-table tr:nth-child(even) {
    background-color: #fff0f5; /* Very light pink */
}

.category-table tr:hover {
    background-color: #ffebee;
    transition: background 0.2s;
}

.category-table td strong {
    color: #c2185b;
}

.table-link {
    display: inline-block;
    background: #c2185b;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: all 0.3s;
}

.table-link:hover {
    background: #ad1457;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(194, 24, 91, 0.3);
}
/* Existing responsive-table (keep if you have it) */
.responsive-table {
    overflow-x: auto;
    margin: 20px 0;
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
}

/* Category Table Base */
.category-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.category-table th,
.category-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.category-table th {
    background: linear-gradient(to right, #ff4081, #c2185b);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.95em;
}

.category-table tr:nth-child(even) {
    background-color: #fff0f5;
}

.category-table tr:hover {
    background-color: #ffebee;
}

.table-link {
    background: #c2185b;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.table-link:hover {
    background: #ad1457;
}

/* === Mobile Responsive Table (Card Style) === */
@media (max-width: 768px) {
    .category-table {
        border: 0;
    }

    .category-table thead {
        display: none; /* hide header on mobile */
    }

    .category-table tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 12px;
        background: white;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        overflow: hidden;
    }

    .category-table td {
        display: block;
        text-align: right;
        font-size: 1em;
        border: none;
        padding: 12px 20px;
        position: relative;
        border-bottom: 1px solid #eee;
    }

    .category-table td:last-child {
        border-bottom: none;
    }

    .category-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 20px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: bold;
        text-align: left;
        color: #c2185b;
    }

    .category-table td strong {
        color: #c2185b;
    }

    /* Make View Profiles button full-width on mobile */
    .table-link {
        display: block;
        text-align: center;
        margin: 0 auto;
        width: 90%;
    }
}

/* Mobile responsiveness (already using your .responsive-table) */
@media (max-width: 768px) {
    .category-table th,
    .category-table td {
        padding: 14px 12px;
    }
    
    .table-link {
        padding: 6px 12px;
        font-size: 0.85em;
    }
}
/* Locations Grid - 2 rows × 20 columns */
.locations-grid {
    max-width: 1400px;
    margin: 30px auto;
}

.location-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
    margin-bottom: 20px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffebee;
    color: #c2185b;
    padding: 10px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 500;
    border: 1px solid #ffcdd2;
    transition: all 0.3s;
    white-space: nowrap;
}

.location-item i {
    font-size: 1.1em;
    color: #c2185b;
}

.location-item:hover {
    background: #c2185b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(194, 24, 91, 0.25);
}

@media (max-width: 1200px) {
    .location-row {
        gap: 10px 14px;
    }
    .location-item {
        font-size: 0.9em;
        padding: 8px 14px;
    }
}

@media (max-width: 768px) {
    .location-row {
        justify-content: flex-start;
    }
    .location-item {
        flex: 1 1 45%;
        justify-content: center;
    }
}
/* Contact + Map Section – Mobile Responsive */
.contact-map-section {
    padding: 40px 20px;
    background: #fff;
    text-align: center;
}

.two-column-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 30px auto;
}

.map-column,
.form-column {
    flex: 1 1 45%;           /* Roughly 50-50 split */
    min-width: 300px;
}

.map-embed {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.map-embed iframe {
    width: 100%;
    height: 450px;           /* Fixed height – looks good on all devices */
    border: 0;
}

/* Form Styling */
.contact-form {
    background: #ffebee;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #c2185b;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    box-sizing: border-box;
}

.submit-btn {
    background: #c2185b;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 30px;
    font-size: 1.1em;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #ad1457;
    transform: translateY(-2px);
}

.form-footer {
    margin-top: 20px;
    font-size: 0.95em;
    color: #444;
    text-align: center;
}

/* Mobile Adjustments – Stack vertically */
@media (max-width: 768px) {
    .two-column-container {
        flex-direction: column;
        gap: 40px;
    }

    .map-embed iframe {
        height: 350px;          /* Smaller height on mobile for better fit */
    }

    .contact-form {
        padding: 20px;
    }

    .submit-btn {
        padding: 14px;
        font-size: 1em;
    }
}

/* Extra small screens (very narrow phones) */
@media (max-width: 480px) {
    .map-embed iframe {
        height: 300px;
    }
}

.form-footer {
    margin-top: 20px;
    font-size: 0.95em;
    color: #444;
}

.form-footer strong {
    color: #c2185b;
}

/* Mobile Stack */
@media (max-width: 768px) {
    .two-column-container {
        flex-direction: column;
    }
}
