.bg-ina {
    background-color: #030548 !important;
}
.bg-ina-sec {
    background-color: rgba(240, 240, 240, 0.5) !important;
}
.round-ina {
    border-radius: 2rem !important;
}

.text-justify {
    text-align: justify !important;
}

.vh-75 {
    height: 75vh !important;
}
.vh-50 {
    height: 50vh !important;
}
#parallax-slider {
    position: relative;
    overflow: hidden;
    transition: background-image 1s ease-in-out;
    height: 100vh;
    background-attachment: fixed;
}

#parallax-slider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        0deg,
        rgba(3, 5, 72, 1) 0%,
        rgba(3, 5, 72, 0.5) 25%,
        rgba(3, 5, 72, 0.5) 75%,
        rgba(255, 255, 255, 0) 100%
    ); /* Black with 50% transparency */
    z-index: 1;
}

#parallax-slider > * {
    position: relative;
    z-index: 2; /* Puts content above overlay */
}
.image-container {
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 100px; /* Default height */
}

.image-text {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white; /* Change color if needed */
    font-size: 1.7rem; /* Default font size for desktop */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Optional: adds a shadow to the text for better contrast */
    text-align: center;
}

/* Responsive styles */
@media (max-width: 768px) {
    .image-container {
        height: 80px; /* Adjust height for smaller screens */
    }

    .image-text {
        font-size: 1.4rem; /* Adjust font size for tablets */
    }
}

@media (max-width: 480px) {
    .image-container {
        height: 60px; /* Adjust height for mobile screens */
    }

    .image-text {
        font-size: 0.8rem; /* Adjust font size for mobile */
    }
}

/* custom styles */
.glide__slides {
    display: flex;
}

.glide__slide {
    background-color: #ffffff00;
    color: #fff;
    overflow: hidden;

    height: 50vh;
    margin: 10vh auto;
    display: flex;
    justify-content: center;
    align-items: center;

    transition: all 0.5s ease;
}

.glide__bullets {
    bottom: -1rem;
}
.glide__bullet {
    color: #cd1041;
    border-radius: 0;
    width: 2.5rem;
    height: 0.75rem;
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
}
.glide__bullet:hover,
.glide__bullet:focus {
    border: 2px solid rgb(0, 0, 0);
    background-color: rgb(0, 0, 0);
    color: #333;
}
.glide__bullet--active {
    color: #cd1041;
}

.glide__slide--active {
    background-color: #ffffff00;
    transform: scale(1.075);
    transition: all 0.1s ease;
}

.glide__arrow {
    padding: 0 !important;
    border: none !important;
    background: none !important;
    position: absolute;
    display: block;
    top: 50%;
    z-index: 2;
    opacity: 1;
    transform: translateY(-50%);
}
.avatar-frame {
    width: 150px;
    height: 150px;
    border: 5px solid #3439c4;
    transition: all 0.5s ease-in-out;
}
.avatar-frame:hover {
    transition: all 0.5s ease-in-out;
    transform: translateY(-5px) scale(1.05, 1.05);
    box-shadow: 0px 5px 15px rgba(52, 57, 196, 0.5);
}
.filter-bw {
    transition: all 0.3s ease-in-out;
    filter: grayscale(100%);
}
.filter-bw:hover {
    transition: all 0.3s ease-in-out;
    filter: grayscale(0%);
}
.card-img-top {
    height: 200px;
    object-fit: cover;
}
.hover-shadow {
    transition: all 0.5s ease-in-out;
}
.hover-shadow:hover {
    transition: all 0.5s ease-in-out;
    transform: translate(-5px, -5px);
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.5);
}
