/* section 1 */
.gradient-text {
    background: linear-gradient(90deg, #3B82F6, #F87171);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
}

.btn-primary {
    background: linear-gradient(90deg, #3B82F6, #F87171);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(248, 113, 113, 0.4);
}

.btn-outline {
    border: 2px solid transparent;
    background: linear-gradient(#F9FAFB, #F9FAFB) padding-box,
                linear-gradient(90deg, #3B82F6, #F87171) border-box;
    transition: all 0.3s ease;
    color: #1F2937;
}

.btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.problem-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
}

.feature-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(248, 113, 113, 0.2));
    border-radius: 50%;
    padding: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* section 2 */
.solution-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.feature-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(248, 113, 113, 0.2));
    border-radius: 50%;
    padding: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(248, 113, 113, 0.1));
    border-radius: 12px;
    border-left: 4px solid #3B82F6;
}

.step-card {
    position: relative;
    z-index: 1;
}

/*
.step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #3B82F6, #F87171);
    z-index: -1;
}
.step-card:last-child::before {
    display: none;
}
*/

.step-number {
    background: linear-gradient(135deg, #3B82F6, #F87171);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 1rem;
}
/* section 3 */
.stat-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.stat-number {
    background: linear-gradient(90deg, #3B82F6, #F87171);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1;
}

.quote-card {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.quote-card::before {
    content: """;
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    font-family: serif;
    color: rgba(59, 130, 246, 0.1);
    line-height: 1;
}

.impact-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
    background-clip: padding-box;
}

.impact-card:nth-child(1) {
    border-image: linear-gradient(to right, #3B82F6, #60A5FA) 1;
}

.impact-card:nth-child(2) {
    border-image: linear-gradient(to right, #60A5FA, #93C5FD) 1;
}

.impact-card:nth-child(3) {
    border-image: linear-gradient(to right, #93C5FD, #BFDBFE) 1;
}

.impact-card:nth-child(4) {
    border-image: linear-gradient(to right, #BFDBFE, #DBEAFE) 1;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.feature-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(248, 113, 113, 0.2));
    border-radius: 50%;
    padding: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
/* section 4 */
.testimonial-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.testimonial-card::before {
    content: """;
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    font-family: serif;
    color: rgba(59, 130, 246, 0.1);
    line-height: 1;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3B82F6, #F87171);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.rating {
    display: flex;
    color: #FBBF24;
    margin-bottom: 0.5rem;
}

.faq-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.faq-card:hover {
    box-shadow: 0 10px 15px rgba(59, 130, 246, 0.1);
}

.faq-question {
    cursor: pointer;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: #4B5563;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-icon.rotate {
    transform: rotate(180deg);
}

.hidden {
    display: none;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    transition: transform 0.5s ease;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: #f3f4f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.slider-prev {
    left: -20px;
}

.slider-next {
    right: -20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D1D5DB;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: linear-gradient(90deg, #3B82F6, #F87171);
    transform: scale(1.2);
}
/* section 5 */
.form-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-input {
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 12px 16px;
    width: 100%;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #4B5563;
}

.team-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3B82F6, #F87171);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F3F4F6;
    color: #4B5563;
    transition: all 0.3s ease;
    margin: 0 4px;
}

.social-icon:hover {
    background: #3B82F6;
    color: white;
    transform: translateY(-2px);
}

.footer-link {
    color: #6B7280;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #3B82F6;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(90deg, #3B82F6, #F87171);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}