/* About Page Specific Styles */

/* Hero Section */
.about-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before,
.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.about-hero::before {
    background-image: url('../images/slider1.png');
    animation: slideshow1 15s infinite;
}

.about-hero::after {
    background-image: url('../images/slider2.png');
    animation: slideshow2 15s infinite;
    opacity: 0;
}

@keyframes slideshow1 {
    0%, 30% { opacity: 1; }
    33%, 36% { opacity: 0; }
    64%, 67% { opacity: 0; }
    70%, 100% { opacity: 1; }
}

@keyframes slideshow2 {
    0%, 30% { opacity: 0; }
    33%, 36% { opacity: 1; }
    64%, 67% { opacity: 1; }
    70%, 100% { opacity: 0; }
}

.about-hero .slider3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/slider3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideshow3 15s infinite;
    z-index: 0;
}

@keyframes slideshow3 {
    0%, 64% { opacity: 0; }
    67%, 70% { opacity: 1; }
    97%, 100% { opacity: 0; }
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.7) 0%, rgba(217, 119, 6, 0.6) 100%);
    z-index: 1;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    width: 100%;
}

.about-hero .hero-content.hero-centered {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.about-hero .hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-hero .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    color: #ffffff;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.about-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.about-hero .stat-item {
    text-align: center;
    min-width: 120px;
}

.about-hero .stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    margin-bottom: 8px;
}

.about-hero .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.2;
}

/* Company Story Section */
.company-story {
    padding: 80px 0;
    background: #f8f9fa;
}

.story-wrapper {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.story-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #28a745, #ffc107);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.story-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.story-highlight i {
    font-size: 1.1rem;
}

.story-content .lead {
    font-size: 1.3rem;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.story-points {
    margin-top: 2rem;
}

.story-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
    padding: 15px 0;
}

.story-point i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.story-point span {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.story-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}

.floating-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-20px);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.floating-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.floating-card p {
    color: var(--text-color);
    margin: 0;
    font-size: 1rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(-30px);
    }
}

@media (max-width: 768px) {
    .story-wrapper {
        padding: 40px 30px;
    }
    
    .story-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .story-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .stat-card {
        flex: 1;
        min-width: 280px;
        padding: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* Mission & Vision Section */
.mission-vision {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0;
}

/* Mission & Vision Cards */
.mission-card, .vision-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
    position: relative;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-color), #f59e0b);
}

.card-header {
    padding: 40px 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05), rgba(255, 193, 7, 0.05));
}

.mission-card .card-icon, .vision-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

.vision-card .card-icon {
    background: linear-gradient(135deg, var(--secondary-color), #f59e0b);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
}

.card-header h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    font-size: 1.5rem;
}

.card-body {
    padding: 20px 30px 40px;
}

.card-body p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.mission-points, .vision-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-points li, .vision-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-color);
    font-weight: 500;
}

.mission-points i {
    color: var(--secondary-color);
    font-size: 1rem;
    width: 16px;
    flex-shrink: 0;
}

.vision-points i {
    color: #f59e0b;
    font-size: 1rem;
    width: 16px;
    flex-shrink: 0;
}

/* Values Section */
.values {
    background: white;
    padding: 100px 0;
}

.value-item {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(0, 123, 255, 0.1);
    position: relative;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.value-header {
    padding: 40px 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.03), rgba(255, 193, 7, 0.03));
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.value-header h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    font-size: 1.4rem;
}

.value-content {
    padding: 20px 30px 40px;
}

.value-content p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.value-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(255, 193, 7, 0.1));
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

/* Team Section */
.team {
    padding: 80px 0;
}

.team-member {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-name {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.member-position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-description {
    color: var(--text-color);
    line-height: 1.6;
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Animations */
.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        min-height: 70vh;
    }
    
    .about-hero .hero-content.hero-centered {
        padding: 40px 15px;
    }
    
    .about-hero .hero-title {
        font-size: 2.8rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }
    
    .about-hero .hero-stats {
        gap: 40px;
    }
    
    .about-hero .stat-number {
        font-size: 2.2rem;
    }
    
    .about-hero .stat-label {
        font-size: 0.9rem;
    }
    
    .story-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .story-highlight {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .story-content .lead {
        font-size: 1.1rem;
    }
    
    .story-point span {
        font-size: 1rem;
    }
    
    .image-wrapper {
        height: 250px;
    }
    
    .floating-card {
        padding: 20px;
    }
    
    .floating-card i {
        font-size: 2.5rem;
    }
    
    .floating-card h4 {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .mission-vision {
        padding: 80px 0;
    }
    
    .card-header {
        padding: 30px 20px 15px;
    }
    
    .card-body {
        padding: 15px 20px 30px;
    }
    
    .card-body p {
        font-size: 1rem;
    }
    
    .values {
        padding: 80px 0;
    }
    
    .value-header {
        padding: 30px 20px 15px;
    }
    
    .value-content {
        padding: 15px 20px 30px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .value-header h4 {
        font-size: 1.2rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .about-hero {
        min-height: 50vh;
    }
    
    .about-hero .hero-title {
        font-size: 2rem;
    }
    
    .value-item,
    .stat-item {
        padding: 1.5rem 0.5rem;
    }
    
    .company-story,
    .mission-vision,
    .values,
    .team,
    .statistics,
    .cta-section {
        padding: 60px 0;
    }
}