:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent-color: #d4af37; /* Gold accent for premium feel */
    --accent-hover: #fcd34d;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-theme="light"] {
    --bg-color: #f0f2f5;
    --text-primary: #121212;
    --text-secondary: #4a4a4a;
    --accent-color: #b8860b;
    --accent-hover: #d4af37;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: 0.1s;
}

/* Background Shapes */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    opacity: 0.5;
    animation: float 20s infinite ease-in-out alternate;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(212, 175, 55, 0.15);
    top: -10%;
    left: -10%;
}

.shape-2 {
    width: 600px;
    height: 600px;
    background: rgba(59, 130, 246, 0.1);
    top: 40%;
    right: -20%;
    animation-delay: -5s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: rgba(212, 175, 55, 0.1);
    bottom: -10%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: rgba(184, 134, 11, 0.15);
    top: 20%;
    right: 10%;
    animation-delay: -3s;
}

.shape-5 {
    width: 450px;
    height: 450px;
    background: rgba(43, 43, 43, 0.3);
    bottom: 20%;
    left: -5%;
    animation-delay: -7s;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, 50px) rotate(10deg); }
}

/* Glassmorphism utility */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Typography & Utils */
h1, h2, h3 {
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0; height: 100%;
    background: rgba(255,255,255,0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn.primary {
    background: var(--accent-color);
    color: #000;
    border: 1px solid var(--accent-color);
}

.btn.primary:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn.secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn.secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-hover);
}

.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.line {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 5%;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: var(--transition);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.theme-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 1rem;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.theme-btn:hover {
    color: var(--accent-color);
}

.btn-contact {
    border: 1px solid var(--accent-color);
    padding: 8px 24px !important;
    border-radius: 20px;
    color: var(--accent-color) !important;
}

.btn-contact:hover {
    background: var(--accent-color);
    color: #000 !important;
}

.menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.title span {
    color: var(--accent-color);
}

.description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-wrapper {
    position: relative;
    padding: 10px;
    border-radius: 30px;
    width: 100%;
    max-width: 500px;
}

.image-wrapper img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

.floating-badge {
    position: absolute;
    background: rgba(25, 25, 25, 0.8);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    animation: float 4s infinite ease-in-out alternate;
}

.floating-badge i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.badge-1 {
    top: 10%;
    left: -10%;
}

.badge-2 {
    top: 10%;
    right: -10%;
    animation-delay: -1s;
}

.badge-3 {
    bottom: 10%;
    right: -10%;
    animation-delay: -2s;
}

.badge-4 {
    bottom: 10%;
    left: -10%;
    animation-delay: -3s;
}

/* Common Section padding */
section:not(.hero) {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* About Section */
.about-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-stats {
    flex: 1;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text {
    flex: 1;
}

.highlight-text {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Achievements */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    padding: 2.5rem;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-secondary);
}

/* Books Section */
.books-slider {
    width: 100%;
    padding: 2rem 0;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.book-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    height: 100%;
    width: 100%;
    cursor: pointer;
}

.book-image {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.book-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.book-card:hover .book-image img {
    transform: scale(1.05) translateY(-10px);
}

.book-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
}

.book-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.author {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.card-synopsis {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.6;
}

.book-info .btn {
    margin-top: auto;
    align-self: center;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: var(--text-secondary);
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
}

/* Book Details Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.show-modal {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    max-width: 900px;
    width: 90%;
    padding: 3rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    transform: translateY(50px) scale(0.95);
    transition: transform 0.4s ease;
}

.modal.show-modal .modal-content {
    transform: translateY(0) scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.modal-image {
    flex: 0 0 300px;
}

.modal-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.modal-details {
    flex: 1;
}

.modal-details h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.modal-line {
    margin: 1.5rem 0;
    width: 40px;
    height: 2px;
}

.synopsis {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    font-size: 1.2rem;
    font-weight: 500;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Contact Section */
.contact-container {
    display: flex;
    padding: 4rem;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

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

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-5px);
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255,255,255,0.08);
}

.btn-submit {
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .title {
        font-size: 3.5rem;
    }
    
    .description {
        margin: 0 auto 2rem;
    }

    .badge-1 { left: 0; top: 5%; }
    .badge-2 { right: 0; top: 5%; }
    .badge-3 { right: 0; bottom: 5%; }
    .badge-4 { left: 0; bottom: 5%; }

    .about-container {
        flex-direction: column;
    }

    .modal-body {
        flex-direction: column;
        text-align: center;
    }

    .modal-line {
        margin: 1.5rem auto;
    }

    .modal-content {
        padding: 2rem;
        max-height: 90vh;
        overflow-y: auto;
    }

    .contact-container {
        flex-direction: column;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5,5,5,0.95);
        flex-direction: column;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }
    
    .nav-links.active {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

    .title { font-size: 2.8rem; }
    .about-stats { grid-template-columns: 1fr; padding: 2rem; }
}

/* Floating Contact Widget */
.floating-contact {
    position: fixed;
    bottom: 110px;
    right: 30px;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: #000;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.contact-icon:hover {
    transform: scale(1.1);
}

.contact-card {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    padding: 1.5rem;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.contact-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.contact-card-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}

.contact-card-header h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.contact-card-header p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.contact-card-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    cursor: pointer;
    padding: 5px 10px;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--accent-color);
    font-weight: 500;
    border-bottom: 2px solid var(--accent-color);
}

.contact-tab-content {
    display: none;
}

.contact-tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.contact-tab-content p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-tab-content p i {
    color: var(--accent-color);
}

.contact-common {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #fff;
    padding: 8px 15px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    transition: var(--transition);
}

.contact-link:hover {
    background: rgba(255,255,255,0.1);
}

.contact-link.whatsapp {
    background: #25D366;
    color: #fff;
}

.contact-link.whatsapp:hover {
    background: #128C7E;
}

.gallery-item {
    cursor: pointer;
}

/* Chatbot Widget */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #000;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
}

.chatbot-toggle:hover {
    transform: scale(1.1);
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    transform-origin: bottom right;
}

.chatbot-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chatbot-header {
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

[data-theme="light"] .chatbot-header {
    background: rgba(255, 255, 255, 0.5);
}

.chatbot-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chatbot-profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.chatbot-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.online-status {
    font-size: 0.8rem;
    color: #4ade80;
}

.close-chat {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-chat:hover {
    color: var(--accent-color);
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.message.bot {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.message.user {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.chatbot-input {
    padding: 15px 20px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    gap: 10px;
}

.chatbot-input input {
    flex: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 10px 15px;
    border-radius: 20px;
    color: var(--text-primary);
    outline: none;
}

.chatbot-input button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-color);
    border: none;
    color: #000;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.chatbot-input button:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .chatbot-window {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        z-index: 1001;
    }
}
