/* Global Reset and Professional Variable Configuration */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-main: #F5F7FA;
    --bg-card: #FFFFFF;
    --text-primary: #2C3E50;
    --text-secondary: #5A738E;
    --primary-color: #2980B9;
    --accent-color: #E67E22;
    --accent-hover: #D35400;
    --border-light: #E2E8F0;
    --white: #FFFFFF;
    --shadow-soft: 0 4px 20px rgba(41, 128, 185, 0.08);
    --shadow-hover: 0 10px 30px rgba(41, 128, 185, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    padding-bottom: 90px; /* Space for the floating split buttons */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* Button Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(230, 126, 34, 0.2);
}

.btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--primary-color);
}

.btn-primary-call {
    background-color: #27AE60;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 6px;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* [Change 2] Super Chota & Minimal Header Setup */
.navbar {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    padding: 4px 0; /* Extremely thin header padding */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-accent {
    color: var(--accent-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 3 Lines Hamburger Button Styling */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Transform into X when open */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Side Menu Panel (Hidden by default, slides out from right) */
.nav-menu {
    position: fixed;
    top: 0;
    right: -280px; /* Completely hidden off-side */
    width: 260px;
    height: 100vh;
    background-color: var(--bg-card);
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    padding: 80px 25px 30px 25px;
    gap: 20px;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
}

.nav-menu.open {
    right: 0; /* Slide in on click */
}

.nav-link {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.05rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #EBF5FB 0%, #D4E6F1 100%);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Grids Setup */
.services-overview, .why-choose, .reviews {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.services-grid, .why-grid, .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Cards Design */
.service-card, .why-card, .review-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-soft);
}

.service-img-wrapper {
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Us Layout styling */
.about-us {
    background-color: var(--bg-card);
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-poster-box {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.poster-img {
    width: 100%;
    height: auto;
}

.about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.about-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.about-feat-item {
    background-color: var(--bg-main);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    border-left: 4px solid var(--primary-color);
}

/* Why Choose & Reviews */
.why-icon { font-size: 2.2rem; margin-bottom: 10px; }
.rating { color: #F1C40F; margin-bottom: 10px; }
.review-text { font-style: italic; color: var(--text-secondary); margin-bottom: 10px;}

/* Locations Badging Matrix */
.locations-overview {
    background: linear-gradient(135deg, #FFF 0%, #EBF5FB 100%);
    padding: 50px 0;
}

.location-cards-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.loc-badge {
    background-color: var(--bg-card);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

/* Master Footer Setup */
.main-footer {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-light);
    padding: 50px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }

/* [Change 1] Beautiful SPLIT Floating Bottom Bar Setup */
.dual-sticky-bar {
    position: fixed;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    gap: 12px; /* Distinct visual space between buttons */
    z-index: 9999;
}

.sticky-btn {
    flex: 1;
    text-align: center;
    padding: 14px 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFFFFF !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px; /* Rounded pill shapes instead of flat bar blocks */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.sticky-btn:active {
    transform: scale(0.98);
}

.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: #27AE60;
}

.sticky-btn span {
    margin-right: 6px;
}

.pulse-icon {
    display: inline-block;
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* Screen Adaptations */
@media (max-width: 480px) {
    .btn-primary-call {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    .logo {
        font-size: 1rem;
    }
    .sticky-btn {
        font-size: 0.95rem;
        padding: 12px 5px;
    }
}
.about-heading {
    text-align: center;    /* Isse text bilkul beech mein ho jayega */
    font-size: 2.4rem;     /* Heading ka size (chota/bada karne ke liye number badlein) */
    font-weight: 700;      /* Isse text bold ho jayega */
    color: var(--accent-color); /* Orange color ke liye, ya direct #2C3E50 (dark blue) likh sakte hain */
    margin-bottom: 20px;   /* Niche waali heading se thoda gap dene ke liye */
}
.services-grid img, 
.service-card img, 
.service-img-wrapper img {
    width: 100% !important;
    max-width: 340px !important;
    height: 200px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    display: block !important;
    margin: 15px auto !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-card, .services-grid > div {
    text-align: center;
    padding: 15px;
}