/* About Us Template Styles */

/* Full width reset */
.page-template-template-about-us .site-content,
.page-template-template-about-us .content-area,
.page-template-template-about-us #primary {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

/* Hero Section */
.about-hero {
    background: #0A0E27;
    padding: 80px 40px;
    position: relative;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 60px;
    align-items: center;
}

.about-hero-content {
    padding-top: 20px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.about-badge {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1em;
    color: #34C771;
    border: 1px solid #34C771;
    border-radius: 40px;
    padding: 8px 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #34C771;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #34C771;
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 24px 0;
}

.about-hero-description {
    font-size: 1.125rem;
    color: #B8BCC8;
    line-height: 1.6;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 500;
    color: #00D9FF;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: #B8BCC8;
    margin-top: 8px;
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Our Story Section */
.our-story-section {
    padding: 100px 40px;
    background: #ffffff;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.story-badge {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    color: #00D9FF;
    border: 1px solid #00D9FF;
    border-radius: 40px;
    padding: 8px 15px;
    display: inline-block;
    margin-bottom: 20px;
}

.story-heading {
    font-size: 2.5rem;
    font-weight: 500;
    color: #0A0E27;
    line-height: 1.2;
    margin: 0 0 24px 0;
}

.story-description {
    font-size: 1.125rem;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 24px;
}

.story-description:last-child {
    margin-bottom: 0;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #00D9FF, #34C771);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: #00D9FF;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px #00D9FF;
}

.timeline-year {
    font-size: 0.875rem;
    font-weight: 500;
    color: #00D9FF;
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #0A0E27;
    margin: 0 0 8px 0;
}

.timeline-content p {
    font-size: 1rem;
    color: #64748B;
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 100px 40px;
    background: #F8FAFC;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-header {
    text-align: center;
    margin-bottom: 80px;
}

.values-badge {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    color: #00D9FF;
    border: 1px solid #00D9FF;
    border-radius: 40px;
    padding: 8px 15px;
    display: inline-block;
    margin-bottom: 20px;
}

.values-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #0A0E27;
    line-height: 1.2;
    margin: 0 0 24px 0;
}

.values-subtitle {
    font-size: 1.125rem;
    color: #64748B;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.value-item {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00D9FF, #34C771);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #0A0E27;
    margin: 0 0 16px 0;
}

.value-description {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}


.social-link {
    width: 40px;
    height: 40px;
    background: #00D9FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background: #34C771;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Why Work With Us Section */
.why-work-section {
    padding: 100px 40px;
    background: #0A0E27;
}

.why-work-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.why-work-badge {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    color: #34C771;
    border: 1px solid #34C771;
    border-radius: 40px;
    padding: 8px 15px;
    display: inline-block;
    margin-bottom: 20px;
}

.why-work-heading {
    font-size: 2.5rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 24px 0;
}

.why-work-description {
    font-size: 1.125rem;
    color: #B8BCC8;
    line-height: 1.6;
    margin-bottom: 40px;
}

.why-work-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-work-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    color: #B8BCC8;
    line-height: 1.6;
}

.checkmark {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-work-list strong {
    color: #ffffff;
}

.awards-grid {
    display: grid;
    gap: 30px;
}

.award-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: background-color 0.3s ease;
}

.award-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.award-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.award-text h4 {
    font-size: 1.125rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.award-text p {
    font-size: 0.875rem;
    color: #B8BCC8;
    margin: 0;
}

/* CTA Section */
.about-cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #00D9FF, #34C771);
}

.about-cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-cta-heading {
    font-size: 2.5rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 24px 0;
}

.about-cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-cta-btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-cta-btn-primary {
    background: #ffffff;
    color: #0A0E27;
}

.about-cta-btn-primary:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.about-cta-btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.about-cta-btn-secondary:hover {
    background: #ffffff;
    color: #0A0E27;
}

/* Services Cards Section */
.services-cards-section {
    background: white;
    padding: 80px 40px;
}

.services-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #00D9FF;
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.15);
    transform: translateY(-4px);
}

.service-badge {
    display: inline-block;
    background: #E0F7FF;
    color: #00D9FF;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    width: fit-content;
}

.service-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.service-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #00D9FF;
    margin-top: 2px;
}

.service-features li strong {
    color: #1a1a1a;
}

.service-btn {
    display: inline-block;
    background: #0a0e27;
    color: white !important;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #00C4E6;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 217, 255, 0.3);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .services-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-cards-section {
        padding: 60px 30px;
    }
    
    .services-cards-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card {
        padding: 32px;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-cards-section {
        padding: 40px 20px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .service-title {
        font-size: 1.375rem;
    }
    
    .service-btn {
        width: 100%;
    }
}

/* Gallery Section */
.about-gallery-section {
    background: #000;
    padding: 0;
    width: 100%;
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    max-width: 100%;
}

.work-item {
    position: relative;
    overflow: hidden;
    background: #000;
    aspect-ratio: 1;
    text-decoration: none;
    display: block;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.6s ease;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.2;
}



.work-item a {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.work-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.work-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
    transform: none !important;
}

.default-image {
    opacity: 1;
    z-index: 1;
}

.hover-image {
    opacity: 0;
    z-index: 2;
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
    z-index: 3;
}

.work-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
    color: white;
    transform: translateY(0);
    transition: all 0.5s ease;
    z-index: 4;
}

.work-content h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.work-label {
    display: inline-block;
    background: rgba(0, 217, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 217, 255, 0.3);
    color: #00D9FF;
}

.work-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.work-item:hover .default-image {
    opacity: 0;
}

.work-item:hover .hover-image {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-hero-container,
    .story-container,
    .why-work-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-hero-stats {
        justify-content: center;
    }
    
    .values-grid,
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-hero,
    .our-story-section,
    .values-section,
    .team-section,
    .why-work-section,
    .about-cta-section {
        padding: 60px 20px;
    }
    
    .about-hero-title,
    .story-heading,
    .values-title,
    .team-title,
    .why-work-heading,
    .about-cta-heading {
        font-size: 2rem;
    }
    
    .about-hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .values-header,
    .team-header {
        margin-bottom: 40px;
    }
}

/* Why Work With Us Section */
.why-work-section {
    background: #f9fafb;
    padding: 100px 40px;
}

.why-work-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-work-header {
    text-align: center;
}

.why-work-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.why-work-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0;
}

.why-work-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #00D9FF;
    box-shadow: 0 12px 32px rgba(0, 217, 255, 0.1);
    transform: translateY(-4px);
}

.feature-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #00D9FF;
    opacity: 0.2;
    margin: 0 0 16px 0;
    line-height: 1;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.feature-desc {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .why-work-section {
        padding: 60px 20px;
    }
    
    /* .why-work-header {
        margin-bottom: 50px;
    } */
    
    .why-work-title {
        font-size: 2rem;
    }
    
    .why-work-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-item {
        padding: 30px;
    }
    
    .feature-number {
        font-size: 2.5rem;
    }
}
