/* styles.css - responsive, prevents overflow */
:root{
  --brand:#d9534f;
  --dark:#222;
}


/* Logo */
#site-logo{height:42px;width:auto}

/* Navbar Section */
/* Navbar Custom Styling */
/* Navbar Custom Styling */
.navbar {
  transition: all 0.3s ease-in-out;
}

.navbar-brand {
  font-size: 1.3rem;
  color: #fff !important;
}

/* Nav links */
.navbar-nav {
  gap: 1rem; /* equal spacing between links */
}

.nav-link {
  padding: 0.7rem 1.2rem !important;
  font-weight: 500;
  transition: color 0.3s, background 0.3s;
}

/* Hover and Active State */
.nav-link:hover,
.nav-item .nav-link.active {
  color: #dc3545 !important; /* red hover text color */
}

/* Dropdown menu */
.dropdown-menu {
  border-radius: 6px;
  overflow: hidden;
}

.dropdown-item {
  padding: 0.6rem 1rem;
  transition: background 0.3s, color 0.3s;
}

.dropdown-item:hover {
  background: #dc3545; /* red background */
  color: #fff;
}

/* Get Quote button hover */
.get-quote-btn {
  border-radius: 30px;
  transition: 0.3s;
}
.get-quote-btn:hover {
  background: #b02a37; /* darker red */
  color: #fff;
}

/* Mobile menu fixes */
@media (max-width: 991px) {
  .navbar-nav {
    flex-direction: column;
    align-items: center; /* center links in mobile */
    padding: 1rem 0;
    gap: 0.5rem;
  }
  .nav-link {
    padding: 0.8rem 1rem !important;
    display: block;
    text-align: center;
  }
  .dropdown-menu {
    border-radius: 0;
    text-align: center;
  }
}

/* End */

/* Carousel overlay left aligned */
.hero-section .carousel-item{position:relative;min-height:300px}
.hero-section .carousel-item img{object-fit:cover;max-height:720px;width:100%}
.hero-section .left-overlay{position:absolute;left:5%;top:20%;transform:translateY(0);max-width:45%}
@media(max-width:767px){ .hero-section .left-overlay{display:block;max-width:90%;left:5%;background:rgba(255,255,255,0.85);padding:1rem;border-radius:8px} .hero-section .carousel-item img{max-height:320px} .left-overlay h2{font-size:1.25rem} }

/* About section */
.about-section .key-points{margin-top:1rem}
.key-points li{display:flex;align-items:center;gap:.6rem;margin-bottom:.6rem;font-size:0.95rem}

/* Service cards */
.service-card{background:#fff;border-radius:8px;overflow:hidden;position:relative;transition:transform .35s ease,box-shadow .35s ease;padding-bottom:1rem}
.card-img-wrap{overflow:hidden;height:200px}
.card-img-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.service-card:hover .card-img-wrap img{transform:scale(1.07)}
.service-card .card-body{padding:1rem}
.service-card .read-more{position:relative;display:inline-block;margin-top:0.5rem;color:var(--brand)}

.service-card {
  cursor: pointer;
  position: relative;
}

.service-card .overlay {
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease;
}

.service-card:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.service-card .overlay p {
  margin-bottom: 10px;
  font-size: 1rem;
}

.service-card .overlay .btn {
  font-size: 0.85rem;
}

  .service-card .card-img-wrap:hover .overlay {
    opacity: 1;
  }
  .object-fit-cover {
    object-fit: cover;
    height: 250px;
  }
  @media (max-width: 767px) {
    .object-fit-cover {
      height: 200px;
    }
  }
/* testimonials */
.testi-card .quote-icon{height:26px;width:26px;margin-bottom:8px}

/* Footer spacing */
footer{overflow:hidden}

/* Utility */
.container{max-width:1140px;margin:0 auto;padding:0 15px}

/* Prevent horizontal overflow */
img, iframe, svg{max-width:100%;height:auto;}

/* Mobile specific */
@media(max-width:768px){
  .nav-link{padding:.5rem .75rem}
  .service-card .card-body{padding:.75rem}
  .carousel-caption.left-overlay{display:none}
}

/* Make sure dropdown works on small screens */
.dropdown-menu{z-index:2000}

/* About Section */
.about-section {
  background: #f9fbfd;
  border-radius: 20px;
}

.about-img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.about-img-wrapper img {
  transition: transform 0.5s ease;
}

.about-img-wrapper:hover img {
  transform: scale(1.05);
}



.key-points .icon-circle {
  background: #2ecc71;
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
}

/* Button hover */
.about-section .btn:hover {
  background: #0d6efd;
  transform: translateY(-2px);
}
/* Key points list */

.icon-circle {
  background: #2ecc71; /* green */
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
}

.icon-check {
  width: 16px;
  height: 16px;
}

/* Highlight underline for heading */
.heading-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #0d6efd, #20c997);
  border-radius: 2px;
}

