* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar {
    background: rgba(15, 15, 26, 0.98);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #FF4D94;
}

.logo span {
    color: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    color: #E0E0E0;
    text-decoration: none;
    font-weight: 500;
}

.call-btn {
    background: #FF4D94;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    width: 100%;
    background: #1A1A2E;
    padding: 20px 15px;
    position: absolute;
    top: 75px;
    left: 0;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu a {
    color: #E0E0E0;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-menu,
    .desktop-call {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .mobile-call {
        margin-top: 15px;
        width: 100%;
        text-align: center;
        padding: 15px;
    }
}
/* === VIDEO HERO - STRONG MOBILE FIX === */
.video-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 75px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    min-width: 100%;
    min-height: 100%;
}

/* Mobile Specific Strong Fix */
@media (max-width: 768px) {
    .video-hero {
        height: 100vh;
        min-height: 580px;
    }
    
    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15,15,26,0.7), rgba(25,15,35,0.85));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    padding: 0 20px;
    color: white;
}

.hero-content h1 {
    font-size: 3.2rem;
    color: #FF4D94;
    margin-bottom: 12px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.play-btn, .cta-btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.play-btn {
    background: rgba(255,77,148,0.95);
    border: 2px solid white;
    color: white;
}

.cta-btn {
    background: #FF4D94;
    color: white;
    text-decoration: none;
}

.play-btn:hover, .cta-btn:hover {
    transform: scale(1.05);
}

/* Scroll Indicator */
.scroll-down {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    color: white;
    z-index: 3;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 15px); }
    100% { transform: translate(-50%, 0); }
}
/* Heading Section */
.heading-section {
    background: #0F0F1A;
    padding: 80px 0 60px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 77, 148, 0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.heading-section h1 {
    font-size: 2.8rem;
    color: #FF4D94;
    margin-bottom: 18px;
    line-height: 1.2;
}

.subheading {
    font-size: 1.25rem;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 40px auto;
    opacity: 0.9;
}
.heading-section p {
    font-size: 1.1rem;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 25px auto;
    line-height: 1.7;
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.feature-box {
    background: rgba(26, 26, 46, 0.6);
    padding: 18px 28px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #E0E0E0;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid rgba(255, 77, 148, 0.2);
}

.feature-box:hover {
    background: rgba(255, 77, 148, 0.1);
    transform: translateY(-5px);
    border-color: #FF4D94;
}

.feature-box i {
    color: #FF4D94;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .heading-section h1 {
        font-size: 2.2rem;
    }
    .subheading {
        font-size: 1.1rem;
    }
    .features {
        gap: 15px;
    }
    .feature-box {
        padding: 14px 20px;
        font-size: 15px;
    }
}
/* Our Girls Section */
.girls-section {
    background: #0F0F1A;
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #FF4D94;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #E0E0E0;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.girls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.girl-card {
    background: #1A1A2E;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s;
    border: 1px solid rgba(255, 77, 148, 0.2);
}

.girl-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(255, 77, 148, 0.15);
    border-color: #FF4D94;
}

.girl-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.girl-info {
    padding: 20px;
}

.girl-name {
    font-size: 1.4rem;
    color: #FF4D94;
    margin-bottom: 8px;
}

