/* About Page Specific Styles */

.about-page {
    background: #0a0a0a;
    min-height: 100vh;
}

/* Navigation Active State */
.nav-menu a.active {
    color: #00d4aa;
    font-weight: 600;
}

/* Hero Section */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0a0a;
}

.about-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 212, 170, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(0, 212, 170, 0.06) 0%, transparent 50%);
    animation: particleFloat 8s ease-in-out infinite alternate;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.floating-element {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.2;
    animation: floatAround 12s ease-in-out infinite;
    color: #00d4aa;
    pointer-events: none;
}

.floating-element:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 25%; right: 12%; animation-delay: 1.5s; }
.floating-element:nth-child(3) { top: 45%; left: 15%; animation-delay: 3s; }
.floating-element:nth-child(4) { bottom: 35%; right: 18%; animation-delay: 4.5s; }
.floating-element:nth-child(5) { top: 35%; left: 45%; animation-delay: 6s; }
.floating-element:nth-child(6) { top: 20%; right: 35%; animation-delay: 7.5s; }
.floating-element:nth-child(7) { bottom: 25%; left: 25%; animation-delay: 9s; }
.floating-element:nth-child(8) { top: 60%; right: 8%; animation-delay: 10.5s; }

@keyframes floatAround {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.2;
    }
    25% {
        transform: translateY(-15px) rotate(90deg) scale(1.1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-25px) rotate(180deg) scale(0.9);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-10px) rotate(270deg) scale(1.05);
        opacity: 0.3;
    }
}

@keyframes particleFloat {
    0% { opacity: 0.5; transform: translateY(0px); }
    100% { opacity: 0.8; transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 0;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: #00d4aa;
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4aa;
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.2;
    white-space: nowrap;
}

.stat-card:last-child .stat-number {
    font-size: 1.8rem;
}

.stat-label {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #00d4aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    margin: 2rem auto;
    border-radius: 2px;
}

/* Who We Are Section */
.who-we-are {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.lead-text {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    border-color: rgba(0, 212, 170, 0.3);
    background: rgba(0, 212, 170, 0.05);
}

.feature-icon {
    font-size: 2rem;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 170, 0.3);
}

.feature-content h4 {
    color: #00d4aa;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #ccc;
    line-height: 1.6;
}

.visual-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(0, 212, 170, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
}

.visual-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 0;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 170, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.1);
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.2;
}

.icon-bg.ci-cd { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.icon-bg.infrastructure { background: linear-gradient(135deg, #f59e0b, #d97706); }
.icon-bg.collaboration { background: linear-gradient(135deg, #10b981, #059669); }
.icon-bg.security { background: linear-gradient(135deg, #ef4444, #dc2626); }
.icon-bg.cloud { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.icon-bg.monitoring { background: linear-gradient(135deg, #06b6d4, #0891b2); }

.service-icon .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    z-index: 2;
}

.service-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Expertise Section */
.expertise-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

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

.expertise-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.expertise-features {
    margin: 2rem 0;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem 0;
}

.check-icon {
    color: #00d4aa;
    font-weight: bold;
    font-size: 1.2rem;
    min-width: 20px;
}

.expertise-item span:last-child {
    color: #ccc;
    line-height: 1.6;
}

.description {
    color: #888;
    line-height: 1.7;
    margin: 2rem 0;
}


.expertise-visual {
    position: relative;
}

.expertise-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expertise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expertise-video {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.overlay-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Testimonials Section — horizontal track layout */
.testimonials-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.testimonials-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
    gap: 1.5rem;
}

.testimonials-title-block .section-title {
    text-align: center;
    margin-bottom: 0.5rem;
}

.testimonials-title-block .section-subtitle {
    text-align: center;
    margin: 0;
}

/* Google Rating Badge */
.google-rating-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: none;
    border: none;
    padding: 0;
}

.laurel {
    font-size: 2rem;
    filter: sepia(1) saturate(3) hue-rotate(5deg);
    line-height: 1;
}

.google-rating-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.google-rating-row {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    line-height: 1;
}

.google-score {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.google-star {
    font-size: 1.6rem;
    color: #FBBC05;
    line-height: 1;
}

.google-out-of {
    font-size: 0.78rem;
    color: #888;
    margin-top: 0.1rem;
}

.google-logo-text {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
}

/* Track */
.testimonials-track-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials-track-outer {
    flex: 1;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.4s ease;
}

/* Individual card */
.tesim-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 1.75rem;
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
    transition: border-color 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tesim-card:hover {
    border-color: rgba(0,212,170,0.35);
    transform: translateY(-4px);
}

.tesim-quote {
    font-size: 2rem;
    color: #00d4aa;
    opacity: 0.5;
    line-height: 1;
}

.tesim-text {
    color: #ccc;
    font-size: 0.88rem;
    line-height: 1.7;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tesim-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.tesim-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #00d4aa;
    flex-shrink: 0;
    position: relative;
}

.tesim-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tesim-avatar-fallback {
    display: none;
    width: 100%;
    height: 100%;
    background: #00d4aa;
    color: #0a0a0a;
    font-weight: 700;
    font-size: 0.85rem;
    align-items: center;
    justify-content: center;
}

.tesim-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.tesim-role {
    color: #00d4aa;
    font-size: 0.78rem;
    margin-bottom: 0.2rem;
}

.tesim-stars {
    color: #FBBC05;
    font-size: 0.75rem;
}

/* Nav buttons */
.ttrack-btn {
    background: rgba(0,212,170,0.1);
    border: 1.5px solid rgba(0,212,170,0.3);
    color: #00d4aa;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ttrack-btn:hover {
    background: rgba(0,212,170,0.2);
    border-color: #00d4aa;
}

/* Dots */
.tesim-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.75rem;
}

.tesim-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tesim-dot.active {
    background: #00d4aa;
    width: 24px;
    border-radius: 4px;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 170, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.1);
}

.member-image {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #00d4aa;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-fallback {
    display: none;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00d4aa, #00b894);
    align-items: center;
    justify-content: center;
}

.fallback-icon {
    font-size: 4rem;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.member-image:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #ffffff;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #00d4aa;
    transform: scale(1.1);
}

.member-info h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #00d4aa;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: url('../images/cta/img1.jpg') center center / cover no-repeat;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 3;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #00d4aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

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


.btn-secondary:hover {
    background: rgba(10, 10, 10, 0.1);
    border-color: #0a0a0a;
    text-decoration: none;
}





/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid,
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .floating-element {
        font-size: 2rem;
        opacity: 0.15;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 200px;
        text-align: center;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-controls {
        gap: 1rem;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {