html {
    scroll-behavior: smooth;
}

/* Custom Styles */
body {
    /* font-family: 'Arial', sans-serif; */
    font-family:'Times New Roman', Times, serif;
    /* padding-top: 70px; */
    /* Padding for fixed navbar */
}

@media (max-width: 767.98px) {
    .hide-on-mobile {
        display: none !important;
    }
    .footer-mobile-padding {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .mobile-calculator-padding{
        padding-left: 50px;
        padding-right: 50px;
    }

}

@media (min-width: 768px) {
    .hide-on-pc {
        display: none !important;
    }
}




.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.icon-circle {
    width: 64px;
    height: 64px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.icon-label {
    margin-top: 10px;
    font-size: 14px;
    color: #000;
    font-weight: 500;
    text-align: center;
}















/* Testimonial Carousel Styles */
.testimonial-slider {
    position: relative;
    background: #ddd;
    padding: 40px 0;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.testimonial-item {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    padding: 15px;
    transition: transform 0.3s ease;
}

.testimonial-item.focused {
    transform: scale(1.05);
    z-index: 2;
}

.testimonial-card {
    padding: 7px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
    filter: brightness(0.8);
}

.testimonial-card img {
    width: 100%;
    height: 200px;
    /* Fixed height */
    object-fit: cover;
    /* Maintain aspect ratio, crop if needed */
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    font-size: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.previous-button {
    left: 10px;
    display: none;
}

.next-button {
    right: 10px;
}


@media (max-width: 768px) {
    .testimonial-item {
        flex: 0 0 100%;
        opacity: 1;
        transform: scale(1);
        /* display: none; */
        display: block;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .testimonial-item.active {
        display: block;
    }
}


/* Contact Form Styles */
.contact-form-container {
    background-color: white;
    border-radius: 8px;
}

.form-control-lg {
    height: 50px;
    border: 1px solid #ddd;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 2rem !important;
    }
}

/* Footer */

.footer {
    background: #fff;
    color: #000;
    font-size: 16px;
}

.footer hr {
    border-top: 1px solid #ccc;
}

.footer .logo {
    font-size: 24px;
    font-weight: bold;
}

.footer .footer-links a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    margin: 0 10px;
}

.footer .footer-links a:hover {
    text-decoration: underline;
}

.footer .small-links a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    margin-right: 15px;
}

.footer .small-links a:hover {
    text-decoration: underline;
}





/* Calculator */

.calculator-section {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

.calculator-section h1.display-4 {
    font-size: 72px;
    color: #eaeaea;
    font-weight: 700;
}

.calculator-section h5 {
    font-weight: 600;
}

.calculator-section .price-block h3 {
    font-weight: 700;
    margin-top: 10px;
}

.calculator-section .price-note {
    font-size: 0.9rem;
    color: #666;
}



/* WhatsApp floating button styles */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    text-decoration: none;
    color: white;
}

.whatsapp-float .whatsapp-icon {
    margin-left: 1px;
    margin-bottom: 1px;
}

/* QR Code Container */
.qr-code-popup {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 5px;
    display: none;
    width: 130px;
    z-index: 101;
}

.qr-code-popup img {
    width: 100%;
    border-radius: 8px;
}

.qr-wrapper:hover .qr-code-popup {
    display: block;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.whatsapp-float.pulse {
    animation: pulse 2s infinite;
}