/* Import main mobile fixes */
@import url('mobile-fix.css');

/* About Us Page Styles */

.about-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0 50px;
    display: flex;
    align-items: center;
}

.about-hero .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero .hero-left {
    opacity: 1;
    transform: translateX(0);
}

.about-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c5aa0;
}

.about-hero .hero-content .highlight {
    color: #ff6b35;
    position: relative;
}

.about-hero .hero-content .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    border-radius: 2px;
}

.about-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 15px;
    font-style: italic;
}

.about-hero .hero-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.about-hero .hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.about-hero .hero-right {
    position: relative;
    opacity: 1;
    transform: translateX(0);
}

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

.about-hero .hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.about-hero .floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.about-hero .floating-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    animation: float 3s ease-in-out infinite;
    min-width: 140px;
}

.about-hero .floating-card i {
    font-size: 1.2rem;
}

.about-hero .card-1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.about-hero .card-1 i {
    color: #2c5aa0;
}

.about-hero .card-2 {
    bottom: 100px;
    left: -30px;
    animation-delay: 1s;
}

.about-hero .card-2 i {
    color: #ff6b35;
}

.about-hero .card-3 {
    top: 50%;
    right: -40px;
    animation-delay: 2s;
}

.about-hero .card-3 i {
    color: #2c5aa0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Mission Vision Section */
.mission-vision {
    padding: 100px 0;
    background: #f8f9fa;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c5aa0, #ff6b35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mv-icon i {
    font-size: 2.5rem;
    color: white;
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.mv-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Company Story */
.company-story {
    padding: 100px 0;
    background: white;
}

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

.story-text h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #2c5aa0, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.story-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
}

.stat-item h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 10px;
}

.stat-item:nth-child(2) h4 {
    color: #ff6b35;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.story-image:hover img {
    transform: scale(1.02);
}

/* Journey So Far */
.journey-section {
    padding: 100px 0;
    background: white;
}

.journey-section h2 {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #2c5aa0, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #2c5aa0, #ff6b35);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-year {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    margin-right: 40px;
}

.timeline-item:nth-child(even) .timeline-year {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    margin-left: 40px;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 40px;
    border-left: 4px solid #2c5aa0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 40px;
    border-right: 4px solid #ff6b35;
    text-align: right;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #2c5aa0, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px;
}

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

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-card:nth-child(odd) .value-icon {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
}

.value-card:nth-child(even) .value-icon {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Leadership Team */
.leadership-team {
    padding: 100px 0;
    background: white;
}

.leadership-team h2 {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #2c5aa0, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #ff6b35);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-member:hover::before {
    transform: scaleX(1);
}

.member-image {
    height: 320px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 25px 20px;
    text-align: center;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.position {
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.member-info p:last-child {
    color: #666;
    line-height: 1.6;
}

/* Certifications */
.certifications {
    padding: 100px 0;
    background: #f8f9fa;
}

.certifications h2 {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #2c5aa0, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px;
}

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

.cert-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-10px);
}

.cert-item:nth-child(odd) i {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.cert-item:nth-child(even) i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.cert-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.cert-item p {
    color: #666;
    margin-bottom: 10px;
}

.cert-date {
    display: block;
    color: #ff6b35;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-hero .hero-description {
        font-size: 1rem;
    }
    
    .about-hero .hero-buttons {
        justify-content: center;
    }
    
    .about-hero .floating-card {
        padding: 12px 16px;
        font-size: 0.8rem;
        min-width: 120px;
        white-space: nowrap;
    }
    
    .about-hero .card-1 {
        top: 10px;
        right: -10px;
    }
    
    .about-hero .card-2 {
        bottom: 80px;
        left: -15px;
    }
    
    .about-hero .card-3 {
        top: 45%;
        right: -25px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mv-card {
        padding: 30px 20px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .values-grid,
    .team-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 35px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-left: 80px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row !important;
    }
    
    .timeline-year {
        width: 70px;
        height: 70px;
        font-size: 0.9rem;
        position: absolute;
        left: -105px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1.2;
    }
    
    .timeline-item:nth-child(odd) .timeline-year,
    .timeline-item:nth-child(even) .timeline-year {
        margin: 0;
    }
    
    .timeline-content {
        margin: 0 !important;
        text-align: left !important;
        border-left: 4px solid #2c5aa0 !important;
        border-right: none !important;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        border-left: 4px solid #ff6b35 !important;
    }
}