/* Divine Tech AI Platform - About Styles */

/* About Hero */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
}

.contact-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

/* Mission, Vision, Values */
.mission-vision {
    padding: 100px 0;
    background: var(--dark-bg);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mvv-card {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.mvv-card:hover::before {
    left: 100%;
}

.mvv-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.mvv-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.mvv-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Company Story */
.company-story {
    padding: 100px 0;
    background: var(--gradient-dark);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
}

.story-timeline {
    position: relative;
    padding-left: 2rem;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -23px;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--dark-bg);
}

.timeline-year {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Founder Section */
.founder-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.founder-image {
    position: relative;
}

.founder-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    display: block;
    max-width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.founder-image {
    position: relative;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(123, 47, 247, 0.1));
    padding: 1rem;
    border-radius: var(--border-radius);
}

.founder-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.founder-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: var(--text-light);
}

.founder-info h3:first-child {
    margin-top: 0;
}

.founder-name {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.founder-info p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 212, 255, 0.05);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.achievement i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.achievement span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-buttons .btn {
    flex: 1;
    justify-content: center;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--gradient-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.team-member:hover::before {
    left: 100%;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    margin: 0 auto;
}

.member-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-bio {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill {
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
    background: var(--dark-bg);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.advantage:hover::before {
    left: 100%;
}

.advantage:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.advantage h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.advantage p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Certifications */
.certifications {
    padding: 100px 0;
    background: var(--gradient-dark);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.certification-item {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.certification-item:hover {
    transform: translateY(-5px: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

);
    border-color.cert-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.certification-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.certification-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* About CTA */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-timeline {
        padding-left: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .certifications-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .contact-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mission-vision,
    .company-story,
    .founder-section,
    .team-section,
    .why-choose-us,
    .certifications,
    .about-cta {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    
    .mvv-card {
        padding: 2rem;
    }
    
    .mvv-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .mvv-card h3 {
        font-size: 1.3rem;
    }
    
    .mvv-card p {
        font-size: 0.95rem;
    }
    
    .founder-photo {
        height: 300px;
    }
    
    .founder-badge {
        bottom: 15px;
        right: 15px;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement {
        padding: 0.75rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-buttons .btn {
        width: 100%;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
    }
    
    .member-info h4 {
        font-size: 1.2rem;
    }
    
    .member-role {
        font-size: 0.9rem;
    }
    
    .member-bio {
        font-size: 0.9rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage {
        padding: 1.5rem;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .advantage h3 {
        font-size: 1.2rem;
    }
    
    .advantage p {
        font-size: 0.95rem;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .certification-item {
        padding: 1.5rem;
    }
    
    .cert-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .certification-item h4 {
        font-size: 1.1rem;
    }
    
    .certification-item p {
        font-size: 0.9rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .mvv-card {
        padding: 1.5rem;
    }
    
    .mvv-card h3 {
        font-size: 1.2rem;
    }
    
    .mvv-card p {
        font-size: 0.9rem;
    }
    
    .story-timeline {
        padding-left: 1rem;
    }
    
    .timeline-item {
        padding-left: 1.5rem;
    }
    
    .timeline-content h4 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .founder-section h3 {
        font-size: 1.2rem;
    }
    
    .founder-section p {
        font-size: 0.9rem;
    }
    
    .achievement span {
        font-size: 0.8rem;
    }
    
    .team-member {
        padding: 1rem;
    }
    
    .member-photo {
        width: 80px;
        height: 80px;
    }
    
    .member-info h4 {
        font-size: 1.1rem;
    }
    
    .member-role {
        font-size: 0.85rem;
    }
    
    .member-bio {
        font-size: 0.85rem;
    }
    
    .skill {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .advantage {
        padding: 1rem;
    }
    
    .advantage h3 {
        font-size: 1.1rem;
    }
    
    .advantage p {
        font-size: 0.85rem;
    }
    
    .certification-item {
        padding: 1rem;
    }
    
    .certification-item h4 {
        font-size: 1rem;
    }
    
    .certification-item p {
        font-size: 0.85rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}

/* Animation Effects */
.mvv-card,
.team-member,
.advantage,
.certification-item {
    animation: fadeInUp 0.6s ease forwards;
}

.mvv-card:nth-child(1) { animation-delay: 0.1s; }
.mvv-card:nth-child(2) { animation-delay: 0.2s; }
.mvv-card:nth-child(3) { animation-delay: 0.3s; }

.team-member:nth-child(1) { animation-delay: 0.1s; }
.team-member:nth-child(2) { animation-delay: 0.2s; }
.team-member:nth-child(3) { animation-delay: 0.3s; }
.team-member:nth-child(4) { animation-delay: 0.4s; }
.team-member:nth-child(5) { animation-delay: 0.5s; }
.team-member:nth-child(6) { animation-delay: 0.6s; }

.advantage:nth-child(1) { animation-delay: 0.1s; }
.advantage:nth-child(2) { animation-delay: 0.2s; }
.advantage:nth-child(3) { animation-delay: 0.3s; }
.advantage:nth-child(4) { animation-delay: 0.4s; }
.advantage:nth-child(5) { animation-delay: 0.5s; }
.advantage:nth-child(6) { animation-delay: 0.6s; }

.certification-item:nth-child(1) { animation-delay: 0.1s; }
.certification-item:nth-child(2) { animation-delay: 0.2s; }
.certification-item:nth-child(3) { animation-delay: 0.3s; }
.certification-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Timeline Animation */
.timeline-item {
    animation: slideInLeft 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Print Styles */
@media print {
    .whatsapp-floating,
    .navbar {
        display: none;
    }
    
    .mvv-card,
    .team-member,
    .advantage,
    .certification-item {
        break-inside: avoid;
        margin-bottom: 1rem;
    }
    
    .mvv-card:hover,
    .team-member:hover,
    .advantage:hover,
    .certification-item:hover {
        transform: none;
    }
}