
  body{
      font-family:"Roboto", Sans-serif;
  }

    .navbar-custom {
            background-color: white; /* Dark background */
            padding: 15px 20px;
        }
        .navbar-brand img {
            height: 70px; /* Adjust logo size */
            margin-left: -20px;
        }
        .navbar-nav {
            margin: 0 auto; /* Center menu items */
        }
        .nav-item {
            margin: 0 15px; /* Spacing between menu items */
            position: relative;
        }
        .nav-link {
            color: #0167B1 !important;
            font-weight: bold;
            position: relative;
            padding-bottom: 5px;
        }
        .nav-link::after {
            content: "";
            display: block;
            width: 0;
            height: 3px;
            background-color: #24c2a7;
            transition: width 0.3s ease-in-out;
            position: absolute;
            left: 0;
            bottom: 0;
        }
        .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.8); /* White border */
 
}

.navbar-toggler-icon {
    filter: invert(100%) brightness(200%);
}

        .nav-link:hover::after {
            width: 100%;
        }
        .dropdown-menu {
            border-radius: 8px;
            border: none;
            box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }
        .dropdown-item {
            font-weight: bold;
        }
        .dropdown:hover .dropdown-menu {
            display: block;
            opacity: 1;
            animation: fadeIn 0.3s ease-in-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
    
    .hero-overlay {
        background: rgba(0, 0, 0, 0.5);
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        padding: 50px;
    }
    .contact-box {
        background: #0057B8;
        padding: 30px;
        color: white;
        border-radius: 10px;
    }
    .btn-call {
        background: #FF5500;
        border: none;
        padding: 15px 30px;
        font-size: 18px;
        color: white;
        font-weight: bold;
        border-radius: 5px;
        display: inline-block;
    }
    .btn-call i {
        margin-right: 8px;
    }
    .form-control {
        margin-bottom: 15px;
    }
    .btn-send {
        background: #FF5500;
        border: none;
        padding: 10px;
        color: white;
        font-size: 16px;
        width: 100%;
    }
    .custom-container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 20px;
        }
        .left-content {
            padding-right: 30px;
        }
        .right-content img {
            width: 100%;
            height: auto;
        }
        .learn-more {
            color: #ff6600;
            text-decoration: none;
        }
        .learn-more:hover {
            color: #ff6600;
            text-decoration: none;
        }
        .orange-line {
            width: 100px;
            height: 2px;
            background-color: #ff6600;
            margin-top: 5px;
        }
        .plumber-van {
            width: 100%;
            height: auto;
        }
        
        .review-container {
            background-color: #0167B1; /* Blue background */
            color: white;
            padding: 40px;
            text-align: center;
            
            
            border-radius: 5px;
        }

        .review-text {
            font-size: 1.8em;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .reviewer-name {
            font-style: italic;
            margin-bottom: 30px;
        }

        .review-button {
            background-color: #f26522; /* Orange button */
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 5px;
            font-size: 1em;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }

        .review-button svg {
            margin-left: 8px;
        }
        .service-box {
            text-align: center;
            padding: 20px;
        }
        .service-box img {
            max-width: 100%;
            height: auto;
            margin-bottom: 15px;
        }
        .service-box h4 {
            color: darkblue; /* Bootstrap primary blue */
            margin-bottom: 10px;
        }
        
        .header-text {
            text-align: center;
            margin-bottom: 30px;
        }
        

        .stats-container {
            background-color: #0167B1; /* Blue background */
            color: white;
            padding: 50px;
            text-align: center;
            width: 100%;
        }

        .stats-row {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap; /* Allows items to wrap on smaller screens */
            max-width: 1200px;
            margin: 0 auto;
        }

        .stat-item {
            flex: 1;
            min-width: 150px; /* Minimum width for each item */
            margin: 20px;
        }

        .stat-item h2 {
            font-size: 2.5em;
            margin-bottom: 5px;
        }

        .stat-item p {
            font-size: 1em;
        }
        .why-choose-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 20px;
            text-align: center;
        }

        .why-choose-section h2 {
            font-size: 28px;
            color: darkblue;
            font-weight: bold;
            padding: 2px ;
        }

        .why-choose-section p {
            color: #555;
            margin-top: 10px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Features Row */
        .features-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 40px;
            gap: 20px;
        }

        /* Feature Box */
        .feature-box {
            display: flex;
            align-items: center;
            width: calc(100% / 3 - 20px); /* Divides into 3 equal columns */
            text-align: left;
        }

        /* Icon Styling */
        .feature-icon {
            font-size: 40px;
            color: darkblue;
            margin-right: 15px;
            width: 50px;
            text-align: center;
        }

        /* Feature Text */
        .feature-text h3 {
            font-size: 18px;
            color: darkblue;
            margin-bottom: 5px;
        }

        .feature-text p {
            font-size: 14px;
            color: #555;
        }

        /* Responsive Design */
        @media screen and (max-width: 1024px) {
            .features-container {
                flex-wrap: wrap;
                justify-content: center;
            }

            .feature-box {
                width: calc(50% - 20px); /* Two columns on smaller screens */
            }
        }

        @media screen and (max-width: 768px) {
            .features-container {
                flex-direction: column;
                align-items: center;
            }

            .feature-box {
                width: 100%;
                justify-content: center;
            }

            .feature-icon {
                margin-bottom: 10px;
                margin-right: 0;
            }
        }
        
        .header-text {
            text-align: center;
            margin-bottom: 30px;
        }
        .hero {
  background-color: #0167B1; /* Blue background */
  padding: 50px 0;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

.hero-text {
  color: white;
  max-width: 500px;
  margin-left: 50px;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cta-button {
  background-color: rgb(242,101,34);
  color: white;
  padding: 15px 25px;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 5px;
}

.cta-button:hover {
  background-color: rgb(244,73,0);
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-text {
    margin-left: 0;
    margin-top: 20px;
  }
}
.faq-container {
    max-width: 80%;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: darkblue;
}

.faq-item {
    border-bottom: 1px solid #ccc;
    padding: 15px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.faq-item:hover {
    background: #f9f9f9;
}

.faq-question {

    align-items: left;
    font-size: 18px;
    font-weight: bold;
    justify-content: space-between;
}

.faq-toggle {
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: black;
    margin-right: 10px;
}

.faq-answer {
    display: none;
    padding: 10px 20px;
    font-size: 16px;
    color: #555;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    color: red;
}

        .service-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 20px;
        }

        /* Title Styling */
        .service-section h2 {
            text-align: center;
            font-size: 28px;
            color: #007bff;
            font-weight: bold;
        }

        .service-section p {
            text-align: center;
            color: #555;
            margin-top: 10px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Main Container */
        .service-content {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            justify-content: space-between;
            margin-top: 40px;
        }

        /* Left Side - Zip Code List */
        .zip-code-list {
            width: 65%;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .zip-code-list ul {
            list-style: none;
        }

        .zip-code-list li {
            font-size: 16px;
            color: #333;
            margin-bottom: 5px;
        }

        /* Right Side - Map */
        .map-container {
            width: 30%;
        }

        .map-container iframe {
            width: 100%;
            height: 400px;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        }

        /* Responsive Design */
        @media screen and (max-width: 1024px) {
            .service-content {
                flex-direction: column;
                align-items: left;
                text-align: left;
            }

            .zip-code-list {
                width: 100%;
                grid-template-columns: repeat(2, 1fr);
            }

            .map-container {
                width: 100%;
                margin-top: 20px;
            }
            .footer-column{
                text-align: left;
            }
        }
        .footer {
            background-color: #f3f7fa;
            padding: 50px 10%;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
            gap: 50px;
            align-items: start;
        }

        /* Column Styling */
        .footer-column {
            display: flex;
            flex-direction: column;
        }

        /* Logo and About */
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .footer-text {
            color: #6d6d6d;
            font-size: 14px;
            line-height: 1.6;
            max-width: 300px;
        }

        /* Social Icons */
        .social-icons {
            margin-top: 15px;
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            font-size: 20px;
            color: rgb(1,102,177);
            transition: 0.3s;
        }

        .social-icons a:hover {
            color: gray;
        }

        /* Footer Headings */
        .footer-heading {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        /* Footer Links */
        .footer-links a {
            color: #6d6d6d;
            font-size: 14px;
            text-decoration: none;
            margin-bottom: 5px;
            transition: 0.3s;
        }

        .footer-links a:hover {
            color: gray;
        }

        /* Contact Info */
        .contact-info {
            display: flex;
            align-items: left;
            margin-bottom: 10px;
            gap: 10px;
        }

        .contact-info i {
            font-size: 18px;
            color: #26a69a;
        }

        .contact-info span {
            color: #6d6d6d;
            font-size: 14px;
        }

        /* Responsive Design */
        @media screen and (max-width: 900px) {
            .footer {
                grid-template-columns: 1fr 1fr;
                text-align: center;
            }
            .social-icons {
                justify-content: center;
            }
            .contact-info {
                justify-content: left;
            }
        }

        @media screen and (max-width: 600px) {
            .footer {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            .contact-info {
            
            align-items: left !important;
            
        }
        }
        
.feature-section {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  flex-wrap: wrap;
}

.feature-card {
  flex: 1;
  min-width: 240px;
  max-width: 300px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid #e0e0e0;
  box-shadow: 2px 4px 20px rgba(0, 0, 0, 0.08); 
  margin-right: 15px;
  border-radius: 20px;
}

.feature-card:first-child {
  border-left: none;
}

.icon {
  margin-bottom: 20px;
}

.icon svg {
  width: 48px;
  height: 48px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.footer-bottom{
    background-color: rgb(1,102,177);
    color:white;
    padding: 20px;
    text-align: center;
}


  

.overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 80px;
}

.content {
  max-width: 500px;
}

.content h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.content ul li {
  font-size: 18px;
  margin-bottom: 12px;
}

.content ul li i {
  color: #fff;
  margin-right: 10px;
}


.about-section {
  background-color: #fff;
  padding: 60px 20px;
  font-family: 'Roboto', sans-serif;
}

.about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.left-column {
  flex: 1;
  min-width: 250px;
}

.left-column h4 {
  font-size: 18px;
  color: #0a57b3;
  margin-bottom: 10px;
  font-weight: 600;
}

.left-column h2 {
  font-size: 32px;
  color: #0a57b3;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.3;
}

.right-column {
  flex: 1;
  min-width: 250px;
  color: #444;
  font-size: 16px;
  line-height: 1.7;
}

.about-image {
  text-align: center;
}

.about-image img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
  .about-text {
    flex-direction: column;
  }

  .left-column h2 {
    font-size: 26px;
  }

  .about-image img {
    max-width: 100%;
  }
}
/* Global Reset */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

h2, h4 {
  margin: 0;
}

p {
  margin: 0 0 20px 0;
}

/* Mission Section */
.mission-section {
  background-color: #0066b2;
  color: #fff;
  padding: 60px 20px;
}

.mission-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.mission-left {
  flex: 1;
  min-width: 250px;
}

.mission-left h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.mission-left h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}

.mission-right {
  flex: 1;
  min-width: 250px;
  font-size: 16px;
  line-height: 1.7;
}

/* Why Section */
.why-section {
  background-color: #fff;
  padding: 60px 20px;
  color: #003366;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.why-left {
  flex: 1;
  min-width: 250px;
}

.why-left h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-left h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}

.why-right {
  flex: 1;
  min-width: 250px;
}

.why-right ul {
  list-style: none;
  padding: 0;
}

.why-right li {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.why-right li i {
  color: #00c851;
  margin-right: 10px;
}


    .contact-section {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
}

.contact-section h2 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 10px;
}

.contact-section .subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #0066b2;
  margin-bottom: 20px;
}

.contact-section .description {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-button {
  display: inline-block;
  background-color: #ff4500;
  color: #fff;
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.contact-button i {
  margin-right: 8px;
}

.contact-button:hover {
  background-color: #e03a00;
}


  /* Reset */


/* Top Blue Header */
.services-header {
  background-color: #066cbf;
  padding: 40px 60px;
  color: #fff !important;
}

.services-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

/* Service Section Layout */
.service-section {
  padding: 60px;
  background-color: #fff;
}

.service-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left Content */
.left {
  flex: 1;
  max-width: 300px;
}

.service-icon {
  font-size: 28px;
  color: #066cbf;
  margin-bottom: 20px;
}

.left h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.service-number {
  font-size: 5rem;
  color: #f2f6fd;
  font-weight: 600;
}

/* Middle Text */
.middle {
  flex: 2;
  max-width: 600px;
}

.middle p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

/* Right Image */
.right {
  flex: 1.2;
  text-align: right;
}

.right img {
  width: 100%;
  max-width: 360px;
  border-radius: 4px;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .why-section {
    padding: 60px 40px;
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
  }
  .why-header {
    width: 100%;
    margin-bottom: 40px;
  }
  .why-title {
    font-size: 16px;
    color: #0073cf;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .why-headline {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 16px;
  }
  .why-subtext {
    font-size: 16px;
    color: #777;
    margin-bottom: 30px;
  }
  .why-left {
    flex: 1;
    min-width: 300px;
  }
  .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .feature-list svg {
    width: 24px;
    height: 24px;
    fill: #000;
    margin-right: 12px;
  }
  .feature-list li.active svg {
    fill: #0066cc;
  }
  .feature-list li.active span {
    color: #0066cc;
    font-weight: 500;
  }
  .why-right {
  flex: 2;
  min-width: 300px;
  padding-left: 40px;
  position: relative; /* Required for positioning the pseudo-element */
}

/* Add vertical border on left side (50% height, centered) */
.why-right::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%; /* Center the border vertically */
  height: 50%;
  width: 4px;
  background-color: #0066cc;
}

.why-right-content {
  display: none;
}

.why-right-content.active {
  display: block;
}

.why-right h3 {
  color: #0066cc;
  font-size: 20px;
  margin-bottom: 12px;
  padding-left: 10px; /* Maintain spacing now that border is outside */
  /* Removed border-left */
}

.why-right p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.why-right img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* === CTA BUTTON STYLES === */
.cta-button {
    margin-top: 20px;
    padding: 15px 25px;
    border-radius: 12px;
    background-color: rgb(242,101,34);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-button i {
    margin-right: 8px;
}

.cta-button:hover {
    background-color: rgb(244,73,0);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* === CALL NOW BAR (MOBILE ONLY) === */
.call-now-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #28a745;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    z-index: 9999;
}

/* Show only on mobile screens */
@media (max-width: 768px) {
    .call-now-bar {
        display: block;
    }
}

/* === CALL BUTTON CONTAINER === */
.call-button-container {
    background-color: white;
    padding: 30px;
    text-align: center;
    width: 100%;
}

/* === CALL BUTTON === */
.call-button {
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    text-decoration: none;
}

/* === CALL BUTTON (Alternative Style) === */
.call-btn {
    background: #F54900;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.call-btn i {
    margin-right: 8px;
}

.call-btn:hover {
    background-color: #d63e00;
}
a:hover {
    color: white !important;
    text-decoration: none !important;
}