/* About Page Modern Styles */

/* Hero Section */
.about-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2E5C8A 0%, #4A90C2 100%);
    overflow: hidden;
}

.about-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
}

.about-hero .hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.about-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-hero .hero-subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* Animation */
.animate-fadeIn {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Company Story Section */
.company-story {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-image .image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #2E5C8A;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

/* Section Labels */
.section-label {
    color: #4A90C2;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2E5C8A;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

.story-text p {
    margin-bottom: 1.2rem;
}

/* Achievements */
.achievements {
    display: flex;
    gap: 40px;
}

.achievement-item {
    text-align: center;
}

.achievement-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2E5C8A;
    margin-bottom: 5px;
}

.achievement-label {
    font-size: 0.95rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Name Meaning Section */
.name-meaning-section {
    background: white;
    padding: 60px 0;
}

.meaning-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.meaning-icon {
    font-size: 3rem;
    color: #ffc107;
    flex-shrink: 0;
}

.meaning-content h3 {
    font-size: 1.8rem;
    color: #2E5C8A;
    margin-bottom: 1rem;
}

.meaning-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

/* Mission & Vision Modern */
.mission-vision-modern {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

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

.mv-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.mv-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 70px rgba(0,0,0,0.12);
}

.card-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 30px;
}

.mission-card .card-icon {
    background: #e3f2fd;
    color: #2E5C8A;
}

.vision-card .card-icon {
    background: #fff3e0;
    color: #ff9800;
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2E5C8A;
}

.card-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.card-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    opacity: 0.05;
    background: url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="currentColor" stroke-width="2"/></svg>') no-repeat;
    background-size: contain;
}

/* Core Values Modern - Only for About Page */
.about-main .core-values-modern {
    padding: 100px 0;
    background: #2E5C8A;
    position: relative;
    overflow: hidden;
}

.about-main .core-values-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.values-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.about-main .core-values-modern .section-label {
    color: #7AB8E8;
}

.about-main .core-values-modern .section-title {
    color: white;
}

.about-main .values-circle-container {
    position: relative;
    max-width: 800px;
    height: 800px;
    margin: 0 auto;
}

.about-main .center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 10;
}

.about-main .center-logo img {
    max-width: 80%;
    height: auto;
}

.about-main .values-circle {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-main .value-item-modern {
    position: absolute;
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(calc(72deg * var(--item-index))) translateX(300px) rotate(calc(-72deg * var(--item-index)));
}

.about-main .value-card {
    background: white;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.about-main .value-card:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.about-main .value-card .value-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.about-main .value-card .value-icon i {
    font-size: 2rem;
    color: #2E5C8A;
}

.about-main .value-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2E5C8A;
    margin-bottom: 10px;
}

.about-main .value-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Principles Modern */
.principles-modern {
    padding: 80px 0;
    background: #f8f9fa;
}

.principles-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.principles-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.principles-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #ddd;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 50%;
}

.timeline-item.left {
    left: 0;
    padding-right: 60px;
}

.timeline-item.right {
    left: 50%;
    padding-left: 60px;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.timeline-item.left .timeline-content::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: white;
    transform: rotate(45deg);
    box-shadow: 5px -5px 10px rgba(0,0,0,0.05);
}

.timeline-item.right .timeline-content::after {
    content: '';
    position: absolute;
    top: 30px;
    left: -15px;
    width: 30px;
    height: 30px;
    background: white;
    transform: rotate(45deg);
    box-shadow: -5px 5px 10px rgba(0,0,0,0.05);
}

.principle-number {
    display: inline-block;
    background: #2E5C8A;
    color: white;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 15px;
}

.principle-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

/* NLP Solution Modern */
.nlp-solution-modern {
    padding: 100px 0;
    position: relative;
    background: white;
    overflow: hidden;
}

.nlp-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 92, 138, 0.03) 0%, rgba(122, 184, 232, 0.03) 100%);
    z-index: 1;
}

.nlp-wrapper {
    position: relative;
    z-index: 2;
}

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

.nlp-main-content {
    max-width: 1000px;
    margin: 0 auto;
}

.nlp-intro {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 60px;
    padding: 0 20px;
}

.nlp-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.nlp-features-modern h3,
.nlp-benefits-modern h3 {
    font-size: 1.8rem;
    color: #2E5C8A;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.feature-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: #e3f2fd;
    transform: translateX(10px);
}

.feature-card i {
    color: #ffc107;
    font-size: 1.2rem;
}

.benefits-list {
    display: grid;
    gap: 20px;
}

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

.benefit-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-item p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
}

.nlp-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2E5C8A;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-discover:hover {
    background: #1e4c7a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(46, 92, 138, 0.3);
}

/* Call to Action Section */
.about-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2E5C8A 0%, #4A90C2 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

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

.cta-wrapper h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-wrapper p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-primary,
.btn-secondary {
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #2E5C8A;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

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

.btn-secondary:hover {
    background: white;
    color: #2E5C8A;
    transform: translateY(-3px);
}

/* Static Content Fallback */
.static-about-content {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2.5rem;
    color: #2E5C8A;
    margin-bottom: 30px;
}

.content-wrapper h3 {
    font-size: 1.8rem;
    color: #2E5C8A;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.content-wrapper ul {
    list-style: none;
    padding: 0;
}

.content-wrapper ul li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.content-wrapper ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-main .values-circle-container {
        height: 600px;
    }
    
    .about-main .value-item-modern {
        transform: translate(-50%, -50%) rotate(calc(72deg * var(--item-index))) translateX(200px) rotate(calc(-72deg * var(--item-index)));
    }
}

@media (max-width: 768px) {
    .about-hero .hero-title {
        font-size: 2rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .story-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mv-cards {
        grid-template-columns: 1fr;
    }
    
    .about-main .values-circle-container {
        height: auto;
    }
    
    .about-main .values-circle {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        position: static;
    }
    
    .about-main .value-item-modern {
        position: static;
        width: 100%;
        height: auto;
        transform: none;
    }
    
    .about-main .center-logo {
        position: static;
        transform: none;
        margin: 0 auto 40px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 40px !important;
        padding-right: 0 !important;
        left: 0 !important;
    }
    
    .principles-timeline::before {
        left: 0;
    }
    
    .timeline-item .timeline-content::after {
        display: none;
    }
    
    .cta-wrapper h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 80px 0 60px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .achievements {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}