* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

/* ================== NAVBAR ================== */
.navbar {
    background: #111827;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e11d48;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu li a {
    color: #dc3545;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: #e11d48;
}

.phone-btn {
    background: #e11d48;
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: #1f2937;
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.3);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li a {
    color: #dc3545;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #374151;
}

/* ================== HERO BANNER ================== */
.hero-banner {
    height: 85vh;
    min-height: 550px;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.7)), 
                url('../../images/banner.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.banner-content {
    max-width: 900px;
    padding: 0 20px;
}

.banner-content h1 {
    text-shadow: 0 3px 10px rgba(0,0,0,0.8);
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    margin: 8px;
}

.btn:hover {
    transform: translateY(-3px);
}

/* ================== MAIN CONTENT ================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Headings - Center Aligned */
h1, h2, h3, h4, h5, h6 {
    text-align: center;
    margin-bottom: 25px;
}

h1 {
    font-size: 2.8rem;
    color: #1f2937;
}

h2 {
    font-size: 2.3rem;
    color: #1f2937;
}

h3 {
    font-size: 1.8rem;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.category-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.category-card p {
    text-align: center;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Footer */
footer {
    background: #111827;
    color: white;
    text-align: center;
    padding: 40px 0;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .hamburger {
        display: block;
    }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.9rem; }
}
/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
}

/* Large Screen pe 4 images ek row mein */
@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 450px;           /* Height thodi kam ki hai 4 columns ke liye */
    object-fit: cover;
    transition: all 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}
/* Rates Table */
.rates-table {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.rates-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
}

.rates-table th {
    background: #e11d48;
    color: white;
    padding: 18px 12px;
    font-size: 1.1rem;
    text-align: center;
}

.rates-table td {
    padding: 18px 12px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

.rates-table tr:nth-child(even) {
    background: #f8fafc;
}

.rates-table tr:hover {
    background: #fee2e9;
}
/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.faq-question {
    padding: 18px 22px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
}

.faq-answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #555;
}

.faq-item.active .faq-answer {
    padding: 18px 22px;
    max-height: 200px;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.4s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
/* Client Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.review-card {
    background: #f8fafc;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.review-stars {
    color: #fbbf24;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

.review-author {
    font-weight: 600;
    color: #e11d48;
}
/* 4 Column Service Areas */
.locations-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

@media (min-width: 1024px) {
    .locations-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.location-column h3 {
    color: #e11d48;
    margin-bottom: 18px;
    font-size: 1.35rem;
    position: relative;
    padding-bottom: 8px;
}

.location-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #e11d48;
}

.location-column ul {
    list-style: none;
    padding: 0;
}

.location-column li {
    margin-bottom: 10px;
}

.location-column a {
    color: #1e40af;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    padding: 6px 8px;
    border-radius: 6px;
}

.location-column a:hover {
    background: #f3e8ff;
    color: #7c3aed;
    padding-left: 15px;
}
/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: all 0.3s;
}

.float-btn:hover {
    transform: scale(1.1);
}

.call-btn {
    background: #e11d48;
    color: #dc3545;
}

.whatsapp-btn {
    background: #25D366;
    color: #dc3545;
}

/* Mobile pe thoda adjust */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    .float-btn {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
}
/* Premium Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.service-card {
    background: #f8fafc;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1f2937;
}

.service-card p {
    color: #666;
    line-height: 1.5;
}