        /* Responsive Carousel Hero Section */
        .hero {
        position: relative;
        }

        .carousel-item img {
        height: 100vh;
        object-fit: cover;
        }

        /* Caption Styling */
        .carousel-caption {
        bottom: 20%;
        z-index: 10;
        }

        .carousel-caption h1 {
        display: none;
        font-size: 3rem;
        font-weight: bold;
        text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
        }

        .carousel-caption p {
        display: none;
        font-size: 1.25rem;
        text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
        }

        .carousel-caption a.btn {
        display: none;
        font-size: 1.1rem;
        padding: 12px 28px;
        }

        /* Responsive Breakpoints */
        @media (max-width: 992px) {
        .carousel-caption h1 {
            display: none;
            font-size: 2.5rem;
        }

        .carousel-caption p {
            display: none;
            font-size: 1.1rem;
        }
        }

        @media (max-width: 768px) {
        .carousel-caption {
            bottom: 15%;
            padding: 0 10px;
        }

        .carousel-caption h1 {
            display: none;
            font-size: 2rem;
        }

        .carousel-caption p {
            display: none;
            font-size: 1rem;
        }

        .carousel-caption a.btn {
            display: none;
            font-size: 1rem;
            padding: 10px 22px;
        }
        }

        @media (max-width: 576px) {
            .carousel-item img {
                object-fit: contain;
                height: auto;
                max-height: 100vh;
                width: 100%;
            }

            .carousel-caption {
                bottom: 10%;
            }

            .carousel-caption h1 {
                font-size: 1.5rem;
            }

            .carousel-caption p {
                font-size: 0.95rem;
            }

            .carousel-caption a.btn {
                font-size: 0.9rem;
                padding: 8px 18px;
            }
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
            font-weight: bold;
        }

        .service-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
        }

        .card-img-top {
            height: 180px;
            object-fit: cover;
        }

        .card-title i {
            color: #f1c40f;
        }

        .hover-effect:hover {
            transform: translateY(-5px);
            transition: 0.3s ease-in-out;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }

        .footer {
            background: #222;
            color: #aaa;
            padding: 20px 0;
        }

        footer a {
            color: #cccccc;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        footer a:hover {
            color: #ffc107;
            text-decoration: none;
            transform: translateX(3px);
        }

        footer .social-icons a {
            font-size: 18px;
            margin-right: 10px;
            color: #cccccc;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        footer .social-icons a:hover {
            color: #ffc107;
            transform: scale(1.2);
        }