* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: #0f172a;
    color: #f8fafc;
    line-height: 1.6;
}

.navbar {
    position: sticky;
    top: 0;
    background: rgba(15, 23, 42, 0.98);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid #334155;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e11d48;
}

.logo span { color: #facc15; }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #f8fafc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover { color: #e11d48; }

.mobile-menu {
    display: none;
    font-size: 2rem;
    color: #e11d48;
    cursor: pointer;
}
/* ==================== TEXT HEADER ==================== */
.intro-text-header {
    background: linear-gradient(135deg, #1e2937, #0f172a);
    padding: 20px 5%;
    text-align: center;
    border-bottom: 2px solid #e11d48;
}

.intro-text-header h2 {
    font-size: 2rem;
    color: #facc15;
    margin-bottom: 10px;
}

.intro-text-header p {
    font-size: 1.1rem;
    color: #f8fafc;
}

/* ==================== VIDEO SECTION WITH CONTAINER ==================== */
.video-section {
    padding: 10px 5% 40px;
    background: #0f172a;
}

.video-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border: 2px solid #e11d48;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;     /* Important for responsive */
}

/* Play Overlay */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.play-button {
    width: 90px;
    height: 90px;
    background: #e11d48;
    border: 6px solid #facc15;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon {
    font-size: 42px;
    color: white;
    margin-left: 6px;
}

.play-text {
    margin-top: 15px;
    font-size: 1.3rem;
    color: #facc15;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    .intro-text-header {
        padding: 16px 5%;
    }
    .intro-text-header h2 {
        font-size: 1.7rem;
    }
    .intro-text-header p {
        font-size: 1.05rem;
    }

    .video-section {
        padding: 8px 5% 30px;
    }

    .video-wrapper {
        border-radius: 8px;
        border-width: 1px;
    }

    .play-button {
        width: 75px;
        height: 75px;
    }
    .play-icon {
        font-size: 34px;
    }
    .play-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .video-wrapper video {
        aspect-ratio: 16 / 10;
    }
}
.section {
    padding: 80px 5%;
}

h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #facc15;
}


.rates-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background: #1e2937;
    border-radius: 12px;
    overflow: hidden;
}

.rates-table th {
   background: #e11d48;
   padding: 18px;
    text-align: center;
    border: 1px solid #334155; 
 }

.rates-table td {
    padding: 18px;
    text-align: center;
    border: 1px solid #334155;
	
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: #1e2937;
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    font-size: 1.2rem;
}



/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f172a;
        flex-direction: column;
        padding: 1rem 0;
    }
    
    .nav-links.active { display: flex; }
    
    .mobile-menu { display: block; }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .section {
        padding: 60px 5%;
    }
}
/* ==================== PROFILES SECTION - YOUR SITE COLORS ==================== */
.profiles-section {
    padding: 80px 5%;
    background: #0f172a;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: #facc15;
    margin-bottom: 10px;
}

.section-heading p {
    color: #cbd5e1;
    font-size: 1.2rem;
}

.profiles-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.profile-card {
    display: flex;
    background: #1e2937;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid #e11d48;           /* Your Red Border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: all 0.4s;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(225, 29, 72, 0.4);
}

