:root{
    --text-white: #ccc;
    --text-back: #fff;
    --text-primary: #fba2d0;
    --text-secondary: #9289e3
    --text-strong: #6c7ee1;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#login-container{
    position: absolute;
    display: inline-block;
    background-color: white;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#login-form{
    width: 500px;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 75px rgba(0,0,0,0.2);
}


header {
    
    width: 100%;
    height: 600px;
    background-image: 
    linear-gradient(to right, rgb(23 21 167 / 55%), rgb(131 17 144 / 21%)),
    url('./image/hero.jpg'); 
    background-size: cover ;
    background-repeat: no-repeat;
    background-position: center center; /* Căn giữa hình ảnh */
    padding: 2rem 0;
}
.header-container{
    display: flex;
}
nav.navbar{
    display: flex;
    justify-content: space-between;
    padding: 4px 20px;
}

.navbar .image-logo {
    width: 60px;
    height: 60px;  
    border-radius:50%;
    margin-right: 10px
}

.navbar .navbar-brand{
    font-weight: 700;
    display: flex;
    font-size: 2.5rem;
    align-items: center;
    color: #fff;
}

.input-icon-wrapper {
    position: relative;
    width:300px
  }
  
  .input-icon-wrapper input {
    padding-left: 2.2rem; /* Chừa chỗ cho icon */
  }
  
  .input-icon-wrapper .icon-search {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none; /* Không chặn người dùng gõ vào input */
  }
.hero {
    text-align: center;
    padding: 2rem 0;
    margin-top: 70px;
}
.hero .hero__content{
    font-size: 2.5rem;
    background: linear-gradient(45deg, #ff0000, #1a53ff, #ea01ff, #fcfc00);
    background-clip: text;
    color: transparent;
    background-size: 400% 400%;
    animation: gradient 3s ease infinite
}

@keyframes gradient {
    0%{
        background-position: 0%;
    }

    50%{
        background-position:100%
    }

    100%{
        background-position: 0%
    }
}


.hero .hero__des{
    font-size: 5rem;
    color: var(--text-primary);
}

.hero .hero__des .strong{
    color: #6c7ee1;
}

.footer {
    background-color: #f8f9fa;
    padding: 2rem 0;
    
}

#footer .container{
    display: flex;
    justify-content: space-around;
}

.container .footer__title{
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 1.6rem;
    color: #6c7ee1;
    font-weight: 700;
}

.list-unstyled{
    display: flex;
    flex-direction: column;
    margin: auto 0;
}

ul li{
    padding: 2px 0
}

ul li i{
    margin-right: 5px
}

.list-unstyled .phone{
    color: blue
}

.list-unstyled .gmail{
    color: #e1653e
}

.list-unstyled .wsapp{
    color: green
}

.listbank .img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    cursor: pointer;
    transition: 0.3s;
    border: 4px solid transparent;
    border-radius: 10px;
}

.listbank .img:hover {
    border-color: #6c7ee1;
    box-shadow: 0 0 15px rgba(108, 126, 225, 0.6);
}

.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.image-modal .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.image-modal .modal-content {
    padding: 1rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}


.image-modal .modal-content img {
    max-width: 100%;
    max-height: 80vh; 
    object-fit: contain;
    border-radius: 10px;
}


.image-modal .close-btn {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fba2d0;
    border: none;
    font-size: 2rem;
    color: #333;
    border-radius: 50%;
    cursor: pointer;
    padding:0px 12px;
}

#icon-close{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
}

.d-none {
    display: none !important;
}
