.logo {
    height: 100px;
    width: 100px;
    border-radius: 50%;
}
.slider-img {
    width: 100%;
    height: 570px;
    object-fit: cover;
}
.navbar-nav {
    margin: auto;
    gap: 20px;
}
.login-menu {
    margin-left: auto;
}
.icon-gradient {
    font-size: 20px;
    background: linear-gradient(45deg, #ff5733, #ffcc33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.navbar {
    background: linear-gradient(90deg, #ffffff, #ffffff);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.navbar-nav .nav-link {
    color: #000000 !important;
    transition: color 0.3s ease, background 0.3s ease;
}
.navbar-nav .nav-link:hover {
    color: #b00000 !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}
.login-button {
    display: inline-block;
    padding: 12px 55px;
    border-radius: 50px;
    background: linear-gradient(90deg, #ff0000, #ff6600);
    color: white !important;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.7);
    transition: all 0.3s ease;
}
.login-button:hover {
    border-radius: 50px !important;
    background: linear-gradient(90deg, #8e00b0, #e900f8) !important;
    color: white !important;
    font-weight: bold !important;
    font-size: 16px !important;
    box-shadow: 0 0 15px rgb(64, 4, 62) !important;
    transition: all 0.3s ease !important;
}
.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #e6efff, #ffede3);
}
.card:hover {
    transform: translateY(-10px);
}
.mission-section, .vision-section {
    position: relative;
    background: url('/assets/front/mission.jpg') no-repeat center center/cover;
    padding: 100px 0;
    color: white;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.mission-overlay, .vision-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}
.mission-content, .vision-content {
    position: relative;
    z-index: 1;
}
.show {
    opacity: 1;
    transform: translateY(0);
}
.footer{
    background-color: #000045;
    padding: 10px;
    text-align: center;
    color: white;
}
.heading_light{
    background: linear-gradient(45deg, #ffffff, #e1f9fd);
    font-family: Cambria;
    font-size: 35px;
    font-weight: bold;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.heading{
    background: linear-gradient(45deg, #000e5d, #1f55fc);
    font-family: Cambria;
    font-size: 35px;
    font-weight: bold;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.gradient-icon {
    background: linear-gradient(45deg, #ff5733, #ffcc33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 30px;
}
.card-footer {
    font-size: 1.2rem;
}

.card, .mission-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}
.info-section {
    position: relative;
    background: url('/assets/front/infoPic.jpg') no-repeat center center/cover;
    color: white;
    overflow: hidden;
}
.info-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}
.info-section * {
    position: relative;
    z-index: 1;
}

.gallery-section {
    padding: 50px 0;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}

