.text-justify { text-align: justify; text-justify: distribute; }
.carousel-control-next, .carousel-control-prev {
	background: none; border: none; opacity: 1; 
}
.banner {
  height: 300px;
  width: 100%;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content {
  text-align: center;
  color: #fff;
}

.banner-content h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 18px;
  opacity: 0.9;
}
.sidebar {
  width: 100%;
  border: 1px solid #ccc;
  font-family: Arial, sans-serif;
  background: #fff;
}

.sidebar-header {
  background-color: #0d6efd;
  color: #fff;
  padding: 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  border-top: 1px solid #ccc;
}

.sidebar-menu li a {
  display: block;
  padding: 14px 18px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: normal;
}

.sidebar-menu li a:hover {
  background-color: #f5f5f5;
}
.main-sm {
	width: 1125px; margin: 0 auto;
}
.own-hr {
  height: 2px;
  background-color: #304FC8; /* green */
  width: 100%;
  margin: 0;
}
.contact-form {
  background: #efefef;
}
.breadcrumb-item + .breadcrumb-item::before {
      content: "/"; 
      color: #6c757d; /* gray color */
      padding: 0 0.5rem;
    }
.sidebar-menu li a.active {
    background-color: #e7f1ff;
    
}
.border-bottom { border-bottom: 1px solid #ccc; margin: 15px 0; }			
.p-15 { padding: 15px; }


@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    
}
.whatsapp-container .whatsapp-main:hover {
	
    transform: scale(1.1);
}
.whatsapp-main {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    border-radius: 50%;
}

.whatsapp-options {
    display: none;
    flex-direction: column;
    margin-bottom: 10px;
}

.whatsapp-options a {
    background: #fff;
    color: #333;
    text-decoration: none;
    padding: 8px 12px;
    margin-bottom: 6px;
    border-radius: 20px;
    font-size: 14px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
}

.whatsapp-options a:hover {
    background: #f2f2f2;
}
.info-list li {
  display: flex;
  flex-wrap: wrap;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

.info-list .label {
  font-weight: 600;
  width: 250px;
  position: relative;
}

/* colon aligned */
.info-list .label::after {
  content: ":";
  position: absolute;
  right: 15px;
}

/* value */
.info-list .value {
  flex: 1;
  padding-left: 10px;
}

@media (max-width: 576px) {
  .info-list li {
    flex-direction: column;
  }

  .info-list .label {
    width: 100%;
    margin-bottom: 2px;
  }

  .info-list .label::after {
    content: ""; /* remove colon on mobile */
  }

  .info-list .value {
    padding-left: 0;
  }
}