/* Section Styling */
.helix-section {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 80px 0;
}

.helix-title {
    font-size: 2rem;
    font-weight: bold;
    color: #0056b3;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-align: center;
}

.helix-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.helix-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #212529;
    margin-bottom: 20px;
}

.helix-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Overlapping Image Styling */
.image-container {
    position: relative;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobec-img-back {
    width: 100%;
    border-radius: 12px;
    opacity: 0.9;
    filter: grayscale(20%);
}

.mobec-img-front {
position: absolute;
top: 75%;
width: 300px !important;
left: 24%;
transform: translate(-50%, -50%);
width: 75%;
border-radius: 12px;
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
background: white;
padding: 5px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .mobec-img-front {
        width: 85%;
    }
}

/* Section Styling */
.mobec-about-section {
    padding: 80px 0;
    background: #f8f9fa;
}
.mobec-about-content {
    padding-left: 20px;
}
.mobec-about-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.mobec-about-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}
.mobec-about-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.mobec-about-list i {
    font-size: 1.2rem;
    color: #007bff;
    margin-right: 10px;
}
.mobec-about-image img {
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.about-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.section-title_about {
    font-size: 2rem;
    font-weight: bold;
    color: #212529;
}

.section-description {
    font-size: 1.1rem;
    color: #555;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #333;
}

.feature-list i {
    font-size: 1.5rem;
}

.about-gallery img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.about-gallery img:hover {
    transform: scale(1.05);
}

.h-100 {
    height: 100%;
}

.stats-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 80px 0;
    text-align: center;
}

.stats-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
}

.stats-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.stats-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #007bff;
}

.stats-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #212529;
}

.stats-text {
font-size: 14px;
color: #6c757d;
text-transform: uppercase;
/* letter-spacing: 1px; */
}

/* Section Styling */
.career-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 80px 0;
}

.career-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.career-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #212529;
    margin-bottom: 20px;
}

.career-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 25px;
}

.career-list {
    list-style: none;
    padding: 0;
}

.career-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
}

.career-list i {
    font-size: 1.5rem;
    color: #007bff;
}

.career-highlight {
    font-weight: bold;
    color: #0056b3;
    font-size: 1.3rem;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Image Styling */
.career-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.career-image img:hover {
    transform: scale(1.05);
}

/* Responsive Adjustment */
@media (max-width: 991px) {
    .career-image {
        margin-bottom: 30px;
    }
}

