/* =====================
   Why Choose Us Page Styles
   ===================== */

/* Hero Section */
.why-hero {
    background: linear-gradient(135deg, #0a4a0a 0%, #1a7a1a 50%, #0a4a0a 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.why-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHJlY3Qgd2lkdGg9IjUwIiBoZWlnaHQ9IjUwIiBmaWxsPSJ0cmFuc3BhcmVudCI+PC9yZWN0PjxyZWN0IHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwJSIgZmlsbD0icmdiYSgxMCwgNzQsIDEwLCAwLjAzKSI+PC9yZWN0PjwvcGF0dGVybj48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSI+PC9yZWN0Pjwvc3ZnPg==');
    opacity: 0.1;
    z-index: 1;
}

.why-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.why-hero .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.why-hero .hero-content {
    position: relative;
    z-index: 10;
}

.why-hero .hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 30px;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.why-hero .hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    border-radius: 2px;
}

.why-hero .hero-subtitle {
    font-size: 1.5rem;
    color: #e0f2e9;
    margin: 0 0 40px;
    font-weight: 500;
    line-height: 1.4;
    position: relative;
    padding-left: 20px;
}

.why-hero .hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: #4ade80;
    border-radius: 2px;
}

.why-hero .hero-catchy {
    font-size: 1.3rem;
    color: #4ade80;
    font-weight: 600;
    margin: 30px 0;
    display: inline-block;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 2px solid rgba(74, 222, 128, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px 10px rgba(74, 222, 128, 0.4); }
}

.why-hero .hero-description {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 0 50px;
}

.why-hero .hero-description p {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

.why-hero .hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-primary, .btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    gap: 10px;
}

.btn-hero-primary {
    background: #4ade80;
    color: white;
}

.btn-hero-primary:hover {
    background: #22c55e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.why-hero .hero-visual {
    position: relative;
    z-index: 10;
}

.why-hero .hero-image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-8deg);
    transition: transform 0.8s ease;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.why-hero .hero-image-container:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.why-hero .hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.why-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 74, 10, 0.3) 0%, rgba(26, 122, 26, 0.1) 100%);
    pointer-events: none;
}

.hero-badges {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 5;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #0a4a0a;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-badge i {
    font-size: 1.1rem;
}

/* Floating elements */
.why-hero .hero-float {
    position: absolute;
    z-index: 5;
}

.why-hero .hero-float-1 {
    top: 10%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: rgba(74, 222, 128, 0.2);
    border-radius: 50%;
    animation: float1 15s ease-in-out infinite;
}

.why-hero .hero-float-2 {
    bottom: 20%;
    left: 5%;
    width: 60px;
    height: 60px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    animation: float2 12s ease-in-out infinite;
}

.why-hero .hero-float-3 {
    top: 30%;
    left: 15%;
    width: 40px;
    height: 40px;
    background: rgba(74, 222, 128, 0.3);
    border-radius: 50%;
    animation: float3 10s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -50px) scale(1.1); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 30px) scale(0.9); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 40px) scale(1.2); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    background: rgba(10, 74, 10, 0.1);
    color: #0a4a0a;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a4a0a;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.section-description {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Dual Certification Section */
.dual-certification {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.certification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.certification-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.certification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4ade80, #22c55e);
}

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

.cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.certification-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0a4a0a;
    margin-bottom: 15px;
}

.certification-card p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74, 222, 128, 0.1);
    color: #0a4a0a;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.cert-badge i {
    color: #4ade80;
}

/* Expert Team Section */
.expert-team {
    padding: 100px 0;
    background: white;
    position: relative;
}

.team-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.team-feature {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.team-feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0a4a0a;
    margin-bottom: 15px;
}

.team-feature p {
    color: #6b7280;
    line-height: 1.6;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 60px 0;
}

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

.team-stat .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #4ade80;
    margin-bottom: 10px;
}

.team-stat .stat-label {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-quote {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(10, 74, 10, 0.05), rgba(26, 122, 26, 0.05));
    border-radius: 20px;
    position: relative;
}

.team-quote blockquote {
    font-size: 1.3rem;
    color: #0a4a0a;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    position: relative;
}

.team-quote blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #4ade80;
    position: absolute;
    top: -20px;
    left: -20px;
    opacity: 0.3;
}

.team-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 10px;
}

.btn-primary {
    background: #4ade80;
    color: white;
}