.girl-age {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 12px;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.category-tag {
    background: rgba(159, 42, 107, 0.3);
    color: #FF4D94;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.girl-desc {
    color: #E0E0E0;
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.view-btn {
    background: #FF4D94;
    color: white;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.view-btn:hover {
    background: #9F2A6B;
}

/* Responsive */
@media (max-width: 576px) {
    .girls-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 2.2rem;
    }
}
/* Content Sections */
.content-section {
    background: #0F0F1A;
    padding: 90px 0;
    border-bottom: 1px solid rgba(255, 77, 148, 0.15);
}

.content-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Headings */
.content-section h2 {
    font-size: 2.6rem;
    color: #FF4D94;
    margin-bottom: 40px;
}

.content-section h3 {
    font-size: 1.8rem;
    color: #FF4D94;
    margin: 35px 0 15px 0;
}

.content-section h4 {
    font-size: 1.5rem;
    color: #FF4D94;
    margin: 30px 0 12px 0;
}

.content-section h5 {
    font-size: 1.6rem;
    color: #FF4D94;
    margin-bottom: 20px;
}

.content-section h6 {
    font-size: 1.35rem;
    color: #E0E0E0;
    margin: 28px 0 10px 0;
}

/* Paragraphs */
.content-section p {
    font-size: 1.1rem;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 25px auto;
    line-height: 1.7;
}

/* Anchor Link */
.content-link {
    color: #FF4D94;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
    border-bottom: 2px solid #FF4D94;
    padding-bottom: 4px;
}

.content-link:hover {
    color: #FF99C8;
    border-color: #FF99C8;
}

/* Responsive */
@media (max-width: 768px) {
    .content-section h2 { font-size: 2.2rem; }
    .content-section h3 { font-size: 1.6rem; }
    .content-section h4, .content-section h5 { font-size: 1.4rem; }
    .content-section h6 { font-size: 1.25rem; }
}
/* Premium Services Section */
.services-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/callgirlsdehradunescort-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 26, 0.85);
    z-index: 2;
}

.services-section .container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.section-title {
    font-size: 2.8rem;
    color: #FF4D94;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #E0E0E0;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

/* Horizontal Scroll */
.services-scroll {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 20px 0 40px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.services-scroll::-webkit-scrollbar {
    height: 8px;
}

.services-scroll::-webkit-scrollbar-thumb {
    background: #FF4D94;
    border-radius: 10px;
}

.service-card {
    background: #1A1A2E;
    min-width: 280px;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid rgba(255, 77, 148, 0.2);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: #FF4D94;
    box-shadow: 0 15px 35px rgba(255, 77, 148, 0.2);
}

.service-icon {
    font-size: 48px;
    color: #FF4D94;
    margin-bottom: 20px;
}

.service-card h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #E0E0E0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .service-card {
        min-width: 260px;
    }
    .services-section {
        padding: 80px 0;
    }
}
/* Gallery Carousel Section */
.gallery-section {
    background: #0F0F1A;
    padding: 100px 0;
}

.carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.girl-profile-card {
    background: #1A1A2E;
    min-width: 260px;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s;
    border: 1px solid rgba(255, 77, 148, 0.2);
}

.girl-profile-card:hover {
    transform: scale(1.05);
    border-color: #FF4D94;
    box-shadow: 0 20px 40px rgba(255, 77, 148, 0.25);
}

.girl-profile-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.profile-info {
    padding: 18px;
    text-align: center;
}

.girl-profile-card h3 {
    color: #FF4D94;
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.girl-profile-card .age {
    color: #aaa;
    margin-bottom: 12px;
}

.categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}

