﻿body {
}

/* ========================================
   Statistics Section - Modern Design
   Brand Color: #1E2E45 (Dark Navy)
   ======================================== */

.statistics-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 46, 69, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

/* Header Styles */
.stats-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1E2E45 0%, #2a4163 100%);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stats-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1E2E45;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.stats-subtitle {
    color: #4a5e78;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Stat Card Styles */
.stat-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(30, 46, 69, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(30, 46, 69, 0.06);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 46, 69, 0.15);
}

.stat-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    margin: 0.5rem 0;
    background: linear-gradient(135deg, #1E2E45 0%, #3a5275 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a5e78;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 0 0 1.25rem 1.25rem;
    transition: height 0.3s ease;
}

.stat-card:hover .stat-decoration {
    height: 6px;
}

/* Card Color Variants - Brand Aligned */
.stat-card-students .stat-icon-wrapper {
    background: linear-gradient(135deg, #e8f4fc 0%, #c5dff2 100%);
    color: #1E2E45;
}
.stat-card-students .stat-decoration {
    background: linear-gradient(90deg, #1E2E45, #3a5275);
}

.stat-card-teachers .stat-icon-wrapper {
    background: linear-gradient(135deg, #e6f2ec 0%, #c8e6d5 100%);
    color: #2d5a45;
}
.stat-card-teachers .stat-decoration {
    background: linear-gradient(90deg, #2d5a45, #4a8a6d);
}

.stat-card-staff .stat-icon-wrapper {
    background: linear-gradient(135deg, #f5f0e6 0%, #e8dcc8 100%);
    color: #5c4a2e;
}
.stat-card-staff .stat-decoration {
    background: linear-gradient(90deg, #5c4a2e, #8a7552);
}

.stat-card-special .stat-icon-wrapper {
    background: linear-gradient(135deg, #f0e8f2 0%, #dbc8e0 100%);
    color: #5a3d5e;
}
.stat-card-special .stat-decoration {
    background: linear-gradient(90deg, #5a3d5e, #8a6a8f);
}

/* Mobile Styles */
.statistics-section-mobile {
    padding: 2rem 0;
}

.statistics-section-mobile .stats-title {
    font-size: 1.5rem;
}

.statistics-section-mobile .stats-subtitle {
    font-size: 0.95rem;
}

/* Fix mobile row spacing */
.statistics-section-mobile .row.g-3 {
    row-gap: 1rem;
}

.statistics-section-mobile .row.g-3 > [class*="col-"] {
    margin-bottom: 0.5rem;
}

.stat-card-mobile {
    padding: 1.25rem 1rem;
    border-radius: 1rem;
    margin-bottom: 0;
}

.stat-card-mobile .stat-icon-wrapper {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.stat-card-mobile .stat-number {
    font-size: 1.75rem;
}

.stat-card-mobile .stat-label {
    font-size: 0.75rem;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .stats-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }
    
    .stat-card-mobile {
        padding: 1rem 0.75rem;
    }
    
    .stat-card-mobile .stat-number {
        font-size: 1.5rem;
    }
    
    .statistics-section-mobile .row.g-3 {
        row-gap: 0.75rem;
    }
}

/* ========================================
   Mission, Vision, Core Values Section
   Brand Color: #1E2E45 (Dark Navy)
   ======================================== */

.mvc-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.mvc-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 46, 69, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.mvc-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(30, 46, 69, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

/* Header Styles */
.mvc-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1E2E45 0%, #2a4163 100%);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mvc-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1E2E45;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.mvc-subtitle {
    color: #4a5e78;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Card Styles */
.mvc-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(30, 46, 69, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(30, 46, 69, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mvc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(30, 46, 69, 0.15);
}

.mvc-card-header {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
}

.mvc-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.mvc-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mvc-card:hover .mvc-icon-wrapper {
    transform: scale(1.1);
}

.mvc-card:hover .mvc-icon-wrapper::after {
    opacity: 1;
}

.mvc-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1E2E45;
    margin-bottom: 0;
}

.mvc-card-body {
    padding: 0 1.5rem 2rem;
    flex: 1;
    display: flex;
    align-items: flex-start;
}

.mvc-content {
    color: #4a5e78;
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
    width: 100%;
}

.mvc-content p {
    margin-bottom: 0.75rem;
}

.mvc-content p:last-child {
    margin-bottom: 0;
}

.mvc-content-list {
    text-align: left;
}

.mvc-content-list ul,
.mvc-content-list ol {
    padding-left: 1.25rem;
    margin-bottom: 0;
}

.mvc-content-list li {
    margin-bottom: 0.5rem;
    position: relative;
}

.mvc-content-list li::marker {
    color: #4a5e78;
}

.mvc-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    transition: height 0.3s ease;
}

.mvc-card:hover .mvc-card-accent {
    height: 8px;
}

/* Mission Card Colors - Brand Primary */
.mvc-card-mission .mvc-icon-wrapper {
    background: linear-gradient(135deg, #e8f0f8 0%, #c5d5e8 100%);
    color: #1E2E45;
}

.mvc-card-mission .mvc-icon-wrapper::after {
    background: linear-gradient(135deg, rgba(30, 46, 69, 0.2) 0%, rgba(42, 65, 99, 0.1) 100%);
}

.mvc-card-mission .mvc-card-accent {
    background: linear-gradient(90deg, #1E2E45, #2a4163, #3a5275);
}

/* Vision Card Colors - Complementary Teal */
.mvc-card-vision .mvc-icon-wrapper {
    background: linear-gradient(135deg, #e6f2ef 0%, #c8e0d8 100%);
    color: #2d5a4a;
}

.mvc-card-vision .mvc-icon-wrapper::after {
    background: linear-gradient(135deg, rgba(45, 90, 74, 0.2) 0%, rgba(58, 115, 95, 0.1) 100%);
}

.mvc-card-vision .mvc-card-accent {
    background: linear-gradient(90deg, #2d5a4a, #3a7360, #4a8a75);
}

/* Core Values Card Colors - Complementary Warm */
.mvc-card-values .mvc-icon-wrapper {
    background: linear-gradient(135deg, #f2ede6 0%, #e0d5c8 100%);
    color: #5a4a3d;
}

.mvc-card-values .mvc-icon-wrapper::after {
    background: linear-gradient(135deg, rgba(90, 74, 61, 0.2) 0%, rgba(115, 95, 78, 0.1) 100%);
}

.mvc-card-values .mvc-card-accent {
    background: linear-gradient(90deg, #5a4a3d, #7a6a5a, #9a8a7a);
}

/* Mobile Styles */
.mvc-section-mobile {
    padding: 2rem 0;
}

.mvc-section-mobile .mvc-title {
    font-size: 1.5rem;
}

.mvc-section-mobile .mvc-subtitle {
    font-size: 0.95rem;
}

.mvc-section-mobile .row.g-3 {
    row-gap: 1rem;
}

.mvc-card-mobile {
    border-radius: 1.25rem;
}

.mvc-card-mobile .mvc-card-header {
    padding: 1.5rem 1.25rem 0.75rem;
}

.mvc-card-mobile .mvc-icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    border-radius: 1rem;
}

.mvc-card-mobile .mvc-card-title {
    font-size: 1.1rem;
}

.mvc-card-mobile .mvc-card-body {
    padding: 0 1.25rem 1.5rem;
}

.mvc-card-mobile .mvc-content {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .mvc-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }
    
    .mvc-section-mobile .mvc-title {
        font-size: 1.35rem;
    }
    
    .mvc-card-mobile .mvc-card-header {
        padding: 1.25rem 1rem 0.5rem;
    }
    
    .mvc-card-mobile .mvc-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .mvc-card-mobile .mvc-card-body {
        padding: 0 1rem 1.25rem;
    }
    
    .mvc-card-mobile .mvc-content {
        font-size: 0.9rem;
    }
}

/* ========================================
   Testimonials Section - Modern Design
   Brand Color: #1E2E45 (Dark Navy)
   ======================================== */

.testimonials-section {
    background:  #ffffff;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 46, 69, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 46, 69, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

/* Header Styles */
.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1E2E45 0%, #2a4163 100%);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonials-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1E2E45;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.testimonials-subtitle {
    color: #4a5e78;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Card Styles */
.testimonial-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(30, 46, 69, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(30, 46, 69, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(30, 46, 69, 0.15);
}

.testimonial-quote-icon {
    position: absolute;
    top: 1rem;
    left: 1.25rem;
    font-size: 1.5rem;
    color: #e8eef5;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-quote-icon {
    color: #1E2E45;
    transform: scale(1.1);
}

/* Image Styles */
.testimonial-image-wrapper {
    position: relative;
    margin-bottom: 1.25rem;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    border: 4px solid #fff;
    box-shadow: 0 8px 25px rgba(30, 46, 69, 0.12);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-image {
    transform: scale(1.05);
}

.testimonial-image-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1E2E45 0%, #3a5275 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.testimonial-card:hover .testimonial-image-ring {
    opacity: 1;
}

/* Content Styles */
.testimonial-content {
    flex: 1;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #4a5e78;
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 0;
}

/* Author Styles */
.testimonial-author {
    margin-top: auto;
}

.testimonial-name {
    font-weight: 700;
    color: #1E2E45;
    font-size: 1rem;
    display: block;
}

/* Accent Bar */
.testimonial-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1E2E45, #3a5275, #5a7a9a);
    transition: height 0.3s ease;
}

.testimonial-card:hover .testimonial-accent {
    height: 6px;
}

/* Mobile Styles */
.testimonials-section-mobile {
    padding: 2rem 0;
}

.testimonials-section-mobile .testimonials-title {
    font-size: 1.5rem;
}

.testimonials-section-mobile .testimonials-subtitle {
    font-size: 0.95rem;
}

.testimonials-section-mobile .row.g-3 {
    row-gap: 1rem;
}

.testimonial-card-mobile {
    padding: 1.5rem 1.25rem 1.25rem;
    border-radius: 1.25rem;
    flex-direction: column;
    align-items: stretch;
}

.testimonial-mobile-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    text-align: left;
}

.testimonial-card-mobile .testimonial-image-wrapper {
    margin-bottom: 0;
    flex-shrink: 0;
}

.testimonial-card-mobile .testimonial-image {
    width: 70px;
    height: 70px;
}

.testimonial-card-mobile .testimonial-image-ring {
    inset: -4px;
}

.testimonial-card-mobile .testimonial-author {
    margin-top: 0;
}

.testimonial-card-mobile .testimonial-name {
    font-size: 1rem;
}

.testimonial-card-mobile .testimonial-content {
    text-align: left;
    margin-bottom: 0;
}

.testimonial-card-mobile .testimonial-text {
    font-size: 0.9rem;
}

.testimonial-card-mobile .testimonial-quote-icon {
    top: 0.75rem;
    left: 1rem;
    font-size: 1.25rem;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .testimonials-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }

    .testimonials-section-mobile .testimonials-title {
        font-size: 1.35rem;
    }

    .testimonial-card-mobile {
        padding: 1.25rem 1rem 1rem;
    }

    .testimonial-card-mobile .testimonial-image {
        width: 60px;
        height: 60px;
    }

    .testimonial-card-mobile .testimonial-text {
        font-size: 0.875rem;
    }
}

/* ========================================
   Examiners Section - Modern Design
   Brand Color: #1E2E45 (Dark Navy)
   ======================================== */

.examiners-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.examiners-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(30, 46, 69, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.examiners-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(30, 46, 69, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

/* Header Styles */
.examiners-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1E2E45 0%, #2a4163 100%);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.examiners-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1E2E45;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.examiners-subtitle {
    color: #4a5e78;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Card Link */
.examiner-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

/* Card Styles */
.examiner-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.5rem 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(30, 46, 69, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(30, 46, 69, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.examiner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 46, 69, 0.15);
}

/* Logo Wrapper */
.examiner-logo-wrapper {
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.examiner-card:hover .examiner-logo-wrapper {
    transform: scale(1.1);
}

.examiner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.examiner-card:hover .examiner-logo {
    filter: grayscale(0%);
}

/* Info Styles */
.examiner-info {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
}

.examiner-name {
    font-weight: 700;
    color: #1E2E45;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    transition: color 0.3s ease;
}

.examiner-card:hover .examiner-name {
    color: #3a5275;
}

/* Hover Effect */
.examiner-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1E2E45, #3a5275, #5a7a9a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.examiner-card:hover .examiner-hover-effect {
    transform: scaleX(1);
}

/* Mobile Styles */
.examiners-section-mobile {
    padding: 2rem 0;
}

.examiners-section-mobile .examiners-title {
    font-size: 1.5rem;
}

.examiners-section-mobile .examiners-subtitle {
    font-size: 0.95rem;
}

.examiners-section-mobile .row.g-3 {
    row-gap: 0.75rem;
}

.examiner-card-mobile {
    padding: 1rem 0.75rem;
    border-radius: 1rem;
}

.examiner-card-mobile .examiner-logo-wrapper {
    width: 60px;
    height: 45px;
    margin-bottom: 0.75rem;
}

.examiner-card-mobile .examiner-info {
    min-height: 32px;
}

.examiner-card-mobile .examiner-name {
    font-size: 0.7rem;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .examiners-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }

    .examiners-section-mobile .examiners-title {
        font-size: 1.35rem;
    }

    .examiner-card-mobile {
        padding: 0.875rem 0.5rem;
    }

    .examiner-card-mobile .examiner-logo-wrapper {
        width: 50px;
        height: 40px;
        margin-bottom: 0.5rem;
    }

    .examiner-card-mobile .examiner-name {
        font-size: 0.65rem;
    }
}

/* ========================================
   Contact Us Section - Modern Design
   Brand Color: #1E2E45 (Dark Navy)
   ======================================== */

.contact-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 46, 69, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 46, 69, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

/* Header Styles */
.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1E2E45 0%, #2a4163 100%);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1E2E45;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    color: #4a5e78;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Map Wrapper */
.contact-map-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(30, 46, 69, 0.12);
    height: 100%;
    min-height: 400px;
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    display: block;
}

.contact-map-overlay {
    position: absolute;
    inset: 0;
    border: 4px solid rgba(30, 46, 69, 0.15);
    border-radius: 1.5rem;
    pointer-events: none;
}

/* Card Styles */
.contact-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(30, 46, 69, 0.1);
    border: 1px solid rgba(30, 46, 69, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-card-header {
    padding: 1.75rem 2rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    background: linear-gradient(135deg, #e8f0f8 0%, #c5d5e8 100%);
    color: #1E2E45;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E2E45;
    margin: 0;
}

.contact-card-body {
    padding: 0 2rem 2rem;
    flex: 1;
}

/* Contact List */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e8ecf1;
    transition: all 0.3s ease;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item:first-child {
    padding-top: 0;
}

.contact-item:hover {
    transform: none;
    background: rgba(30, 46, 69, 0.02);
    border-radius: 0.75rem;
    padding-left: 6px;
    padding-right: 6px;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-item-icon {
    transform: scale(1.1);
}

/* Contact Item Icon Variants - Brand Aligned */
.contact-item-icon-location {
    background: linear-gradient(135deg, #fce8e8 0%, #f5c5c5 100%);
    color: #8b3a3a;
}

.contact-item-icon-address {
    background: linear-gradient(135deg, #e8f0f8 0%, #c5d5e8 100%);
    color: #1E2E45;
}

.contact-item-icon-phone {
    background: linear-gradient(135deg, #e6f2ef 0%, #c8e0d8 100%);
    color: #2d5a4a;
}

.contact-item-icon-email {
    background: linear-gradient(135deg, #f2ede6 0%, #e0d5c8 100%);
    color: #5a4a3d;
}

.contact-item-content {
    flex: 1;
    min-width: 0;
}

.contact-item-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #7a8a9a;
    margin-bottom: 0.25rem;
}

.contact-item-value {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #1E2E45;
    line-height: 1.5;
    word-break: break-word;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #1E2E45;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #3a5275;
}

/* Accent Bar */
.contact-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1E2E45, #3a5275, #5a7a9a);
    pointer-events: none; /* ← FIX: Allow clicks to pass through */
    z-index: 0; /* ← Explicitly place behind content */
}

/* Mobile Styles */
.contact-section-mobile {
    padding: 2rem 0;
}

.contact-section-mobile .contact-title {
    font-size: 1.5rem;
}

.contact-section-mobile .contact-subtitle {
    font-size: 0.95rem;
}

.contact-map-wrapper-mobile {
    min-height: 250px;
    border-radius: 1.25rem;
}

.contact-map-wrapper-mobile .contact-map {
    min-height: 250px;
}

.contact-card-mobile {
    border-radius: 1.25rem;
}

.contact-card-mobile .contact-card-header {
    padding: 1.25rem 1.25rem 0.75rem;
}

.contact-card-mobile .contact-card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
}

.contact-card-mobile .contact-card-title {
    font-size: 1.25rem;
}

.contact-card-mobile .contact-card-body {
    padding: 0 1.25rem 1.25rem;
}

.contact-card-mobile .contact-item {
    padding: 0.875rem 0;
    gap: 0.75rem;
}

.contact-card-mobile .contact-item-icon {
    width: 38px;
    height: 38px;
    font-size: 0.875rem;
}

.contact-card-mobile .contact-item-label {
    font-size: 0.7rem;
}

.contact-card-mobile .contact-item-value {
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .contact-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }

    .contact-section-mobile .contact-title {
        font-size: 1.35rem;
    }

    .contact-map-wrapper-mobile {
        min-height: 200px;
    }

    .contact-map-wrapper-mobile .contact-map {
        min-height: 200px;
    }

    .contact-card-mobile .contact-card-header {
        padding: 1rem 1rem 0.5rem;
    }

    .contact-card-mobile .contact-card-icon {
        width: 44px;
        height: 44px;
    }

    .contact-card-mobile .contact-card-body {
        padding: 0 1rem 1rem;
    }

    .contact-card-mobile .contact-item-icon {
        width: 36px;
        height: 36px;
    }

    .contact-card-mobile .contact-item-value {
        font-size: 0.875rem;
    }
}

/* ========================================
   Partners Section - Modern Design
   ======================================== */

.partners-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(30, 46, 69, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.partners-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(30, 46, 69, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

/* Header Styles */
.partners-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1E2E45 0%, #2a4163 100%);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.partners-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1E2E45;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.partners-subtitle {
    color: #4a5e78;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Slider Wrapper */
.partners-slider-wrapper {
    position: relative;
    padding: 1rem 0;
}

.partners-slider-wrapper::before,
.partners-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.partners-slider-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
}

.partners-slider-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff 0%, transparent 100%);
}

/* Partner Card Link */
.partner-card-link {
    text-decoration: none;
    display: block;
    padding: 0.5rem;
}

/* Partner Card */
.partner-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(30, 46, 69, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 46, 69, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 46, 69, 0.12);
    border-color: rgba(30, 46, 69, 0.15);
}

/* Logo Wrapper */
.partner-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70px;
}

.partner-logo {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    object-fit: contain;
    filter: grayscale(30%) opacity(0.85);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Mobile Styles */
.partners-section-mobile {
    padding: 2rem 0;
}

.partners-section-mobile .partners-title {
    font-size: 1.5rem;
}

.partners-section-mobile .partners-subtitle {
    font-size: 0.95rem;
}

/* Partners Grid for Mobile */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.partner-card-mobile {
    padding: 1rem 0.75rem;
    border-radius: 0.875rem;
    min-height: 80px;
}

.partner-card-mobile .partner-logo-wrapper {
    height: 55px;
}

.partner-card-mobile .partner-logo {
    max-height: 55px;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .partners-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }

    .partners-section-mobile .partners-title {
        font-size: 1.35rem;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .partner-card_mobile {
        padding: 0.75rem 0.5rem;
        min-height: 70px;
    }

    .partner-card_mobile .partner-logo-wrapper {
        height: 45px;
    }

    .partner-card_mobile .partner-logo {
        max-height: 45px;
    }
}

/* Slick Slider Overrides for Partners */
.partners-slider.slick-initialized .slick-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-slider .slick-track {
    display: flex;
    align-items: center;
}

.partners-slider .slick-slide > div {
    width: 100%;
}
