/* About Section Styles */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-header {
    text-align: center;
    margin-bottom: 5rem;
}

.about-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #1E88E5;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.about-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #1E88E5, #B93B8F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    background-position: 0% 50%;
    animation: gradientShift 4s ease-in-out infinite;
    opacity: 1;
}

.about-description {
    font-size: 1.1rem;
    color: #B0B0B0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Content */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out forwards;
}

.section-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #E0E0E0;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1E88E5, #B93B8F);
    border-radius: 2px;
}

.about-paragraph {
    color: #B0B0B0;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Values Section */
.about-values {
    margin-top: 4rem;
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(30, 136, 229, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.value-item:nth-child(1) { animation-delay: 0.1s; }
.value-item:nth-child(2) { animation-delay: 0.2s; }
.value-item:nth-child(3) { animation-delay: 0.3s; }

.value-item:hover {
    transform: translateY(-5px);
    border-color: rgba(30, 136, 229, 0.4);
    box-shadow: 0 15px 35px rgba(30, 136, 229, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(185, 59, 143, 0.1));
    color: #1E88E5;
    font-size: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 136, 229, 0.2);
}

.value-item:hover .value-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.2), rgba(185, 59, 143, 0.2));
}

.value-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #E0E0E0;
}

.value-item p {
    color: #B0B0B0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About Visual */
.about-visual {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease-out forwards;
}

.tech-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(30, 136, 229, 0.25);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.tech-showcase::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(30, 136, 229, 0.08), transparent 35%),
                radial-gradient(circle at 80% 30%, rgba(185, 59, 143, 0.08), transparent 35%),
                radial-gradient(circle at 50% 80%, rgba(30, 136, 229, 0.06), transparent 30%);
    pointer-events: none;
    z-index: 0;
}

.tech-element {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(30, 136, 229, 0.25);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.tech-element:nth-child(1) { animation-delay: 0.1s; }
.tech-element:nth-child(2) { animation-delay: 0.2s; }
.tech-element:nth-child(3) { animation-delay: 0.3s; }
.tech-element:nth-child(4) { animation-delay: 0.4s; }

.tech-element::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.08), rgba(185, 59, 143, 0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.tech-element:hover::before {
    opacity: 1;
}

.tech-element:hover {
    transform: translateY(-6px);
    border-color: rgba(30, 136, 229, 0.45);
    box-shadow: 0 12px 30px -10px rgba(30, 136, 229, 0.25);
}

.tech-element i {
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
    display: block;
    background: linear-gradient(135deg, #1E88E5, #B93B8F);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.tech-element:hover i {
    transform: scale(1.08);
}

.tech-element span {
    font-size: 1rem;
    color: #E0E0E0;
    font-weight: 600;
    display: block;
}

/* Service Area */
.service-area {
    text-align: center;
}

.service-area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
    align-items: stretch;
}

.service-area-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(30, 136, 229, 0.2);
    border-radius: 14px;
    padding: 2.25rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.service-area-card:nth-child(1) { animation-delay: 0.1s; }
.service-area-card:nth-child(2) { animation-delay: 0.2s; }
.service-area-card:nth-child(3) { animation-delay: 0.3s; }
.service-area-card:nth-child(4) { animation-delay: 0.4s; }

.service-area-card:hover {
    transform: translateY(-10px);
    border-color: rgba(30, 136, 229, 0.4);
    box-shadow: 0 15px 35px rgba(30, 136, 229, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(185, 59, 143, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #1E88E5;
    border: 1px solid rgba(30, 136, 229, 0.2);
    transition: all 0.3s ease;
}

.service-area-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.2), rgba(185, 59, 143, 0.2));
}

.service-area-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #E0E0E0;
}

.service-area-card p {
    color: #B0B0B0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(30, 136, 229, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.about-stat:nth-child(1) { animation-delay: 0.1s; }
.about-stat:nth-child(2) { animation-delay: 0.2s; }
.about-stat:nth-child(3) { animation-delay: 0.3s; }
.about-stat:nth-child(4) { animation-delay: 0.4s; }

.about-stat:hover {
    transform: translateY(-5px);
    border-color: rgba(30, 136, 229, 0.4);
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.2);
}

.about-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1E88E5, #B93B8F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.about-stat .stat-label {
    color: #B0B0B0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials-section {
    background: radial-gradient(circle at top left, rgba(30, 136, 229, 0.15), transparent 35%),
                radial-gradient(circle at bottom right, rgba(185, 59, 143, 0.12), transparent 45%),
                rgba(10, 10, 15, 0.85);
    border-top: 1px solid rgba(30, 136, 229, 0.15);
    border-bottom: 1px solid rgba(185, 59, 143, 0.15);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.testimonials-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.testimonials-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1E88E5;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.testimonials-tagline .testimonials-accent-line {
    width: 46px;
    height: 2px;
    background: linear-gradient(90deg, #1E88E5, rgba(185, 59, 143, 0.6));
    display: block;
}

.testimonials-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.testimonials-intro {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(10, 17, 35, 0.85);
    border: 1px solid rgba(30, 136, 229, 0.2);
    border-radius: 18px;
    padding: 2.5rem 2.25rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    transition: all 0.35s ease;
    box-shadow: 0 25px 60px rgba(14, 39, 75, 0.18);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 15%, rgba(30, 136, 229, 0.2), transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(185, 59, 143, 0.2), transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    border-color: rgba(30, 136, 229, 0.35);
    box-shadow: 0 35px 70px rgba(14, 39, 75, 0.26);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-rating {
    color: #FBBF24;
    font-size: 1rem;
    display: flex;
    gap: 0.35rem;
    z-index: 1;
}

.testimonial-quote {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-quote::before {
    content: '\201C';
    font-size: 5rem;
    position: absolute;
    top: -2.5rem;
    left: -0.5rem;
    color: rgba(30, 136, 229, 0.15);
    z-index: -1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    z-index: 1;
}

.testimonial-author img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(30, 136, 229, 0.45);
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.25);
}

.testimonial-author h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: #FFFFFF;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    display: block;
}

.testimonials-meta {
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    flex-wrap: wrap;
}

.meta-item {
    text-align: center;
    min-width: 160px;
}

.meta-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1E88E5, #B93B8F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.meta-label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .testimonials-container {
        padding: 3.5rem 1.5rem;
        gap: 3rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-quote {
        font-size: 1rem;
    }
}

@media (max-width: 540px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-header {
        text-align: left;
    }

    .testimonials-tagline {
        justify-content: flex-start;
    }

    .testimonials-meta {
        justify-content: flex-start;
        gap: 1.5rem;
    }

    .meta-item {
        text-align: left;
    }
}

/* Animations */
@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-container {
        padding: 1rem;
    }
    
    .about-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text,
    .about-visual {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .about-values {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-area-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .about-image-container {
        height: 300px;
    }
    
    .value-item,
    .service-area-card,
    .about-stat {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .service-area-grid {
        grid-template-columns: 1fr;
    }
}

/* Gradient Animation */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
