/* ====================== style.css ====================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;           /* Yeh important hai hilne ke liye */
}

/* ==================== NAVBAR ==================== */
nav {
    background-color: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
    }

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ef4444;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ef4444;
    text-decoration: none;
    font-weight: 600;
}

/* Hamburger */
.hamburger {
    font-size: 1.5rem;
    color: #ff3366;
    cursor: pointer;
    padding: 5px 12px;
    background: #000;
    border: 2px solid #ff3366;
    border-radius: 8px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    width: 100%;
    background-color: #111;
    padding: 20px 0;
    border-top: 2px solid #7f1d1d;
}

.mobile-menu a {
    display: block;
    padding: 18px 5%;
    color: #ef4444;
    text-decoration: none;
    font-size: 1.3rem;
    border-bottom: 1px solid #222;
}

.mobile-menu.active {
    display: block !important;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: block;
    }
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
                url('images/banner6.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h2 {
    font-size: 2.6rem;
    color: #ff3366;
}

.tagline {
    font-size: 1.3rem;
    margin: 15px 0 30px;
    color: #ffd700;
}

/* ==================== CITY INFO SECTION - Text Color ==================== */
.city-info {
    background: linear-gradient(135deg, #4c1d95, #9f1e9f, #c026d3);
    text-align: center;
}

.city-info h1 {
    color: #ef4444;           /* Red Color for Heading */
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.city-info h1 span {
    color: #fbbf24;           /* Gold Color for (The Financial Capital) */
}

.city-info .description {
    color: #ffffff;           /* Pure White for Paragraph */
    font-size: 1.35rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Mobile */
@media (max-width: 768px) {
    .city-info h1 { font-size: 1.6rem; }
    .city-info h1 span { font-size: 1.8rem; }
    .city-info .description { font-size: 1.15rem; }
}
/* ==================== OTHER SECTIONS ==================== */
.trust-bar, .services, .gallery, .contact-section, footer {
    padding: 40px 20px;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #ef4444;
}

.service-grid, .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ==================== RESPONSIVE FIX (Anti-Shaking) ==================== */
@media (max-width: 992px) {
    .nav-links { display: none !important; }
    .hamburger { display: block !important; }
}

@media (max-width: 768px) {
    .logo { font-size: 1.9rem; }
    .hero-content h2 { font-size: 2.1rem; }
    .tagline { font-size: 1.1rem; }
    
    .hero { min-height: 90vh; }           /* Yeh hilne ko kam karega */
    
    .btn {
        width: 90%;
        margin: 10px auto;
        justify-content: center;
    }
}

/* Extra Safety */
html, body {
    width: 100%;
    overflow-x: hidden;
}
/* ==================== VIDEO SECTION ==================== */
.video-section {
    background-color: #000;
    padding: 30px 10px;
    text-align: center;
}

.video-container h2 {
    font-size: 2.8rem;
    color: #ef4444;
    margin-bottom: 30px;
}

.video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 40px 20px 25px;
    color: white;
}

.video-overlay h3 {
    font-size: 1.6rem;
    color: #ffd700;
}

/* Mobile */
@media (max-width: 768px) {
    .video-container h2 { font-size: 2.2rem; }
    .video-overlay h3 { font-size: 1.4rem; }
}
/* ==================== SPLIT IMAGE + CONTENT SECTION ==================== */
.split-section {
    background-color: #0a0a0a;
    padding: 80px 20px;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.split-image {
    flex: 1;
    min-width: 300px;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.7);
}

.split-content {
    flex: 1;
    min-width: 300px;
}

.split-content h2 {
    font-size: 2.2rem;
    color: #ef4444;
    margin-bottom: 10px;
}

.split-content h3 {
    font-size: 2.4rem;
    color: #fbbf24;
    margin-bottom: 25px;
    line-height: 1.2;
}

.split-content h3 span {
    color: #ff3366;
}

.split-content p {
    font-size: 1.2rem;
    color: #e5e5e5;
    margin-bottom: 20px;
    line-height: 1.7;
}

.split-content ul {
    list-style: none;
    margin-top: 20px;
}

.split-content li {
    font-size: 1.15rem;
    padding: 8px 0;
    color: #ffd700;
}

/* Responsive */
@media (max-width: 992px) {
    .split-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
}
/* ==================== SPLIT SECTION - LEFT CONTENT + RIGHT IMAGE ==================== */
.split-section {
    background-color: #0a0a0a;
    padding: 20px 20px;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.split-content {
    flex: 1;
    min-width: 300px;
}

.split-content h2 {
    font-size: 2.4rem;
    color: #ef4444;
    margin-bottom: 10px;
}

.split-content h3 {
    font-size: 2.6rem;
    color: #fbbf24;
    margin-bottom: 25px;
    line-height: 1.2;
}

.split-content p {
    font-size: 1.2rem;
    color: #e5e5e5;
    line-height: 1.8;
    margin-bottom: 20px;
}

.split-content ul {
    list-style: none;
}

.split-content li {
    padding: 10px 0;
    color: #ffd700;
    font-size: 1.15rem;
}

.split-image {
    flex: 1;
    min-width: 300px;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}

/* Reverse for Left Content + Right Image */
.split-section.reverse .split-container {
    flex-direction: row;
}

/* Mobile */
@media (max-width: 992px) {
    .split-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
}
/* ==================== GALLERY SECTION (4 per row) ==================== */
.gallery-section {
    background-color: #0a0a0a;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    color: #ef4444;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #fbbf24;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* 4 images per row */
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
}

.gallery-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.4);
}

.gallery-card img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.card-info {
    padding: 15px;
    text-align: center;
}


.card-info p {
    color: #ffd700;
    font-size: 1rem;
}
/* ==================== CONTENT SECTION ==================== */
.content-section {
    background: linear-gradient(135deg, #4c1d95, #9f1e9f);
    color: white;
    text-align: center;
}

.content-container {
    max-width: 1100px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #ef4444;
}

.content-section h3 {
    font-size: 1.2rem;
    color: #ef4444;
    margin: 40px 0 20px;
}
.content-section h4 {
    font-size: 1rem;
    color: #ef4444;
    margin: 40px 0 20px;
}
.content-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #f0e6ff;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.features li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 1.15rem;
}

.features li:last-child {
    border-bottom: none;
}

.features strong {
    color: #ff69b4;
}

/* Mobile */
@media (max-width: 768px) {
    .content-section h2 { font-size: 2.2rem; }
    .content-section p { font-size: 1.1rem; }
}
/* ==================== FAQ SECTION ==================== */
.faq-section {
    background-color: #0a0a0a;
    }

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #1a1a1a;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #3a3a3a;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #e5e5e5;
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-question {
        font-size: 1.1rem;
        padding: 18px;
    }
}
/* ==================== CLIENT REVIEWS SECTION ==================== */
.reviews-section {
    background-color: #111;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
    transition: all 0.4s;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: #ef4444;
}

