@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
}


.slider_text h1 {
    font-size: 3rem; /* default size for large screens */
}

@media (max-width: 1200px) {
    .slider_text h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .slider_text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .slider_text h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .slider_text h1 {
        font-size: 1.9rem;
    }
}



.section_padding {
    padding: 80px 0;
}

.section_title h2 {
    font-weight: 700;
    font-size: 2.5rem;
}

.section_title p {
    font-size: 1.1rem;
    color: #555;
}

.feature_card h4 {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #002e5b;
}

.feature_card p {
    color: #444;
}


.owl-carousel .owl-item {
    display: flex;
    justify-content: center;
}

.owl-carousel .single_testmonial {
    max-width: 700px;
    margin: auto;
}

@media (max-width: 768px) {
    .section_title h2 {
        font-size: 2rem;
    }
}

.hero_area {
    font-family: 'Poppins', sans-serif;
}

.video_background {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.video_background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video_background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6); /* Adjust for text clarity */
    z-index: 1;
}

.content_wrapper {
    position: relative;
    z-index: 2;
    color: white;
    padding: 20px;
}

.slider_text h1,
.slider_text p {
    color: white;
}

.bradcam_bg_about {
    background-image: url(../img/pest/banner.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.bradcam_bg_about .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* darkens background */
    z-index: 0;
}

.bradcam_bg_contact {
    background-image: url(../img/house.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.bradcam_bg_contact .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); /* darkens background */
    z-index: 0;
}

.bradcam_area .container {
    z-index: 1;
    position: relative;
}


.text-justify {
  text-align: justify;
}

p {
  text-align: justify;
}

.custom-shadow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.custom-shadow-sm {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* softer and lighter */
  padding: 2rem;
}

.rounded-border {
  border: 1px solid #e6e6e6; 
  border-radius: 15px; /* Rounded corners */
  /* padding: 1.5rem;  */
}


--------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------
    .accordion-header {
      background-color: #003366; /* dark blue */
      color: white;
      padding: 1rem;
      font-weight: 600;
      font-size: 1.25rem;
      cursor: pointer;
      border-radius: 0.25rem;
    }

    .accordion-body {
      background-color: #f8f9fa;
      padding: 1.5rem;
      border: 1px solid #dee2e6;
      border-top: none;
      border-radius: 0 0 0.25rem 0.25rem;
    }

    .accordion-card {
      border: none;
      margin-bottom: 1rem;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .accordion-button:focus {
      outline: none;
      box-shadow: none;
    }