.btn-primary:hover {
    background: #22c55e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

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

.btn-secondary:hover {
    background: #0a4a0a;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(10, 74, 10, 0.3);
}

/* Flexible Learning Section */
.flexible-learning {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.learning-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.learning-option {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.option-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.learning-option h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0a4a0a;
    margin-bottom: 10px;
}

.learning-option p {
    color: #6b7280;
    line-height: 1.5;
}

.learning-cta {
    text-align: center;
    margin-top: 40px;
}

/* Student Testimonial Section */
.student-testimonial {
    padding: 100px 0;
    background: white;
}

.testimonial-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, rgba(10, 74, 10, 0.02), rgba(26, 122, 26, 0.02));
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    padding-right: 20px;
}

.testimonial-text blockquote {
    font-size: 1.4rem;
    color: #0a4a0a;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #4ade80;
    position: absolute;
    top: -20px;
    left: -30px;
    opacity: 0.3;
}

.testimonial-highlight {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 30px;
}

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

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0a4a0a;
    margin-bottom: 5px;
}

.author-title {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.skills-gained {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background: rgba(74, 222, 128, 0.1);
    color: #0a4a0a;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.testimonial-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.overlay-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0a4a0a;
    font-weight: 600;
    font-size: 0.9rem;
}

.overlay-text i {
    color: #4ade80;
}

/* Statistics Showcase */
.statistics-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a4a0a 0%, #1a7a1a 100%);
    color: white;
}

.statistics-showcase .section-subtitle {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.statistics-showcase .section-title {
    color: white;
}

.statistics-showcase .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #4ade80;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #4ade80;
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: white;
}

.benefits-category {
    margin-bottom: 80px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #0a4a0a;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid #4ade80;
}

.category-title i {
    color: #4ade80;
    font-size: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #4ade80;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: white;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0a4a0a;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Modern Facilities Section */
.modern-facilities {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.facility-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.facility-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facility-card:hover .facility-image img {
    transform: scale(1.1);
}

.facility-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(10, 74, 10, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #4ade80;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.facility-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0a4a0a;
    margin: 20px;
    margin-bottom: 10px;
}

.facility-card p {
    color: #6b7280;
    margin: 0 20px 20px;
    line-height: 1.6;
}

/* Support Section */
.support-section {
    padding: 100px 0;
    background: white;
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.support-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a4a0a;
    margin-bottom: 30px;
}

.support-text p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 40px;
}

.support-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.support-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(10, 74, 10, 0.05);
    border-radius: 10px;
}

.support-feature i {
    color: #4ade80;
    font-size: 1.2rem;
}

.support-feature span {
    color: #0a4a0a;
    font-weight: 500;
}

.support-visual {
    position: relative;
}

.support-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.support-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.support-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    color: #0a4a0a;
}

.support-badge i {
    color: #4ade80;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a4a0a 0%, #1a7a1a 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

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

.cta-stat .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #4ade80;
    margin-bottom: 10px;
}

.cta-stat .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: #4ade80;
    color: white;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #0a4a0a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-hero {
        padding: 100px 0 80px;
        min-height: auto;
    }
    
    .why-hero .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .why-hero .hero-title {
        font-size: 3.5rem;
    }
    
    .why-hero .hero-subtitle {
        font-size: 1.3rem;
        text-align: center;
        padding-left: 0;
    }
    
    .why-hero .hero-subtitle::before {
        display: none;
    }
    
    .testimonial-card {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .support-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .why-hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .why-hero .hero-title {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    
    .why-hero .hero-title::after {
        width: 80px;
        bottom: -10px;
    }
    
    .why-hero .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .why-hero .hero-catchy {
        font-size: 1.1rem;
        padding: 12px 25px;
        margin: 20px 0;
    }
    
    .why-hero .hero-description {
        padding: 25px 20px;
        margin-bottom: 40px;
    }
    
    .why-hero .hero-description p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .certification-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .team-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .learning-options {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .support-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .why-hero .hero-float {
        display: none;
    }
    
    .hero-badges {
        top: 10px;
        right: 10px;
        gap: 10px;
    }
    
    .hero-badge {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .why-hero {
        padding: 60px 0 40px;
    }
    
    .why-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .why-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .why-hero .hero-catchy {
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    .why-hero .hero-description p {
        font-size: 1rem;
    }
    
    .why-hero .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 40px 30px;
    }
    
    .testimonial-text blockquote {
        font-size: 1.2rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .skills-gained {
        justify-content: center;
    }
    
    .final-cta h2 {
        font-size: 2.2rem;
    }
    
    .final-cta p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

.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;
    }
}
}