.stars {
    color: #fbbf24;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.review-card p {
    font-size: 1.15rem;
    color: #e5e5e5;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.client-info {
    color: #ffd700;
    font-size: 1rem;
}

.client-info small {
    color: #888;
    font-size: 0.95rem;
}

/* Mobile */
@media (max-width: 768px) {
    .review-card {
        padding: 25px 20px;
    }
}
/* ==================== FOOTER ==================== */
.main-footer {
    background-color: #0a0a0a;
    color: #ddd;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    color: #ef4444;
    margin-bottom: 18px;
    font-size: 1.35rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-column a:hover {
    color: #ff3366;
    padding-left: 6px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #222;
   
    color: #888;
    font-size: 0.95rem;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}
/* ==================== FIXED BOTTOM BAR ==================== */
.fixed-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    display: flex;
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.6);
}

.call-btn, .whatsapp-btn {
    flex: 1;
    padding: 18px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
}

.call-btn {
    background-color: #ef4444;
}

.whatsapp-btn {
    background-color: #22c55e;
}

.call-btn:hover, .whatsapp-btn:hover {
    opacity: 0.9;
}

/* Mobile me safe spacing */
@media (max-width: 768px) {
    .fixed-bottom-bar {
        padding-bottom: env(safe-area-inset-bottom);
    }
}
/* ==================== RATES TABLE ==================== */
.rates-section {
    background-color: #0a0a0a;
    text-align: center;
}

.rates-table {
    max-width: 900px;
    margin: 40px auto;
    overflow-x: auto;
}

.rates-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
}

.rates-table th {
    background-color: #ef4444;
    color: white;
    padding: 18px;
    font-size: 1.2rem;
}

.rates-table td {
    padding: 18px;
    border-bottom: 1px solid #333;
    font-size: 1.15rem;
    color: #ddd;
}

.rates-table tr:last-child td {
    border-bottom: none;
}

.rates-table tr:hover {
    background-color: #2a2a2a;
}

.note {
    color: #ffd700;
    font-size: 1.1rem;
    margin-top: 30px;
    font-style: italic;
}
/* ==================== CONTACT FORM SECTION ==================== */
.contact-form-section {
    background-color: #0a0a0a;
    text-align: center;
}

.contact-form {
    max-width: 700px;
    margin: 40px auto;
    background: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    background: #222;
    border: 1px solid #444;
    border-radius: 8px;
    color: white;
    font-size: 1.1rem;
}

.submit-btn {
    background: #ef4444;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #dc2626;
    transform: scale(1.05);
}

.direct-contact {
    margin-top: 40px;
}

.direct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}

.call { background: #ef4444; color: white; }
.whatsapp { background: #22c55e; color: white; }