/* body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f3;
    color: #333;
} */
/* Additional styles specific to this page */
body {
    font-family: 'Raleway', sans-serif; /* Applying Raleway font to the entire page */
    margin: 0;
    padding: 0;
    height: 100%;
}
header h1 {
    font-family: 'Raleway', sans-serif; /* Applying Raleway font to the header */
    font-weight: 700; /* Bold font weight for header */
    font-size: 36px;
    color: #333;
    text-transform: uppercase; /* Example of text transformation */
}

.container {
    z-index: 1;
    position: relative;
}

header h1 {
    font-size: 36px;
    color: #333;
}

.neumorphic-card {
    position: relative;
    background: #f0f0f3;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 20px 20px 60px #c7ced4, -20px -20px 60px #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; /* Ensure text is hidden initially */
    cursor: pointer; /* Add cursor pointer for interaction */
}

.neumorphic-card:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 30px #c7ced4, -10px -10px 30px #ffffff;
}

.card-img-top {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto 20px;
    border-radius: 20px;
    background-color: #f0f0f3;
    box-shadow: 10px 10px 30px #c7ced4, -10px -10px 30px #ffffff;
}

.card-overlay {
    position: absolute;
    bottom: -100%; /* Initially hide overlay */
    left: 0;
    right: 0;
    background-color: rgba(240, 240, 243, 0.45); /* Semi-transparent background with 45% opacity */
    padding: 10px;
    border-radius: 0 0 20px 20px; /* Rounded bottom corners */
    transition: bottom 0.3s ease; /* Smooth slide-up effect */
    backdrop-filter: blur(5px); /* Blurry effect */

    width: 100%;
    height: 100%;
    overflow-y: auto; /* Enable vertical scrolling */
    max-height: 200px; /* Set a fixed height for the description area */
}

.neumorphic-card:hover .card-overlay {
    bottom: 0; /* Show overlay on hover */
}

.card-title {
    text-align: center;
    margin-top: 20px;
}

.card-title h2 {
    font-size: 20px;
    color: #333;
}

.card-description {
    font-size: 12px; /* Smaller font size */
    color: #555; /* Dark gray color */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Segoe UI font */
}

/* Neumorphic button styles */
.neumorphic-button {
    background: #007bff; /* Best blue color */
    box-shadow: 3px 3px 10px #a0a9b8, -3px -3px 10px #ffffff;
    border: none;
    border-radius: 10px;
    padding: 5px 10px; /* Smaller padding */
    font-size: 0.75em; /* Smaller font size */
    color: white;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.neumorphic-button:hover {
    background: #669dfc;
    transform: translateY(-3px);
    box-shadow: 3px 3px 10px #8a94a4, -3px -3px 10px #ffffff;
}

.box {
    background: linear-gradient(135deg, #8e2de2, #4a00e0, #029ece);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 10px;
}