body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Hero Section Styling */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: #f8f9fa; /* Fallback */
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Replace 'background-image' with your technician photo */
    background: url('hero-bg.png') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
    z-index: -1;
}

h1 {
    line-height: 1.1;
    color: #1a1a1a;
}

/* Form Styling */
.estimate-form {
    border-radius: 8px;
    background-color: #212529 !important; /* Dark Grey/Black as per screenshot */
}

.estimate-form .form-control, 
.estimate-form .form-select {
    padding: 12px;
    border: none;
    border-radius: 4px;
}

.btn-warning {
    background-color: #ff0000;
    border-color: #ff0000;
    color: #000;
    font-size: 1.1rem;
}

.btn-warning:hover {
    background-color: #e68900;
}

/* Floating WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

/* WhatsApp Button Style (Aapka existing code check karein) */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Call Button Style */
.call-btn {
    position: fixed;
    bottom: 90px; /* Isse WhatsApp button ke upar rakha gaya hai */
    right: 25px;
    z-index: 1000;
}

.call-icon {
    width: 50px;
    height: 50px;
    background-color: #ff0000; /* Aapka theme orange color */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    animation: pulse-call 2s infinite;
}

/* Animation for attention */
@keyframes pulse-call {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(255, 152, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 152, 0, 0); }
}

.call-btn a {
    text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-section {
        text-align: center;
        padding-bottom: 50px;
    }
    .estimate-form {
        margin-top: 30px;
    }
}

/* about */
/* Features Section */
.features-section {
    background-color: #ffffff;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #ff0000; /* Orange color from screenshot */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
    font-size: 24px;
}

.features-section h3 {
    margin-top: 15px;
    color: #333;
}

/* About Us Section */
.about-section h2 {
    font-size: 2.5rem;
    color: #212529;
    line-height: 1.2;
}

.about-text p {
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-img-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Responsive Font Sizes */
@media (max-width: 768px) {
    .about-section h2 {
        font-size: 1.8rem;
    }
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* service */

/* Services Section Styles */
.services-section h2 {
    font-size: 2.2rem;
    color: #212529;
}

.services-section .card {
    transition: transform 0.3s ease;
}

.services-section .card:hover {
    transform: translateY(-5px);
}

.services-section .card-img-top {
    height: 220px;
    object-fit: cover;
}

.services-section .card-body {
    background: #fff;
}

.services-section .btn-warning {
    background-color: #ff0000;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    color: #fff; /* White text as per screenshot */
}

.services-section .btn-warning:hover {
    background-color: #e68900;
    color: #fff;
}

/* Maintain font consistency */
.card-text {
    font-size: 0.95rem;
    line-height: 1.6;
}
/* hero section and reviews */
/* CTA Banner */
.cta-banner {
    background-color: #212529; /* Dark background from screenshot */
}

.cta-banner h2 {
    font-size: 2rem;
}

/* Review Cards */
.review-card {
    background-color: #fff;
    min-height: 180px;
}

.avatar {
    font-weight: bold;
    font-size: 1.2rem;
}

.stars {
    font-size: 1.1rem;
}

/* Responsive Font for CTA */
@media (max-width: 768px) {
    .cta-banner h2 {
        font-size: 1.5rem;
        text-align: center;
    }
}

/* faqs */
/* FAQ Styling */
.faq-section .accordion-button {
    font-size: 1.1rem;
    padding: 20px 0;
    color: #212529;
    background-color: transparent;
    border: none;
}

.faq-section .accordion-button:not(.collapsed) {
    color: #ff0000; /* Theme color when active */
    box-shadow: none;
}

.faq-section .accordion-item {
    border-bottom: 1px solid #eee !important;
}

.faq-section .accordion-button::after {
    /* Customizing the arrow to match the screenshot */
    background-size: 1rem;
    margin-right: 15px;
}

.faq-section .accordion-body {
    padding-bottom: 25px;
    line-height: 1.6;
}
/* contact with footer */
/* Final CTA */
.final-cta h2 {
    font-size: 1.8rem;
    line-height: 1.3;
}

.final-cta .btn-outline-dark:hover {
    background-color: #212529;
    color: #fff;
}

/* Footer Styling */
.contact-section {
    background-color: #1a1a1a !important;
}

.map-container {
    border: 1px solid #333;
}

.contact-icon {
    background: rgba(255, 152, 0, 0.1);
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.contact-section h2 {
    position: relative;
    padding-bottom: 15px;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #ff0000;
}
.footer-section {
    background-color: #1a1a1a !important; /* Slightly darker than Bootstrap dark */
}

.footer-icon i {
    color: #fff;
    opacity: 0.9;
}

.footer-section h5 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 1rem;
    opacity: 0.8;
}

.footer-section hr {
    opacity: 0.1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .final-cta h2 {
        text-align: center;
        font-size: 1.5rem;
    }
}