/* Custom Styles for ASWA Website */

/* About Section Styling */
.about-one {
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.about-one__img-box {
    position: relative;
    margin-right: 30px;
}

.about-one__img-1,
.about-one__img-2,
.about-one__img-3 {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-one__img-1 img,
.about-one__img-2 img,
.about-one__img-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.about-one__img-1 {
    margin-bottom: 30px;
}

.about-one__img-2 {
    margin-top: 30px;
}

.about-one__img-3 {
    margin-top: 30px;
    position: relative;
}

.about-one__experience {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--bizgrow-base);
    color: #fff;
    padding: 20px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.2);
    z-index: 1;
}

.about-one__experience h3 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    color: #fff;
}

.about-one__experience p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.about-one__points-box {
    margin: 30px 0;
}

.about-one__points-single {
    display: flex;
    margin-bottom: 25px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.about-one__points-single:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-one__points-icon {
    width: 50px;
    height: 50px;
    background: var(--bizgrow-base);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.about-one__points-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--bizgrow-black);
}

.about-one__points-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--bizgrow-gray);
}

.about-one__right {
    padding-left: 70px;
}

@media (max-width: 1199px) {
    .about-one__right {
        padding-left: 30px;
    }
}

@media (max-width: 991px) {
    .about-one__right {
        padding-left: 0;
        margin-top: 50px;
    }
    
    .about-one__img-box {
        margin-right: 0;
    }
}

/* Programs Section Styling */
.programs-section {
    padding: 120px 0 90px;
    position: relative;
    background-color: #fff;
}

.program-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.program-card__img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.program-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.program-card:hover .program-card__img img {
    transform: scale(1.05);
}

.program-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 139, 87, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.program-card:hover .program-card__overlay {
    opacity: 1;
}

.program-card__link {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--bizgrow-primary);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.program-card__link i {
    margin-left: 5px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.program-card__link:hover {
    background: #fff;
    color: var(--bizgrow-base);
    transform: translateY(-3px);
}

.program-card__content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.program-card__icon {
    width: 70px;
    height: 70px;
    background: var(--bizgrow-extra);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.program-card__icon i {
    font-size: 30px;
    color: var(--bizgrow-base);
}

.program-card__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--bizgrow-black);
    transition: all 0.3s ease;
}

.program-card__text {
    margin-bottom: 20px;
    flex-grow: 1;
}

.program-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-card__features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--bizgrow-gray);
    font-size: 15px;
}

.program-card__features li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--bizgrow-base);
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .programs-section {
        padding: 90px 0 60px;
    }
    
    .program-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .programs-section {
        padding: 70px 0 40px;
    }
    
    .program-card__content {
        padding: 25px 20px;
    }
    
    .program-card__title {
        font-size: 20px;
    }
}

/* Counter Section Overrides */
.counter-two {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.counter-two__bg {
    background-size: cover !important;
    background-position: center center !important;
    padding: 80px 0;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.counter-two__bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
    border-radius: 10px;
}

.counter-two__single {
    text-align: center;
    margin-bottom: 30px;
}

.counter-two__count-box {
    margin-bottom: 15px;
}

.counter-two__count-box h3 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin: 0;
    display: inline-block;
}

.counter-two__plus {
    font-size: 50px;
    font-weight: 700;
    color: var(--bizgrow-primary);
    line-height: 1;
    display: inline-block;
}

.counter-two__text {
    font-size: 18px;
    color: #fff;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Section Overrides */
.cta-one {
    padding: 0;
}

.cta-one__bg {
    padding: 100px 0;
    background-size: cover !important;
    background-position: center center !important;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.cta-one__inner {
    position: relative;
    z-index: 2;
}

.cta-one__title {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-one__text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.cta-one__btn {
    background: var(--bizgrow-primary);
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-one__btn:hover {
    background: #fff;
    color: var(--bizgrow-base);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cta-one__btn--alt {
    background: transparent;
    border: 2px solid #fff;
    margin-left: 15px;
}

.cta-one__btn--alt:hover {
    background: #fff;
    color: var(--bizgrow-base);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .cta-one__title {
        font-size: 36px;
    }
    
    .cta-one__btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .cta-one__title {
        font-size: 28px;
    }
    
    .cta-one__btn {
        display: block;
        margin: 0 0 15px 0;
        width: 100%;
    }
    
    .cta-one__btn--alt {
        margin-left: 0;
    }
}
