.testimonials-section {
    max-width: 1300px;
    margin: 0 auto;
    margin-top: 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    animation: zoomIn 0.8s ease-out;
}

.section-header h2 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #000000, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
}

.section-header h2:hover {
    background: linear-gradient(135deg, #00ccff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #666;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 0 30px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #0066ff, #00ccff);
}

.section-subtitle::before {
    left: 0;
    animation: slideRight 1s ease-out 0.5s backwards;
}

.section-subtitle::after {
    right: 0;
    animation: slideLeft 1s ease-out 0.5s backwards;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 45px 40px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    animation: popIn 0.6s ease-out forwards;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.15s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.3s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.45s;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0066ff, #00ccff);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(0, 102, 255, 0.2);
}

.quote-section {
    position: relative;
    margin-bottom: 30px;
}

.quote-icon {
    font-size: 70px;
    background: linear-gradient(135deg, #0066ff, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.3;
    transition: all 0.4s ease;
    display: inline-block;
}

.testimonial-card:hover .quote-icon {
    opacity: 0.6;
    transform: scale(1.2);
}

.testimonial-text {
    color: #444;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 35px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-text {
    color: #222;
}

.client-section {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
}

.client-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #0066ff, #00ccff);
    transition: width 0.5s ease;
}

.testimonial-card:hover .client-section::before {
    width: 100%;
}

.client-image {
    position: relative;
}

.client-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066ff, #00ccff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    font-weight: 700;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.3);
    position: relative;
    z-index: 2;
}

.avatar-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid transparent;
    border-radius: 50%;
    border-top-color: #0066ff;
    border-right-color: #00ccff;
    opacity: 0;
    transition: all 0.5s ease;
    animation: rotate 3s linear infinite;
    z-index: 1;
}

.testimonial-card:hover .avatar-ring {
    opacity: 1;
}

.testimonial-card:hover .client-avatar {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.5);
}

.client-info {
    flex: 1;
}

.client-name {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.testimonial-card:hover .client-name {
    color: #0066ff;
    letter-spacing: 0.5px;
}

.client-position {
    font-size: 14px;
    color: #00ccff;
    font-weight: 500;
    line-height: 1.5;
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(0, 102, 255, 0.04);
    line-height: 1;
    transition: all 0.4s ease;
    pointer-events: none;
}

.testimonial-card:hover .card-number {
    color: rgba(0, 204, 255, 0.08);
    transform: scale(1.1);
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideRight {
    from {
        width: 0;
    }
    to {
        width: 20px;
    }
}

@keyframes slideLeft {
    from {
        width: 0;
    }
    to {
        width: 20px;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    body {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-card {
        padding: 40px 35px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 40px 15px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
        padding: 0 25px;
    }

    .testimonial-card {
        padding: 35px 28px;
        border-radius: 24px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .client-avatar {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .card-number {
        font-size: 60px;
    }
}
.stats-section {
    /* max-width: 1200px; */
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    padding: 50px 60px;
    /* box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08); */
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-out;
    /* border: 2px solid rgba(0, 102, 255, 0.1); */
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 102, 255, 0.02),
        rgba(0, 204, 255, 0.02)
    );
    pointer-events: none;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0;
    animation: slideIn 0.8s ease-out forwards;
    padding: 20px;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
}

.stat-item:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.6s;
}

.stat-item:hover {
    background: rgba(0, 102, 255, 0.03);
    transform: translateY(-5px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, #594c60, #16031f);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.25);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.4);
}

.stat-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.stat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #16031f;
    line-height: 1;
    display: inline-block;
    margin-bottom: 8px;
}

.stat-number::after {
    content: "+";
    font-size: 2rem;
    opacity: 0.7;
    margin-left: 3px;
}

.stat-label {
    font-size: 15px;
    color: #555;
    font-weight: 600;
    line-height: 1.4;
}

.divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(0, 102, 255, 0.2),
        transparent
    );
    align-self: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 992px) {
    .stats-container {
        gap: 30px;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 40px 30px;
    }

    .stats-container {
        flex-direction: column;
        gap: 40px;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }

    .stat-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }

    .stat-icon svg {
        width: 35px;
        height: 35px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-number::after {
        font-size: 1.8rem;
    }

    .divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .stats-container {
        gap: 35px;
    }

    .stat-item {
        gap: 15px;
    }

    .stat-icon {
        width: 65px;
        height: 65px;
        min-width: 65px;
    }

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

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-number::after {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 14px;
    }
}
.contact-us-btn:hover {
    background-color: #16031f;
    border: 1px solid #fff;
    color: white;
}
