/* company-profile.css */
.company-profile-section {
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
}

.company-profile-section .box {
    background-color: #e1f7d5;
    border: 1px solid #b2d8b2;
    padding: 20px;
    border-radius: 5px;
}

.company-profile-section .box h5 {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border-radius: 3px;
    margin-bottom: 5px;
    font-size: 18px;
}

.company-profile-section .custom-hr {
    border: none;
    height: 3px;
    width: 120px;
    background-color: #4CAF50;
    margin-top: 0px;
    margin-bottom: 20px;
}

.company-profile-section .info-row {
    display: flex;
    margin-bottom: 10px;
}

.company-profile-section .info-label {
    width: 250px;
    font-weight: bold;
    color: #222;
}

.company-profile-section .info-colon {
    width: 10px;
}

.company-profile-section .info-value {
    flex: 1;
}

.company-profile-section .side-box {
    background-color: #aee1ae;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.company-profile-section .side-box h6 {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

.company-profile-section a {
    color: #006600;
    text-decoration: none;
}

.company-profile-section a:hover {
    text-decoration: underline;
}

.company-profile-section .news-marquee {
    height: 150px; /* Set height */
    overflow: hidden;
    position: relative;
}

.company-profile-section .news-marquee ul {
    position: absolute;
    width: 100%;
    animation: scroll-up 10s linear infinite;
    padding-left: 1rem;
}

.company-profile-section .news-marquee li {
    list-style: none;
    margin-bottom: 10px;
    font-size: 15px;
}

@keyframes scroll-up {
    0% {
        top: 100%;
    }
    100% {
        top: -100%;
    }
}
 /* Custom Section with a Unique Class */
   .concern-box {
    border: 2px solid #d43f3a;
    border-radius: 8px;
    background-color: #fff;
    padding: 20px;
    position: relative;
    text-align: center;
  }

  .concern-label {
    position: absolute;
    top: -12px;
    left: 15px;
    background-color: #d43f3a;
    color: #fff;
    padding: 2px 12px;
    font-size: 14px;
    border-radius: 5px 5px 0 0;
  }

  .btn-custom {
    background-color: #444;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }

  .btn-custom:hover {
    background-color: #d43f3a; /* New hover color (same red as border) */
    color: #fff;
  }

  .our-concern-title {
    background-color: #d43f3a;
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 500;
    margin-bottom: 25px;
  }

