/* About Page Styles */

/* Hero Section */
.about-hero {
    position: relative;
    height: 80vh;
    background: linear-gradient(45deg, #2563eb 0%, #7c3aed 50%, #db2777 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(219, 39, 119, 0.4) 0%, transparent 50%);
    opacity: 0.8;
    animation: pulseBackground 8s ease-in-out infinite;
}

@keyframes pulseBackground {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 900px;
    padding: 0;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideIn 1s ease-out;
}

.hero-content p {
    font-size: 1.8rem;
    opacity: 0.95;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-out 0.5s both;
}

@keyframes slideIn {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Intro Section */
.about-intro {
    padding: 8rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, #f0f9ff 0%, transparent 70%);
    opacity: 0.7;
    z-index: 1;
}

.container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 2;
}

.intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 6rem;
}

.intro-content h2 {
    font-size: 3.5rem;
    color: #1e40af;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.intro-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #2563eb, #7c3aed);
    border-radius: 2px;
}

.intro-content p {
    font-size: 1.4rem;
    color: #4b5563;
    line-height: 1.8;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #2563eb, #7c3aed);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.stat-item:hover i {
    transform: scale(1.2);
}

.stat-item h3 {
    font-size: 3rem;
    color: #1e40af;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.stat-item p {
    color: #4b5563;
    font-size: 1.2rem;
    font-weight: 500;
}

/* AI Technologies Section */
.ai-technologies {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 8rem 0 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ai-technologies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
}

.tech-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    margin-top: 4rem;
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 1.5rem;
    scrollbar-width: thin;
    scrollbar-color: #00ffe7 #e0f2fe;
}

.tech-card {
    min-width: 220px;
    max-width: 340px;
    flex: 1 1 220px;
    background: rgba(255,255,255,0.92);
    padding: 2.2rem 1.5rem 2rem 1.5rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(30,64,175,0.08), 0 1.5px 8px rgba(0,255,231,0.04);
    transition: all 0.4s cubic-bezier(.23,1.01,.32,1);
    position: relative;
    overflow: hidden;
    border: 1.5px solid rgba(0,255,231,0.13);
    margin-bottom: 0;
}

.tech-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px #00ffe722, 0 2px 16px #007bff22;
    border-color: #00ffe7;
    z-index: 2;
}

.tech-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.tech-card:hover .tech-icon {
    transform: rotateY(180deg);
}

.tech-icon i {
    font-size: 3rem;
    color: white;
    transition: all 0.4s ease;
}

.tech-card:hover .tech-icon i {
    transform: rotateY(-180deg);
}

.tech-card h3 {
    color: #1e40af;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.tech-card p {
    color: #4b5563;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Team Section */
.team-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #dbeafe 100%);
    position: relative;
    overflow: hidden;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.team-member {
    text-align: center;
    transition: all 0.4s ease;
}

.member-image {
    width: 250px;
    height: 250px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.team-member:hover .member-image {
    transform: scale(1.05);
    border-color: #2563eb;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member h3 {
    color: #1e40af;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-member p {
    color: #4b5563;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.4rem;
    }

    .intro-content h2 {
        font-size: 2.8rem;
    }

    .team-grid {
        gap: 3rem;
    }

    .member-image {
        width: 200px;
        height: 200px;
    }

    .about-hero {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .hero-content {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .member-image {
        width: 180px;
        height: 180px;
    }

    .tech-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 1100px) {
    .tech-grid {
        gap: 1.2rem;
    }
    .tech-card {
        min-width: 180px;
        max-width: 300px;
        padding: 1.5rem 0.7rem 1.2rem 0.7rem;
    }
}

@media (max-width: 700px) {
    .tech-grid {
        gap: 0.7rem;
        padding-bottom: 1rem;
    }
    .tech-card {
        min-width: 120px;
        max-width: 220px;
        padding: 1.1rem 0.5rem 1rem 0.5rem;
    }
}

::-webkit-scrollbar {
    height: 8px;
}

::-webkit-scrollbar-thumb {
    background: #00ffe7;
    border-radius: 4px;
}

::-webkit-scrollbar-track {
    background: #e0f2fe;
    border-radius: 4px;
}

.our-approach {
    padding: 7rem 0 6rem 0;
    background: linear-gradient(120deg, #fafdff 0%, #e9f7fa 100%);
    position: relative;
    overflow: hidden;
}
.our-approach h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #007bff;
    margin-bottom: 3rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px #00ffe733;
}
.approach-timeline {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 2.5rem;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
}
.timeline-item {
    background: rgba(255,255,255,0.92);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(30,64,175,0.08), 0 1.5px 8px rgba(0,255,231,0.04);
    border: 1.5px solid rgba(0,255,231,0.13);
    padding: 2.2rem 1.5rem 2rem 1.5rem;
    min-width: 220px;
    max-width: 300px;
    flex: 1 0 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: box-shadow 0.3s, border 0.3s, transform 0.3s;
    z-index: 1;
    margin-bottom: 0;
    animation: fadeInUp 0.7s cubic-bezier(.23,1.01,.32,1) both;
}
.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1.25rem;
    width: 2.5rem;
    height: 4px;
    background: linear-gradient(90deg, #00ffe7 0%, #007bff 100%);
    border-radius: 2px;
    transform: translateY(-50%);
    z-index: 0;
}
.timeline-item:hover {
    box-shadow: 0 8px 32px #00ffe722, 0 2px 16px #007bff22;
    border-color: #00ffe7;
    transform: translateY(-8px) scale(1.03);
}
.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 0.7rem;
    text-align: center;
}
.timeline-content p {
    color: #222b45;
    font-size: 1.05rem;
    text-align: center;
    line-height: 1.6;
}
@media (max-width: 1100px) {
    .approach-timeline {
        gap: 1.2rem;
    }
    .timeline-item {
        min-width: 180px;
        max-width: 220px;
        padding: 1.5rem 0.7rem 1.2rem 0.7rem;
    }
}
@media (max-width: 800px) {
    .approach-timeline {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .timeline-item {
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }
    .timeline-item:not(:last-child)::after {
        display: none;
    }
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px) scale(0.98); }
    80% { opacity: 1; transform: translateY(-4px) scale(1.01); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
} 

.logo h3 {
    color: #00bfff !important;
    margin: 0;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.logo a {
    text-decoration: none !important;
} 