      /* Custom CSS */
      body {
        font-family: 'Poppins', sans-serif;
        background-color: #f9f9f9;
        line-height: 1.7;
        color: #333;
    }

    .sticky-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background-color: #fff;
        box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s, box-shadow 0.3s;
    }

    .sticky-header.scrolled {
        background-color: #222;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .navbar-brand {
        font-weight: bold;
        font-size: 1.5rem;
        color: #ff5722;
    }

    .navbar-nav .nav-link {
        font-weight: 500;
        color: #555;
    }

    .navbar-nav .nav-link:hover {
        color: #ff5722;
    }

    .carousel-inner img {
        height: 500px;
        object-fit: cover;
    }

    #bannerCarousel {
        height: 480px;
    }
    
    #bannerCarousel .carousel-item img {
        height: 480px;
        object-fit: cover;
    }
    

    .services-card {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
        border: none;
        border-radius: 10px;
        overflow: hidden;
    }

    .services-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .services-card:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .fade-in {
        animation: fadeIn 2s ease-in;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .section-title {
        position: relative;
        display: inline-block;
        padding-bottom: 10px;
        margin-bottom: 30px;
        font-weight: bold;
        font-size: 2rem;
        color: #333;
    }

    .section-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 60px;
        height: 4px;
        background-color: #ff5722;
    }

    .footer {
        background-color: #222;
        color: #fff;
        padding: 40px 0;
        font-size: 0.9rem;
    }

    .footer .footer-links {
        margin-bottom: 20px;
    }

    .footer .footer-links a {
        color: #ff5722;
        text-decoration: none;
        margin-right: 15px;
        font-weight: 500;
    }

    .footer .footer-links a:hover {
        text-decoration: underline;
    }

    .footer .social-icons a {
        color: #ff5722;
        font-size: 1.5rem;
        margin: 0 10px;
        transition: color 0.3s;
    }

    .footer .social-icons a:hover {
        color: #e64a19;
    }

    .contact-info p {
        font-size: 1.1rem;
    }

    .btn-primary-custom {
        background-color: #ff5722;
        border: none;
        transition: background-color 0.3s;
    }

    .btn-primary-custom:hover {
        background-color: #e64a19;
    }

    .testimonials-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 15px;
        border: 3px solid #ff5722;
    }

    .testimonials-blockquote {
        text-align: center;
        padding: 30px;
        background-color: #fff;
        border-radius: 15px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        position: relative;
        max-width: 600px;
        margin: 0 auto;
    }

    .testimonials-blockquote::before {
        content: "\201C";
        font-size: 4rem;
        color: #ff5722;
        position: absolute;
        top: -20px;
        left: 20px;
    }

    .testimonials-blockquote p {
        font-style: italic;
        color: #555;
    }

    .testimonials-carousel .carousel-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: all 0.6s ease-in-out;
    }

    /* Updated animation for testimonials */
    #testimonialsCarousel .carousel-item-next,
    #testimonialsCarousel .carousel-item-prev,
    #testimonialsCarousel .carousel-item.active {
        transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    }

    #testimonialsCarousel .carousel-item {
        opacity: 0;
        transform: translateX(100%);
    }

    #testimonialsCarousel .carousel-item.active {
        opacity: 1;
        transform: translateX(0);
    }

    #testimonialsCarousel .carousel-item-next,
    #testimonialsCarousel .carousel-item-prev {
        transform: translateX(-100%);
    }

    .blog-card {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
        border: none;
        border-radius: 10px;
        overflow: hidden;
    }

    .blog-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .blog-card:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }
    .card-img-container {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .card-img-container img {
        max-width: 100%;
        height: auto;
    }
    /* Floating Buttons Style */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.floating-buttons a {
    display: block;
    margin-bottom: 10px;
    text-align: center;
    color: white;
}

/* WhatsApp Button Style */
.whatsapp-btn {
    background-color: #25d366;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Call Button Style */
.call-btn {
    background-color: #4CAF50;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
