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

/* ====================
   Team Section
   ==================== */
.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.6s ease-out forwards;
}