/* Key Points */
.key-points li {
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #333;
}

/* Green Circle Tick */
.tick-icon {
  color: #2ecc71;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2rem;
}


/* Why choose us */
/* Arrow color and size */
.arrow {
  color: #a94442;
  margin-right: 8px;
  font-size: 1.3rem;
}

/* Vertical dotted line */
.dot-line {
  width: 4px;
  min-height: 100%;
  border-left: 3px dotted #a94442;
  margin-top:5px;
}

/* Card hover effect */
.why-choose-us .row .col-12 .p-3:hover {
  background-color: #fff0f0;
  transform: translateY(-3px);
  transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .dot-line {
    display: none; /* hide line on mobile for clean view */
  }
  .why-choose-us .row .col-12 {
    flex-direction: column !important;
  }
}

/* Footer Section */
.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #a94442;
  text-decoration: underline;
}

.footer-section .social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ccc;
  text-decoration: none;
  font-weight:500;
}

.footer-section .social-btn:hover {
  color: #a94442;
}

.footer-section i {
  font-size:1.1rem;
}
/* About page */
/* General arrow style */
.arrow, .faq-arrow {
  color:#a94442;
  font-weight:700;
  animation: blinkArrow 1.2s infinite;
}

/* Dotted line in Why Choose Us */
.dot-line {
  width:4px;
  min-height:100%;
  border-left:3px dotted #a94442;
  margin-top:5px;
}

/* Hover effect for Why Choose Us cards */
.why-choose-us .p-3:hover {
  background:#fff0f0;
  transform: translateY(-3px);
  transition:0.3s ease;
}

/* FAQ accordion hover */
.accordion-button {
  color:#495057;
  font-weight:500;
}
.accordion-button:focus {
  box-shadow:none;
}

/* Arrow blinking animation */
@keyframes blinkArrow {
  0%,50%,100% {opacity:1;}
  25%,75% {opacity:0.3;}
}

/* Responsive */
@media(max-width:768px){
  .bedbug-control .row {
    flex-direction: column;
  }
  .dot-line {
    display:none;
  }
}

/* Hero section text */
.hero-bedbug h1 {
  font-weight:700;
}
.hero-bedbug p {
  font-weight:500;
}

/* Key points list hover effect */
.bedbug-service ul li:hover {
  color:#a94442;
  transform:translateX(5px);
  transition:0.3s;
}

/* Responsive */
@media(max-width:768px){
  .hero-bedbug {
    height:300px;
  }
  .hero-bedbug h1 {
    font-size:2rem;
  }
  .hero-bedbug p {
    font-size:1rem;
  }
}
/* How we Work */
/* Hover effect on list items */
.bedbug-service ul li:hover {
  color:#a94442;
  transform:translateX(5px);
  transition:0.3s;
}

/* Responsive adjustments */
@media(max-width:768px){
  .bedbug-service .row {
    flex-direction: column-reverse; /* image below text */
    text-align:center;
  }
  .bedbug-service ul li {
    text-align:left;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Hover effect for list items */
.how-we-work ol li:hover {
  color:#a94442;
  transform:translateX(5px);
  transition:0.3s;
}

/* Responsive adjustments */
@media(max-width:768px){
  .how-we-work ol li span {
    left:-5px; /* adjust arrow for smaller screens */
  }
}

.circle-arrow {
  width: 60px;
  height: 60px;
  background-color: #a94442; /* red circle */
  color: #fff; /* white arrow */
  font-size: 2rem;
  border-radius: 50%; /* makes circle */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  animation: smoothBlink 1.2s infinite;
  cursor: pointer;
}

/* Smooth blinking animation */
@keyframes smoothBlink {
  0%, 50%, 100% { opacity: 1; transform: translateY(0); }
  25%, 75% { opacity: 0.4; transform: translateY(5px); }
}
.line-center-dot {
  position: relative;
  width: 150px; /* adjust width as needed */
  height: 2px; /* line thickness */
  background-color: #a94442; /* line color */
  margin: 30px auto; /* centers horizontally */
}

.line-center-dot .dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;  /* dot size */
  height: 12px;
  background-color: #a94442; /* dot color */
  border-radius: 50%;
}