/* home.css - styles for home.html */
/* From Uiverse.io by adamgiebl */ 
button {
    font-size: 18px;
    display: inline-block;
    outline: 0;
    border: 0;
    cursor: pointer;
    will-change: box-shadow,transform;
    background: radial-gradient( 100% 100% at 100% 0%, #89E5FF 0%, #5468FF 100% );
    box-shadow: 0px 0.01em 0.01em rgb(45 35 66 / 40%), 0px 0.3em 0.7em -0.01em rgb(45 35 66 / 30%), inset 0px -0.01em 0px rgb(58 65 111 / 50%);
    padding: 0 2em;
    border-radius: 0.3em;
    color: #fff;
    height: 2.6em;
    text-shadow: 0 1px 0 rgb(0 0 0 / 40%);
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

button:hover {
    box-shadow: 0px 0.1em 0.2em rgb(45 35 66 / 40%), 0px 0.4em 0.7em -0.1em rgb(45 35 66 / 30%), inset 0px -0.1em 0px #3c4fe0;
    transform: translateY(-0.1em);
}

button:active {
    box-shadow: inset 0px 0.1em 0.6em #3c4fe0;
    transform: translateY(0em);
}
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    color: #fff;
    overflow: hidden;
    margin-bottom: 3rem;
}
.hero video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.45;
}
.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,0.35);
    border-radius: 18px;
    padding: 3.5rem 3rem;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(44,62,80,0.12);
    text-align: center;
}
.front-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #fff;
    text-shadow: 0 2px 8px #1a237e44;
}
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.catchphrase {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #4ecdc4;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px #1a237e44;
}
.welcome-message {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #fff;
    line-height: 1.7;
}

.welcome-message span {
    color: #4ecdc4 !important;
}
}
.image-cards-section {
    background: #f8f9fa;
    padding: 4rem 0 2rem 0;
}
.image-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.08);
    overflow: hidden;
    transition: transform 0.2s;
    margin-bottom: 2rem;
}
.image-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(44,62,80,0.15);
}
.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
}
.image-card-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1a237e;
    margin-top: 1rem;
    padding: 0.5rem 1rem 0.25rem 1rem;
}
.image-card-desc {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    padding: 0 1rem 1rem 1rem;
}
@media (max-width: 600px) {
    .hero-content { padding: 1.5rem 0.5rem; }
    .front-title { font-size: 2rem; }
    .catchphrase { font-size: 1.1rem; }
    .image-card img { height: 140px; }
}
