@import "../../fonts/Cairo/stylesheet.css";

* {
    font-family: Cairo,sans-serif;
}


:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --warning-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --info-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --accent-gradient: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
}

body {
    background-repeat: no-repeat;
    background: #fdfdfd;
    overflow-x: hidden;
}


/*header*/



.header-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: flex ;
    align-items: center;
    justify-content: center;
}



.header-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    background-size: 300% 300%;
    animation: gradientShift 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.top-bar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.language-toggle .btn {
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    padding: 0.5rem 1rem;
}

.language-toggle .btn-primary {
    background: var(--primary-gradient);
    border: none;
}

.language-toggle .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.language-toggle .btn-outline-secondary {
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.calligraphy-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.nav-btn {
    background:var(--primary-gradient);
    border: none;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    margin: 0.25rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.logo-container {
    position: relative;
}

.logo {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    animation: float 3s ease-in-out infinite;
    font-size: 2rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.search-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
    margin-top: 30px;
}

.search-container:focus-within {
    border-color: #667eea;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.search-input {
    border: none;
    outline: none;
    background: transparent;
    color: #333;
    height: 65px;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background: var(--primary-gradient);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 20px;
    padding: 0 40px;
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    opacity: 0.1;
    animation: floatAround 20s linear infinite;
}

.shape-1 {
    top: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
}

.shape-2 {
    top: 60%;
    right: 15%;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #45b7d1, #96ceb4);
    border-radius: 30%;
    animation-delay: -5s;
}

.shape-3 {
    bottom: 30%;
    left: 20%;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #feca57, #ff9ff3);
    border-radius: 20%;
    animation-delay: -10s;
}

@keyframes floatAround {
    0% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(0px) rotate(180deg); }
    75% { transform: translateY(20px) rotate(270deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

/* Bootstrap Custom Navbar */
.navbar-custom {
    padding: 2rem 0;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.offcanvas-custom {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 1rem 0;
    }

    .nav-btn {
        width: 100%;
        margin: 0.5rem 0;
        text-align: center;
    }

    .logo {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 767.98px) {
    .calligraphy-text {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .logo {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .search-container {
        margin-top: 1rem;
    }
}

@media (max-width: 575.98px) {
    .top-bar {
        text-align: center;
    }

    .language-toggle {
        margin-bottom: 1rem;
    }

    .search-container .input-group {
        flex-direction: column;
    }

    .search-input {
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .search-btn {
        width: 100%;
    }
}




.alkafeel{
    position: absolute;
    z-index: -1;
    opacity: 0.05;
}
.typeSearch
{
    width: 120px;
    border: 1px solid #e1e1e1;
    padding: 0 8px;
    margin-left: 5px;
}
/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
/*--------*/



.marquee-container {
    position: relative;
    overflow: hidden;
    padding: 18px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.section-title span {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(266.43deg, #00689D 0.87%, #399ED1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.swiper-container {
    width: 100%;
    height: auto;
    margin: 2rem 0;
}

.swiper-wrapper {
    transition-timing-function: linear !important;
}

.employee-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
}

.employee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    background-size: 300% 300%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.employee-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.employee-card:hover::after {
    opacity: 1;
}

.employee-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.employee-avatar {
    width: 100%;
    height: 250px;
    border-radius: 5px;
    margin: 0 auto 1.5rem;
    display: flex  ;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    background-size: 79%;
    background-repeat: no-repeat;
    background-position: center;
}

.employee-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.employee-info {
    text-align: center;
    flex-grow: 1;
}

.employee-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* Background decorations */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    opacity: 0.1;
    animation: floatIndex 20s linear infinite;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 120px;
    height: 120px;
    background: #ff6b6b;
    border-radius: 50%;
}

.shape-2 {
    top: 60%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: #4ecdc4;
    border-radius: 30%;
    animation-delay: -8s;
}

.shape-3 {
    bottom: 20%;
    left: 20%;
    width: 100px;
    height: 100px;
    background: #45b7d1;
    border-radius: 20%;
    animation-delay: -15s;
}

.shape-4 {
    top: 30%;
    right: 30%;
    width: 60px;
    height: 60px;
    background: #96ceb4;
    border-radius: 40%;
    animation-delay: -5s;
}

.shape-5 {
    bottom: 40%;
    right: 5%;
    width: 90px;
    height: 90px;
    background: #feca57;
    border-radius: 25%;
    animation-delay: -12s;
}

@keyframes floatIndex {
    0% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(90deg); }
    50% { transform: translateY(0px) rotate(180deg); }
    75% { transform: translateY(30px) rotate(270deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

/* Controls */
.marquee-controls {
    text-align: center;
    margin-top: 2rem;
}

.control-btn {
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    margin: 0 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6c757d;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.control-btn.active {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title span {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .employee-card {
        height: 350px;
        padding: 1.5rem;
    }

    .employee-avatar {

        font-size: 2rem;
    }

    .employee-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {


    .section-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .employee-card {
        height: 320px;
        padding: 1rem;
    }

    .employee-avatar {

        font-size: 1.8rem;
    }
}

/* Swiper custom styles */
.swiper-slide {
    width: 320px;
    height: auto;
}

.swiper-wrapper {
    align-items: center;
}

/* Loading animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}





.tabs-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 0 45px;
}

.tabs-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    background-size: 300% 300%;
    animation: gradientShift 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Swiper Navigation Styles */
.swiper-nav-container {
    padding: 1.5rem;
    position: relative;
}

.nav-swiper-map {
    padding: 0.5rem 40px;
}

.nav-swiper-map .swiper-slide {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link-swiper {
    border-radius: 20px;
    padding: 1rem 2rem;
    font-weight: 600;
    color: #6c757d;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 140px;
    justify-content: center;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    white-space: nowrap;
    margin: 0 0.4rem;
}

.nav-link-swiper img {
    width: 26px;
}


.nav-link-swiper .badge {
    background: #75b798;
    font-size: 16px;
}

.nav-link-swiper.active .badge {
    background: #fff;
    color: #000;
}

.nav-link-swiper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.nav-link-swiper:hover::before {
    left: 100%;
}

.nav-link-swiper:hover:not(.active) {
    transform: translateY(-3px);
    color: #495057;
    border-color: rgba(102, 126, 234, 0.2);
}

.nav-link-swiper.active {
    color: white;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    background: var(--primary-gradient);
}

/* Individual tab colors */
.nav-link-swiper[data-target="dashboard"].active {
    background: var(--primary-gradient);
    color: #fff;
}

.nav-link-swiper[data-target="profile"].active {
    background: var(--primary-gradient);
    color: #fff;
}

.nav-link-swiper[data-target="messages"].active {
    background: var(--primary-gradient);
    color: #fff;
}

.nav-link-swiper[data-target="settings"].active {
    background: var(--primary-gradient);
    color: #fff;
}

.nav-link-swiper[data-target="help"].active {
    background: var(--primary-gradient);
    color: #fff;
}

/* Swiper Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-top: -24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
    font-weight: 700;
    color: #667eea;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}



/* Tab Content Styles */
.tab-content-custom {
    min-height: 500px;
    position: relative;
}

.tab-pane-custom {
    animation: fadeInUp 0.6s ease-out;

    display: none;
}

.tab-pane-custom.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-card {
    background: white;
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-left-color: #667eea;
    border-right-color: #667eea;
}

.content-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-card p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1rem;
}



/* Navigation indicators */
.nav-indicator {
    text-align: center;
    margin-top: 1rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.nav-indicator i {
    animation: bounce 2s infinite;
    margin: 0 0.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(0); }
    40% { transform: translateX(-5px); }
    60% { transform: translateX(5px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .swiper-nav-container {
        padding: 1rem;
    }

    .nav-link-swiper {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: 120px;
    }



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

@media (max-width: 576px) {
    .tabs-wrapper {
        margin: 1rem;
        border-radius: 20px;
    }

    .nav-link-swiper {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        min-width: 100px;
    }


}

/* Touch feedback */
.nav-link-swiper:active {
    transform: scale(0.95);
}

/* Loading state */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}








/*modal*/


#libraryModal .btn-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

#libraryModal .btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

#libraryModal  .modal-header-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px 15px 0 0;
    border: none;
}

#libraryModal  .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

#libraryModal  .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

#libraryModal  .btn-close:hover {
    opacity: 1;
}

#libraryModal   .modal-title {
    font-size: 1.6rem;
    text-align: center;
    width: 100%;
}

#libraryModal  .modal-subtitle {
    text-align: center;
    opacity: 0.9;
    font-size: 1rem;
    margin-top: 5px;
}

#libraryModal  .info-card {
    background: #f8f9fa;
    border-radius: 15px;
    border-right: 4px solid #667eea;
    transition: all 0.3s ease;
    height: 100%;
}

#libraryModal .info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#libraryModal  .info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#libraryModal  .info-label {
    font-weight: bold;
    color: #667eea;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

#libraryModal   .info-value {
    color: #333;
    line-height: 1.6;
}

#libraryModal  .description-card {
    background: white;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

#libraryModal  .description-title {
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

#libraryModal .description-text {
    color: #555;
    line-height: 1.7;
    text-align: justify;
}

#libraryModal .btn-primary-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    color: #fff;
}

#libraryModal  .btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

#libraryModal  .btn-secondary-custom {
    background: #e9ecef;
    color: #666;
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
}

#libraryModal  .btn-secondary-custom:hover {
    background: #dee2e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    #libraryModal   .modal-dialog {
        margin: 10px;
    }

    #libraryModal   .info-icon {
        font-size: 2rem;
    }
}

.leaflet-control-attribution.leaflet-control
{
    display: none;
}
div#mapLeaflet {
    border-radius: 15px;
}
/*----------*/





.contact-container {

    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.contact-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 40px;
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0.3;
}

.contact-info h2 {
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    backdrop-filter: blur(10px);
}

.contact-form {
    padding: 60px 40px;
}

.contact-container .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-container   .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    background: white;
}

.contact-container  .form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.contact-container   .btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 16px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.contact-container  .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

.contact-container    .social-links {
    margin-top: 40px;
}

.contact-container  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    color: white;
    border-radius: 50%;
     text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-container .social-links a:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    color: white;
}

.contact-container  .form-floating label {
    padding-right: 20px;
}

.contact-container  .input-group-text {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-left: none;
    color: #667eea;
}

.contact-container   .form-control.with-icon {
    border-left: none;
}

@media (max-width: 768px) {
    .contact-info, .contact-form {
        padding: 40px 30px;
    }

    .contact-container {
        margin: 10px;
        border-radius: 15px;
    }
}




.errorForm
{
    color: red;
}

.borderError
{
    border: 1px solid red !important;
}

.formField
{
    border: 1.9px solid #C9CFD4;
}


@media  (max-width:991px ) {

    .descriptionSlider
    {
        display: none;
    }
}



.date-section {
    background: rgb(109 116 221 / 4%);
    border: 1px solid rgb(221 220 220 / 30%);
    border-radius: 30px;
    padding: 0.3rem 1rem;
    color: #2f2f2f;
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.date-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 2s ease;
}

.date-section:hover::before {
    left: 100%;
}

.date-section .date-text {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.date-icon {
    font-size: 1.2rem;
    opacity: 0.9;
}




.footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }
}
