/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header Section */
.header {
    background: linear-gradient(90deg, #0f2862, #4f5f76);
    color: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Video Section */
#myVideo {
    height: 100vh;
    object-fit: cover;
}

/* Founders Section */
#founders .card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#founders .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

#founders .card-img-top {
    border: 4px solid #ddd;
    padding: 5px;
}

#founders h3 {
    color: #222;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

#founders p {
    font-size: 1rem;
    color: #555;
}

/* Footer Section */
footer a:hover {
    text-decoration: underline;
}