.profile-card img {
    width: 320px;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.profile-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.profile-content h3 {
    color: #facc15;                      /* Gold */
    font-size: 1.55rem;
    margin-bottom: 8px;
}

.profile-content .age-cat {
    color: #e11d48;                      /* Red */
    font-weight: 600;
    margin-bottom: 15px;
}

.profile-content p {
    color: #e2e8f0;
    line-height: 1.55;
    flex: 1;
}

.buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.buttons button {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.call-btn {
    background: #22c55e;
    color: white;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.buttons button:hover {
    transform: scale(1.05);
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    .profile-card {
        flex-direction: column;
    }
    .profile-card img {
        width: 100%;
        height: 280px;
    }
    .profile-content {
        padding: 20px;
    }
    
    .section-heading h2 {
        font-size: 2.1rem;
    }
}
/* ==================== CONTENT SECTIONS ==================== */
.content-section1, .content-section2 {
    padding: 80px 5%;
    background: #0f172a;
}

.content-section1 {
    background: linear-gradient(135deg, #1e2937, #0f172a);
}

.content-section1 .main-heading {
    font-size: 2.8rem;
    color: #facc15;
    text-align: center;
    margin-bottom: 20px;
}

.content-section1 .sub-heading {
    font-size: 1.6rem;
    color: #e11d48;
    text-align: center;
    margin-bottom: 30px;
}

.content-section1 p {
    font-size: 1.15rem;
    color: #e2e8f0;
    max-width: 900px;
    margin: 20px auto;
    line-height: 1.7;
	text-align: center;
}

.content-section2 p {
    font-size: 1.15rem;
    color: #e2e8f0;
    max-width: 900px;
    margin: 20px auto;
    line-height: 1.7;
	text-align: center;
}

.section-title {
    font-size: 2.4rem;
    color: #facc15;
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    background: #1e2937;
    padding: 30px 25px;
    border-radius: 12px;
    border: 1px solid #e11d48;
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-8px);
    border-color: #facc15;
}

.feature-box h3 {
    color: #facc15;
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.feature-box p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
    .content-section1 .main-heading {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 2rem;
    }
}
/* ==================== SECTION 3 ==================== */
.content-section3 {
    padding: 80px 5%;
    background: #1e2937;
}

.content-section3 .section-title {
    font-size: 2.4rem;
    color: #facc15;
    text-align: center;
    margin-bottom: 40px;
}

.services-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-content p {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 25px;
    line-height: 1.7;
}

.services-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    text-align: left;
    margin: 30px 0;
}

.services-list li {
    background: #0f172a;
    padding: 15px 20px;
    border-radius: 10px;
    color: #cbd5e1;
    border-left: 5px solid #e11d48;
    font-size: 1.1rem;
}

.highlight {
    background: #0f172a;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #facc15;
    font-size: 1.15rem;
    color: #f8fafc;
    font-weight: 500;
}

/* Mobile */
@media (max-width: 768px) {
    .content-section3 .section-title {
        font-size: 2rem;
    }
    .services-list li {
        font-size: 1rem;
    }
}
/* ==================== GALLERY SECTION ==================== */
.gallery-section {
    padding: 80px 5%;
    background: #0f172a;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: #facc15;
}

.section-heading p {
    color: #cbd5e1;
    font-size: 1.2rem;
}

.carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
}

.gallery-carousel::-webkit-scrollbar {
    display: none;
}

.gallery-card {
    background: #1e2937;
    border-radius: 16px;
    overflow: hidden;
    min-width: 280px;
    border: 2px solid #e11d48;
    transition: all 0.4s;
    flex-shrink: 0;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(225, 29, 72, 0.4);
}

.gallery-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.gallery-info {
    padding: 15px;
    text-align: center;
}

.gallery-info h3 {
    color: #facc15;
    font-size: 1.35rem;
    margin-bottom: 5px;
}

.gallery-info p {
    color: #e11d48;
    font-weight: 600;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(225, 29, 72, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 28px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.prev-btn { left: -20px; }
.next-btn { right: -20px; }

.carousel-btn:hover {
    background: #e11d48;
    transform: translateY(-50%) scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gallery-card {
        min-width: 240px;
    }
    .gallery-card img {
        height: 280px;
    }
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    .prev-btn { left: 5px; }
    .next-btn { right: 5px; }
}
/* ==================== RATE PACKAGES SECTION ==================== */
.rates-section {
    padding: 80px 5%;
    background: #0f172a;
}

.section-title {
    font-size: 2.6rem;
    text-align: center;
    color: #e11d48;
    margin-bottom: 50px;
}

.highlight {
    color: #facc15;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: #1e2937;
    border-radius: 16px;
    padding: 30px 25px;
    width: 320px;
    text-align: center;
    border: 2px solid #334155;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: #e11d48;
    box-shadow: 0 20px 40px rgba(225, 29, 72, 0.3);
}

.pricing-card.popular {
    border-color: #facc15;
    transform: scale(1.08);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -28px;
    background: #facc15;
    color: #0f172a;
    padding: 8px 35px;
    font-size: 0.95rem;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.pricing-card h3 {
    font-size: 1.6rem;
    color: #f8fafc;
    margin-bottom: 15px;
}

.price {
    font-size: 2.4rem;
    font-weight: 700;
    color: #e11d48;
    margin-bottom: 25px;
}

.features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.features li {
    padding: 10px 0;
    color: #cbd5e1;
    border-bottom: 1px solid #334155;
}

.check {
    color: #22c55e;
    margin-right: 10px;
}

.cross {
    color: #ef4444;
    margin-right: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card {
        width: 90%;
        max-width: 340px;
    }
    .pricing-card.popular {
        transform: scale(1.05);
    }
}
/* ==================== GIRLS CONTACT TABLE ==================== */
.contact-table-section {
    padding: 80px 5%;
    background: #0f172a;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: #e11d48;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    color: #cbd5e1;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.table-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.girls-table {
    width: 100%;
    border-collapse: collapse;
    background: #1e2937;
    min-width: 700px;
}

.girls-table thead {
    background: #e11d48;
}

.girls-table th {
    padding: 18px 15px;
    text-align: left;
    color: white;
    font-size: 1.1rem;
}

.girls-table td {
    padding: 18px 15px;
    color: #e2e8f0;
    border-bottom: 1px solid #334155;
}

.girls-table tr:hover {
    background: #2a3a4f;
}

.girls-table tr:last-child td {
    border-bottom: none;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid #25D366;
    white-space: nowrap;
}

.whatsapp-btn:hover {
    background: #22c55e;
    transform: scale(1.08);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .girls-table th,
    .girls-table td {
        padding: 14px 10px;
        font-size: 0.98rem;
    }
    
    .section-title {
        font-size: 2.1rem;
    }
}	
/* ==================== FAQ SECTION - CENTERED ==================== */
.faq-section {
    padding: 80px 5%;
    background: #0f172a;
}

.faq-section .container {
    max-width: 900px;           /* Rate table jaisa width */
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: #facc15;
    margin-bottom: 12px;
}

.subtitle {
    text-align: center;
    color: #cbd5e1;
    font-size: 1.2rem;
    margin-bottom: 50px;
}

/* FAQ Wrapper - Centered Box */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #1e2937;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #334155;
}

.faq-item {
    background: #0f172a;
    margin: 12px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #334155;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #e11d48;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: #f8fafc;
    font-weight: 500;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #cbd5e1;
    line-height: 1.7;
}

.faq-answer.show {
    padding: 20px 25px;
    max-height: 280px;
}

.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    color: #e11d48;
    transition: 0.3s;
}

.faq-question.active::after {
    content: '−';
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-section .container {
        max-width: 95%;
    }
    .faq-wrapper {
        padding: 8px;
        margin: 0 10px;
    }
    .faq-question {
        padding: 18px 20px;
        font-size: 1.05rem;
    }
}
/* ==================== REVIEWS SECTION ==================== */
.reviews-section {
    padding: 80px 5%;
    background: #0f172a;
}

.reviews-section .section-title {
    font-size: 2.5rem;
    text-align: center;
    color: #facc15;
    margin-bottom: 12px;
}

.subtitle {
    text-align: center;
    color: #cbd5e1;
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: #1e2937;
    border-radius: 16px;
    padding: 30px 25px;
    border: 1px solid #334155;
    transition: all 0.4s;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: #e11d48;
    box-shadow: 0 15px 35px rgba(225, 29, 72, 0.25);
}

.stars {
    color: #facc15;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.review-text {
    color: #e2e8f0;
    line-height: 1.65;
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.reviewer {
    color: #cbd5e1;
    font-size: 0.95rem;
    border-top: 1px solid #334155;
    padding-top: 15px;
}

.reviewer strong {
    color: #facc15;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .review-card {
        padding: 25px 20px;
    }
}
/* ==================== CONTACT + MAP SECTION ==================== */
.contact-map-section {
    padding: 80px 5%;
    background: #0f172a;
}

.contact-map-section .section-title {
    font-size: 2.5rem;
    text-align: center;
    color: #facc15;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    color: #cbd5e1;
    margin-bottom: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.map-column, .form-column {
    background: #1e2937;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #334155;
}

.map-column h3, .form-column h3 {
    color: #facc15;
    margin-bottom: 15px;
    text-align: center;
}

.map-container {
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e11d48;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    color: #f8fafc;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #e11d48;
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #e11d48;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #f43f5e;
    transform: translateY(-3px);
}

.direct-contact {
    text-align: center;
    margin-top: 20px;
    color: #facc15;
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .map-container {
        height: 320px;
    }
}
/* ==================== FOOTER ==================== */
.main-footer {
    background: #0a0f1c;
    color: #cbd5e1;
    padding: 60px 5% 20px;
    border-top: 3px solid #e11d48;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h3 {
    color: #facc15;
    margin-bottom: 20px;
    font-size: 1.3rem;
    border-bottom: 2px solid #e11d48;
    padding-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #e11d48;
    padding-left: 5px;
}

.footer-column p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.social-links a {
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #64748b;
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* ==================== CONTENT SECTION - YOUR SITE COLORS ==================== */
.content-section {
    padding: 80px 5%;
    background: #0f172a;
}

.content-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Headings Styling */
.content-section h2 {
    font-size: 2.6rem;
    color: #facc15;
    margin-bottom: 20px;
    text-align: center;
	text-align: center;
}

.content-section h3 {
    font-size: 2.1rem;
    color: #e11d48;
    margin: 35px 0 15px 0;
	text-align: center;
}

.content-section h4 {
    font-size: 1.7rem;
    color: #f8fafc;
    margin: 30px 0 12px 0;
	text-align: center;
}

.content-section h5 {
    font-size: 1.4rem;
    color: #cbd5e1;
    margin: 25px 0 10px 0;
    font-weight: 500;
	text-align: center;
}

.content-section h6 {
    font-size: 1.15rem;
    color: #94a3b8;
    margin: 20px 0 10px 0;
    font-style: italic;
	text-align: center;
}

/* Paragraph Styling */
.content-section p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #e2e8f0;
    margin-bottom: 20px;
	text-align: center;
}

/* Optional - Add underline or accent for headings */
.content-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #e11d48;
    margin: 15px auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .content-section h2 { font-size: 2.1rem; }
    .content-section h3 { font-size: 1.8rem; }
    .content-section h4 { font-size: 1.5rem; }
    .content-section h5 { font-size: 1.25rem; }
    .content-section p { font-size: 1.05rem; }
}
/* ==================== GLOBAL SECTION SPACING - REDUCED ==================== */
.section, 
.rates-section, 
.profiles-section, 
.gallery-section, 
.faq-section, 
.reviews-section, 
.contact-map-section,
.content-section1,
.content-section2,
.content-section3, 
.contact-table-section,
.content-section {
    padding: 20px 5% !important;     /* Pehle 80px tha, ab 60px */
    margin: 0 !important;
}

/* Agar koi section ko aur tight chahiye */
.content-section, 
.faq-section, 
.reviews-section {
    padding: 20px 5% !important;
}

/* Navbar ke baad ka space kam */
.intro-text-header {
    margin-top: 0;
    padding: 18px 5%;
}

/* Video Section ke baad ka gap kam */
.video-section, 
.rates-section {
    padding-top: 20px !important;
}

/* Headings ke neeche margin kam */
h2, h3, h4 {
    margin-bottom: 20px !important;
}

p {
    margin-bottom: 18px !important;
}

/* Mobile pe aur tight spacing */
@media (max-width: 768px) {
    .section, 
	.contact-table-section,
    .rates-section, 
    .profiles-section, 
    .gallery-section, 
    .faq-section, 
    .reviews-section, 
    .contact-map-section {
        padding: 25px 5% !important;
    }
}

/* जब लिंक सामान्य हो (अनक्लिक किया हुआ) */
a {
  color: #f8fafc;
  text-decoration: none;
}

/* जब आप लिंक पर माउस ले जाएं (Hover) */
a:hover {
  color: red; 
}

 h3 {
    font-size: 2.1rem;
    color: #e11d48;
    margin: 35px 0 15px 0;
}
/* Video Section Heading */
.video-section .section-title {
    font-size: 2.3rem;
    color: #facc15;
    text-align: center;
    margin-bottom: 10px;
}

.video-section .section-subtitle {
    text-align: center;
    color: #cbd5e1;
    margin-bottom: 30px;
    font-size: 1.1rem;
}
/* PERFORMANCE & ACCESSIBILITY FIXES */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Reduce CLS (Cumulative Layout Shift) */
.video-wrapper, .profile-card, .review-card, .pricing-card {
    contain: content;
}

/* Preload important resources */
<link rel="preload" href="images/call-girl-in-zirakpur.png" as="image">

p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #e2e8f0;
    margin-bottom: 20px;
	text-align: center;
}