/* Hero Section with Background Image */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    /* Aap apni image ka path yahan change kar sakte hain */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect ke liye */
    display: flex;
    align-items: center;
    padding-top: 160px; /* Navbar ke liye space */
}






.hero-content {
    max-width: 650px;
    z-index: 2;
}


.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive text size */
    font-weight: 500!important;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* Baki purani styling (buttons & features) same rahegi */
.btn-call { background-color: #d35400; color: white !important; padding: 15px; border-radius: 8px; font-weight: bold; width: 100%; max-width: 400px; margin-bottom: 12px; border: none; display: block; text-decoration: none; }
.btn-quote { background-color: #f8f9fa; color: #333 !important; padding: 15px; border-radius: 8px; font-weight: bold; width: 100%; max-width: 400px; margin-bottom: 12px; border: none; display: block; }
.btn-visit { background-color: #634832; color: white !important; padding: 15px; border-radius: 8px; font-weight: bold; width: 100%; max-width: 400px; margin-bottom: 25px; border: none; display: block; }

.features-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 20px; }
.features-list li { font-size: 0.95rem; font-weight: 500; display: flex; align-items: center; }
.features-list li::before { content: "●"; color: #d35400; margin-right: 8px; }

.services-section {
    padding: 100px 0;
    background: #f8f9fa; /* Light grey background */
}

/* 4-in-a-row layout adjustment */
.service-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Background decorative circle */
.service-card::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: rgba(183, 50, 37, 0.05);
    border-radius: 50%;
    z-index: -1;
    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    background: #fff;
    border-color: #b73225;
}

.service-card:hover::before {
    width: 300px;
    height: 300px;
    background: rgba(183, 50, 37, 0.03);
}

/* Modern Icon Styling */
.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 20px;
    transform: rotate(-10deg);
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card:hover .icon-wrapper {
    transform: rotate(0deg) scale(1.1);
    background: #b73225;
}

.service-card h5 {
    font-weight: 800;
    font-size: 1.15rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Mobile responsive fixes */
@media (max-width: 991px) {
    .service-card { margin-bottom: 20px; }
}

/* Gap kam karne ke liye row ki margin adjust ki hai */
.why-choose-section .row {
    --bs-gutter-y: 1.5rem; /* Vertical gap kam kar diya */
}

.trust-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px 20px;
    height: 100%;
    transition: all 0.3s ease;
}

/* Full Width Image Section */
.full-width-img-container {
    margin-top: 40px;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.full-width-img-container img {
    width: 100%;
    height: 450px; /* Desktop par height */
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .full-width-img-container img {
        height: 250px; /* Mobile par height kam */
    }
}
/* Box par mouse jane par styling */
.trust-card {
    transition: all 0.3s ease; /* transition zaroori hai smooth effect ke liye */
    cursor: pointer;
}

.trust-card:hover {
    /* Aap yahan apni pasand ka koi bhi light color dal sakte hain */
    background-color: #fffafa !important; 
    border-color: #b73225 !important; /* Border ka color theme se match karega */
    box-shadow: 0 10px 20px rgba(183, 50, 37, 0.1) !important; /* Halka sa red glow */
}

/* Agar aap chahte hain ki icon ka color bhi change ho */
.trust-card:hover .trust-icon {
    transform: scale(1.1); /* Icon thoda bada ho jayega */
    color: #b73225;
}

/* --- Process Section --- */
.process-section {
    padding: 100px 0;
    background-color: #1a1a1a; /* Dark theme as per image */
    color: white;
}

.process-card {
    background: white;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    margin-top: 30px;
}

.process-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(183, 50, 37, 0.3);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #b73225;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    border: 5px solid #1a1a1a;
}

.process-card h5 { color: #1a1a1a; font-weight: 700; margin-top: 20px; }
.process-card p { color: #666; font-size: 0.9rem; }

/* --- Testimonials --- */
.testimonial-section {
    padding: 80px 0;
    background: #fcfcfc;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-left: 5px solid #b73225;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-card {
    max-width: 800px;
    margin: 0 auto;
}

/* Accordion Button Styling */
.accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px;
    border: none !important;
    background-color: #fff !important;
    color: #333 !important;
    transition: all 0.3s ease;
}

/* Jab sawal open ho (Active State) */
.accordion-button:not(.collapsed) {
    background-color: #fdf2f1 !important; /* Halka red background */
    color: #b73225 !important;
    box-shadow: none !important;
}

.accordion-item {
    border: 1px solid #eee !important;
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

/* Accordion open hone par body styling */
.accordion-body {
    padding: 0 20px 20px 20px;
    color: #666;
    line-height: 1.6;
    background-color: #fff;
}

/* Focus outline hatane ke liye */
.accordion-button:focus {
    box-shadow: none !important;
}

/* Get Free Quote Section */
.quote-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdf2f1 0%, #ffffff 100%);
}

.quote-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.form-control {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-bottom: 5px;
}

.form-control:focus {
    border-color: #b73225;
    box-shadow: 0 0 0 0.25rem rgba(183, 50, 37, 0.1);
}

.btn-quote-submit {
    background: #b73225;
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    width: 100%;
    border: none;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-quote-submit:hover {
    background: #9a291f;
    transform: translateY(-2px);
}

/* Professional Footer */
footer {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 0 20px;
}

.footer-logo {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-link {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: #b73225;
    padding-left: 5px;
}

.social-icons i {
    font-size: 20px;
    margin-right: 15px;
    color: #fff;
    transition: 0.3s;
}

.social-icons i:hover {
    color: #b73225;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 40px;
    font-size: 14px;
}