* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Hero Section Styling */
.hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video covers the full area */
}

/* Centering Hero Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    text-align: center;
}

/* Make hero content text brighter */
.hero-content h1 {
    color: #ffffff; /* Pure white */
    font-weight: bold; /* Make text more prominent */
    text-shadow: 3px 3px 6px rgba(255, 255, 255, 0.8); /* Bright glow effect */
}

.hero-content p {
    color: #f8f9fa; /* Light grayish white */
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.7); /* Glow effect */
}


/* Card Styling */
.card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

/* Scale the card slightly on hover */
.card:hover {
    transform: scale(1.05);
}

/* Centering button inside card body */
.card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Initially hide the button */
.card .btn {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    margin-top: 10px; /* Add spacing above the button */
}

/* Show the button smoothly on hover */
.card:hover .btn {
    opacity: 1;
    transform: translateY(0);
}
