/* Hero Section */
.about-hero {
    background: radial-gradient(ellipse at top left, rgb(13 143 208 / 15%) 0%, transparent 40%),
        radial-gradient(ellipse at top right, rgb(217 111 13 / 18%) 0%, transparent 40%),
        radial-gradient(ellipse at bottom left, rgb(11 101 147 / 12%) 0%, transparent 40%),
        radial-gradient(ellipse at bottom right, rgb(131 67 6 / 15%) 0%, transparent 40%),
        linear-gradient(135deg, var(--dark-bg-primary) 0%, var(--dark-bg-secondary) 25%, #1a2030 50%, var(--dark-bg-secondary) 75%, var(--dark-bg-primary) 100%);
    padding: 80px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(1px 1px at 15% 20%, rgba(13, 159, 232, 0.1), transparent),
        radial-gradient(1px 1px at 85% 30%, rgba(237, 131, 33, 0.08), transparent),
        radial-gradient(1px 1px at 25% 80%, rgba(13, 159, 232, 0.06), transparent),
        radial-gradient(1px 1px at 70% 70%, rgba(237, 131, 33, 0.1), transparent);
    background-size: 400px 300px;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {

    0%,
    100% {
        transform: translateX(0) translateY(0);
    }

    25% {
        transform: translateX(-10px) translateY(-5px);
    }

    50% {
        transform: translateX(5px) translateY(-10px);
    }

    75% {
        transform: translateX(-5px) translateY(5px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-text-secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--dark-text-primary);
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-highlight {
    font-weight: 500;
    background: linear-gradient(135deg, #0d9fe8 0%, #ed8321 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--dark-text-secondary);
    max-width: 600px;
    margin: 0 auto 0px;
}

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

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

.story-content h2 {
    font-size: 3.3333333333rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.story-content p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    background: #f8f9fa;
}

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



/* Mission & Vision Section */
.mission-vision-section {
    padding: 0 0 100px 0;
    background: #ffffff;
    position: relative;
}

.mission-vision-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Subtle background accent */
.mission-vision-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(13, 159, 232, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
    z-index: 2;
}

/* Central divider line */
.mv-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(13, 159, 232, 0.2) 25%,
            var(--brand-orange-text) 50%,
            rgba(13, 159, 232, 0.2) 75%,
            transparent 100%);
    transform: translateX(-50%);
}

.mv-item {
    padding: 100px 60px 0;
    position: relative;
    transition: all 0.3s ease;
}

.mv-item.mission {
    text-align: right;
    padding-right: 80px;
}

.mv-item.vision {
    text-align: left;
    padding-left: 80px;
}

/* Minimal icons */
.mv-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    position: relative;
}

.mv-item.mission .mv-icon {
    background: rgba(13, 159, 232, 0.08);
    color: var(--brand-blue-text);
}

.mv-item.vision .mv-icon {
    background: rgba(237, 131, 33, 0.08);
    color: var(--brand-orange-text);
}

.mv-title {
    font-size: 2.75rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.mv-text {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
    max-width: 400px;
}

.mv-item.mission .mv-text {
    margin-left: auto;
}

/* Subtle hover effects */
.mv-item:hover .mv-icon {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.mv-item.mission:hover .mv-icon {
    background: rgba(13, 159, 232, 0.12);
}

.mv-item.vision:hover .mv-icon {
    background: rgba(237, 131, 33, 0.12);
}


/* Responsive Design Updates */
@media (max-width: 991px) {
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mv-grid::before {
        display: none;
    }

    .mv-item {
        text-align: center;
        padding: 40px 30px;
    }

    .mv-item.mission {
        padding-right: 30px;
    }

    .mv-item.vision {
        padding-left: 30px;
    }

    .mv-text {
        max-width: none;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .mission-vision-section {
        padding: 0 0 64px 0;
    }

    .mv-item {
        padding: 30px 20px;
    }

    .mv-title {
        font-size: 1.5rem;
    }
    .mission-vision-container::before{
        display: none;
    }
}



/* Values Section */
.values-section {
    background: radial-gradient(ellipse at top left, rgba(13, 143, 208, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at top right, rgba(217, 111, 13, 0.04) 0%, transparent 50%),
        #f8f9fa;
    padding: 100px 0;
}

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

.values-title {
    font-size: 2.75rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.values-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.value-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #00aaff 0%, #ff8800 100%);
    background: linear-gradient(135deg, var(--blue-card-icon) 0%, var(--orange-card-icon) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

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

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

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

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

.team-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.team-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.team-member {
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
}

.member-photo {
    width: 100%;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #e3f2fd 0%, #fff3e0 100%);
    position: relative;
}

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

.member-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 4rem;
    opacity: 0.3;
}

.member-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.member-role {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.member-social a {
    width: 32px;
    height: 32px;
    background: rgba(13, 159, 232, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--brand-orange-text);
    color: white;
    transform: translateY(-2px);
}

/* Culture Section */
.culture-section {
    background: radial-gradient(ellipse at top left, rgb(13 143 208 / 15%) 0%, transparent 40%),
        radial-gradient(ellipse at top right, rgb(217 111 13 / 18%) 0%, transparent 40%),
        radial-gradient(ellipse at bottom left, rgb(11 101 147 / 12%) 0%, transparent 40%),
        radial-gradient(ellipse at bottom right, rgb(131 67 6 / 15%) 0%, transparent 40%),
        linear-gradient(135deg, var(--dark-bg-primary) 0%, var(--dark-bg-secondary) 25%, #1a2030 50%, var(--dark-bg-secondary) 75%, var(--dark-bg-primary) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.culture-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.culture-title {
    font-size: 2.75rem;
    font-weight: 400;
    color: var(--dark-text-primary);
    margin-bottom: 24px;
}

.culture-description {
    font-size: 18px;
    color: var(--dark-text-secondary);
    max-width: 700px;
    margin: 0 auto 60px;
}

.culture-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.culture-feature {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.culture-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.culture-feature i {
    font-size: 2rem;
    color: var(--brand-orange-light);
    margin-bottom: 16px;
}

.culture-feature h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-text-primary);
    margin-bottom: 8px;
}

.culture-feature p {
    font-size: 16px;
    color: var(--dark-text-secondary);
    line-height: 1.5;
    font-weight: 300;
}

/* CTA Section */
.cta-section {
/*     padding: 100px 0; */
    padding: 50px 0 120px;
    background: #ffffff;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.cta-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

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

.cta-button {
    background: var(--brand-orange-text);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #e8640f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 116, 22, 0.3);
    text-decoration: none;
    color: white;
}

.cta-button-secondary {
    background: transparent;
    color: var(--text-primary) !important;
    border: 2px solid #e9ecef;
}

.cta-button-secondary:hover {
    border-color: var(--text-primary);
    background: transparent;
    color: var(--text-primary);
    box-shadow: none;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .story-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

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

    .culture-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .story-content h2,
    .values-title,
    .team-title,
    .culture-title,
    .cta-title {
        font-size: 2rem;
    }

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

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

    .cta-button,
    .cta-button-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    
    .values-section,
    .team-section,
    .culture-section,
    .cta-section {
/*         padding: 64px 0; */
    }
    .story-section{
        padding: 64px 0 0 0;
    }
}

@media (max-width: 450px) {

    .story-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}