
        .info-card {
            display: flex;
            align-items: center;
            padding: 15px;
            border-radius: 10px;
            color: white;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
            min-width: 250px;
        }
        .icon-box {
            background: white;
            padding: 12px;
            border-radius: 50%;
            color: black;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .icon-box i {
            font-size: 20px;
        }

        .service-item {
            transition: background-color 0.3s ease-in-out;
        }
        
        .service-item:hover {
            background-color: blue;
            color: white; /* Optional: Change text color for better visibility */
        }
        
        .service-item:hover h3,
        .service-item:hover p {
            color: white; /* Ensuring text remains visible */
        }
        

        .faq-section {
            background-color: #f5f9fc;
        }
        
        h2 {
            color: #333;
        }
        
        .faq-divider {
            width: 100px;
            height: 3px;
            background-color: #007bff;
        }
        
        .accordion-button {
            font-weight: bold;
            background-color: #fff;
            color: #333;
            box-shadow: none;
            transition: all 0.3s ease-in-out;
        }
        
        .testimonial-section {
            padding: 50px 0;
            background-color: #f8f9fa;
        }
        .testimonial-card {
            background: #fff;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        .testimonial-text {
            font-style: italic;
            color: #555;
        }
        .testimonial-stars {
            color: #ffc107;
        }
        .swiper-pagination-bullet {
            background: #ccc;
            opacity: 1;
        }
        .swiper-pagination-bullet-active {
            background: #007bff;
        }

    }
    .gallery-section {
        text-align: center;
        padding: 50px 0;
    }
    .gallery-section h2 {
        font-weight: bold;
        margin-bottom: 10px;
    }
    .gallery-section p {
        color: #666;
        margin-bottom: 30px;
    }
    .gallery-item {
        overflow: hidden;
        border-radius: 10px;
        transition: transform 0.3s ease-in-out;
    }
    .gallery-item img {
        width: 100%;
        height: auto;
        transition: transform 0.4s ease-in-out;
        border-radius: 10px;
    }
    .gallery-item:hover img {
        transform: scale(1.1);
    }


    .choose-us-section {
        text-align: center;
        padding: 50px 0;
    }
    .choose-us-section h2 {
        font-weight: bold;
        margin-bottom: 20px;
    }
    .choose-card {
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
        text-align: center;
    }
    .choose-card i {
        font-size: 40px;
        color: #007bff;
        margin-bottom: 15px;
    }
    .choose-card h4 {
        font-weight: bold;
        margin-bottom: 10px;
    }
    .choose-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }


    .footer {
        background-color: #effdfc;
        padding: 40px 0;
    }
    .footer h5 {
        font-weight: bold;
        margin-bottom: 15px;
    }
    .footer a {
        text-decoration: none;
        color: #333;
    }
    .footer a:hover {
        text-decoration: underline;
    }
    .social-icons a {
        font-size: 20px;
        color: #333;
        margin: 0 10px;
        transition: 0.3s;
    }
    .social-icons a:hover {
        color: #007bff;
    }
    .footer-bottom {
        text-align: center;
        padding-top: 15px;
        border-top: 1px solid #ccc;
        margin-top: 20px;
        font-size: 14px;
    }