/* About page specific styles */
.about-page .main_menu {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-page .breadcrumb_bg {
    position: relative;
    padding: 0;
    background-image: url("../img/virtual_equb_3.png");
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 0;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.about-page .breadcrumb_bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(18, 221, 109, 0.6); /* semi-transparent green */
    backdrop-filter: blur(2px); /* controls the blur strength */
    z-index: 1;
}

.about-page .breadcrumb .container {
    position: relative;
    z-index: 2;
}

.about-page .breadcrumb_img {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.about-page .breadcrumb_img img {
    max-height: 480px;
    object-fit: contain;
    margin-bottom: 0;
    position: relative;
    bottom: 0;
    left: 0;
}

.about-page .breadcrumb_content {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page .breadcrumb_content h2.amharic-text {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

@media (min-width: 769px) {
    .about-page .breadcrumb_img {
        justify-content: flex-start;
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .about-page .breadcrumb_img img {
        max-height: 380px;
    }

    .about-page .breadcrumb_img {
        justify-content: center;
    }
    
    .about-page .breadcrumb_content h2.amharic-text {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .about-page .breadcrumb_img img {
        max-height: 330px;
    }

    .about-page .breadcrumb_img {
        justify-content: center;
    }
    
    .about-page .breadcrumb_content h2.amharic-text {
        font-size: 2rem;
    }
} 

  
/*----- Contact Section
--------------------------------------------------------------*/
#download-app {
    padding: 100px 0;
    position: relative;
    background: #f8f9fa;
    overflow: hidden;
}

.leaf-pattern-overlay {
    position: relative;
}

.leaf-pattern-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(64, 185, 119, 0.1) 0%, rgba(45, 139, 87, 0.1) 100%);
    z-index: 1;
}

.download-app-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.app-content {
    flex: 1;
    max-width: 500px;
}

.app-mockup {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-image {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(64, 185, 119, 0.1);
    color: #40B977;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.app-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.app-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.app-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: #40B977;
    font-size: 20px;
}

.feature span {
    color: #333;
    font-weight: 500;
}

.download-options {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.download-options p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

.store-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.store-button {
    transition: all 0.3s ease;
}

.store-button img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.store-button:hover {
    transform: translateY(-3px);
}

@media (max-width: 1199px) {
    .download-app-wrapper {
        gap: 40px;
    }

    .app-content h2 {
        font-size: 36px;
    }

    .mockup-image {
        max-width: 90%;
    }
}

@media (max-width: 991px) {
    #download-app {
        padding: 80px 0;
    }

    .download-app-wrapper {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .app-content {
        max-width: 100%;
    }

    .app-features {
        justify-content: center;
    }

    .mockup-image {
        max-width: 70%;
    }
}

@media (max-width: 767px) {
    #download-app {
        padding: 60px 0;
    }

    .app-content h2 {
        font-size: 32px;
    }

    .app-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .download-options {
        padding: 20px;
        margin: 0 15px;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .store-button img {
        height: 45px;
    }

    .mockup-image {
        max-width: 85%;
    }
}

@media (max-width: 575px) {
    #download-app {
        padding: 40px 0;
    }

    .app-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .app-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .section-badge {
        font-size: 12px;
        padding: 6px 15px;
    }

    .download-options {
        padding: 15px;
    }

    .download-options p {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .mockup-image {
        max-width: 100%;
    }
}

/* Clients Section Styles */
.clients {
    padding: 60px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.clients .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.clients .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.clients .section-title p {
    font-size: 16px;
    color: #666;
}

.clients-slider {
    width: 100%;
    padding: 20px 0;
}

.clients-slider .swiper-wrapper {
    align-items: center;
    width: 100%;
}

.clients-slider .swiper-slide {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clients-slider .swiper-slide img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.clients-slider .swiper-slide:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .clients {
        padding: 40px 0;
    }
    
    .clients-slider .swiper-slide {
        padding: 15px;
    }
    
    .clients-slider .swiper-slide img {
        max-height: 60px;
    }
}

@media (max-width: 767px) {
    .clients .section-title h2 {
        font-size: 28px;
    }
    
    .clients-slider .swiper-slide {
        padding: 10px;
    }
    
    .clients-slider .swiper-slide img {
        max-height: 50px;
    }
}

@media (max-width: 575px) {
    .clients {
        padding: 30px 0;
    }
    
    .clients .section-title h2 {
        font-size: 24px;
    }
    
    .clients-slider .swiper-slide {
        padding: 8px;
    }
    
    .clients-slider .swiper-slide img {
        max-height: 40px;
    }
}

/* Custom pagination styling */
.swiper-pagination {
    position: relative;
    margin-top: 40px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 8px !important;
    background: #d1d1d1;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #40B977;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .clients-slider .swiper-slide img {
        max-width: 100px;
    }
    
    .clients .section-title h2 {
        font-size: 28px;
    }
    
    .clients .section-title p {
        font-size: 14px;
    }
}

/* Statistics Section Styles */
.statistics-section {
    padding: 40px 0;
    background-color: #efebeb;
}

.statistics-content {
    max-width: 1200px;
    margin: 0 auto;
}

.statistics-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.statistics-header {
    flex: 1;
    text-align: left;
    max-width: 500px;
}

.statistics-header h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #333;
    margin-bottom: 20px;
}

.statistics-header .highlight {
    color: #40B977;
}

.statistics-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.5;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    flex: 1;
    max-width: 500px;
}

.stat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 10px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stat-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-info h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1.2;
}

.stat-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .statistics-row {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .statistics-grid {
        max-width: 100%;
    }

    .statistics-header {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }

    .statistics-header h2 {
        font-size: 32px;
    }

    .statistics-header p {
        font-size: 16px;
    }

    .stat-info h3 {
        font-size: 24px;
    }

    .stat-info p {
        font-size: 13px;
    }

    .stat-icon {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 576px) {
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        padding: 5px;
    }

    .stat-info h3 {
        font-size: 20px;
    }

    .stat-info p {
        font-size: 12px;
    }

    .stat-icon {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 360px) {
    .statistics-grid {
        gap: 15px;
    }

    .stat-info h3 {
        font-size: 18px;
    }

    .stat-info p {
        font-size: 11px;
    }
}

/* Services Overview Section */
.services-overview {
    padding: 80px 0;
    background-color: #40B977;
    position: relative;
    overflow: hidden;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: #fff;
    border-bottom-left-radius: 50% 20px;
    border-bottom-right-radius: 50% 20px;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.services-header h2 {
    display: inline-block;
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
    background: #fff;
    padding: 10px 40px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.services-header p {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #e8f5ef;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #40B977;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #40B977;
    color: #fff;
}

.service-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services-overview {
        padding: 60px 0;
    }

    .services-header h2 {
        font-size: 30px;
        padding: 8px 30px;
    }

    .services-header p {
        font-size: 16px;
        padding: 0 20px;
    }

    .service-card {
        padding: 25px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-header h2 {
        font-size: 26px;
        padding: 8px 25px;
    }

    .services-header p {
        font-size: 15px;
    }

    .service-card {
        padding: 20px;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.why-choose-header .highlight {
    color: #40B977;
}

.why-choose-header p {
    font-size: 18px;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(64, 185, 119, 0.1) 0%, rgba(64, 185, 119, 0) 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(64, 185, 119, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #40B977;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: #40B977;
    stroke-width: 2;
    fill: none;
}

.feature-icon svg path {
    stroke: #40B977;
    stroke-width: 2;
    fill: none;
}

.feature-card:hover .feature-icon {
    color: #40B977;
}

.feature-card:hover .feature-icon svg,
.feature-card:hover .feature-icon svg path {
    stroke: #40B977;
}

.feature-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.feature-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.achievement-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(64, 185, 119, 0.1);
}

.achievement-icon {
    font-size: 36px;
    color: #40B977;
    margin-bottom: 15px;
}

.achievement-content h4 {
    font-size: 32px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.achievement-content p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .why-choose-header h2 {
        font-size: 30px;
    }

    .why-choose-header p {
        font-size: 16px;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .achievement-content h4 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .features-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .achievement-card {
        padding: 25px;
    }

    .why-choose-header h2 {
        font-size: 26px;
    }
}

/* Built for Everyone Section */
.why-choose-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #40B977;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-item:hover .feature-icon {
    background: #333;
    transform: rotateY(180deg);
}

.feature-content h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-choose-section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .section-header p {
        font-size: 0.9rem;
        max-width: 90%;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-item {
        padding: 15px;
        margin: 0 10px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 10px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .feature-content h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .feature-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* Testimonials Section */
.testimonial_part {
    padding: 80px 0;
    background-color: #fff;
    margin-top: 40px;
}

.testimonial_part .section_tittle {
    margin-bottom: 50px;
}

.testimonial_part .section_tittle h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.testimonial_part .section_tittle p {
    font-size: 1.1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonial_slider {
    padding: 20px;
}

.testimonial_slider_text {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial_slider_text:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial_slider_text p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial_slider_text h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial_slider_text h5 {
    color: #40B977;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonial_part {
        padding: 60px 0;
    }

    .testimonial_slider_text {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .testimonial_part {
        padding: 50px 0;
    }

    .testimonial_part .section_tittle h2 {
        font-size: 2rem;
    }

    .testimonial_slider_text {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .testimonial_part {
        padding: 30px 0;
        margin-top: 20px;
    }

    .testimonial_part .section_tittle {
        margin-bottom: 30px;
    }

    .testimonial_part .section_tittle h2 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .testimonial_part .section_tittle p {
        font-size: 0.9rem;
    }

    .testimonial_slider {
        padding: 10px;
    }

    .testimonial_slider_text {
        padding: 20px 15px;
        margin: 8px;
        border-radius: 12px;
    }

    .testimonial_slider_text p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .testimonial_slider_text h4 {
        font-size: 1.1rem;
        margin-bottom: 3px;
    }

    .testimonial_slider_text h5 {
        font-size: 0.85rem;
    }
}

/* Extra Small Screens */
@media (max-width: 360px) {
    .why-choose-section {
        padding: 30px 0;
    }

    .feature-item {
        padding: 12px;
        margin: 0 8px;
    }

    .testimonial_slider_text {
        padding: 15px 12px;
        margin: 6px;
    }
}

/* Why Choose Virtual Equb Section */
.about-why-choose-us {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-why-choose-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-why-choose-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.about-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #40B977;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
}

.about-feature-icon svg {
    width: 40px;
    height: 40px;
    color: white;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.about-feature-card:hover .about-feature-icon {
    background: #40B977;
    transform: rotateY(180deg);
}

.about-feature-card:hover .about-feature-icon svg {
    color: white;
    stroke: white;
}

.about-feature-content h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-why-choose-us {
        padding: 40px 0;
    }

    .about-why-choose-header {
        margin-bottom: 30px;
    }

    .about-why-choose-header h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .about-why-choose-header p {
        font-size: 0.9rem;
        max-width: 90%;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-feature-card {
        padding: 15px;
        margin: 0 10px;
    }

    .about-feature-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 10px;
    }

    .about-feature-icon svg {
        width: 30px;
        height: 30px;
    }

    .about-feature-content h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .about-feature-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}