/* ====================
   About Page Hero Section
   ==================== */
.about-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;
}

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

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

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

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

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

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

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

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

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

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

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

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

.hero-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-stat .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #4ade80;
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-stat .stat-label {
    font-size: 0.9rem;
    color: #e0f2e9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

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

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

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

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

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

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

/* Catchy phrase animation */
.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); }
}

/* Founder's Message Section */
.founder-message {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.founder-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e9ecef, transparent);
}

.founder-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.founder-image {
    text-align: center;
}

.founder-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #f8f9fa;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-signature p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0a4a0a;
    margin: 0 0 5px;
}

.founder-signature span {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
}

.founder-text .section-title {
    font-size: 2.2rem;
    color: #0a4a0a;
    margin: 0 0 30px;
    position: relative;
    padding-bottom: 15px;
}

.founder-text .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0a4a0a, #1a7a1a);
    border-radius: 2px;
}

.message-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0 0 20px;
}

.message-content p:last-child {
    margin-bottom: 30px;
}

.founder-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #6b7280;
}

.credential-item i {
    color: #0a4a0a;
    font-size: 1.1rem;
}

/* Mission, Vision & Values Section */
.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.mv-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(10, 74, 10, 0.1);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 74, 10, 0.1);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(10, 74, 10, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0a4a0a;
    transition: all 0.3s ease;
}

.mv-card:hover .mv-icon {
    background: #0a4a0a;
    color: white;
    transform: scale(1.1);
}

.mv-card h3 {
    font-size: 1.8rem;
    color: #0a4a0a;
    margin: 0 0 20px;
    font-weight: 700;
}

.mv-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

/* Core Values */
.core-values {
    text-align: center;
}

.core-values .section-title {
    font-size: 2.5rem;
    color: #0a4a0a;
    margin: 0 0 50px;
    position: relative;
    padding-bottom: 20px;
}

.core-values .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0a4a0a, #1a7a1a);
    border-radius: 2px;
}

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

