/* About Page Specific Styles */

/* Animated Backgrounds */
.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
    filter: blur(1px);
}

.orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
}

.orb-cta-1 {
    width: 400px;
    height: 400px;
    top: -20%;
    left: -10%;
    animation-delay: 1s;
}

.orb-cta-2 {
    width: 250px;
    height: 250px;
    bottom: -10%;
    right: -5%;
    animation-delay: 3s;
}

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

/* Hero Section */
.about-hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #F0F9FF 50%, var(--secondary-color) 100%);
    overflow: hidden;
    min-height: 70vh;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    height: 100%;
}

.hero-left {
    padding-right: 40px;
}

.hero-left h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--gradient-start) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(227, 27, 72, 0.1);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(227, 27, 72, 0.2);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #E31B48, #BC2E91);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(227, 27, 72, 0.2);
}

.feature-icon svg {
    width: 12px;
    height: 12px;
    color: #ffffff;
}

.feature-item span {
    font-weight: 600;
    color: #000000 !important;
    font-size: 16px;
    line-height: 1.4;
}

/* Hero Right Side */
.hero-right {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.connection-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    opacity: 0;
    animation: drawLine 2s ease-out forwards;
}

.connection-line.line-1 {
    animation-delay: 0.5s;
}

.connection-line.line-2 {
    animation-delay: 0.8s;
}

.connection-line.line-3 {
    animation-delay: 1.1s;
}

.connection-line.line-4 {
    animation-delay: 1.4s;
}

