﻿.first-section {
    background-image: url('/img/firstimage.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 500px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end; /* Align child to bottom */
}

.first-section h1 {
    color: white;
    /*margin: 20px;
    padding: 20px;*/ /* Optional spacing from bottom */
}



.about-section {
    background-color: #e6fff5;
    border-radius: 20px;
    /*         padding: 40px 20px;
         */ margin-bottom: 60px;
}

.btn-green {
    background-color: #00a651;
    color: white;
    border-radius: 10px;
}

    .btn-green:hover {
        background-color: #008f44;
    }

.service-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    color: white;
}

    .service-card .card-body {
        background: rgba(0, 0, 0, 0.6);
        padding: 20px;
        height: 100%;
    }

.icon-circle {
    background-color: #00a651;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.rounded-4 {
    border-radius: 1rem;
}

.flip-card {
    perspective: 1000px;
    width: 150px;
    height: 150px;
    margin-bottom: 1rem;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

.flip-front, .flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

    .flip-front img,
    .flip-back img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.flip-back {
    transform: rotateY(180deg);
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    height: 100%;
}

.testimonial-quote {
    font-style: italic;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    background-color: #ccc;
    border-radius: 50%;
}

.partner-logos {
    display: flex;
    gap: 40px;
    animation: scrollLeft 30s linear infinite;
}

.partner-slide-wrapper {
    overflow: hidden;
}

.blog-card {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-title {
    font-weight: bold;
    font-size: 1rem;
}

.blog-date {
    font-size: 0.9rem;
    color: gray;
    margin-top: 10px;
}

.read-more-icon {
    width: 36px;
    height: 36px;
    background-color: #00aa44;
    border-radius: 50%; 
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-left: auto;
}

.testimonial-wrapper {
/*    padding: 32px;
*/    background-color: #e6fff5;
    font-family: 'Inter', sans-serif;
}

.testimonial-card {
    display: flex;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    padding: 0px;
    width: 500px;
}

.left-bar-full {
    width: 70px;
    height: 250px;
    background-color: #0A9B2E;
    position: relative;
}

    /* Create semi-circle cutout */
    /*.left-bar-full::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -35px;*/ /* Half the width of the circle to overlap */
        /*transform: translateY(-50%);
        width: 70px;
        height: 70px;
        background-color: #fff;*/ /* Matches the card background */
        /*border-radius: 50%;
    }*/


.testimonial-text {
    position: relative;
    flex: 1;
}

.testimonial-message {
    font-size: 15px;
    line-height: 24px;
    color: #1A1A1A;
    margin: 0 0 20px;
}

.company-name {
    font-size: 16px;
    font-weight: 600;
    color: #0A9B2E;
    margin: 0;
}

.location {
    font-size: 14px;
    color: #7C7C7C;
    margin: 4px 0 0;
}

.quote-icon {
    position: absolute;
    bottom: 24px;
    right: 24px;
    font-size: 32px;
    color: #0A9B2E;
    font-family: serif;
    transform: scaleX(-1);
}

.partner-slide-wrapper {
    overflow: hidden;
    width: 100%;
}

.partner-swiper .swiper-slide {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}
