﻿body {
}

/* Hero Section style that I Added */
.jumbotron {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    /*background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/hero-bg.jpg');*/
    background-size: cover;
    background-position: center;
    height: 35vh;
}

/* Card Hover Effects */
.hover-effect:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
}

/* Icon Styling */
.icon i {
    transition: transform 0.2s ease-in-out;
}

.hover-effect:hover .icon i {
    transform: scale(1.1);
}

/* Smooth Shadow on Buttons */
.btn {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease-in-out;
}

    .btn:hover {
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }
.jumbotron {
    position: relative;
    height: 370px; /* Reduce the height of the image container */
    overflow: hidden; /* Ensures the content stays within the bounds */
    text-align: center;
    margin-top: 0px; /* Reduce space above the text */
    margin-bottom: 0px;
}

    .jumbotron img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures the image fits the container proportionally */
        margin-top: 1px; /* Reduce space above the text */
        margin-bottom: 1px;
    }

.position-absolute {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.top-left h1 {
    font-size: 1rem;
    /*background: rgba(0, 0, 0, 0.6);  Semi-transparent background for text*/ 
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.text-center {
    margin-top: 1px; /* Reduce space above the text */
    margin-bottom: 1px; /* Reduce space below the text */
}
