/* Style for the wrapper with the background image */
.breadcumb-wrapper.services-header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 500px; */
  text-align: left;
}

.services-header{
  filter: brightness(90%);
  /* height: 500px; */
}

/* Ensure the container is positioned correctly */
.container.z-index-common {
  position: relative;
  z-index: 1; /* Ensure content is above any overlay */
}

/* Style for the content area */
.breadcumb-content.services-heading {
  color: white; /* Text color */
}

/* Highlight the "Services" title */
.breadcumb-title {
  font-size: 48px; /* Match the large font size */
  font-weight: bold;
  text-transform: uppercase; /* Match the uppercase style */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Subtle shadow for readability */
}

/* Highlight the subtitle */
.breadcumb-subtitle {
  font-size: 20px; /* Smaller font size */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8); /* Subtle shadow for readability */
  /* max-width: 50%; Prevent text from stretching too wide */
}

.breadcumb-wrapper.services-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Slight dark overlay */
  z-index: 0; /* Keep the overlay behind the content */
}


.icon-1{
  height: 50px !important;
}

.service-3-text{
  margin-top: 40px !important;
}


.card-box {
  border: 1px solid #c5a880;
  border-radius: 20px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  background-color: #47AF34;
  cursor: pointer;
  padding: 20px;
  text-align: center;
  color: #fff !important;
}

.media-icon{
  display: inline-block;
    width: var(--icon-size, 50px);
    height: var(--icon-size, 50px);
    line-height: var(--icon-size, 50px);
    background-color: var(--white-color);
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
    margin-right: 15px;
    margin-left: 5px;
}

/* Icon Styling */
.contact-img {
  width: 30px;
  height: 30px;
  padding: 5px;
}

/* Text Size */
.text-size-16 {
  font-size: 16px;
  color: white;
}


@media screen and (min-width:768px) and (max-width:991px) {
  .contact-email{
    min-height: 265px !important;
  }
  .contact-phone{
    min-height: 290px !important;
  }
}

@media screen and (min-width:939px) and (max-width:991px) {
  .contact-phone{
    min-height: 260px !important;
  }
}


/* my css */


img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

/* Thumbnail Image */
#thumbnailImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  pointer-events: auto;
}

#thumbnailImg:hover { opacity: 0.7; }

/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9); /* Black with opacity */
}

/* Modal Content (Full-Size Image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  border-radius: 5px;
}

/* Caption Styling */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Zoom Animation */
.modal-content, #caption {
  animation: zoom 0.6s;
}

@keyframes zoom {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close:hover, .close:focus {
  color: #bbb;
  text-decoration: none;
}

/* Responsive Styles */
@media only screen and (max-width: 700px) {
  .modal-content { width: 100%; }
}


