
    /* Custom styles */
    .navbar {
        background-color: rgba(0, 0, 0, 0.7);
        position: absolute;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        z-index: 100;
        padding: 0px 15px;
    }

    .navbar-nav .nav-item {
        margin-right: 25px;
    }

    .navbar-nav .nav-item .nav-link {
        color: white;
        position: relative;
        text-decoration: none;
        font-size: 1.3rem;
    }

    .navbar-nav .nav-item .nav-link.active {
        color: #ffbc00;
    }

    .navbar-nav .nav-item .nav-link:hover {
        color: #ffbc00;
    }

    .navbar-nav .nav-item .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #ffbc00;
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .navbar-nav .nav-item .nav-link:hover::after {
        transform: scaleX(1);
    }

    .offcanvas-header {
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        font-size: 1.5rem;
    }

    .offcanvas-body {
        background-color: #333;
        color: white;
        padding: 25px 30px;
    }

    .offcanvas-body .nav-link {
        color: white;
        font-size: 1.3rem;
        padding: 18px 25px;
    }

    .offcanvas-body .nav-link:hover {
        color: #ffbc00;
    }

    .offcanvas-body .btn-danger {
        background-color: #ffbc00;
        color: white;
        font-size: 1.3rem;
        border: none;
        padding: 12px 25px;
        width: 100%;
        text-align: center;
        margin-top: 25px;
        border-radius: 5px;
    }

    .banner-video {
        position: relative;
        height: 100vh;
        overflow: hidden;
    }

    .banner-video video {
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: white;
        text-align: center;
        padding: 30px;
        z-index: 50;
    }

    .overlay h1 {
        font-size: 4rem;
        margin-bottom: 30px;
        font-family: 'Raleway', sans-serif; 
    }

    .overlay p {
        font-size: 2rem;
        margin-bottom: 40px;
        font-family: 'Raleway', sans-serif; 
    }

    .overlay .btn-warning {
        font-size: 1.5rem;
    }

    /* Adjustments for the button alignment */
    .navbar-nav .nav-item:last-child {
        margin-left: 20px;
    }

    .navbar-nav .btn-danger {
        margin-left: 20px;
    }

    /* Align the "Get Free Estimation" button in both desktop and mobile view */
    .navbar-nav .nav-item.btn-container {
        margin-left: auto;
    }

    /* Mobile-specific navbar styles */
    @media (max-width: 992px) {
        .navbar-nav .btn-danger {
            margin-left: 0;
            width: 100%;
        }
    }


    .banner {
        position: relative;
        height: 60vh;
        overflow: hidden;
    }

    .banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

   
   
    /* top service css start */
    .service-gallery img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 10px;
        transition: all 0.3s ease-in-out;
    }


    .service-gallery {
        display: none;
    }

    .service-gallery.active {
        display: block;
    }


    .service-button {
        margin: 10px;
    }


    .service-gallery .col-md-2 {
        padding-bottom: 15px;
    }


    @media (max-width: 768px) {
        .service-gallery .col-sm-4 {
            padding-bottom: 15px;
        }
    }

    .btn-custom {
        background-color: #ff6200;
        color: white;
        border: 2px solid #ffffff;
        padding: 7px 20px;
        font-size: 16px;
        transition: all 0.3s ease-in-out;
        border-radius: 20px;
    }

    .btn-custom:hover {
        background-color: #ff6200;
        border-color: #000000;
        transform: translateY(-2px);
        color: blanchedalmond;
    }

    .btn-custom:focus {
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
        outline: none;
    }

    .btn-custom:active {
        transform: translateY(0);
    }
 /* top service css end */