/* Hero Section */
.hero {
    height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 18px;
    color: #fff;
}

.hero-content p {
    font-size: 1.5rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Mission & Vision */
.improved-mission-vision {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin: 60px 0 0 0;
    flex-wrap: wrap;
}

.improved-mission-vision .mission, .improved-mission-vision .vision {
    background: rgba(28, 28, 28, 0.85);
    border-radius: 16px;
    padding: 40px 32px 32px 32px;
    text-align: center;
    min-width: 320px;
    max-width: 420px;
    flex: 1 1 320px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    margin: 0 10px;
}

.improved-mission-vision .mv-icon {
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.improved-mission-vision h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 18px;
    font-weight: bold;
}

.improved-mission-vision p {
    font-size: 1.25rem;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Process Flowchart */
.process-section {
    padding: 80px 0;
    background: rgba(28, 28, 28, 0.9);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.flowchart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0;
    position: relative;
    padding: 20px 0;
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.node {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease;
    background: inherit;
}

.node:hover {
    transform: scale(1.1);
}

.node svg {
    margin-bottom: 18px;
    width: 80px;
    height: 80px;
}

.node h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: bold;
}

.node p {
    font-size: 1.2rem;
    color: #e0e0e0;
    line-height: 1.5;
}

.node-1 {
    background: #800080; /* Purple */
}

.node-2 {
    background: #20B2AA; /* Teal */
}

.node-3 {
    background: #FFFF00; /* Yellow */
}

.node-connector {
    flex: 1;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        var(--text-color) 0,
        var(--text-color) 10px,
        transparent 10px,
        transparent 20px
    );
    position: relative;
    margin: 0 20px;
}

.node-connector::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
    font-size: 24px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background: rgba(28, 28, 28, 0.8);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h3 {
    margin: 20px 0 10px;
}

.team-member p {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .improved-mission-vision {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .improved-mission-vision .mission, .improved-mission-vision .vision {
        min-width: 0;
        width: 100%;
        max-width: 98vw;
    }

    .flowchart {
        flex-direction: column;
        gap: 30px;
    }

    .node-connector {
        width: 2px;
        height: 50px;
        background: repeating-linear-gradient(
            to bottom,
            var(--text-color) 0,
            var(--text-color) 10px,
            transparent 10px,
            transparent 20px
        );
        margin: 20px 0;
    }

    .node-connector::after {
        transform: rotate(90deg);
        right: -15px;
        top: auto;
        bottom: -15px;
    }
}

@media (max-width: 900px) {
    .improved-mission-vision {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .improved-mission-vision .mission, .improved-mission-vision .vision {
        min-width: 0;
        width: 100%;
        max-width: 98vw;
    }
}

@media (max-width: 1100px) {
    .flowchart {
        flex-direction: column;
        gap: 40px;
    }
    .node {
        width: 90vw;
        height: auto;
        min-height: 180px;
        border-radius: 30px;
    }
}

.story-title {
    text-align: center;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 18px;
    font-weight: bold;
}
.story-desc {
    text-align: center;
    font-size: 1.35rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.7;
} 