/* Animated Gradient Background */
.grady-bg {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(120deg, #d3f8ee, #ffffff, #c5eafb);
    background-size: 300% 300%;
    animation: gradientFlow 15s ease infinite;
    font-family: 'Segoe UI', sans-serif;
    color: #222;
}

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

/* Sections */
.about-section {
    padding: 80px 0;
    text-align: center;
}

.about-section h1 {
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeDown 1s ease-in-out;
}

.about-section p {
    max-width: 700px;
    margin: auto;
    font-size: 1rem;
    animation: fadeUp 1.2s ease-in-out;
    color: #222;
    letter-spacing: 0.5px;
}

.team-section {
    padding: 60px 0;
}

/* Team Cards */
.team-card {
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.card-body h5 {
    font-weight: 600;
    letter-spacing: 1px;
    font-size: x-large;
    margin-bottom: 0;
}

.social-links a {
    color: #00bfa5;
    margin: 0 8px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #0288d1;
}

/* Animations */
@keyframes fadeDown {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.footer-outer {
    margin: 0;
    min-height: auto;
    background: linear-gradient(120deg, #00c6a7, #000000, #222);
    background-size: 300% 300%;
    animation: gradientFlow 15s ease infinite;
    font-family: 'Segoe UI', sans-serif;
    color: #222;
}

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

