* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #3498db;
}

main {
    margin-top: 80px;
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.animated-text {
    font-size: 3rem;
    color: #2c3e50;
    z-index: 10;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #3498db, #2ecc71, #e74c3c, #f39c12);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    opacity: 0.2;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.vision-container, .mission-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
}

.vision-item, .mission-item {
    flex-basis: calc(50% - 1rem);
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission-item {
    flex-basis: calc(33.33% - 1rem);
}

.vision-item:hover, .mission-item:hover {
    transform: translateY(-5px);
}

h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 1rem 0;
}

@media (max-width: 768px) {
    .vision-item, .mission-item {
        flex-basis: 100%;
    }

    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
    }

    .logo {
        font-size: 1rem;
    }

    nav ul {
        margin-top: 0;
        flex-direction: row;
        gap: 1rem;
    }

    nav ul li {
        margin-left: 0;
        margin-bottom: 0;
    }

    nav ul li a {
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .hero {
        height: 70vh;
    }

    .animated-text {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    p {
        font-size: 0.9rem;
    }

    section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 0.9rem;
    }

    .animated-text {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.8rem;
    }
}

.icp {
    color: #ecf0f1;
    text-decoration: none;
    margin-left: 0.5rem;
}

.icp:hover {
    color: #3498db;
}