/* Custom Hero section */
.hero-section {
  background-image: url('../img/mp/banner/Banner-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 470px;
  display: flex;
  align-items: center;
  position: relative;
}

/* .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
      } */

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-content .apps-logo img {
  width: 30%;
}

.hero-left-banner {
  max-height: 300px;
}

.hero-right-banner {
  max-height: 460px;
}

.hero-btn {
  padding: .5rem 1rem;
  background-color: #00522e;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
}

.img-card {
  width: 100%;
  height: 15rem;
  ;
}

.contact-btn {
  padding: .5rem 1rem;
  background-color: #d90f2f;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
}

.hero-btn:hover {
  background-color: #d90f2f;
  color: #fff;
}

.contact-btn:hover {
  background-color: #00522e;
  color: #fff;
}

.con-text {
  color: #00522e;
  margin-bottom: 15px;
  font-weight: 600;
}

.con-para {
  color: #00522e;
  font-size: 18px;
  font-weight: 700;
}

.social-para {
  color: #00522e;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}

.social-icon {
  color: #00522e;
  font-size: 18px;
  font-weight: 700;
  margin-right: 10px;
}

.fb {
  color: #1877F2;
}

.insta {
  color: #C13584 ;
}
.utube {
  color: #FF0000;
}

.banner-text {
  color: #000;
  font-size: 20px;
  font-weight: 700;
}

/* about section */
.title-color {
  color: #00522e;
}

.element-border {
  border: #00522e 2px dotted;
}



/* modal file upload */
.custom-file-upload {
  display: flex;
  align-items: center;
  gap: 12px;
}

.custom-file-upload input {
  display: none;
}

.upload-btn {
  background: #0b5e3c;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.upload-btn:hover {
  background: #094a2f;
}

#fileName {
  color: #555;
}



/* media coverage */
.playlist-area {
  max-height: 450px;
  overflow-y: auto;
}

.playlist-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.playlist-item {
  display: flex;
  gap: 10px;
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  align-items: center;
}

.playlist-item img {
  width: 120px;
  height: 70px;
  object-fit: cover;
}

.playlist-item video {
  width: 120px;
  height: 70px;
  object-fit: cover;
}

.playlist-info {
  flex: 1;
}

.playlist-info p {
  margin: 0;
  font-size: 14px;
}

.playlist-info span {
  color: #0b5e3c;
  font-size: 13px;
}

.playlist-item:hover {
  background: #f5f5f5;
}

.playlist-item.active {
  background: #e9ecef;
}





/* call for action css */
.cta-box {
  background: #d90f2f;
  padding: 35px 40px;
  border-radius: 18px;
}

.cta-text {
  color: #fff;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.3;
  text-align: center;
}

.cta-btn {
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s;
  text-align: center;
}

.cta-btn:hover {
  background: #fff;
  color: #d90f2f;
}