/* Reset Body and HTML */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Background Video */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Overlay Effect */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1;
}

/* Main Content */
.main {
    position: relative;
    z-index: 2;
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ensure full height */
    box-sizing: border-box;
}

/* Cards Container */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1500px; /* Center container and limit width */
    margin: 0 auto; /* Center container */
}

/* Card Style */
.card {
    background-color: rgba(27, 26, 26, 0.9); /* Slightly darker background */
    color: white;
    border-radius: 15px;
    padding: 20px;
    width: 280px; /* Increase width for uniformity */
    height: 150px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Slightly stronger shadow */
    transition: transform 0.3s;
}

/* Card Hover Effect */
.card:hover {
    transform: scale(1.05); /* Slight scale on hover */
}

/* Card Icon Style */
.card-icon {
    width: 170px; /* Adjust icon width */
    height: auto; /* Maintain aspect ratio */
    margin-top: 20px;
    margin-bottom: 20px;
}
/* Card Icon Style */
.card-icon-2 {
    width: 170px; /* Adjust icon width */
    height: auto; /* Maintain aspect ratio */
    margin-top: 50px;
    margin-bottom: 20px;
}

/* Remove default link styling */
.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s;
}

.card-link:hover .card {
    transform: scale(1.05); /* Optional hover effect */
}
