/* Additional styles for the About Us page */

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(90deg, #0056b3, #00a0e9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Accent color for highlighted elements */
.accent-color {
    color: #0056b3;
}

/* Highlight text */
.highlight {
    background-color: rgba(0, 86, 179, 0.1);
    padding: 0 5px;
    border-radius: 3px;
    font-weight: 500;
}

/* Shadow effect for images */
.shadow-effect {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shadow-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Timeline styling enhancements */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline-container {
    position: relative;
}

.timeline-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #0056b3, #00a0e9);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 80px;
}

.timeline-dot {
    position: absolute;
    left: 46px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #0056b3;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.3);
}

.timeline-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Testimonial card enhancements */
.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h4 {
    margin: 0 0 5px 0;
    color: #333;
}

.author-info p {
    margin: 0;
    color: #666;
    font-size: 0.9em;
}

/* Plan cards enhancements */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.plan-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.plan-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.plan-icon i {
    font-size: 30px;
}

.plan-card h3 {
    margin: 0 0 15px 0;
    color: #333;
}

.plan-card p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Animation from directions */
.from-left {
    transform: translateX(-50px);
}

.from-right {
    transform: translateX(50px);
}

.from-bottom {
    transform: translateY(50px);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Values box styling */
.values-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
}

.values-box h3 {
    margin-top: 0;
    color: #333;
}

.values-box ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.values-box li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.values-box li i {
    margin-right: 10px;
    font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .timeline-container:before {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-dot {
        left: 26px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
}
