
/* Hero Section */
.hero-main-img {
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
    height: auto;
}

.hero-bottom-text-styled {
    position: relative;
    z-index: 10;
}

/* Training Modules Section */
.course-card-full-height {
    height: 100%;
}

.course-img-fixed-height {
    height: 250px;
    object-fit: cover;
}

.course-content-min-height {
    min-height: 120px;
}

/* About Section */
.about-img-1-container {
    overflow: hidden;
    border-radius: 10px;
}

.about-img-1-style {
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-height: 500px;
    display: block;
}

.about-img-2-style {
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
    height: auto;
}

.online-support-subtext {
    display: block;
    font-size: 14px;
    margin-top: 3px;
}

/* Promo Section */
.promo-item-spacing {
    padding-top: 20px;
}

.promo-thumb-container {
    margin-bottom: 20px;
    position: relative;
}

.promo-main-img-style {
    object-fit: cover;
    width: 100%;
    height: 200px;
    border-radius: 15px;
    display: block;
}

.promo-icon-custom {
    font-size: 40px;
    color: #4CAF50;
}

.promo-title-spacing {
    margin-top: 15px;
}

/* Team Section & Carousel */
.team-section-top-margin {
    margin-top: 30px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.carousel-arrow-btn {
    background: #00933b;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-arrow-btn:hover {
    background: #007a2f;
    transform: scale(1.1);
}

.carousel-counter-text {
    color: white;
    font-size: 16px;
}

.carousel-dots-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.carousel-dot {
    height: 10px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    width: 10px;
}

.carousel-dot.active {
    width: 30px;
    background: #00933b;
}