<style>
       /* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f5f5f5;
    overflow-x: hidden;
}

/* Banner Section */
.banner {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url("images/BackgroundImage1.jpg") no-repeat center center/cover;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

/* Title Styling */
.title {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    animation: fadeInDown 1s ease-out;
}

.title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4776E6, #8E54E9);
    border-radius: 2px;
}

/* Card Container */
.d-flex {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

/* Card Styling */
.card {
    width: 240px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    margin: 0 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card a {
    text-decoration: none;
    color: #333;
    display: block;
    height: 100%;
}

/* Card Image */
.card-img-top {
    padding: 25px;
    height: 130px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

/* Card Body */
.card-body {
    padding: 20px 15px;
    background: linear-gradient(to right, #4776E6, #8E54E9);
}

/* Card Title */
.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    margin: 0;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .d-flex {
        flex-direction: column;
        gap: 30px !important;
    }
    
    .card {
        width: 220px;
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .card {
        width: 200px;
    }
}

    </style>