.category-tag {
    background: rgba(159, 42, 107, 0.25);
    color: #FF4D94;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 77, 148, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.carousel-btn:hover {
    background: #FF4D94;
    transform: translateY(-50%) scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .girl-profile-card {
        min-width: 220px;
    }
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
}
/* Rates Section */
.rates-section {
    background: #0F0F1A;
    padding: 100px 0;
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rate-card {
    background: #1A1A2E;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s;
    border: 1px solid rgba(255, 77, 148, 0.2);
}

.rate-card:hover {
    transform: translateY(-10px);
    border-color: #FF4D94;
}

.rate-card.popular {
    border-color: #FF4D94;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 77, 148, 0.25);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF4D94;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.rate-header h3 {
    color: #FF4D94;
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.duration {
    color: #aaa;
    font-size: 1rem;
}

.price {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin: 15px 0 25px 0;
}

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    padding-left: 10px;
}

.features li {
    color: #E0E0E0;
    margin: 12px 0;
    font-size: 1.05rem;
}

.book-btn {
    background: #FF4D94;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

.book-btn:hover {
    background: #9F2A6B;
    transform: scale(1.05);
}

.note {
    text-align: center;
    color: #aaa;
    margin-top: 40px;
    font-size: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .rates-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .rate-card {
        padding: 25px 15px;
    }
    .price {
        font-size: 2.4rem;
    }
}
/* Trending Hashtags Section */
.trending-section {
    background: #0F0F1A;
    padding: 100px 0;
}

.hashtags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.hashtag-card {
    background: #1A1A2E;
    padding: 18px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 77, 148, 0.2);
}

.hashtag-card:hover {
    transform: translateY(-8px);
    border-color: #FF4D94;
    background: #25253A;
}

.hashtag-icon {
    font-size: 28px;
    width: 45px;
    color: #FF4D94;
}

.hashtag-text {
    color: #E0E0E0;
    font-weight: 500;
    font-size: 1.05rem;
}

.hashtag-text:hover {
    color: #FF4D94;
}

/* Responsive */
@media (max-width: 576px) {
    .hashtags-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    .hashtag-card {
        padding: 15px;
    }
}
/* FAQ Section */
.faq-section {
    background: #0F0F1A;
    padding: 100px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: #1A1A2E;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 77, 148, 0.2);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #FF4D94;
}

.faq-question {
    padding: 20px 25px;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1A1A2E;
}

.faq-question:hover {
    background: #25253A;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #E0E0E0;
    line-height: 1.7;
}

.faq-answer.show {
    padding: 0 25px 25px 25px;
    max-height: 300px;
}

.faq-question .icon {
    font-size: 1.4rem;
    transition: 0.3s;
}

.faq-question.active .icon {
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
        padding: 18px 20px;
    }
}
/* Reviews Section */
.reviews-section {
    background: #0F0F1A;
    padding: 100px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.review-card {
    background: #1A1A2E;
    padding: 30px 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 77, 148, 0.2);
    transition: all 0.4s;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: #FF4D94;
    box-shadow: 0 15px 35px rgba(255, 77, 148, 0.15);
}

.stars {
    color: #FF4D94;
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.review-text {
    color: #E0E0E0;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.reviewer {
    color: #aaa;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255,77,148,0.2);
    padding-top: 15px;
}

.reviewer strong {
    color: #FF4D94;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
/* Footer */
.footer {
    background: #0A0A14;
    color: #E0E0E0;
    padding: 80px 0 30px 0;
    border-top: 1px solid #FF4D94;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column h3 {
    color: #FF4D94;
    font-size: 1.4rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #FF4D94;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #E0E0E0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-column a:hover {
    color: #FF4D94;
    padding-left: 5px;
}

.footer-phone {
    color: #FF4D94;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,77,148,0.2);
    color: #888;
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }
    
    .footer-column h3 {
        display: block;
        margin-bottom: 15px;
    }
}
/* ================== SECTION SPACING REDUCED ================== */

/* Sabhi main sections ke liye common spacing */
section {
    padding: 50px 0 !important;
}

/* Specific sections ke liye thoda adjustment */
.hero {
    margin-top: 0;
    padding-top: 0;
}

.girls-section,
.services-section,
.gallery-section,
.rates-section,
.trending-section,
.faq-section,
.reviews-section,
.content-section,
.heading-section {
    padding: 50px 0 !important;
}

/* Agar video hero ke baad heading section hai toh */
.video-hero + .heading-section {
    padding-top: 40px !important;
}

/* Container padding */
.container {
    padding: 0 20px;
}

/* Agar kisi section mein bahut space lage toh yeh use karo */
.section-title {
    margin-bottom: 25px !important;
}

.section-subtitle {
    margin-bottom: 45px !important;
}

/* Mobile pe aur tight spacing */
@media (max-width: 768px) {
    section {
        padding: 55px 0 !important;
    }
    
    .girls-section,
    .services-section,
    .gallery-section,
    .rates-section,
    .trending-section,
    .faq-section,
    .reviews-section {
        padding: 40px 0 !important;
    }
}
ul {
  
  color: #E0E0E0;
}
/* Standard link color */
a:link {
  color: #E0E0E0;
  text-decoration: none;
}

/* Color after the link has been visited */
a:visited {
  color: purple;
}

/* Color when you hover over the link */
a:hover {
  color: hotpink;
}

/* Color the moment the link is clicked */
a:active {
  color: blue;
}