/* About Page Specific Styles */

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Navigation Updates */
.nav-links a.active {
    color: var(--secondary-color);
}

.nav-links a.active::after {
    width: 100%;
}

.logo a {
    color: inherit;
    text-decoration: none;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* About Hero Section */
.about-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 120px 5% 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.about-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-color), var(--secondary-color), var(--primary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-item {
    position: absolute;
    font-size: 3rem;
    animation: floatAround 6s ease-in-out infinite;
    opacity: 0.8;
}

.float-item:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.float-item:nth-child(2) {
    top: 15%;
    right: 25%;
    animation-delay: 1s;
}

.float-item:nth-child(3) {
    bottom: 30%;
    left: 15%;
    animation-delay: 2s;
}

.float-item:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes floatAround {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(-10px) rotate(-5deg); }
}

/* Company Story Section */
.company-story {
    padding: 100px 0;
}

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

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: attr(data-year);
    position: absolute;
    left: -45px;
    top: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 0 0 4px var(--bg-color);
}

.timeline-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.timeline-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.value-card {
    background: var(--glass-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.1), transparent);
    transition: left 0.5s;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(78, 205, 196, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 100px 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
}

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

.team-member {
    background: var(--glass-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

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

.member-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    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;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.member-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Culture Section */
.culture-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.culture-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.culture-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.culture-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    font-size: 1.5rem;
    background: var(--glass-bg);
    padding: 0.8rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

.highlight h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.highlight p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.culture-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.office-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

.gallery-item {
    aspect-ratio: 1;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    background: rgba(78, 205, 196, 0.1);
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

/* Awards Section */
.awards-section {
    padding: 100px 0;
}

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

.award-item {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.award-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    transition: left 0.5s;
}

.award-item:hover::before {
    left: 100%;
}

.award-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.award-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.award-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* About CTA Section */
.about-cta {
    padding: 100px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 100px 5% 60px;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .culture-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .about-hero {
        padding: 80px 3% 40px;
        min-height: 80vh;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .story-text h2 {
        font-size: 2rem;
    }

    .timeline {
        padding-left: 1rem;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }

    .timeline-item::before {
        left: -35px;
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 2rem;
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .culture-highlights {
        gap: 1rem;
    }

    .highlight {
        flex-direction: row;
        align-items: flex-start;
    }

    .office-gallery {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .about-cta h2 {
        font-size: 2rem;
    }

    .about-cta p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 3%;
    }

    .about-hero {
        padding: 60px 3% 30px;
    }

    .company-story,
    .values-section,
    .team-section,
    .culture-section,
    .awards-section,
    .about-cta {
        padding: 60px 0;
    }

    .floating-elements {
        height: 200px;
    }

    .float-item {
        font-size: 2rem;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-item::before {
        left: -25px;
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .member-info {
        padding: 1.5rem;
    }

    .value-card,
    .award-item {
        padding: 1.5rem;
    }
}

/* Animation Enhancements */
@media (prefers-reduced-motion: no-preference) {
    .team-member {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
        transform: translateY(30px);
    }

    .team-member:nth-child(1) { animation-delay: 0.1s; }
    .team-member:nth-child(2) { animation-delay: 0.2s; }
    .team-member:nth-child(3) { animation-delay: 0.3s; }
    .team-member:nth-child(4) { animation-delay: 0.4s; }
    .team-member:nth-child(5) { animation-delay: 0.5s; }
    .team-member:nth-child(6) { animation-delay: 0.6s; }

    .value-card {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
        transform: translateY(30px);
    }

    .value-card:nth-child(1) { animation-delay: 0.1s; }
    .value-card:nth-child(2) { animation-delay: 0.2s; }
    .value-card:nth-child(3) { animation-delay: 0.3s; }
    .value-card:nth-child(4) { animation-delay: 0.4s; }
    .value-card:nth-child(5) { animation-delay: 0.5s; }
    .value-card:nth-child(6) { animation-delay: 0.6s; }

    .timeline-item {
        animation: slideInLeft 0.6s ease forwards;
        opacity: 0;
        transform: translateX(-30px);
    }

    .timeline-item:nth-child(1) { animation-delay: 0.1s; }
    .timeline-item:nth-child(2) { animation-delay: 0.3s; }
    .timeline-item:nth-child(3) { animation-delay: 0.5s; }
    .timeline-item:nth-child(4) { animation-delay: 0.7s; }

    @keyframes slideInLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .float-item {
        animation: none;
    }
}

/* Focus styles for better accessibility */
.nav-links a:focus,
.btn:focus,
.social-links a:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .value-card,
    .team-member,
    .award-item {
        border-width: 2px;
    }
    
    .btn {
        border: 2px solid;
    }
}


/* About Page Specific Styles */

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Navigation Updates */
.nav-links a.active {
    color: var(--secondary-color);
}

.nav-links a.active::after {
    width: 100%;
}

.logo a {
    color: inherit;
    text-decoration: none;
}

/* Mobile Menu Fix for About Page */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

/* Mobile Navigation Override */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }

    .nav-links {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
        z-index: 1000;
        margin: 0;
        gap: 0;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        display: flex !important;
        animation: slideDown 0.3s ease;
    }

    .nav-links li {
        margin: 0.5rem 0;
        text-align: center;
        list-style: none;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-radius: 8px;
        margin: 0 1rem;
        transition: all 0.3s ease;
        color: white !important;
        text-decoration: none;
    }

    .nav-links a:hover {
        background: rgba(78, 205, 196, 0.2);
        color: #4ecdc4 !important;
        transform: translateX(5px);
    }

    .nav-links a.active {
        color: var(--secondary-color) !important;
    }

    /* Ensure header positioning */
    header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }
}

/* Animation for dropdown */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Hero Section */
.about-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 120px 5% 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.about-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-color), var(--secondary-color), var(--primary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-item {
    position: absolute;
    font-size: 3rem;
    animation: floatAround 6s ease-in-out infinite;
    opacity: 0.8;
}

.float-item:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.float-item:nth-child(2) {
    top: 15%;
    right: 25%;
    animation-delay: 1s;
}

.float-item:nth-child(3) {
    bottom: 30%;
    left: 15%;
    animation-delay: 2s;
}

.float-item:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes floatAround {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(-10px) rotate(-5deg); }
}

/* Company Story Section */
.company-story {
    padding: 100px 0;
}

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

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: attr(data-year);
    position: absolute;
    left: -45px;
    top: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 0 0 4px var(--bg-color);
}

.timeline-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.timeline-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.value-card {
    background: var(--glass-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.1), transparent);
    transition: left 0.5s;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(78, 205, 196, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 100px 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
}

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

.team-member {
    background: var(--glass-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

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

.member-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    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;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.member-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Culture Section */
.culture-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.culture-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.culture-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.culture-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    font-size: 1.5rem;
    background: var(--glass-bg);
    padding: 0.8rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

.highlight h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.highlight p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.culture-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.office-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

.gallery-item {
    aspect-ratio: 1;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    background: rgba(78, 205, 196, 0.1);
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

/* Awards Section */
.awards-section {
    padding: 100px 0;
}

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

.award-item {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.award-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    transition: left 0.5s;
}

.award-item:hover::before {
    left: 100%;
}

.award-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.award-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.award-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* About CTA Section */
.about-cta {
    padding: 100px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 100px 5% 60px;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .culture-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .about-hero {
        padding: 80px 3% 40px;
        min-height: 80vh;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .story-text h2 {
        font-size: 2rem;
    }

    .timeline {
        padding-left: 1rem;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }

    .timeline-item::before {
        left: -35px;
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 2rem;
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .culture-highlights {
        gap: 1rem;
    }

    .highlight {
        flex-direction: row;
        align-items: flex-start;
    }

    .office-gallery {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .about-cta h2 {
        font-size: 2rem;
    }

    .about-cta p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 3%;
    }

    .about-hero {
        padding: 60px 3% 30px;
    }

    .company-story,
    .values-section,
    .team-section,
    .culture-section,
    .awards-section,
    .about-cta {
        padding: 60px 0;
    }

    .floating-elements {
        height: 200px;
    }

    .float-item {
        font-size: 2rem;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-item::before {
        left: -25px;
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .member-info {
        padding: 1.5rem;
    }

    .value-card,
    .award-item {
        padding: 1.5rem;
    }
}

/* Animation Enhancements */
@media (prefers-reduced-motion: no-preference) {
    .team-member {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
        transform: translateY(30px);
    }

    .team-member:nth-child(1) { animation-delay: 0.1s; }
    .team-member:nth-child(2) { animation-delay: 0.2s; }
    .team-member:nth-child(3) { animation-delay: 0.3s; }
    .team-member:nth-child(4) { animation-delay: 0.4s; }
    .team-member:nth-child(5) { animation-delay: 0.5s; }
    .team-member:nth-child(6) { animation-delay: 0.6s; }

    .value-card {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
        transform: translateY(30px);
    }

    .value-card:nth-child(1) { animation-delay: 0.1s; }
    .value-card:nth-child(2) { animation-delay: 0.2s; }
    .value-card:nth-child(3) { animation-delay: 0.3s; }
    .value-card:nth-child(4) { animation-delay: 0.4s; }
    .value-card:nth-child(5) { animation-delay: 0.5s; }
    .value-card:nth-child(6) { animation-delay: 0.6s; }

    .timeline-item {
        animation: slideInLeft 0.6s ease forwards;
        opacity: 0;
        transform: translateX(-30px);
    }

    .timeline-item:nth-child(1) { animation-delay: 0.1s; }
    .timeline-item:nth-child(2) { animation-delay: 0.3s; }
    .timeline-item:nth-child(3) { animation-delay: 0.5s; }
    .timeline-item:nth-child(4) { animation-delay: 0.7s; }

    @keyframes slideInLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .float-item {
        animation: none;
    }
}

/* Focus styles for better accessibility */
.nav-links a:focus,
.btn:focus,
.social-links a:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .value-card,
    .team-member,
    .award-item {
        border-width: 2px;
    }
    
    .btn {
        border: 2px solid;
    }
}


/* Add this CSS to the very end of both about.css and contact.css */
/* FORCE MOBILE MENU CSS - OVERRIDE EVERYTHING */

/* Force mobile toggle to show on mobile */
@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        cursor: pointer !important;
        gap: 4px !important;
        z-index: 9999 !important;
        position: relative !important;
        order: 999 !important;
    }

    .mobile-menu-toggle span {
        width: 25px !important;
        height: 3px !important;
        background: #ffffff !important;
        transition: all 0.3s ease !important;
        border-radius: 2px !important;
        display: block !important;
    }

    /* Force nav links to be hidden by default on mobile */
    nav .nav-links {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: rgba(0, 0, 0, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        padding: 2rem 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        z-index: 9998 !important;
        margin: 0 !important;
        gap: 0 !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
        list-style: none !important;
    }

    /* Force active state to show */
    nav .nav-links.active {
        display: flex !important;
    }

    nav .nav-links li {
        margin: 0.5rem 0 !important;
        text-align: center !important;
        list-style: none !important;
        padding: 0 !important;
    }

    nav .nav-links a {
        display: block !important;
        padding: 1rem 2rem !important;
        font-size: 1.1rem !important;
        border-radius: 8px !important;
        margin: 0 1rem !important;
        transition: all 0.3s ease !important;
        color: #ffffff !important;
        text-decoration: none !important;
        border: none !important;
    }

    nav .nav-links a:hover {
        background: rgba(78, 205, 196, 0.2) !important;
        color: #4ecdc4 !important;
        transform: translateX(5px) !important;
    }

    nav .nav-links a.active {
        color: #4ecdc4 !important;
    }

    /* Ensure nav is positioned correctly */
    nav {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        position: relative !important;
    }

    /* Ensure header is positioned correctly */
    header {
        position: fixed !important;
        top: 0 !important;
        width: 100% !important;
        z-index: 9997 !important;
        background: rgba(0, 0, 0, 0.7) !important;
        backdrop-filter: blur(20px) !important;
    }

    /* Make sure body has top padding to account for fixed header */
    body {
        padding-top: 80px !important;
    }
}

/* Desktop - ensure everything is normal */
@media screen and (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }

    nav .nav-links {
        display: flex !important;
        position: static !important;
        background: none !important;
        flex-direction: row !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }

    body {
        padding-top: 0 !important;
    }
}


/* Add this CSS to your about.css file */

.office-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 500px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-label {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive design */
@media (max-width: 768px) {
    .office-gallery {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .gallery-item {
        max-width: 250px;
        margin: 0 auto;
    }
}

/* Alternative: Simpler version without overlays */
.gallery-item-simple {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item-simple:hover {
    transform: scale(1.05);
}

.gallery-item-simple .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}