/* =====================
   Enhanced Why Choose Us Section
   ===================== */
.why-choose-us {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTTAgMGgxMDB2MTAwSDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTUwIDUwbDUwIDUwTDUwIDE1MEwwIDEwMHoiIGZpbGw9IiNmMWY1ZjkiIGZpbGwtb3BhY2l0eT0iMC4xIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+');
    opacity: 0.6;
    z-index: 0;
}

.why-choose-us .Center {
    position: relative;
    z-index: 2;
}

/* Section Header */
.why-choose-us .section-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.why-choose-us .section-subtitle {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0a4a0a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(10, 74, 10, 0.1);
    border-radius: 50px;
    position: relative;
    z-index: 1;
}

.why-choose-us .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0 0 20px;
    color: #0a4a0a;
    line-height: 1.2;
    position: relative;
    background: linear-gradient(135deg, #0a4a0a 0%, #0a6a0a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.why-choose-us .section-description {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4b5563;
    position: relative;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 20px;
}

/* Feature Card Base Styles */
.feature-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

/* Card Hover Effect */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0a4a0a, #0a6a0a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

/* Feature Icon */
.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: #0a4a0a;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(10, 74, 10, 0.1);
}

.feature-card:hover .feature-icon {
    transform: translateY(-5px) rotate(5deg);
    background: linear-gradient(135deg, #0a4a0a, #0a6a0a);
    color: white;
    box-shadow: 0 15px 30px rgba(10, 74, 10, 0.2);
}

/* Feature Content */
.feature-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin: 0 0 15px;
    color: #0a4a0a;
    font-weight: 700;
    line-height: 1.3;
}

.feature-content p {
    color: #4b5563;
    line-height: 1.8;
    margin: 0 0 20px;
    font-size: 1.05rem;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
}

.feature-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 35px;
    margin-bottom: 5px;
    color: #4b5563;
    line-height: 1.6;
}

.feature-list i {
    position: absolute;
    left: 0;
    top: 10px;
    color: #0a4a0a;
    font-size: 0.9rem;
    background: #f0fdf4;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-list i {
    background: #0a4a0a;
    color: white;
}

