﻿.btnscrolll {
    border-radius: 20px !important;
    color: #223d44 !important;
    border-color: #223d44!important;
}

    .btnscrolll:hover {
        background: white !important;
        color: #223d44 !important;
        border-color: white!important
    }
    .btnscrolll:focus {
        background: white !important;
        color: #223d44 !important;
        border-color: white !important
    }
    .btnscrolll:active {
        background: white !important;
        color: #223d44 !important;
        border-color: white !important
    }
.btnsendd {
    border-radius: 20px !important;
    color:white!important;
    cursor:pointer;
}
.btnsendd:hover {
    background: white !important;
    color: #223d44 !important;
    border-color: white !important
}
.btnsendd:focus {
    background: white !important;
    color: #223d44 !important;
    border-color: white !important
}
.btnsendd:active {
    background: white !important;
    color: #223d44 !important;
    border-color: white !important
}
.HPTestimonials {
    padding: 40px 0;
    background: #f4f4f4;
}

.testimonial-item {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #fff;
    padding: 40px;
    border-radius: 14px;
    max-width: 100%;
    margin: auto;
}

/* Image */
.testimonial-img {
    flex: 0 0 380px;
}

    .testimonial-img img {
        width: 100%;
        border-radius: 12px;
        object-fit: cover;
        height: 550px;
    }

/* Content */
.testimonial-content {
    flex: 1;
}

.small-title {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-title {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 700;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.author {
    font-weight: 600;
    font-size: 16px;
    color: #111;
}

/* Responsive */

@media (max-width:991px) {

    .testimonial-item {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-img img {
        height: 380px !important;
        width: 100% !important;
    }

    .testimonial-img {
        width: 100% !important;
    }

    .testimonial-content {
        text-align: center;
    }
}

@media only screen and (max-width: 500px) {
    .testimonial-img img {
        height: 380px !important;
        width: 100% !important;
    }

    .testimonial-img {
        width: 100% !important;
    }

    .testimonial-content {
        text-align: left;
    }

    .about-img-front {
        height: 280px !important;
        object-fit: cover;
    }
}

.swiper-pagination-bullet-active {
    background: #164548 !important;
}
.backrgoundddd {
    background-image: url(/Images/MyImages/HomeAbout/Convertec-BGImages-33.png);
    background-repeat:no-repeat;
    background-position:center;
    background-size:cover;
}

.cta-title2{
    font-size:4rem!important;
}
.cta-desc2 {
    font-size: 2rem !important;
}

.testtext ul {
    font-size: 14px !important;
    margin-left: 20px;
    list-style: circle;
}

.catatext p {
    font-size: 1.3rem !important;
}


/* SECTION */
.download-live-section {
    background: #fff;
}

/* CARD */
.download-live-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    border-radius: 18px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    animation: floatCard 3s ease-in-out infinite;
    transition: 0.3s;
}

/* FLOAT ANIMATION (always running) */
@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ICON PULSE */
.pulse-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #e63946;
    position: relative;
    animation: pulse 2s infinite;
}

/* PULSE EFFECT */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230,57,70,0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(230,57,70,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(230,57,70,0);
    }
}

/* TEXT */
.text h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

.text p {
    margin: 3px 0 0;
    color: #777;
    font-size: 14px;
}

/* BUTTON */
.btn-live-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 30px;
    background: #2f5e4e;
    cursor:pointer;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    animation: buttonGlow 2.5s infinite;
    transition: 0.3s;
}

/* BUTTON GLOW LOOP */
@keyframes buttonGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(0,0,0,0.2);
    }

    50% {
        box-shadow: 0 0 15px 5px rgba(230,57,70,0.25);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0,0,0,0);
    }
}

/* ICON MOVE */
.btn-live-download i {
    animation: arrowMove 1.5s infinite;
}

@keyframes arrowMove {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(3px);
    }

    100% {
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .download-live-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}