/* About Section - Clean and Responsive */
/* Hide all about section images and badges */
.about-section img,
.about-image,
.about-badge,
.experience-badge,
.about-section .image-container,
.about-section .wp-block-image,
.about-section .floating-elements,
.about-section .element {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    position: absolute !important;
    left: -9999px !important;
}

.about-section {
    /* Ensure no background images are showing */
    background-image: none !important;
    position: relative;
    padding: 6rem 0;
    background-color: #fff;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* Container and Layout */
.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

/* Section Header */
.about-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem;
    padding: 0 1rem;
    width: 100%;
    position: relative;
}

.about-section .section-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    padding: 0.5rem 1.25rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50px;
    position: relative;
    z-index: 1;
}

.about-section .section-title {
    font-size: 1.925rem;  /* Reduced from 2.75rem */
    color: #1e293b;
    margin: 0 auto 1.25rem;
    line-height: 1.2;
    text-align: center;
    max-width: 100%;
    padding: 0;
    font-weight: 800;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
    letter-spacing: -0.5px;
}

.about-section .highlight-text {
    color: #1d4ed8;  /* Darker blue for better visibility */
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.about-section .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(37, 99, 235, 0.2);
    z-index: -1;
    transform: rotate(-1deg);
    border-radius: 4px;
}

.about-section .gradient-text {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
    padding: 0 5px;
}

.about-section .gradient-text::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 5px;
    right: 5px;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    opacity: 0.7;
    border-radius: 2px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    margin: 0 auto 2rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

/* Mission Section */
.mission-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.mission-content {
    padding-right: 2rem;
}

.mission-content h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 2rem;
}

.mission-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: #334155;
}

.feature-item i {
    color: #3b82f6;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #3b82f6;
    font-size: 1.25rem;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .mission-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mission-content {
        padding-right: 0;
    }
    
    .stats-grid {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-section .section-title {
        font-size: 1.575rem;  /* Reduced from 2.25rem */
    }
    
    .mission-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .about-section .section-header {
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .about-section .section-title {
        font-size: 1.4rem;  /* Reduced from 2rem */
        margin-bottom: 1.1rem;
    }
    
    .about-section .section-subtitle {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
    
    .about-highlight h3 {
        font-size: 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 2rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .element-1,
    .element-2,
    .element-3 {
        display: none;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-grid {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Add animation delay for child elements */
.about-visual {
    animation-delay: 0.2s;
}

.about-highlight {
    animation-delay: 0.3s;
}

.stats-grid {
    animation-delay: 0.4s;
}

.core-values {
    animation-delay: 0.5s;
}

.cta-buttons {
    animation-delay: 0.6s;
}

/* About Content */
.about-content {
    position: relative;
    z-index: 1;
    margin-top: 3rem;
}

.about-highlight {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.about-highlight h3 {
    font-size: 2.2rem;
    color: #1e293b;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
    font-weight: 700;
}

.about-highlight p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 2rem;
}

/* Experience badge styles removed */

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 4rem 0 2rem;
}

.stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.8rem;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stat-label {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
}

/* Core Values */
.core-values {
    margin-bottom: 4rem;
}

.core-values h4 {
    text-align: center;
    font-size: 1.75rem;
    color: #1e293b;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.core-values h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: #4a6cf7;
    left: 50%;
    transform: translateX(-50%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: rgba(74, 108, 247, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    color: #4a6cf7;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.value-text h5 {
    font-size: 1.1rem;
    color: #1e293b;
    margin: 0 0 0.5rem;
}

.value-text p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

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

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

.btn-primary:hover {
    background: #3a5bd9;
    border-color: #3a5bd9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
}

.btn-outline {
    background: transparent;
    color: #4a6cf7;
    border: 2px solid #4a6cf7;
}

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

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.element {
    position: absolute;
    border-radius: 50%;
    background: rgba(74, 108, 247, 0.08);
    animation: float 15s infinite ease-in-out;
    z-index: -1;
}

.element-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.element-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    right: 5%;
    animation-delay: 5s;
}

.element-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .value-item {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .about-section .section-header {
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .about-section .section-title {
        font-size: 1.4rem;  /* Reduced from 2rem */
        margin-bottom: 1.1rem;
    }
    
    .about-section .section-subtitle {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
    
    .about-highlight h3 {
        font-size: 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 2rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .element-1,
    .element-2,
    .element-3 {
        display: none;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-grid {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Add animation delay for child elements */
.about-visual {
    animation-delay: 0.2s;
}

.about-highlight {
    animation-delay: 0.3s;
}

.stats-grid {
    animation-delay: 0.4s;
}

.core-values {
    animation-delay: 0.5s;
}

.cta-buttons {
    animation-delay: 0.6s;
}
