/* About Us Section Styles */
.about-us-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(93, 179, 203, 0.05) 0%, transparent 70%);
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.about-content {
    padding: 20px 0;
}

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

.pre-title {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--navy-blue);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: var(--accent-color);
    position: relative;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
    margin-bottom: 30px;
}

.about-description {
    margin-bottom: 40px;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--navy-blue);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
}

.highlight-text {
    color: var(--accent-color);
    font-weight: 600;
}

.about-description p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(93, 179, 203, 0.1);
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(93, 179, 203, 0.15);
}

.achievement-icon {
    width: 50px;
    height: 50px;
    background: rgba(93, 179, 203, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.achievement-content {
    display: flex;
    flex-direction: column;
}

.achievement-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy-blue);
    line-height: 1;
}

.achievement-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Mission & Vision Container */
.mission-vision-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 20px;
}

/* Mission Box */
.mission-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(93, 179, 203, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.mission-box:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(93, 179, 203, 0.1);
}

.mission-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.mission-content h4 {
    color: var(--navy-blue);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

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

/* Vision Box */
.vision-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(27, 59, 111, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--navy-blue);
    transition: all 0.3s ease;
}

.vision-box:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(27, 59, 111, 0.1);
}

.vision-icon {
    width: 50px;
    height: 50px;
    background: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.vision-content h4 {
    color: var(--navy-blue);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

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

/* About Visual */
.about-visual {
    padding: 40px 20px;
    position: relative;
}

/* Evolution Timeline */
.evolution-timeline {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    position: relative;
}

.timeline-header {
    text-align: center;
    margin-bottom: 30px;
}

.timeline-header h3 {
    color: var(--navy-blue);
    font-size: 1.5rem;
    font-weight: 600;
}

.timeline-track {
    position: relative;
    padding-left: 30px;
}

.timeline-track::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #e9ecef 0%, var(--accent-color) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
}

.timeline-dot {
    position: absolute;
    left: -23px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--accent-color);
}

.timeline-item.past .timeline-dot {
    background: #e9ecef;
    box-shadow: 0 0 0 2px #e9ecef;
}

.timeline-item.transition .timeline-dot {
    background: var(--accent-color);
    animation: pulse 2s infinite;
}

.timeline-item.current .timeline-dot {
    background: var(--accent-color);
    box-shadow: 0 0 0 2px var(--accent-color), 0 0 0 6px rgba(93, 179, 203, 0.3);
}

.timeline-year {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.timeline-title {
    font-size: 1.1rem;
    color: var(--navy-blue);
    font-weight: 600;
    margin-bottom: 5px;
}

.timeline-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Global Presence */
.global-presence {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.global-presence h4 {
    color: var(--navy-blue);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.offices-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.office-pin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    border-radius: 10px;
    background: rgba(93, 179, 203, 0.05);
    transition: all 0.3s ease;
}

.office-pin:hover {
    transform: translateY(-5px);
    background: rgba(93, 179, 203, 0.1);
}

.office-pin i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.office-pin span {
    font-size: 0.9rem;
    color: var(--navy-blue);
    font-weight: 500;
}

/* Values Section */
.values-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px dashed rgba(93, 179, 203, 0.2);
}

.values-section .section-header {
    margin-bottom: 50px;
}

.values-section .section-header h3 {
    color: var(--navy-blue);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.values-section .section-header p {
    color: #666;
    font-size: 1.1rem;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
    border: 1px solid rgba(93, 179, 203, 0.1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(93, 179, 203, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(93, 179, 203, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-color);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--accent-color);
    color: white;
    transform: scale(1.1);
}

.value-card h5 {
    color: var(--navy-blue);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-us-section {
        padding: 60px 0;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .about-visual {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .achievement-item {
        padding: 15px;
    }
    
    .mission-vision-container {
        gap: 20px;
    }
    
    .mission-box,
    .vision-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .evolution-timeline,
    .global-presence {
        padding: 20px;
    }
    
    .offices-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .values-section {
        margin-top: 60px;
    }
}

@media (max-width: 576px) {
    .about-content {
        padding: 10px 0;
    }
    
    .achievement-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .timeline-track {
        padding-left: 20px;
    }
    
    .timeline-item {
        padding-left: 20px;
    }
    
    .timeline-dot {
        left: -18px;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 2px var(--accent-color), 0 0 0 6px rgba(93, 179, 203, 0.3);
    }
    50% {
        box-shadow: 0 0 0 2px var(--accent-color), 0 0 0 10px rgba(93, 179, 203, 0.1);
    }
    100% {
        box-shadow: 0 0 0 2px var(--accent-color), 0 0 0 6px rgba(93, 179, 203, 0.3);
    }
}

/* Founders Section Styles */
.founders-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.founders-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%235db3cb" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.founders-section .container {
    position: relative;
    z-index: 2;
}

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

.title-main {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--navy-blue);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.title-main::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.title-sub {
    color: var(--navy-blue);
    opacity: 0.8;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.founder-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(93, 179, 203, 0.1);
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #74c5db);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(93, 179, 203, 0.15);
}

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

.founder-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.founder-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-color), #74c5db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 50px;
    box-shadow: 0 10px 30px rgba(93, 179, 203, 0.3);
    transition: all 0.3s ease;
}

.founder-card:hover .founder-avatar {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(93, 179, 203, 0.4);
}

.experience-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--navy-blue);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(27, 59, 111, 0.3);
}

.founder-info {
    text-align: center;
}

.founder-name {
    font-size: 1.8rem;
    color: var(--navy-blue);
    margin-bottom: 8px;
    font-weight: 700;
}

.founder-title {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.tag {
    background: rgba(93, 179, 203, 0.1);
    color: var(--accent-color);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.founder-description {
    color: var(--navy-blue);
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: left;
}

.achievements {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--navy-blue);
    font-weight: 500;
    transition: all 0.3s ease;
}

.achievement-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    width: 20px;
}

.achievement-item:hover {
    transform: translateX(5px);
    color: var(--accent-color);
}

.vision-statement {
    background: white;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(93, 179, 203, 0.1);
    position: relative;
    overflow: hidden;
}

.vision-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(93, 179, 203, 0.02), rgba(116, 197, 219, 0.02));
    z-index: 1;
}

.vision-content {
    position: relative;
    z-index: 2;
}

.vision-content h3 {
    font-size: 1.8rem;
    color: var(--navy-blue);
    margin-bottom: 25px;
    font-weight: 700;
}

.vision-content p {
    font-size: 1.2rem;
    color: var(--navy-blue);
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.founders-signature {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .founders-section {
        padding: 60px 0;
    }

    .founder-card {
        padding: 30px 20px;
    }

    .founder-avatar {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }

    .expertise-tags {
        flex-direction: column;
        align-items: center;
    }

    .tag {
        display: inline-block;
    }

    .vision-statement {
        padding: 30px 20px;
    }

    .vision-content h3 {
        font-size: 1.5rem;
    }

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

@media (max-width: 480px) {
    .founders-grid {
        grid-template-columns: 1fr;
    }

    .founder-card {
        padding: 25px 15px;
    }

    .founder-name {
        font-size: 1.5rem;
    }

    .founder-title {
        font-size: 1.1rem;
    }

    .achievements {
        gap: 12px;
    }

    .achievement-item {
        font-size: 0.9rem;
    }
}

/* Animation on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}