
/* Content Cards */
.content-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.content-card:hover {
    transform: translateY(-5px);
}

/* Stats Container */
.stats-container {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    color: #6c757d;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-title {
    color: var(--alt-primary-color);
    font-size: 1.5em;
    transition: all 0.3s ease;
}


.feature-item:hover {
    background: rgba(207, 11, 11, 0.762);
    color: #fff;
    transform: translateY(-5px);
}

.feature-item:hover .feature-title {
    color: white;
}

.feature-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--alt-primary-color);
    transition: all 0.3s ease;
}


.feature-item:hover i {
    color: white;
}



/* Philosophy Cards */
.philosophy-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.philosophy-card:hover {
    transform: translateY(-10px);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #d738331c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--alt-primary-color);
    margin: 0 auto 2rem;
}

/* Commitment Section */
.commitment-content {
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.commitment-list {
    list-style: none;
    padding: 0;
}

.commitment-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.commitment-list i {
    color: #007bff;
}

/* Testimonial Slider */
.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

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

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

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: white;
    /* color: #fff; */
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    /* margin-bottom: 1rem; */
}


/* Responsive Design */
@media (max-width: 991.98px) {
    .page-context {
        padding: 60px 0;
    }

    .page-context h1 {
        font-size: 2.5rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .page-context h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .content-card,
    .philosophy-card,
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-card,
.philosophy-card,
.feature-item,
.testimonial-card {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Hover Effects */
.feature-item,
.philosophy-card,
.testimonial-card {
    transition: all 0.3s ease;
}

.feature-item:hover,
.philosophy-card:hover,
.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
