body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden; /* Hide horizontal overflow */
}
.navbar {
    background-color: #000000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    margin-right: 20px;
}

#logoT {
    height: 14vh;
    border-radius: 0.9rem;
    margin: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.address,
.telephone {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.icon {
    margin-right: 5px;
}

.navigation {
    display: flex;
    align-items: center;
}

.navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    margin-right: 20px;
    opacity: 0; /* Start with opacity 0 for animation */
    transition: opacity 0.3s ease-in-out;
}

.navigation.active ul {
    opacity: 1; /* Fade in when active */
}

.navigation li {
    margin: 0 15px;
}

.navigation a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}
.video-background {
    position: relative;
    width: 100%;
    height: 10vh;
    overflow: hidden;
}

#bgVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.video-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.video-text p {
    font-size: 18px;
    margin-bottom: 30px;
}
.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    display: none;
}

.mobile-menu {
    display: none;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    margin: 1px 0;
}

.mobile-menu a {
    text-decoration: none;
    color: #333;
}

.quote-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 20px 15px; /* Increase button size */
    cursor: pointer;
    font-weight: bold; /* Make button text bold */
    border-radius: 2rem;
}

.quote-button:hover {
    background-color: #45a049;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
}


.plumbing-section {
    background-color: #0075b0;
    color: #000000;
    padding: 50px 20px;
    text-align: center;
    margin-top: 0px; /* Adjust this margin based on your design */
}

.card-container {
    display: flex;
    overflow-x: auto;
    margin-top: 20px;
    padding: 10px;
    justify-content: flex-start;
}

.service-card {
    background-color: #0075b0;
    border-radius: 10px;
    /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); */
    padding: 20px;
    width: 250px;
    margin-right: 15px;
    color: white;
    cursor: pointer;
    border: 2px solid wheat;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.service-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
}


.service-card img{
   width: 30%;
   opacity: .2;
}

.about-section {
    text-align: center;
    position: relative;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-image-slider {
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 2px solid #ccc;
    border-radius: 8px;
    margin-top: 20px;
    width: 100%; /* Set fixed width */
    height: 300px; /* Set fixed height */
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain aspect ratio and cover the container */
    display: none;
}

#prev, #next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #333;
    background-color: transparent;
    border: none;
}

#prev {
    left: 10px;
}

#next {
    right: 10px;
}
.contact-section {
    background-color: #0075b0;
    padding: 50px 20px;
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-address {
    font-size: 18px;
    color: #f8f8f8;
    margin-bottom: 20px;
}

.contact-telephone {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.telephone-icon {
    font-size: 32px;
    margin-right: 10px;
}

.telephone-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
}

.reviews-section {
    background-color: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

.reviews-content {
    max-width: 800px;
    margin: 0 auto;
}

.review-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.review-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.review-text {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.review-author {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.read-more-link {
    text-decoration: none;
    color: #0075b0;
    font-weight: bold;
    display: inline-block;
}


        .footer {
            background-color: #333;
            color: #fff;
            padding: 20px 0;
            text-align: center;
        }

        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: #fff;
            text-decoration: none;
            margin: 0 20px;
            font-size: 14px;
        }

        .footer-social {
            margin-top: 20px;
        }

        .footer-social a {
            display: inline-block;
            margin: 0 10px;
            color: #fff;
            text-decoration: none;
            font-size: 18px;
        }

        .copyright {
            font-size: 12px;
        }


@media (max-width: 768px) {


    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-brand {
        margin-bottom: 10px;
    }

    .logo {
        margin-right: 0;
    }

    .contact-info {
        order: 2;
    }

    .menu-toggle {
        order: 1;
        display: block;
    }

    .navigation {
        flex-direction: column;
        align-items: flex-start;
        order: 3;
        overflow: hidden; /* Hide overflow for animation */
        max-height: 0; /* Start with max-height 0 for animation */
        transition: max-height 0.3s ease-in-out;
    }

    .navigation.active {
        max-height: 200px; /* Adjust the max-height as needed */
    }

    .navigation ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .navigation li {
        margin: 10px 0;
    }

    .mobile-menu {
        display: none;
        text-align: center;
    }

    .card-container {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        margin: 0 0 20px 0;
    }

   
}

