﻿body {
    background-color: #0a0a0a;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* 🌟 Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #001F3F, #004aad, #007bff);
    padding: 6rem 1rem;
    color: white;
    border-bottom: 5px solid #00d4ff;
}

h2.section-title {
    font-weight: 700;
    color: #ffffff;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

    h2.section-title::after {
        content: "";
        display: block;
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #007bff, #00d4ff);
        margin: 8px auto 0;
        border-radius: 2px;
    }

/* 🌟 Testimonial Card Styling (matches Product style) */
.gradient-border-card {
    position: relative;
    background: #0a0a0a;
    border-radius: 16px;
    padding: 2rem;
    color: #fff;
    text-align: center;
    font-weight: 600;
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
}

    .gradient-border-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        padding: 2px;
        background: linear-gradient(90deg, #b06ab3, #4568dc, #00d4ff, #ff6ec7);
        background-size: 300% 300%;
        animation: gradientBorder 5s ease infinite;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        z-index: -1;
    }

@keyframes gradientBorder {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.gradient-border-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
}

.gradient-border-card i {
    color: #00d4ff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.gradient-border-card blockquote {
    font-size: 1rem;
    color: #ccc;
    margin: 0 0 1rem;
}

.gradient-border-card footer {
    color: #aaa;
    font-style: italic;
    font-size: 0.9rem;
}

/* 🌟 Footer */
footer {
    background-color: #0f0f0f;
    color: #aaa;
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid #00d4ff;
}

    footer a {
        color: #00d4ff;
        text-decoration: none;
    }

        footer a:hover {
            text-decoration: underline;
        }
