  /* General Styles */
:root {
    --primary: #780000;
    --primary-light: #a50c16;
    --secondary: #f8f9fa;
    --dark: #212529;
    --light: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Restored Banner Styles */
.heading-container {
    position: relative;
    width: 100%;
}



/* Modern Values Section */
.modern-value-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem !important;
}

.modern-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(120, 0, 0, 0.1);
    border-radius: 50%;
}

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

/* Testimonials */
.testimonial-card {
    background: #fff;
    overflow-y: auto;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 1200px;
    height: 500px; /* 👈 Fixed height for uniform look */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #b40101;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(180, 1, 1, 0.2);
}

.testimonial-text {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-text::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background: #b40101;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.author-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #b40101;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .author-image img {
    transform: scale(1.05);
}

.swiper-button-prev,
.swiper-button-next {
    transition: 0.3s;
    color: #780000 !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: #b40101 !important;
}

.swiper-pagination-bullet {
    background: rgba(120, 0, 0, 0.3);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #b40101 !important;
}
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        height: auto; /* allow flexible height on mobile */
        padding: 1.5rem;
    }
}

    .modern-value-card {
        padding: 1.5rem !important;
    }
}

/* Button Styles */
.btn-danger {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-danger:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
}