@keyframes drawLine {
    0% {
        stroke-dashoffset: 1000;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

/* Flowing gradient animation */
.connection-line {
    animation: drawLine 2s ease-out forwards, flowGradient 3s ease-in-out infinite;
}

@keyframes flowGradient {
    0%, 100% {
        filter: hue-rotate(0deg) brightness(1);
    }
    50% {
        filter: hue-rotate(10deg) brightness(1.1);
    }
}

/* Client Boxes */
.client-boxes {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-left: auto;
    padding-left: 50px;
}

.client-box {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    max-width: 200px;
}

.client-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.client-box:hover::before {
    left: 100%;
}

.client-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(227, 27, 72, 0.2);
}

.client-box img,
.placeholder-img {
    width: 100%;
    height: 60px;
    border-radius: 8px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    color: var(--white);
    text-align: center;
}

.client-box img {
    object-fit: cover;
}

.placeholder-img.legal {
    background: var(--primary-color);
}

.placeholder-img.healthcare {
    background: linear-gradient(135deg, #2563EB, #3B82F6);
}

.placeholder-img.education {
    background: linear-gradient(135deg, #059669, #10B981);
}

.placeholder-img.construction {
    background: linear-gradient(135deg, #DC2626, #EF4444);
}

.placeholder-img.startups {
    background: linear-gradient(135deg, #7C3AED, #8B5CF6);
}

.client-label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
    text-align: center;
}

/* Staggered box positioning */
.client-box:nth-child(odd) {
    margin-right: 30px;
}

.client-box:nth-child(even) {
    margin-left: 30px;
}

/* Floating animation for client boxes */
.client-box {
    animation: floatBox 4s ease-in-out infinite;
}

.client-box:nth-child(1) { animation-delay: 0s; }
.client-box:nth-child(2) { animation-delay: 0.8s; }
.client-box:nth-child(3) { animation-delay: 1.6s; }
.client-box:nth-child(4) { animation-delay: 2.4s; }
.client-box:nth-child(5) { animation-delay: 3.2s; }

@keyframes floatBox {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Pulse effect for connection points */
.connection-lines::after {
    content: '';
    position: absolute;
    left: 50px;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--gradient-start);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(227, 27, 72, 0.7);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(227, 27, 72, 0.7);
    }
    70% {
        transform: scale(1.2);
        box-shadow: 0 0 0 10px rgba(227, 27, 72, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(227, 27, 72, 0);
    }
}

/* Company Story Section */
.company-story {
    padding: 100px 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 12px;
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

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

/* Story Visual with Floating Cards */
.story-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 140px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 35%;
    right: 15%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 10%;
    left: 25%;
    animation-delay: 3s;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.floating-card span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Mission & Values Section */
.mission-values {
    position: relative;
    padding: 100px 0;
    background: var(--gray-100);
    overflow: hidden;
}

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

.gradient-mesh {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(227, 27, 72, 0.05) 0%, transparent 70%),
                radial-gradient(circle at 80% 20%, rgba(188, 46, 145, 0.05) 0%, transparent 70%),
                radial-gradient(circle at 40% 40%, rgba(8, 31, 44, 0.03) 0%, transparent 70%);
}

.gradient-waves {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(227, 27, 72, 0.03) 0%, 
                transparent 30%,
                rgba(188, 46, 145, 0.03) 70%,
                transparent 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.value-card {
    background: var(--white);
    padding: 40px 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

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

.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: rgba(227, 27, 72, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

.mission-statement {
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}

.mission-content h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.mission-content p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Industries Section */
.industries-served {
    padding: 100px 0;
    background: var(--white);
}

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

.industry-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.industry-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    border-color: var(--gradient-start);
}

.industry-card:hover::before {
    opacity: 0.03;
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
}

.industry-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.industry-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

/* Certifications Section */
.certifications {
    position: relative;
    padding: 100px 0;
    background: var(--gray-100);
    overflow: hidden;
}

.certifications-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cert-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.cert-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cert-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.cert-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.cert-details h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.cert-details p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

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

.achievement-badge {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px -12px rgba(227, 27, 72, 0.3);
    animation: pulse 3s ease-in-out infinite;
    position: relative;
}

.achievement-badge::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border: 2px solid rgba(227, 27, 72, 0.2);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
}

.badge-inner {
    text-align: center;
    color: var(--white);
}

.badge-year {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Call to Action Section */
.about-cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gray-800) 100%);
    overflow: hidden;
}

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

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Founder Section Styles */
.founder-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(227, 27, 72, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(188, 46, 145, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.founder-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.founder-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 16px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.founder-img:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 15px 35px rgba(0, 0, 0, 0.08);
}

.founder-badge {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    right: auto !important;
    bottom: auto !important;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
    padding: 7px 14px !important;
    border-radius: 18px !important;
    font-size: 0.95rem !important;
    max-width: 80vw;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(227,27,72,0.15);
}

.founder-text {
    padding: 20px 0;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.founder-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.founder-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 600px;
}

.founder-credentials {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.credential-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.credential-icon {
    width: 24px;
    height: 24px;
    color: var(--gradient-start);
    flex-shrink: 0;
}

.credential-icon svg {
    width: 100%;
    height: 100%;
}

.credential-item span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

/* Management Team Section */
.management-team {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
}

.management-team .section-header {
    margin-bottom: 60px;
    text-align: center;
}

.managers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.manager-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(227, 27, 72, 0.1);
    position: relative;
    overflow: hidden;
}

.manager-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.manager-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(227, 27, 72, 0.15);
}

.manager-image {
    width: 100%;
    height: 240px;
    margin: 0 auto 24px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

.manager-card:hover .manager-img {
    transform: scale(1.05);
}

.manager-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: var(--font-primary);
}

.manager-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-out;
}

.fade-in-up.animate-in,
.fade-in-left.animate-in,
.fade-in-right.animate-in {
    opacity: 1;
    transform: translate(0);
}

/* Active Navigation State */
.nav-menu a.active {
    color: var(--gradient-start);
}

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

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .about-hero {
        padding: 120px 0 80px;
    }
    
    .hero-left h1 {
        font-size: 3rem;
    }
    
    .founder-section {
        padding: 60px 0;
    }
    
    .founder-container {
        gap: 40px;
    }
}

@media (max-width: 900px) {
  .hero-container,
  .founder-content,
  .story-grid,
  .certifications-content {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
    gap: 32px !important;
  }
  .hero-right,
  .founder-image,
  .story-visual,
  .cert-visual {
    margin: 0 auto 24px auto !important;
    width: 100% !important;
    max-width: 350px;
    display: flex;
    justify-content: center;
  }
  .hero-features {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .client-boxes {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

@media (max-width: 768px) {
    /* Enhanced mobile header */
    .about-hero {
        padding: 100px 0 60px;
        min-height: auto;
        text-align: center;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-left {
        padding-right: 0;
        text-align: center;
        order: 2;
    }
    
    .hero-left h1 {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .hero-left p {
        font-size: 1.125rem;
        margin-bottom: 32px;
    }
    
    .hero-right {
        order: 1;
        height: 320px;
        margin-bottom: 20px;
    }
    
    .client-boxes {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding-left: 0;
        margin: 0;
    }
    
    .client-box {
        max-width: 120px;
        margin: 0 !important;
        padding: 12px;
    }
    
    .client-box:nth-child(odd),
    .client-box:nth-child(even) {
        margin: 0 !important;
    }
    
    .client-logo {
        height: 40px;
    }
    
    .connection-lines {
        display: none;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 32px;
    }
    
    .feature-item {
        padding: 14px 18px;
        gap: 14px;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }
    
    .feature-icon svg {
        width: 10px;
        height: 10px;
    }
    
    .feature-item span {
        font-size: 15px;
        color: #000000 !important;
    }
    
    /* Enhanced founder section mobile */
    .founder-section {
        padding: 50px 0;
    }
    
    .founder-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .founder-image-container {
        order: 1;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .founder-content {
        order: 2;
        padding: 0;
    }
    
    .founder-title {
        font-size: 1.875rem;
        margin-bottom: 16px;
    }
    
    .founder-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .founder-description {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 24px;
        text-align: left;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
    }
    
    .credential-item {
        padding: 16px;
        text-align: left;
    }
    
    .credential-icon {
        width: 20px;
        height: 20px;
        margin-bottom: 8px;
    }
    
    .credential-text {
        font-size: 14px;
    }
    
    /* About sections mobile */
    .about-section {
        padding: 50px 0;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .content-left {
        order: 2;
    }
    
    .content-right {
        order: 1;
    }
    
    .section-content.reverse .content-left {
        order: 1;
    }
    
    .section-content.reverse .content-right {
        order: 2;
    }
    
    .section-title {
        font-size: 1.875rem;
        line-height: 1.2;
    }
    
    .section-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .features-list {
        gap: 16px;
        text-align: left;
    }
    
    .features-list li {
        padding: 12px 0;
        font-size: 15px;
    }
    
    .image-container {
        height: 280px;
    }
    
    /* CTA section mobile */
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-content {
        text-align: center;
        padding: 40px 24px;
    }
    
    .cta-content h2 {
        font-size: 1.875rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 600px) {
  .hero-container,
  .founder-content,
  .story-grid,
  .certifications-content {
    padding: 0 8px !important;
    gap: 20px !important;
  }
  .hero-left h1,
  .section-header h2,
  .founder-text h2,
  .story-content h2 {
    font-size: 1.5rem !important;
  }
  .hero-subtitle,
  .founder-description,
  .story-content p,
  .cert-subtitle {
    font-size: 1rem !important;
  }
  .founder-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .founder-badge {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    right: auto !important;
    bottom: auto !important;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
    padding: 7px 14px !important;
    border-radius: 18px !important;
    font-size: 0.95rem !important;
    max-width: 80vw;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(227,27,72,0.15);
  }
  .founder-img {
    width: 90vw !important;
    max-width: 320px !important;
    height: auto !important;
    border-radius: 12px;
    display: block;
  }
  .client-box {
    max-width: 100px;
    padding: 8px;
  }
  
  .client-logo {
    height: 32px;
  }
  
  .feature-item {
    gap: 12px;
    padding: 12px 16px;
  }
  
  .feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
  }
  
  .feature-icon svg {
    width: 9px;
    height: 9px;
  }
  
  .feature-item span {
    font-size: 14px;
    color: #000000 !important;
  }
  
  /* Founder section extra small */
  .founder-section {
    padding: 40px 0;
  }
  
  .founder-image-container {
    max-width: 240px;
  }
  
  .founder-title {
    font-size: 1.625rem;
  }
  
  .founder-subtitle {
    font-size: 15px;
  }
  
  .founder-description {
    font-size: 14px;
  }
  
  .credential-item {
    padding: 12px;
  }
  
  .credential-text {
    font-size: 13px;
  }
  
  /* Sections extra small */
  .about-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.625rem;
  }
  
  .section-description {
    font-size: 15px;
  }
  
  .features-list li {
    font-size: 14px;
    padding: 10px 0;
  }
  
  .image-container {
    height: 240px;
  }
  
  .cta-content {
    padding: 32px 20px;
  }
  
  .cta-content h2 {
    font-size: 1.625rem;
  }
  
  .cta-content p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .about-hero {
        padding: 80px 0 50px;
    }
    
    .hero-left h1 {
        font-size: 1.875rem;
        line-height: 1.1;
    }
    
    .hero-left p {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .hero-right {
        height: 280px;
    }
    
    .client-box {
        max-width: 100px;
        padding: 8px;
    }
    
    .client-logo {
        height: 32px;
    }
    
    .feature-item {
        gap: 10px;
        padding: 10px 14px;
    }
    
    .feature-icon {
        width: 28px;
        height: 28px;
        border-radius: 6px;
    }
    
    .feature-icon svg {
        width: 8px;
        height: 8px;
    }
    
    .feature-item span {
        font-size: 13px;
        color: #000000 !important;
    }
    
    /* Founder section extra small */
    .founder-section {
        padding: 40px 0;
    }
    
    .founder-image-container {
        max-width: 240px;
    }
    
    .founder-title {
        font-size: 1.625rem;
    }
    
    .founder-subtitle {
        font-size: 15px;
    }
    
    .founder-description {
        font-size: 14px;
    }
    
    .credential-item {
        padding: 12px;
    }
    
    .credential-text {
        font-size: 13px;
    }
    
    /* Sections extra small */
    .about-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.625rem;
    }
    
    .section-description {
        font-size: 15px;
    }
    
    .features-list li {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .image-container {
        height: 240px;
    }
    
    .cta-content {
        padding: 32px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.625rem;
    }
    
    .cta-content p {
        font-size: 15px;
    }
}

@media (max-width: 360px) {
    /* Very small screens */
    .hero-left h1 {
        font-size: 1.625rem;
        word-break: break-word;
    }
    
    .hero-right {
        height: 240px;
    }
    
    .founder-title {
        font-size: 1.375rem;
    }
    
    .section-title {
        font-size: 1.375rem;
    }
    
    .cta-content h2 {
        font-size: 1.375rem;
    }
    
    .client-box {
        max-width: 90px;
        padding: 6px;
    }
    
    .founder-image-container {
        max-width: 200px;
    }
}

/* Enhanced Mobile Styles */
@media (max-width: 768px) {
    .management-team {
        padding: 60px 0;
    }
    
    .managers-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 30px;
    }
    
    .manager-card {
        padding: 24px;
    }
    
    .manager-image {
        width: 160px;
        height: 160px;
        margin: 0 auto 20px;
    }
    
    .manager-content h3 {
        font-size: 1.3rem;
    }
    
    .manager-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .management-team {
        padding: 40px 0;
    }
    
    .manager-card {
        padding: 20px;
    }
    
    .manager-image {
        width: 140px;
        height: 140px;
    }
}