.value-item {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(10, 74, 10, 0.1);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(10, 74, 10, 0.1);
    border-color: rgba(10, 74, 10, 0.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(10, 74, 10, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #0a4a0a;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: #0a4a0a;
    color: white;
    transform: scale(1.1);
}

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

.value-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-hero {
        padding: 100px 0 80px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        text-align: center;
        padding-left: 0;
    }
    
    .hero-subtitle::before {
        display: none;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-image {
        height: 400px;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    
    .hero-title::after {
        width: 80px;
        bottom: -10px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-catchy {
        font-size: 1.1rem;
        padding: 12px 25px;
        margin: 20px 0;
    }
    
    .hero-description {
        padding: 25px 20px;
        margin-bottom: 40px;
    }
    
    .hero-description p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .hero-stat {
        min-width: 200px;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .hero-float {
        display: none;
    }
    
    .founder-message,
    .mission-vision {
        padding: 60px 0;
    }
    
    .founder-photo {
        width: 200px;
        height: 200px;
    }
    
    .founder-credentials {
        justify-content: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .core-values .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-catchy {
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    .hero-description p {
        font-size: 1rem;
    }
    
    .hero-stat {
        min-width: 150px;
        padding: 20px 15px;
    }
    
    .hero-stat .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-stat .stat-label {
        font-size: 0.8rem;
    }
}
.About_sec {
    background: #f9fafc;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: block;
    color: var(--primary-color, #0a4a0a);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    color: #1a365d;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 20px;
    line-height: 1.3;
}

.section-description {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 700px;
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

/* Feature Cards */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(10, 74, 10, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(10, 74, 10, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color, #0a4a0a);
    font-size: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-color, #0a4a0a);
    color: #ffffff;
    transform: scale(1.1);
}

.feature-card h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin: 0 0 15px;
    font-weight: 700;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #4a5568;
    font-size: 0.95rem;
}

.feature-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-color, #0a4a0a);
    font-size: 0.8rem;
}

/* Video Showcase */
.video-showcase {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.video-placeholder {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
}

.video-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.play-button i {
    color: var(--primary-color, #0a4a0a);
    font-size: 24px;
    margin-left: 5px;
}

.play-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.play-overlay:hover .play-button {
    transform: scale(1.1);
    background: var(--primary-color, #0a4a0a);
}

.play-overlay:hover .play-button i {
    color: white;
}

.play-overlay span {
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Stats Bar */
.stats-bar {
    display: flex;
    background: white;
    padding: 20px;
    justify-content: space-around;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.stat-item {
    text-align: center;
    padding: 0 15px;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color, #0a4a0a);
    line-height: 1.2;
    margin-bottom: 5px;
}

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

/* CTA Section */
.cta-section {
    background: white;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.cta-section h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin: 0 0 15px;
    font-weight: 700;
}

.cta-section p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
}

.btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary-color, #0a4a0a);
    color: white;
}

.btn-primary:hover {
    background: #083b08;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 74, 10, 0.2);
}

.btn-secondary {
    background: white;
    color: var(--primary-color, #0a4a0a);
    border-color: var(--primary-color, #0a4a0a);
}

.btn-secondary:hover {
    background: rgba(10, 74, 10, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        gap: 30px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-bar {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        padding: 10px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Requirements Section */
.requirements {
    margin-top: auto;
    padding-top: 15px;
}

.btn-enroll {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #0a4a0a, #1a7a1a);
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transform: translateY(0);
}

.btn-enroll:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(10, 74, 10, 0.2);
    background: linear-gradient(135deg, #1a7a1a, #0a4a0a);
}

.btn-enroll:hover span {
    transform: translateX(3px);
}

.btn-enroll:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}

.btn-enroll span {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 5px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0a4a0a, #1a7a1a);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 10px 0 0;
}

/* Header Divider */
.header-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.header-divider i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Center Container */
.Center {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Stats Section Background Pattern */
.stats-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHJlY3Qgd2lkdGg9IjUwIiBoZWlnaHQ9IjUwIiBmaWxsPSJ0cmFuc3BhcmVudCI+PC9yZWN0PjxyZWN0IHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwJSIgZmlsbD0icmdiYSgxMCwgNzQsIDEwLCAwLjAzKSI+PC9yZWN0PjwvcGF0dGVybj48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSI+PC9yZWN0Pjwvc3ZnPg==');
    opacity: 0.05;
    z-index: 0;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        gap: 30px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-details li {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}
.team-section {
    padding: 80px 0;
    background: #f8fafd;
}

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

.team-member {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(10, 74, 10, 0.15);
}

.member-photo {
    position: relative;
    overflow: hidden;
    height: 280px;
}

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

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

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

.team-member:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color, #0a4a0a);
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    color: #1a365d;
    font-size: 1.4rem;
    margin: 0 0 5px;
    font-weight: 700;
}

.member-role {
    display: block;
    color: var(--primary-color, #0a4a0a);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.member-bio {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.member-expertise {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.expertise-tag {
    background: rgba(10, 74, 10, 0.08);
    color: var(--primary-color, #0a4a0a);
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 60px 0;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

/* Video Introduction */
.video-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 60px 0;
    align-items: center;
}

.video-wrapper {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.video-placeholder {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #f0f0f0;
}

.video-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-placeholder:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button:hover {
    background: #e74c3c;
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.video-caption {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    text-align: center;
}

.video-content {
    flex: 1;
    min-width: 300px;
}

.video-content h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.video-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #e74c3c;
}

.video-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.feature-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.feature-list li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #2ecc71;
    font-size: 18px;
}

/* Our Approach */
.our-approach {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.approach-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #e74c3c;
}

.approach-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #e74c3c;
    transition: all 0.3s ease;
}

.approach-card:hover .approach-icon {
    background: #e74c3c;
    color: white;
    transform: rotateY(180deg);
}

.approach-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.approach-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    padding: 80px 0;
    margin: 60px 0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.stats-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    color: white;
    position: relative;
}

.stat-item:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #e74c3c;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin: 10px 0;
    font-family: 'Oswald', sans-serif;
    color: #fff;
}

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

/* Team Section */
.team-section {
    margin: 80px 0;
}

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

.team-member {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    padding-bottom: 25px;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-photo {
    position: relative;
    height: 300px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.social-links {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    background: rgba(231, 76, 60, 0.9);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.team-member:hover .social-links {
    bottom: 0;
}

.social-links a {
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #fff;
    color: #e74c3c;
    transform: translateY(-3px);
}

.team-member h4 {
    font-size: 20px;
    margin: 15px 0 5px;
    color: #2c3e50;
}

.team-member .position {
    display: block;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 15px;
}

.team-member p {
    color: #666;
    font-size: 14px;
    padding: 0 20px;
    margin: 0;
}

/* Testimonial Highlight */
.testimonial-highlight {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 50px;
    margin: 60px 0;
    position: relative;
    border-left: 5px solid #e74c3c;
}

.testimonial-highlight:before {
    content: '\201C';
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 100px;
    color: rgba(231, 76, 60, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #e74c3c;
}

.author-info h5 {
    margin: 0 0 5px;
    font-size: 18px;
    color: #2c3e50;
}

.author-info span {
    color: #666;
    font-size: 14px;
}

/* Call to Action */
.about-cta {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    border-radius: 10px;
    padding: 50px;
    text-align: center;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.about-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
}

.cta-content h3 {
    color: white;
    font-size: 32px;
    margin: 0 0 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin: 0 0 30px;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: #e74c3c;
    color: white;
    border: 2px solid #e74c3c;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .video-intro {
        flex-direction: column;
    }
    
    .video-wrapper, .video-content {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item:not(:last-child):after {
        display: none;
    }
    
    .stat-item:nth-child(2n):after {
        display: none;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonial-highlight {
        padding: 30px 20px;
    }
    
    .about-cta {
        padding: 40px 20px;
    }
    
    .cta-content h3 {
        font-size: 26px;
    }
}

/* Animation for stats counter */
@keyframes countUp {
    from { 
        transform: translateY(20px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.stat-number.animated {
    animation: countUp 0.8s ease-out;
}

/* ====================
   Locations Section Styles
   ==================== */
.locations-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.locations-section::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.05;
    z-index: 1;
}

.locations-section .container {
    position: relative;
    z-index: 10;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.location-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

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

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

.location-header {
    background: linear-gradient(135deg, #0a4a0a, #1a7a1a);
    color: white;
    padding: 20px;
    position: relative;
}

.location-status {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 10px;
    backdrop-filter: blur(10px);
}

.location-status.closed {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.location-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.location-details {
    padding: 25px;
}

.location-info {
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: #4ade80;
    font-size: 1.1rem;
    margin-top: 2px;
    width: 20px;
    text-align: center;
}

.info-content {
    flex: 1;
}

.info-label {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    display: block;
    font-size: 0.95rem;
    color: #374151;
    font-weight: 600;
    line-height: 1.4;
}

.location-actions {
    display: flex;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.btn-call,
.btn-directions {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-call:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

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

.btn-directions:hover {
    background: #0a4a0a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 74, 10, 0.3);
}

.locations-cta {
    background: linear-gradient(135deg, #0a4a0a, #1a7a1a);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.locations-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
    100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.cta-buttons .btn-primary:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

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

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #0a4a0a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Responsive Styles for Locations */
@media (max-width: 768px) {
    .locations-section {
        padding: 60px 0;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }
    
    .location-card {
        border-radius: 15px;
    }
    
    .location-header {
        padding: 15px;
    }
    
    .location-name {
        font-size: 1.2rem;
    }
    
    .location-details {
        padding: 20px;
    }
    
    .info-item {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .info-item i {
        font-size: 1rem;
    }
    
    .info-value {
        font-size: 0.9rem;
    }
    
    .location-actions {
        flex-direction: column;
        gap: 10px;
        padding-top: 15px;
    }
    
    .btn-call,
    .btn-directions {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .locations-cta {
        padding: 40px 20px;
        margin-top: 40px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

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

.enhanced-why-choose-section::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.05;
    z-index: 1;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

/* Left Side - Visual Elements */
.why-choose-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-choose-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    position: relative;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #0a4a0a, #1a7a1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(10, 74, 10, 0.2);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 20px 40px rgba(10, 74, 10, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 25px 50px rgba(10, 74, 10, 0.3);
    }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.float-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ade80;
    font-size: 1.2rem;
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    top: 10%;
    right: 10%;
    animation-delay: 1.5s;
}

.float-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 3s;
}

.float-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

.central-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(74, 222, 128, 0.5);
    border-radius: 50%;
    padding: 20px;
    text-align: center;
    min-width: 120px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.badge-icon {
    color: #4ade80;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.badge-text {
    color: white;
    font-weight: 700;
    line-height: 1;
}

.badge-text span:first-child {
    font-size: 1.2rem;
    display: block;
}

.badge-text span:last-child {
    font-size: 0.8rem;
    opacity: 0.9;
}

.why-choose-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-choose-stats .stat-item {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 222, 128, 0.1);
}

.why-choose-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(74, 222, 128, 0.3);
}

.why-choose-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #0a4a0a;
    margin-bottom: 5px;
    display: block;
}

.why-choose-stats .stat-label {
    font-size: 0.85rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Right Side - Features Grid */
.why-choose-right {
    display: flex;
    flex-direction: column;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-card.enhanced {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(74, 222, 128, 0.1);
    position: relative;
    overflow: hidden;
}

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

.feature-card.enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(74, 222, 128, 0.3);
}

.feature-card.enhanced .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

.feature-card.enhanced:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.4);
}

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

.feature-card.enhanced p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.feature-highlights {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.highlight {
    background: rgba(74, 222, 128, 0.1);
    color: #0a4a0a;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.trust-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 222, 128, 0.1);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(74, 222, 128, 0.3);
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.trust-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a4a0a;
    margin-bottom: 10px;
}

.trust-content p {
    color: #6b7280;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .enhanced-why-choose-section {
        padding: 80px 0 60px;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .visual-container {
        width: 250px;
        height: 250px;
    }
    
    .central-badge {
        min-width: 100px;
        min-height: 100px;
        padding: 15px;
    }
    
    .badge-text span:first-child {
        font-size: 1rem;
    }
    
    .badge-text span:last-child {
        font-size: 0.7rem;
    }
    
    .why-choose-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .why-choose-stats .stat-item {
        padding: 20px 15px;
    }
    
    .why-choose-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card.enhanced {
        padding: 25px 20px;
    }
    
    .feature-card.enhanced h3 {
        font-size: 1.2rem;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trust-item {
        padding: 25px 20px;
    }
}

/* ====================
   Payment Information Section
   ==================== */
.payment-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.payment-section::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.05;
    z-index: 1;
}

.payment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.payment-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.payment-method {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(74, 222, 128, 0.1);
}

.payment-method:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(74, 222, 128, 0.3);
}

.payment-header {
    background: linear-gradient(135deg, #0a4a0a, #1a7a1a);
    color: white;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.payment-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ade80;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.payment-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.payment-title p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

.payment-details {
    padding: 30px;
}

/* Payment Steps */
.payment-steps {
    margin-bottom: 30px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0a4a0a;
    margin-bottom: 5px;
}

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

.step-content p strong {
    color: #0a4a0a;
    font-weight: 700;
}

/* Account Details */
.account-details {
    margin-bottom: 30px;
}

.account-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(74, 222, 128, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.account-item:last-child {
    margin-bottom: 0;
}

.account-item:hover {
    background: rgba(74, 222, 128, 0.1);
    transform: translateX(5px);
}

.account-label {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 140px;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 600;
}

.account-label i {
    color: #4ade80;
    font-size: 1rem;
}

.account-value {
    color: #0a4a0a;
    font-weight: 700;
    font-size: 1rem;
}

/* Payment Info */
.payment-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(74, 222, 128, 0.05);
    padding: 8px 15px;
    border-radius: 20px;
    color: #0a4a0a;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(74, 222, 128, 0.2);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(74, 222, 128, 0.1);
    transform: translateY(-2px);
}

.info-item i {
    color: #4ade80;
    font-size: 0.9rem;
}

/* Why Learn Section */
.why-learn-section {
    background: linear-gradient(135deg, #0a4a0a, #1a7a1a);
    color: white;
    padding: 60px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

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

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

.why-learn-section .section-title {
    color: white;
}

.why-learn-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.why-learn-section .header-divider .divider-line {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.why-learn-section .header-divider i {
    color: #4ade80;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.advantage-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: rgba(74, 222, 128, 0.4);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: rgba(74, 222, 128, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.advantage-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.advantage-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Support Contact */
.support-contact {
    margin-top: 40px;
    text-align: center;
}

.support-content {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 35px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.support-content:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.support-icon {
    width: 50px;
    height: 50px;
    background: rgba(74, 222, 128, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.support-text {
    text-align: left;
}

.support-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.support-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

.support-text strong {
    color: #4ade80;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .payment-section {
        padding: 80px 0 60px;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .payment-header {
        padding: 25px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .payment-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .payment-title h3 {
        font-size: 1.3rem;
    }
    
    .payment-details {
        padding: 25px;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .step-number {
        margin-bottom: 0;
    }
    
    .account-label {
        min-width: auto;
        justify-content: center;
    }
    
    .account-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .payment-info {
        justify-content: center;
    }
    
    .why-learn-section {
        padding: 40px 20px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .advantage-icon {
        margin-bottom: 0;
    }
    
    .support-content {
        flex-direction: column;
        text-align: center;
        padding: 20px 25px;
        gap: 15px;
    }
    
    .support-text {
        text-align: center;
    }
}
