/* Hero Section */
.hero-wrap {
    background: linear-gradient(135deg, #667eea 0%, #5423c6 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* About Sections */
.about-section {
    padding: 80px 0;
    position: relative;
    /* background: white; */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

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

/* Who We Are Section */
.who-we-are {
    background: #ffffff;
}

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

.story-text p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Image Placeholders with Professional Hover Effects */
.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    /* 🔽 Soft drop shadow like the reference image */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Leadership Section */
.leadership-section {
    padding: 1rem 0 4rem;
    background: var(--white);
    position: relative;
}

.leadership-container {
    max-width: 1000px;
    margin: 0 auto;
}

.leadership-header {
    text-align: center;
    margin-bottom: 2rem;
}

.leadership-subtitle {
    font-size: 0.90rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-weight: 400;
}

.leader-spotlight {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.leader-spotlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.leader-spotlight:hover::before {
    opacity: 1;
    animation: glow-pulse 2s ease-in-out infinite;
}

.leader-spotlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25), var(--shadow-xl);
    border-color: rgba(37, 99, 235, 0.2);
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

.leader-image-container {
    position: relative;
    flex-shrink: 0;
}

.leader-image {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.leader-spotlight:hover .leader-image {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.leader-image-fallback {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.leader-details {
    flex: 1;
    position: relative;
    z-index: 2;
}

.leader-name {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
}

.leader-title {
    font-size: 1.375rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.leader-bio {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.leader-achievements {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.achievement {
    text-align: center;
}

.achievement-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.achievement-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* .story-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
} */

/* .story-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
    color: #667eea;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
} */

.story-image:hover::before {
    left: 100%;
}

/* Values Grid (Original for Core Pillars) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 0px;
}

/* Value Cards - WITH RESTORED HOVER ANIMATIONS */
.value-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 395px;
    cursor: default;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #5423c6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

/* RESTORED HOVER ANIMATIONS */
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
}

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

/* Value Header */
.value-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

/* Value Icon - Round Shape */
.value-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea, #5423c6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    color: white;
    stroke-width: 2;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

/* Value Title beside Icon */
.value-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

/* Value Content */
.value-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.value-content p {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* New Values Grid with FontAwesome Icons - FIXED ALIGNMENT */
.values-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-item {
    background: white;
    border-radius: 20px;
    padding: 32px 32px;
    border: 1px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* height: 280px; */
    cursor: default;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #5423c6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

/* RESTORED HOVER ANIMATIONS */
.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
}

.value-item:hover::before {
    transform: scaleX(1);
}

/* Fixed Values Icon - Perfect Center Alignment */
.values-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea, #5423c6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.values-icon i {
    font-size: 24px;
    color: white;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.value-item:hover .values-icon {
    transform: scale(1.1);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.value-text {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
    display: flex;
    align-items: flex-start;
    text-align: center;
}

.services-section {
    background: white;
}

/* Responsive Design */
@media (max-width: 1024px) {

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

    .about-section {
        padding: 60px 0;
    }

    .value-card,
    .value-item {
        /* height: 300px; */
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-image {
        height: 300px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .values-grid,
    .values-grid-new {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }

    .value-card,
    .value-item {
        padding: 32px 24px;
        /* height: 280px; */
    }

    .section-header .section-title {
        font-size: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.3rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        min-width: 180px;
    }

}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .value-card,
    .value-item {
        padding: 24px 20px;
        /* height: 260px; */
    }

    .section-header .section-title {
        font-size: 1.25rem;
    }

    .cta-content h2 {
        font-size: 1.2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .professional-stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .professional-stats-section .section-title {
        font-size: 1.75rem;
    }

    .ftco-counter .ftco-number {
        font-size: 2.2rem;
    }

    .logo-item {
        min-width: 120px;
        height: 60px;
        font-size: 0.8rem;
    }

    .logo-slide {
        gap: 30px;
    }

    .performance-highlight-number {
        font-size: 2rem;
    }
}

@media (max-width: 900px) {
    .about-section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .value-card,
    .value-item {
        padding: 20px 16px;
        /* height: 240px; */
    }

    .cta-content h2 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .cta-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        min-width: 150px;
    }

    .professional-stats-section {
        padding: 35px 0;
    }
}