/* Page-specific styles for index.html */
/* Add custom homepage styles here */
.hero {
    background-image: url('../../assets/images/hero/banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero .hero-wrapper {
    position: relative;
    z-index: 2;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 76, 129, 0.15);
    z-index: 1;
}

.hero .container,
.hero .hero-wrapper,
.hero .hero-image,
.hero .hero-content {
    position: relative;
    z-index: 2;
}

.hero-image {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 24px;
    align-items: start;
    justify-items: center;
    min-height: 320px;
}

.hero-image .floating-card {
    position: static;
    width: 100%;
    max-width: 320px;
    margin: 0;
    transform: none;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    animation: none;
}

.about-image img
{
    border-radius: 28px;
    height: 100%;
    overflow: hidden;
}