.bg-primary-custom, .btn-primary-custom {
	background-color: #004d9c !important; /* Deep Blue, commonly used in the industry */
}
.btn-primary {
    background-color: #004d9c !important; /* new blue color */
    border-color: #004d9c !important;    /* match border */
}
.btn-primary:hover {
    background-color: #003366 !important; /* darker shade on hover */
    border-color: #003366 !important;
}
.text-primary {
    color: #004d9c !important; /* new blue color */
}

.text-accent {
	color: #ffc107 !important; /* Yellow/Gold for accents */
}

/**navigation**/
.custom-nav-link {
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
}

/* Hover text color + underline animation */
.custom-nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #004d9c;
    transition: width 0.3s;
}

.custom-nav-link:hover {
    color: #004d9c; /* text color on hover */
}

.custom-nav-link:hover::after {
    width: 100%;
}

/* Active link styling */
.custom-nav-link.active {
    color: #004d9c;
}
/***/

/**title heading**/
.section-heading {
    position: relative;
    display: block; /* make it full-width block */
    text-align: center; /* center text and pseudo-elements */
    margin-bottom: 50px; /* spacing below */
    padding-bottom: 20px; /* space for lines */
}

/* First line */
.section-heading::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #004d9c;
    border-radius: 2px;
}

/* Second line */
.section-heading::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #004d9c;
    border-radius: 2px;
}
/**end*/


.hero-section {
	background: url('../images/plumbiing-bg.jpg') no-repeat center top;
	background-size: cover;
	min-height: 60vh;
	display: flex;
	align-items: center;
	padding-top: 6rem;
	padding-bottom: 6rem;
	position: relative;
}
.hero-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55); /* Dark overlay */
	z-index: 1;
}

.hero-section .container {
	position: relative;
	z-index: 2;
}

.text-shadow {
	text-shadow: 0px 3px 8px rgba(0,0,0,0.8) !important;
}
.card-service {
	min-height: 100%;
}
.cta-strip {
	background-color: #ffc107;
	color: #333;
}
/**/

/**aboutus section**/
/***/

/**why choose section**/
#why-choose-us h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.counter-value {
    color: #000;
}
.whychoose {
	transition: 0.3s ease;
    cursor: pointer;
}
.whychoose:hover {
	transform: translateY(-4px);
}

/**/

/***service section***/
.service-card {
    background: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 35px 20px;
    transition: 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.service-card:hover {
    background: #004d9c;  /* Your blue hover color */
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.service-card h5 {
    font-weight: 600;
    transition: color 0.3s ease;
}
.service-card:hover h5 {
    color: #fff;
}
.service-icon {
    width: 70px;
    transition: filter 0.3s ease;
}
.service-card.active {
    background: #004d9c;
    color: #fff;
}
.service-card.active h5 {
    color: #fff;
}
.service-card.active .service-icon {
    filter: brightness(0) invert(1);
}
/**/

/**testimonials**/
.text-orange {
    color: #ff6a2a;
}

/* Card Shadow */
.shadow-card {
    background: #fff;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.08);
    min-height: 280px;
}

/* Orange Quote */
.quote {
    font-size: 40px;
    color: #0d6efd;
    line-height: 1;
}

/* Stars */
.stars {
    color: #ffb400;
    font-size: 18px;
    letter-spacing: 2px;
}

/* Pagination Dots */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #0d6efd;
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Navigation Arrows */
.custom-arrow {
    color: #ff6a2a;
    font-weight: bold;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
}
.myTestimonials .swiper-pagination {
    position: relative;
    margin-top: 25px !important;
}
/**/

/**offercard section**/
.offer-card {
    height: 480px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-top: 3px dotted rgba(255,255,255,0.6);
    border-bottom: 3px dotted rgba(255,255,255,0.6);
    overflow: hidden;
}

.offer-overlay {
    background: rgba(0, 53, 128, 0.75); /* blue overlay */
    color: #fff;
    height: 100%;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.offer-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* spacing between lines */
    margin-bottom: 1rem;
}

.offer-details .highlight {
    background: #fffae6; /* soft highlight */
    color: #ff6f00; /* standout text color */
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    font-weight: 500;
    display: inline-block;
}


.offer-card h2 {
    font-size: 38px;
}

.offer-card h4 {
    font-size: 22px;
}

.offer-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #e63946;
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #fff;
    transition: .3s;
}

.offer-btn:hover {
    background: #ff4d5a;
}
/**/

/* Coupon style */
.coupon-style {
    border: 2px dashed #0d6efd;
    border-radius: 10px;
    background: #f4f5ff;
}

  .coupon-style .form-label {
    font-weight: 500;
  }
  
  
/**floating phone icon**/
.phone-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 9999;
}
.floating-phone {
    position: relative;
    background: #004d9c;
    color: #fff;
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgb(0 77 156 / 76%);
    z-index: 2;
    transition: transform 0.3s, box-shadow 0.3s;
}

.floating-phone:hover {
    transform: scale(1.2);
    box-shadow: 0 0 25px rgba(255,111,0,1);
}

/* Pulse Circle Effect */
.pulse-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: rgb(0 77 156 / 52%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 1.5s infinite;
    z-index: 1;
}
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
}
/***/  



/* Mobile devices only (max-width: 767px) */
@media (max-width: 767px) {
    .navbar-nav {
        gap: 0 !important; /* Remove desktop gap */
    }

    .navbar-nav .nav-item {
        border-bottom: 1px solid #ddd; /* Separate each link */
        margin-bottom: 0; /* Remove extra space */
    }

    .navbar-nav .nav-link {
        padding: 12px 0; /* Adequate touch area */
    }

    /* Optional: remove border from last item */
    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
	#aboutus .row.g-5 {
        gap: 1rem;
        margin-left: 0;
        margin-right: 0;
    }
    #aboutus .row img.p-1 {
        padding: 0;
    }
    #aboutus .row {
        overflow-x: hidden;
    }
	.service-card h5 {
        font-size: 16px; /* adjust as needed */
    }
	#why-choose-us h4 {
		font-size: 1rem;
	}
	.guarantee-img {
        width: 150px;
    }
}