/* About Page Styles - Professional Design */

/* Main container */
.about-content {
    padding: 0;
    background: var(--bg-primary, #ffffff);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Hero Section */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(79, 70, 229, 0.95) 0%, 
        rgba(16, 185, 129, 0.95) 50%, 
        rgba(79, 70, 229, 0.95) 100%);
    padding: 8rem 0 6rem;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0.05"/></linearGradient></defs><polygon points="0,0 1000,200 1000,1000 0,800" fill="url(%23grad)"/></svg>');
    background-size: cover;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float-particle 20s linear infinite;
}

.particle:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.particle:nth-child(2) {
    left: 40%;
    animation-delay: 5s;
    animation-duration: 20s;
}

.particle:nth-child(3) {
    left: 60%;
    animation-delay: 10s;
    animation-duration: 18s;
}

.particle:nth-child(4) {
    left: 80%;
    animation-delay: 3s;
    animation-duration: 22s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 8s;
    animation-duration: 16s;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    animation: fadeInUp 0.8s ease-out;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-line {
    display: block;
    background: linear-gradient(45deg, #ffffff, #f0f8ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-highlight {
    display: block;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    color: white !important;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
    line-height: 1.4;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.hero-btn.primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-btn.primary:hover {
    background: white;
    color: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-btn.secondary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    font-weight: 800;
}

.hero-btn.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Company Story Section */
.company-story {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6rem 0;
    position: relative;
    overflow-x: hidden;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.story-header {
    margin-bottom: 3rem;
}

.story-label {
    display: inline-block;
    background: linear-gradient(135deg, #4f46e5, #10b981);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.story-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1e293b;
    line-height: 1.2;
    margin: 0;
}

.story-timeline {
    position: relative;
    padding-left: 120px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #4f46e5, #10b981);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 0;
    margin-bottom: 4rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.timeline-item.active {
    opacity: 1;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -86px;
    top: 8px;
    width: 18px;
    height: 18px;
    background: white;
    border: 4px solid #4f46e5;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline-item.active::before {
    background: #10b981;
    border-color: #10b981;
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.15), 0 2px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.1);
}

.timeline-year {
    position: absolute;
    left: -120px;
    top: 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #4f46e5;
    background: linear-gradient(135deg, white, #f8fafc);
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    white-space: nowrap;
    z-index: 10;
    min-width: 60px;
    text-align: center;
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-year {
    color: #10b981;
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4, white);
    transform: scale(1.05);
}

.timeline-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Growth Chart */
.growth-chart {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.chart-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.chart-period {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.chart-area {
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.chart-area canvas {
    max-width: 100%;
    height: auto;
    width: 100%;
    display: block;
}

.chart-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.chart-stat {
    text-align: center;
}

.chart-stat .stat-value {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #4f46e5, #10b981);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.25rem;
}

.chart-stat .stat-desc {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Achievements Section */
.achievements-section {
    background: white;
    padding: 6rem 0;
}

.achievements-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.05), transparent);
    transition: left 0.5s ease;
}

.achievement-card:hover::before {
    left: 100%;
}

.achievement-card:hover {
    transform: translateY(-8px);
    border-color: #4f46e5;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
}

.achievement-card.featured {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
}

.achievement-card.featured:hover {
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.achievement-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 2;
}

.achievement-content {
    position: relative;
    z-index: 2;
}

.achievement-content h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.achievement-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.achievement-year {
    display: inline-block;
    background: linear-gradient(135deg, #4f46e5, #10b981);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Customer Testimonials */
.customer-testimonials {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 6rem 0;
    position: relative;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-slider {
    position: relative;
    margin-top: 4rem;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 300%; /* 3 cards * 100% */
}

.testimonial-card {
    flex: 0 0 33.333%; /* Each card takes 1/3 of track width */
    padding: 0 1rem;
    box-sizing: border-box;
}

.testimonial-card .testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.testimonial-stars {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fbbf24;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #374151;
    font-style: italic;
    margin-bottom: 2.5rem;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: #4f46e5;
    position: absolute;
    top: -1rem;
    left: -1rem;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4f46e5, #10b981);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.author-title {
    color: #64748b;
    font-size: 0.95rem;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-btn {
    background: white;
    border: 2px solid #e2e8f0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    border-color: #4f46e5;
    color: #4f46e5;
    transform: scale(1.1);
}

.testimonials-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #4f46e5;
    transform: scale(1.2);
}

/* Team Section */
.about-team {
    background: linear-gradient(135deg, 
        rgba(79, 70, 229, 0.05) 0%, 
        rgba(16, 185, 129, 0.05) 100%);
    padding: 6rem 0;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.team-member {
    position: relative;
}

.member-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.05), transparent);
    transition: left 0.5s ease;
}

.member-card:hover::before {
    left: 100%;
}

.member-card:hover {
    transform: translateY(-10px);
    border-color: rgba(79, 70, 229, 0.2);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
}

.member-avatar {
    position: relative;
    margin-bottom: 2rem;
    display: inline-block;
}

.avatar-image {
    font-size: 4rem;
    display: block;
    position: relative;
    z-index: 2;
}

.member-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 16px;
    height: 16px;
    background: #10b981;
    border: 3px solid white;
    border-radius: 50%;
    z-index: 3;
}

.member-status.online {
    animation: pulse-status 2s infinite;
}

@keyframes pulse-status {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.member-info {
    position: relative;
    z-index: 2;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4f46e5;
    margin-bottom: 1rem;
}

.member-desc {
    color: #64748b;
    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;
    margin-bottom: 1.5rem;
}

.skill-tag {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #cbd5e1;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid #cbd5e1;
}

.social-link:hover {
    background: linear-gradient(135deg, #4f46e5, #10b981);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* Mission & Vision - Legacy styles for compatibility */
.about-mission {
    background: white;
    padding: 6rem 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mission-card {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.mission-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
}

.mission-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.mission-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* Features Section - Legacy styles */
.about-features {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Technology Section - Legacy styles */
.about-technology {
    background: white;
    padding: 6rem 0;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
}

.tech-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.tech-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 3rem;
}

.tech-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.tech-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.tech-icon {
    font-size: 1.5rem;
}

.tech-feature span:last-child {
    font-weight: 600;
    color: #2c3e50;
}

.tech-visual {
    display: flex;
    justify-content: center;
}

.tech-card {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 16px;
    padding: 2rem;
    color: white;
    min-width: 300px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.tech-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-dots {
    display: flex;
    gap: 0.5rem;
}

.tech-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e74c3c;
}

.tech-dots span:nth-child(2) {
    background: #f39c12;
}

.tech-dots span:nth-child(3) {
    background: #27ae60;
}

.tech-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.tech-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tech-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tech-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.tech-value {
    font-weight: 600;
}

.tech-value.online {
    color: #27ae60;
}

/* Contact Section - Legacy styles */
.about-contact {
    background: white;
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.contact-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.contact-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: white;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: #667eea;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
        padding: 0 1.5rem;
    }
    
    .story-timeline {
        padding-left: 100px;
    }
    
    .story-timeline::before {
        left: 35px;
    }
    
    .timeline-item::before {
        left: -73px;
    }
    
    .timeline-year {
        left: -100px;
        font-size: 1rem;
        padding: 0.4rem 0.6rem;
        min-width: 55px;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .tech-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .tech-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .story-container {
        padding: 0 1rem;
    }
    
    .story-timeline {
        padding-left: 80px;
    }
    
    .story-timeline::before {
        left: 28px;
    }
    
    .timeline-item::before {
        left: -58px;
        width: 16px;
        height: 16px;
        top: 6px;
    }
    
    .timeline-year {
        left: -80px;
        font-size: 0.95rem;
        padding: 0.35rem 0.5rem;
        min-width: 50px;
    }
    
    .story-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-content {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 0 0.5rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .story-container {
        padding: 0 0.75rem;
    }
    
    .story-timeline {
        padding-left: 60px;
    }
    
    .story-timeline::before {
        left: 20px;
        width: 2px;
    }
    
    .timeline-item {
        margin-bottom: 2.5rem;
    }
    
    .timeline-item::before {
        left: -46px;
        width: 14px;
        height: 14px;
        top: 4px;
        border-width: 3px;
    }
    
    .timeline-year {
        left: -60px;
        font-size: 0.85rem;
        padding: 0.25rem 0.4rem;
        min-width: 45px;
    }
    
    .timeline-content h4 {
        font-size: 1.3rem;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
    }
    
    .growth-chart {
        padding: 1.5rem;
    }
    
    .chart-header h4 {
        font-size: 1.3rem;
    }
    
    .chart-stat .stat-value {
        font-size: 1.5rem;
    }
    
    .achievement-card {
        padding: 2rem;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 0 0.25rem;
    }
    
    .member-card {
        padding: 2rem;
    }
    
    .mission-card,
    .feature-item,
    .contact-item {
        padding: 2rem 1.5rem;
    }
}

/* Extra small screens - prevent timeline overflow */
@media (max-width: 360px) {
    .story-container {
        padding: 0 0.5rem;
    }
    
    .story-timeline {
        padding-left: 50px;
    }
    
    .story-timeline::before {
        left: 15px;
        width: 2px;
    }
    
    .timeline-item::before {
        left: -38px;
        width: 12px;
        height: 12px;
        top: 3px;
        border-width: 2px;
    }
    
    .timeline-year {
        left: -50px;
        font-size: 0.75rem;
        padding: 0.2rem 0.35rem;
        min-width: 40px;
    }
    
    .growth-chart {
        padding: 1rem;
    }
    
    .chart-header h4 {
        font-size: 1.1rem;
    }
    
    .chart-stat .stat-value {
        font-size: 1.3rem;
    }
}
