﻿.card-custom {
    margin: 10px;
    /* 10px margin */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.h-custom {
    height: calc(100% - 150px);
    padding-top: 20px;
}

@media (max-width: 450px) {
    .h-custom {
        height: 100%;
    }
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-control {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    box-shadow: none;
    padding: 10px 0;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .form-control:focus {
        border-bottom: 1px solid #007bff;
        box-shadow: none;
    }

.form-group label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #007bff;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
}

.form-control:focus ~ label,
.form-control:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 0.75rem;
    color: #007bff;
}

.form-control::placeholder {
    color: transparent;
}

footer {
    background-color: #007bff;
    color: white;
    padding: 20px 0;
    /* margin-top: 50px; */
    text-align: left;
    font-size: 0.875rem;
}

.navbar-nav {
    margin-right: auto;
    margin-left: 70%;
    transform: translateX(-50%);
}

    .navbar-nav .nav-item .nav-link {
        transition: background-color 0.3s, color 0.3s;
    }

        .navbar-nav .nav-item .nav-link:hover {
            background-color: #f8f9fa;
            color: #007bff;
            border-radius: 0.25rem;
        }

.contact-section {
    background-color: #f1f1f1;
    padding: 20px;
    margin-top: 60px;
}

    .contact-section .contact-info {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

        .contact-section .contact-info .section {
            flex: 1;
            margin: 10px;
            min-width: 200px;
        }

@media (min-width: 1200px) {
    .container {
        max-width: 1300px;
    }
}

.hideme {
    display: none;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: transparent; /* Transparent background */
    color: grey; /* Grey icon color */
    background-image: none;
}

    .carousel-control-prev-icon::after,
    .carousel-control-next-icon::after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background-color: grey; /* Grey icon */
        mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23000" viewBox="0 0 8 8"><path d="M4.5 0l-4 4 4 4v-8z"></path></svg>') no-repeat center;
        -webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23000" viewBox="0 0 8 8"><path d="M4.5 0l-4 4 4 4v-8z"></path></svg>') no-repeat center;
    }

    .carousel-control-next-icon::after {
        mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23000" viewBox="0 0 8 8"><path d="M3.5 0l4 4-4 4v-8z"></path></svg>') no-repeat center;
        -webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23000" viewBox="0 0 8 8"><path d="M3.5 0l4 4-4 4v-8z"></path></svg>') no-repeat center;
    }
/*.loginError {
            position: fixed;
            bottom: 20px;*/ /* Adjust as needed */
/*left: 60%;
            transform: translateX(100%);
            z-index: 1000;*/ /* Ensure it appears above other content */
/*}*/
.resetBtn-disabled {
    pointer-events: none;
    opacity: 0.5;
}
