:root {
    --primary-color: #2C3639;
    --secondary-color: #3F4E4F;
    --accent-color: #353331;
    --text-color: #2C3639;
    --light-bg: #F5F5F5;
    --dark-bg: #2C3639;
    --neutral-1: #DCD7C9;
    --neutral-2: #E5E5E5;
}

.misvis-container {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}
.hero-mis {
    transform: translateY(50px);
    animation: slideUp 0.8s ease-out forwards;
    font-weight: 700;
    font-size: calc(18px + 34 * ((100vw - 320px) / 1580));
    line-height: calc(16px + 38 * ((100vw - 320px) / 1580));
}
/* Hero Section */
.hero-section-new {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    height: 80vh;
    color: white;
    overflow: hidden;
}

    .hero-section-new::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.7;
        z-index: -1;
    }

    .hero-section-new::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

.hero-content-new {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto;
}

.hero-title-new {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

    .hero-title-new::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: var(--accent-color);
        border-radius: 2px;
    }

.hero-subtitle-new {
    font-size: 1.8rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-cta-new {
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.cta-button-new {
    display: inline-block;
    padding: 15px 40px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #333;
}

    .cta-button-new:hover {
        background: transparent;
        color: #333;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .cta-button-new::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: 0.5s;
    }

    .cta-button-new:hover::before {
        left: 100%;
    }

.hero-shape-new {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon fill="rgba(255,255,255,0.1)" points="0,100 100,0 100,100"/></svg>');
    background-size: cover;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.hero-decoration-new {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .hero-decoration-new::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,0.1) 100%);
    }

    .hero-decoration-new::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 150px;
        background: linear-gradient(to top, var(--light-bg), transparent);
    }

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-text {
    flex: 1;
}

.mission-image {
    flex: 1;
    position: relative;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}


    .image-container img {
        width: 100%;
        height: auto;
        display: block;
    }

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

/* Values Section */
.values-section {
    padding: 100px 30px;
    background-color: white;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--neutral-2);
}

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--secondary-color);
    color: white;
    transform: rotateY(180deg);
}

/* Vision Section */
.vision-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.vision-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-direction: row-reverse;
}

/* Goals Section */
.goals-section {
    padding: 100px 30px;
    background-color: white;
}

.goals-timeline {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

    .goals-timeline::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        background: var(--secondary-color);
    }

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    padding: 0 30px;
}

    .timeline-item:nth-child(odd) {
        margin-left: auto;
    }

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid var(--neutral-2);
}

    .timeline-content::before {
        content: '';
        position: absolute;
        top: 50%;
        width: 20px;
        height: 20px;
        background: var(--secondary-color);
        border-radius: 50%;
        transform: translateY(-50%);
    }

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -40px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -40px;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
    position: relative;
}

    .section-title::after {
        content: '';
        padding: 0 30px;
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 50px;
        height: 3px;
        background: var(--secondary-color);
    }

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mission-content,
    .vision-content {
        flex-direction: column;
    }

    .timeline-item {
        width: 100%;
    }

        .timeline-item:nth-child(odd) .timeline-content::before,
        .timeline-item:nth-child(even) .timeline-content::before {
            left: -40px;
        }

    .goals-timeline::before {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title-new {
        font-size: 2.5rem;
    }

    .hero-subtitle-new {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}
