.header_section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;   
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
}
.aboutAgency-section {
  background: #f9f9f9;
  padding: 60px 20px;
}

.aboutAgency-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.aboutAgency-text {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.aboutAgency-btn a {
  display: inline-block;
  padding: 10px 24px;
  background: #a8cb26;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.aboutAgency-btn a:hover {
  background: #a8cb26;
}

.aboutAgency-img {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.aboutAgency-img:hover {
  transform: scale(1.05);
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .aboutAgency-title {
    font-size: 28px;
  }
  .aboutAgency-section {
    text-align: center;
  }
  .aboutAgency-btn a {
    margin-top: 10px;
  }
}
.projectCards-section {
  padding: 60px 20px;
}

.projectCards-item {
  height: 250px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.projectCards-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5); 
}

.projectCards-number,
.projectCards-title {
  position: relative;
  z-index: 1;
}

.projectCards-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.projectCards-title {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

/* Hover effect */
.projectCards-item:hover {
  transform: translateY(-8px);
}

/* Background images */
.projectCards-bg1 {
  background-image: url('../images/bb-2.jpg');
  
}

.projectCards-bg2 {
  background-image: url('../images/bb-1.jpg');
}

.projectCards-bg3 {
  background-image: url('../images/bb-3.jpg');
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .projectCards-item {
    height: 200px;
  }
  .projectCards-number {
    font-size: 36px;
  }
  .projectCards-title {
    font-size: 16px;
  }
}
.serviceCards-section {
  padding: 60px 20px;
}

.serviceCards-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.serviceCards-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.serviceCards-item:hover {
  transform: translateY(-8px);
}
.serviceCards-item1 {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.serviceCards-item1:hover {
  transform: translateY(-8px);
}

.serviceCards-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.serviceCards-item:hover .serviceCards-img {
  transform: scale(1.1);
}
.serviceCards-img1 {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.serviceCards-item1:hover .serviceCards-img1 {
  transform: scale(1.1);
}
.serviceCards-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.serviceCards-item:hover .serviceCards-overlay {
  opacity: 1;
}
.serviceCards-item1:hover .serviceCards-overlay {
  opacity: 1;
}

.serviceCards-overlay h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}

.serviceCards-readbtn {
  display: inline-block;
  background: #a8cb26;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.serviceCards-readbtn:hover {
  background: #a8cb26;
}

/* Responsive */
@media (max-width: 767px) {
  .serviceCards-title {
    font-size: 28px;
  }
  .serviceCards-img {
    height: 200px;
  }
}
.testimonialSlider-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.testimonialSlider-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.testimonialSlider-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.testimonialSlider-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.testimonialSlider-text {
  font-size: 18px;
  font-style: italic;
  color: #444;
  margin-bottom: 20px;
}

.testimonialSlider-name {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.testimonialSlider-role {
  font-size: 14px;
  color: #777;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #a8cb26;
  border-radius: 50%;
  padding: 15px;
}

@media (max-width: 767px) {
  .testimonialSlider-title {
    font-size: 24px;
  }
  .testimonialSlider-card {
    padding: 20px;
  }
  .testimonialSlider-text {
    font-size: 16px;
  }
}
.blog_img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.ipsum_text{
    font-size: 14px !important;
}
.services_section {
    /* background: #f9f9f9; */
}

.section_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.section_subtitle {
    font-size: 1rem;
    color: #666;
}

.service_card {
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service_title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.service_desc {
    font-size: 0.9rem;
    color: #555;
}
.service_card img {
    width: 100%;
    height: 250px; /* set the desired uniform height */
    object-fit: cover; /* crops/resizes image to fill without distortion */
}
.footer_text{
    font-size: 14px !important;
}
.about-banner {
    position: relative;
    width: 100%;
    height: 400px; /* adjust as needed */
    background: url('../images/abbt-banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    margin-top: 100px;
}

.about-banner .overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* dark overlay for text readability */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.breadcrumb-text {
    color: #fff;
    font-size: 1rem;
    margin-top: 10px;
}

.breadcrumb-text a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-text a:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .about-banner {
        height: 200px;
    }
    .banner-title {
        font-size: 1.8rem;
    }
    .breadcrumb-text {
        font-size: 0.9rem;
    }
}


.banner_section{
    margin-top: 30px;
}

.modal {
display: none;
position: fixed;
z-index: 9999;
padding-top: 60px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.8);
}

.modal-content {
margin: auto;
display: block;
max-width: 80%;
max-height: 80%;
border-radius: 10px;
}

#caption {
text-align: center;
color: #fff;
padding: 10px 0;
font-size: 18px;
}

.close {
position: absolute;
top: 20px;
right: 35px;
color: #f1f1f1;
font-size: 40px;
font-weight: bold;
cursor: pointer;
}

.close:hover {
color: #bbb;
}
