/* Main layout styles */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: none;
    z-index: -1;
}

.main-content {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.section {
    width: 100%;
}

.container {
    padding: 2rem;
}

h1.title {
    font-size: 4rem;
    padding-bottom: 8rem;
    white-space: nowrap;
}

.title {
    color: white;
}

/* Footer styles */
.footer {
    flex-shrink: 0;
    padding: 2rem 1.5rem;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

/* Card styles */
.card {
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
    height: 100%;
    background-color: transparent;

}
.card-content {
    padding: 2rem;
}

/* Card image styles */
.card-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px; /* Fixed height for image container */
}

.card-icon {
    min-height: 115px;
    width: 300px; /* Fixed width for all images */
    object-fit: contain;
}

/* Convert specific images to white */
[src="images/bs.svg"], [src="images/twh.png"] {
    filter: brightness(0) invert(1); /* This converts images to white */
}

/* Icon colors */
.fa-rocket {
    color: #3273dc;
}

.fa-lock {
    color: #23d160;
}

.fa-user-friends {
    color: #ff3860;
}

/* Social media icons */
.footer a {
    color: #4a4a4a;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #3273dc;
}

/* Contact information spacing */
.footer p {
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Responsive adjustments for different screen sizes */
@media screen and (min-width: 1408px) {
    /* Full HD and larger screens */
    .is-one-third-fullhd {
        width: 33.3333% !important;
    }
}

/* Responsive adjustments for different screen sizes */
@media screen and (max-width: 450px) {

    h1.title {
        font-size: 3rem;
        padding-bottom: 8rem;
        white-space: nowrap;
    }
}

/* Add this to your existing CSS */
.image-link {
    display: inline-block;
}

.image-link:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
