/* About Us Page Styles */
:root {
    --pastel-pink: #fce4ec;
    --pastel-blue: #e3f2fd;
    --pastel-green: #e8f5e8;
    --pastel-purple: #f3e5f5;
    --soft-gray: #f8f9fa;
    --warm-white: #fefefe;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --accent-soft: #667eea;
    --accent-warm: #f093fb;
}

.section-header,
.logo-story-section {
  margin-top: 0 !important;
  padding-top: 2rem;
}

/* Logo Story Section */
.logo-story-section {
    background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--pastel-pink) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.logo-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="0.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.story-content {
    position: relative;
    z-index: 2;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.logo-display {
    text-align: center;
    position: relative;
    z-index: 2;
}

.main-logo-large {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    opacity: 0;
    transform: scale(0.9);
    animation: logoAppear 1s ease-out 0.9s forwards;
}

/* Company Overview */
.company-overview {
    padding: 80px 0;
    background: var(--warm-white);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-soft), var(--accent-warm));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.overview-content {
    max-width: 800px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

/* Our Journey Timeline */
.our-journey {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--pastel-green) 0%, var(--pastel-blue) 100%);
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent-soft), var(--accent-warm));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateX(-50px);
}

.timeline-item:nth-child(even) {
    transform: translateX(50px);
}

.timeline-content {
    background: var(--warm-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 45%;
    backdrop-filter: blur(10px);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -20px;
    border-left-color: var(--warm-white);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -20px;
    border-right-color: var(--warm-white);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-soft), var(--accent-warm));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Core Strengths */
.core-strengths {
    padding: 80px 0;
    background: var(--warm-white);
}

.strength-card {
    background: var(--warm-white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(30px);
}

.strength-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.strength-card:nth-child(1) {
    background: linear-gradient(135deg, var(--pastel-pink) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.strength-card:nth-child(2) {
    background: linear-gradient(135deg, var(--pastel-blue) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.strength-card:nth-child(3) {
    background: linear-gradient(135deg, var(--pastel-green) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.strength-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-soft), var(--accent-warm));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.strength-card h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.strength-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Company Info */
.company-info {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--pastel-purple) 0%, var(--pastel-pink) 100%);
}

.info-card {
    background: var(--warm-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.info-item h5 i {
    color: var(--accent-soft);
}

.info-item p {
    color: var(--text-secondary);
    margin: 0;
    padding-left: 1.8rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-soft), var(--accent-warm));
    color: white;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn-cta {
    background: white;
    color: var(--accent-soft);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--accent-soft);
    text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoAppear {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .logo-story-section {
        padding: 100px 0 60px;
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .main-logo-large {
        max-width: 250px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-content {
        width: auto;
        margin-left: 60px !important;
    }
    
    .timeline-content::before {
        left: -20px !important;
        border-right-color: var(--warm-white) !important;
        border-left-color: transparent !important;
    }
}

@media (max-width: 768px) {
    .logo-story-section {
        padding: 80px 0 50px;
        text-align: center;
    }
    
    .story-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .main-logo-large {
        max-width: 200px;
        margin-top: 2rem;
    }
    
    .timeline-content {
        margin-left: 40px !important;
        padding: 1.5rem;
    }
    
    .strength-card {
        margin-bottom: 2rem;
    }
    
    .info-card {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}

/* Animation trigger classes */
.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}