@import url('common.css');

/* Intro Section */
.intro {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
    padding-top: 120px;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

.intro-content p {
    margin-bottom: 1.5rem;
}

/* Company Story Section */
.company-story {
    padding: 5rem 0;
    background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-text p {
    margin-bottom: 1.5rem;
}

.story-image {
    border-radius: 15px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Team Section */
.team {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(79, 172, 254, 0.3);
}

.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
    color: var(--text-light);
}

.team-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--aurora-turquoise);
}

.team-info p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Values Section */
.values {
    padding: 5rem 0;
    background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0.9;
}

/* Certifications Section */
.certifications {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
}

.certifications-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.certifications-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.certifications-content h3 {
    font-size: 1.5rem;
    color: var(--aurora-turquoise);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.certifications-content h3:first-of-type {
    margin-top: 0;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
}

.why-choose-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.why-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(79, 172, 254, 0.2);
}

.why-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--aurora-turquoise);
}

.why-item p {
    color: var(--text-light);
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-image {
        height: 250px;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
    }

    .certifications-content {
        font-size: 1rem;
    }

    .certifications-content h3 {
        font-size: 1.3rem;
    }
}