/* Stats in Feature Cards */
.feature-stats {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e5e7eb;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #0a4a0a;
    line-height: 1.2;
    margin-bottom: 5px;
    display: block;
    background: linear-gradient(135deg, #0a4a0a, #0a6a0a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.feature-card:hover .stat-number {
    transform: scale(1.05);
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* Image Card */
.feature-card-image {
    padding: 0;
    overflow: hidden;
}

/* Modern Facilities Tab Styles */
.facility-highlight {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.facility-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.facility-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a4a0a;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.facility-highlight:hover .facility-icon {
    background: linear-gradient(135deg, #0a4a0a, #0a6a0a);
    color: white;
    transform: rotate(5deg) scale(1.1);
}

.facility-content h4 {
    margin: 0 0 8px;
    color: #0a4a0a;
    font-size: 1.1rem;
}

.facility-content p {
    margin: 0;
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

.facility-cta {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* 24/7 Support Tab Styles */
.support-channels {
    margin: 25px 0;
}

.support-channel {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 15px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.support-channel:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.channel-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a4a0a;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.support-channel:hover .channel-icon {
    background: linear-gradient(135deg, #0a4a0a, #0a6a0a);
    color: white;
    transform: scale(1.1);
}

.channel-details h4 {
    margin: 0 0 5px;
    color: #0a4a0a;
    font-size: 1.05rem;
}

.channel-details p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
}

.channel-details a {
    color: #0a6a0a;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.channel-details a:hover {
    color: #0a4a0a;
    text-decoration: underline;
}

.support-features {
    margin: 30px 0;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.support-features h4 {
    margin-top: 0;
    color: #0a4a0a;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.support-features .feature-list {
    margin: 0;
    padding: 0;
}

.support-features .feature-list li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    list-style: none;
}

.support-features .feature-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: #0a6a0a;
}

.support-cta {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.support-cta .btn-primary,
.support-cta .btn-outline {
    flex: 1;
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.support-cta .btn-primary {
    background: linear-gradient(135deg, #0a4a0a, #0a6a0a);
    color: white;
    border: 2px solid transparent;
}

.support-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 74, 10, 0.3);
}

.support-cta .btn-outline {
    background: transparent;
    border: 2px solid #0a4a0a;
    color: #0a4a0a;
}

.support-cta .btn-outline:hover {
    background: #0a4a0a;
    color: white;
    transform: translateY(-2px);
}

/* Expert Instructors Section */
.instructor-feature {
    position: relative;
    overflow: hidden;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(10, 74, 10, 0.1);
    transition: all 0.3s ease;
}

.instructor-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.instructor-intro {
    position: relative;
    padding-left: 80px;
    margin-bottom: 30px;
}

.instructor-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a4a0a;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(10, 74, 10, 0.1);
}

.instructor-intro p {
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

.instructor-highlights {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.highlight-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    border: 1px solid rgba(10, 74, 10, 0.1);
    transition: all 0.3s ease;
    align-items: flex-start;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-color: rgba(10, 74, 10, 0.2);
}

.highlight-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a4a0a;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    background: linear-gradient(135deg, #0a4a0a, #0a6a0a);
    color: white;
    transform: rotate(5deg) scale(1.1);
}

.highlight-content h4 {
    margin: 0 0 5px;
    color: #0a4a0a;
    font-size: 1rem;
    font-weight: 700;
}

.highlight-content p {
    margin: 0;
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.5;
}

.instructor-cta {
    display: flex;
    gap: 15px;
    margin: 35px 0 25px;
    flex-wrap: wrap;
}

.instructor-cta .btn-outline,
.instructor-cta .btn-primary {
    flex: 1;
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.instructor-cta .btn-primary {
    background: linear-gradient(135deg, #0a4a0a, #0a6a0a);
    color: white;
    border: 2px solid transparent;
}

.instructor-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 74, 10, 0.3);
}

.instructor-cta .btn-outline {
    background: transparent;
    border: 2px solid #0a4a0a;
    color: #0a4a0a;
}

.instructor-cta .btn-outline:hover {
    background: #0a4a0a;
    color: white;
    transform: translateY(-2px);
}

.instructor-stats {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(10, 74, 10, 0.1);
    border-bottom: 1px solid rgba(10, 74, 10, 0.1);
}

.instructor-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    padding: 0 10px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a4a0a;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.instructor-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0a4a0a;
    line-height: 1.2;
    margin-bottom: 2px;
    display: block;
    background: linear-gradient(135deg, #0a4a0a, #0a6a0a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.instructor-stats .stat-label {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
    display: block;
    line-height: 1.3;
}

.instructor-testimonial {
    margin-top: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #0a6a0a;
    position: relative;
    padding-left: 60px;
}

.testimonial-icon {
    position: absolute;
    left: 20px;
    top: 20px;
    color: #0a6a0a;
    font-size: 1.5rem;
    opacity: 0.7;
}

.instructor-testimonial p {
    margin: 0;
    color: #4b5563;
    font-style: italic;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .instructor-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .instructor-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .instructor-stats .stat-item {
        justify-content: flex-start;
    }
    
    .instructor-cta {
        flex-direction: column;
    }
    
    .instructor-cta .btn-outline,
    .instructor-cta .btn-primary {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .instructor-intro {
        padding-left: 0;
        padding-top: 70px;
    }
    
    .instructor-icon {
        top: -50px;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Feature Image */
.feature-image {
    position: relative;
    overflow: hidden;
    padding: 30px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(10, 74, 10, 0.1);
}

.instructor-header {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.instructor-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0a4a0a, #0a6a0a);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(10, 74, 10, 0.15);
}

.instructor-badge i {
    font-size: 1rem;
}

.instructor-feature h3 {
    font-size: 1.6rem;
    color: #0a4a0a;
    margin: 0 0 15px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.instructor-feature h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0a4a0a, #0a6a0a);
    border-radius: 3px;
}

.instructor-intro p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.instructor-highlights {
    margin: 25px 0;
}

.highlight-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(10, 74, 10, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-color: rgba(10, 74, 10, 0.2);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a4a0a;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    background: linear-gradient(135deg, #0a4a0a, #0a6a0a);
    color: white;
    transform: rotate(5deg) scale(1.1);
}

.highlight-content h4 {
    margin: 0 0 5px;
    color: #0a4a0a;
    font-size: 1.05rem;
}

.highlight-content p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
}

.instructor-cta {
    display: flex;
    gap: 15px;
    margin: 30px 0 25px;
    flex-wrap: wrap;
}

.instructor-cta .btn-outline,
.instructor-cta .btn-primary {
    flex: 1;
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.instructor-cta .btn-primary {
    background: linear-gradient(135deg, #0a4a0a, #0a6a0a);
    color: white;
    border: 2px solid transparent;
}

.instructor-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 74, 10, 0.3);
}

.instructor-cta .btn-outline {
    background: transparent;
    border: 2px solid #0a4a0a;
    color: #0a4a0a;
}

.instructor-cta .btn-outline:hover {
    background: #0a4a0a;
    color: white;
    transform: translateY(-2px);
}

.instructor-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(10, 74, 10, 0.1);
}

.instructor-stats .stat-item {
    text-align: center;
    flex: 1;
    padding: 0 10px;
}

.instructor-stats .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0a4a0a;
    line-height: 1.2;
    margin-bottom: 5px;
    display: block;
    background: linear-gradient(135deg, #0a4a0a, #0a6a0a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.instructor-stats .stat-label {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

/* Feature Image */
.feature-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.feature-card:hover .feature-img {
    transform: scale(1.05);
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a4a0a;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
    color: #0a4a0a;
}

/* Tabbed Feature Card */
.feature-card-wide {
    grid-column: span 6;
}

.feature-tabs {
    display: flex;
    margin-bottom: 25px;
    border-bottom: 1px solid #e5e7eb;
}

.tab {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}

.tab i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.tab.active {
    color: #0a4a0a;
    border-bottom-color: #0a4a0a;
}

.tab.active i {
    color: #0a4a0a;
}

.tab:hover {
    color: #0a4a0a;
}

.tab-content {
    min-height: 200px;
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
    padding: 5px;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #0a4a0a;
}

.tab-pane p {
    margin-bottom: 20px;
    color: #4b5563;
    line-height: 1.8;
}

/* Testimonial Card */
.feature-card-testimonial {
    background: linear-gradient(135deg, #0a4a0a, #0a6a0a);
    color: white;
    grid-column: span 6;
    padding: 0;
}

.testimonial-quote {
    padding: 40px 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.testimonial-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M20,20 L20,80 L80,80 L80,20 Z" fill="none" stroke="white" stroke-width="0.5" stroke-dasharray="5,5" opacity="0.1"/></svg>');
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: -1;
}

.testimonial-quote i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    display: inline-block;
}

.testimonial-quote blockquote {
    font-style: italic;
    margin: 0 0 25px;
    line-height: 1.8;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover .author-img {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.author-info h4 {
    margin: 0 0 5px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 5px;
}

.testimonial-rating {
    color: #ffd700;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* Achievement Badges */
.achievement-badges {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    flex-wrap: wrap;
    gap: 25px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.badge {
    text-align: center;
    padding: 35px 25px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 200px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0a4a0a, #0a6a0a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.badge:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.badge:hover::before {
    transform: scaleX(1);
}

.badge i {
    font-size: 2.8rem;
    color: #0a4a0a;
    margin-bottom: 15px;
    display: block;
    transition: all 0.3s ease;
}

.badge:hover i {
    transform: scale(1.1);
    color: #0a6a0a;
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0a4a0a;
    line-height: 1.2;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #0a4a0a, #0a6a0a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge:hover .badge-number {
    transform: scale(1.05);
}

.badge-label {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.badge:hover .badge-label {
    color: #0a4a0a;
}

/* Buttons */
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    background: transparent;
    border: 2px solid #0a4a0a;
    color: #0a4a0a;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #0a4a0a, #0a6a0a);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-outline:hover {
    color: white;
    border-color: #0a4a0a;
}

.btn-outline:hover::before {
    width: 100%;
}

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .features-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .feature-card {
        grid-column: span 3 !important;
    }
}

@media (max-width: 1200px) {
    .why-choose-us .section-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .feature-card {
        grid-column: span 6 !important;
    }
    
    .feature-card-wide {
        grid-column: span 6 !important;
    }
}

@media (max-width: 992px) {
    .why-choose-us {
        padding: 100px 0;
    }
    
    .why-choose-us .section-title {
        font-size: 2.2rem;
    }
    
    .feature-tabs {
        flex-wrap: wrap;
    }
    
    .tab {
        flex: 1;
        min-width: 120px;
        justify-content: center;
        text-align: center;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .achievement-badges {
        gap: 20px;
    }
    
    .badge {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 80px 0;
    }
    
    .why-choose-us .section-header {
        margin-bottom: 50px;
    }
    
    .why-choose-us .section-title {
        font-size: 2rem;
    }
    
    .why-choose-us .section-description {
        font-size: 1.05rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .feature-card {
        padding: 35px 25px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .feature-content h3 {
        font-size: 1.4rem;
    }
    
    .badge {
        min-width: 100%;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .facility-cta,
    .support-cta {
        flex-direction: column;
    }
    
    .facility-cta .btn-primary,
    .facility-cta .btn-outline,
    .support-cta .btn-primary,
    .support-cta .btn-outline {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .facility-highlight,
    .support-channel {
        flex-direction: column;
        text-align: center;
    }
    
    .facility-icon,
    .channel-icon {
        margin: 0 auto 15px;
    }
    
    .channel-details h4,
    .facility-content h4 {
        margin-top: 10px;
    }
}

/* Responsive Adjustments for Expert Instructors */
@media (max-width: 992px) {
    .instructor-feature {
        grid-column: span 12 !important;
    }
    
    .instructor-cta {
        flex-direction: column;
    }
    
    .instructor-cta .btn-outline,
    .instructor-cta .btn-primary {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-icon {
        margin: 0 auto 15px;
    }
    
    .instructor-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .instructor-stats .stat-item {
        margin-bottom: 15px;
    }
}

@media (max-width: 1199px) {
    /* Make all feature cards full width on tablet and mobile */
    .feature-card {
        grid-column: 1 / -1 !important;
    }
    
    /* Adjust certification badges for tablet */
    .certification-badges {
        flex-wrap: wrap;
        gap: 15px !important;
        justify-content: center;
    }
    
    .certification-badge {
        flex: 1 1 calc(50% - 15px) !important;
        min-width: 200px;
        margin: 0 0 15px 0 !important;
    }
    
    /* Adjust button layout */
    .feature-cta-buttons {
        flex-wrap: wrap;
        gap: 10px !important;
    }
    
    .feature-cta-buttons a {
        flex: 1 1 100% !important;
        text-align: center;
        padding: 12px 15px !important;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }
    
    .why-choose-us .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .why-choose-us .section-subtitle {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .features-grid {
        padding: 0 15px;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
        border-radius: 12px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .feature-content h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }
    
    .feature-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Certification badges mobile optimization */
    .certification-badges {
        flex-direction: column;
        align-items: stretch;
    }
    
    .certification-badge {
        width: 100% !important;
        padding: 12px !important;
        margin: 0 0 10px 0 !important;
    }
    
    .certification-badge img {
        max-height: 30px !important;
    }
    
    .certification-badge span {
        font-size: 0.8rem !important;
    }
    
    /* Button adjustments */
    .feature-cta-buttons {
        flex-direction: column;
    }
    
    .feature-cta-buttons a {
        width: 100% !important;
        margin: 5px 0 !important;
    }
    
    .feature-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        text-align: left;
        width: 100%;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .achievement-badges {
        margin-top: 40px;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .why-choose-us {
        padding: 50px 0;
    }
    
    .why-choose-us .section-title {
        font-size: 1.6rem;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .achievement-badges {
        grid-template-columns: 1fr;
    }
}
}
