@font-face {
    font-family: 'NotoKufiArabic';
    src: url('../font/NotoKufiArabic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}


/* ===== toggle switch ===== */

.toggle-container {
    position: absolute;
    width: 30px;
    height: 70px;
    background: #3F372B;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
    z-index: 10000;
    top: 20%;
    inset-inline-start: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.toggle-container.mainPage {
    top: -147%;
}


/* Sun Section */

.sun-section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(255, 200, 0, 0.3);
}

.sun-icon {
    width: 22px;
    height: 22px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    filter: drop-shadow(0 0 8px rgba(255, 200, 0, 0.4));
}

.sun-icon svg {
    width: 35px;
    height: 35px;
    stroke: white;
    stroke-width: 2;
    fill: none;
    filter: drop-shadow(0 0 4px rgba(255, 200, 0, 0.6));
    transition: all 0.3s ease;
}


/* Moon Section */

.moon-section {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(150, 150, 255, 0.2);
}

.moon-icon {
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    filter: drop-shadow(0 0 8px rgba(150, 150, 255, 0.3));
}

.moon-icon svg {
    width: 35px;
    height: 35px;
    stroke: white;
    stroke-width: 2;
    fill: none;
    filter: drop-shadow(0 0 4px rgba(150, 150, 255, 0.4));
    transition: all 0.3s ease;
}


/* Professional Preloader */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s cubic-bezier(0.77, 0, 0.175, 1), transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

ol,
ul {
    padding-left: 0;
}

::selection {
    background-color: var(--color-tab-active);
    color: white;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
}

.loader-content {
    text-align: center;
    position: relative;
}

.loader-logo {
    width: 120px;
    height: auto;
    animation: breathe 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(63, 55, 43, 0.1));
}

.dark-mode .loader-logo {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.05));
}

.loader-line {
    width: 60px;
    height: 2px;
    background: var(--color-tab-active);
    margin: 20px auto 0;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    opacity: 0.6;
}

.loader-line::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-header);
    animation: slide-line 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@keyframes slide-line {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}


/* Preloader Clouds */

.clouds-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
}

.cloud {
    position: absolute;
    background: #dcd8d0;
    width: 200px;
    height: 60px;
    border-radius: 200px;
    filter: blur(5px);
    opacity: .5 !important;
    animation: cloud-move linear infinite;
}

.cloud::after,
.cloud::before {
    content: '';
    position: absolute;
    background: inherit;
    border-radius: 50%;
}

.cloud::after {
    width: 100px;
    height: 100px;
    top: -50px;
    left: 30px;
}

.cloud::before {
    width: 120px;
    height: 120px;
    top: -70px;
    right: 30px;
}

.cloud-1 {
    top: 20%;
    left: -200px;
    opacity: 0.8;
    transform: scale(1);
    animation-duration: 40s;
}

.cloud-2 {
    top: 50%;
    left: -300px;
    opacity: 0.5;
    transform: scale(1.5);
    animation-duration: 60s;
    animation-delay: -15s;
}

.cloud-3 {
    top: 70%;
    left: -250px;
    opacity: 0.7;
    transform: scale(0.8);
    animation-duration: 50s;
    animation-delay: -5s;
}

.dark-mode .cloud {
    background: #6D6356;
    opacity: 0.3;
}

@keyframes cloud-move {
    from {
        transform: translateX(-200%) translateZ(0);
    }

    to {
        transform: translateX(120vw) translateZ(0);
    }
}

:root {
    /* main color */
    --main-color: #F2EEE7;
    --color-header: #3F372B;
    --color-tab-active: #463C30;
    /* hero color */
    --color-nav: #463C30;
    --color-lib-title: #463C30;
    --color-hero-pragrap: #463C30E5;
    --color-btn-hero: #3F372B;
    /* Options */
    --bg-card: #DCD8D0;
    --bg-card-hover: #3F372B;
    --border-card-hover: #F1EEE7;
    --color-title-card: #3F372B;
    --bg-image-section: #CBC5BC;
    --color-icon: #463C30;
    --color-border-card: #3F372B;
    /* ABOUT */
    --color-about-pragrap: #463C30E5;
    --color-about-border: #463C30;
    --color-text-infoo: #3F372B;
    /* Library */
    --color-top-swiper: #3F372B;
    --bg-top-swiper: #3F372B0D;
    /* laporatory */
    --bg-laporatory: #D8D3CA;
    --bg-laporatory-hover: #F1EEE7;
    --border-laporatory-hover: #463C30;
    --color-date-laboratory: #463C30;
    --color-pragrap-laboratory: #463C30;
    --color-icon-laboratory: #3F372B;
    --bg-icon-laboratory: #3F372B0D;
    /* lib */
    --color-text-lib: #463C30E5;
    --color-after: #3f372b;
    --hover-lib-cart: #D8D3CA;
    --date-cart: #463C30;
    --p-cart: #463C30;
    --color-btn-cart: #463C3080;
    --color-cart-button: #F1EEE7;
    --bg-cart-button: #463C3080;
    /* footer */
    --color-icon: #5E574D;
    --bg-icon: #E0DBD3;
    --color-icon-hover: #ffffff;
    --bg-icon-hover: #463C30;
    --border-footer-icon: 1px solid #5E574D;
    --border-footer-icon-hover: 1px solid transparent;
    /* Contact Page */
    --bg-contact-form: #F1EEE7;
    --bg-contact-input: #D8D3CA;
    --color-contact-title: #3F372B;
    --color-contact-desc: #463C30E5;
    --color-contact-info: #5E574D;
    --color-contact-form-title: #463C30;
    --color-contact-label: #463C30;
    --color-contact-input-text: #827B70;
    --color-contact-placeholder: #737D7C;
    --color-contact-shadow: #948B7D12;
    --bg-contact-btn-hover: #2a2a2a;
    --bg-contact-social-hover: #5E574D;
    /* Hero Paragraph Read More */
    --color-read-more: var(--color-tab-active);
    /* Article / Guide Page */
    --bg-article: #FDFCFB;
    --color-article-title: #93897C;
    --color-article-text: #555555;
    --bg-quote: #DCD8D0;
    --border-quote: #93897C;
    --bg-related-item: #CBC5BC;
}

:root.dark-mode {
    /* main color */
    --main-color: #463C30;
    --color-header: #F2EEE7;
    --color-tab-active: #8D817333;
    /* hero color */
    --color-nav: white;
    --color-lib-title: #DCD8D0;
    --color-hero-pragrap: #A09A90CC;
    --color-btn-hero: #DCD8D0;
    /* Options */
    --bg-card: #DCD8D00A;
    --bg-card-hover: #8e857775;
    --border-card-hover: #4C4236;
    --color-title-card: #DCD8D0;
    --bg-image-section: #CBC5BC1A;
    --color-icon: #DBD7CF;
    --color-border-card: #3F372B;
    /* ABOUT */
    --color-about-pragrap: #DCD8D0;
    --color-about-border: #DCD8D0;
    --color-text-infoo: #DCD8D0;
    /* Library */
    --color-top-swiper: #DCD8D0;
    --bg-top-swiper: #3F372B0D;
    /* laporatory */
    --bg-laporatory: #5A5145;
    --bg-laporatory-hover: #544A3F;
    --border-laporatory-hover: #DCD8D0;
    --color-date-laboratory: #DCD8D0;
    --color-pragrap-laboratory: #DCD8D0;
    --color-icon-laboratory: #DCD8D0;
    --bg-icon-laboratory: #3F372B33;
    /* lib */
    --color-text-lib: #A09A90;
    --color-after: #DCD8D0;
    --hover-lib-cart: #4C4236;
    --date-cart: #DCD8D0;
    --p-cart: #DCD8D0;
    --color-btn-cart: #F1EEE74D;
    --color-cart-button: #F1EEE74D;
    --bg-cart-button: #DCD8D0;
    /* footer */
    --color-icon: #A09A90;
    --bg-icon: #544B3F;
    --color-icon-hover: #584F43;
    --bg-icon-hover: #A09A90;
    --border-footer-icon: 1px solid #A09A90;
    --border-footer-icon-hover: 1px solid transparent;
    /* Contact Page Dark Mode */
    --bg-contact-form: #463C30;
    --bg-contact-input: rgba(220, 216, 208, 0.1);
    --color-contact-title: #DCD8D0;
    --color-contact-desc: #A09A90;
    --color-contact-info: #DCD8D0;
    --color-contact-form-title: #DCD8D0;
    --color-contact-label: #A09A90;
    --color-contact-input-text: #DCD8D0;
    --color-contact-placeholder: rgba(220, 216, 208, 0.4);
    --color-contact-shadow: rgba(0, 0, 0, 0.3);
    --bg-contact-btn-hover: #584F43;
    --bg-contact-social-hover: #A09A90;
    /* Article / Guide Page Dark Mode */
    --bg-article: #463C30;
    --color-article-title: #DCD8D0;
    --color-article-text: #A09A90;
    --bg-quote: rgba(220, 216, 208, 0.1);
    --border-quote: #DCD8D0;
    --bg-related-item: rgba(220, 216, 208, 0.05);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

body {
    font-family: 'NotoKufiArabic', sans-serif !important;
    background: var(--main-color) !important;
    overflow-x: hidden !important;
}



a {
    text-decoration: none !important;
    color: inherit !important;
}

.swiper-link,
.lib-cart,
.cart {
    color: inherit !important;
    text-decoration: none !important;
    display: block;
}

.pagination {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.pagination a,
.pagination button,
.pagination span {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}


/*---------------------------------------*/


/* Previous/Next buttons */

.pagination .prev,
.pagination .next {
    background-color: #D8D3CA;
    color: #463C30;
    font-size: 16px;
}

.pagination .prev:hover,
.pagination .next:hover {
    background-color: #c0c0c0;
}


/* Regular page numbers */

.pagination .page {
    background-color: #D8D3CA;
    color: #463C30;
}

.pagination .page:hover {
    background-color: #c0c0c0;
}


/* Active page */

.dark-mode .pagination .page.active {
    background-color: #8D817333;
    color: #ffffff;
}

.pagination .page.active {
    background-color: #463C30;
    color: #ffffff !important;
}

.pagination .page.active:hover {
    background-color: #3a3a3a;
}


/* Dots */

.pagination .dots {
    background-color: transparent;
    color: #999;
    cursor: default;
}

.pagination .dots:hover {
    background-color: transparent;
}


/* Responsive pagination */

@media (max-width: 768px) {
    .pagination {
        gap: 5px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .pagination a,
    .pagination button,
    .pagination span {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }

    .pagination .prev,
    .pagination .next {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .pagination {
        gap: 3px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .pagination a,
    .pagination button,
    .pagination span {
        width: 35px;
        height: 35px;
        font-size: 11px;
    }

    .pagination .prev,
    .pagination .next {
        font-size: 12px;
    }
}

.navbar {
    position: absolute !important;
    width: 100%;
    z-index: 888;
    top: 0;
    background: transparent !important;
}

.navbar::before {
    content: "";
    position: absolute;
    top: 0;
    pointer-events: none;
    left: 0;
    width: 100%;
    height: 290px;
    background: url(https://beta.puiux.org/hekma/wp-content/uploads/2026/01/overCopy.webp);
    z-index: -1
}

.navbar .container {
    display: inline !important;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul.navbar-nav {
    width: 100%;
    justify-content: space-between;
}

.navbar-nav a {
    color: var(--color-nav);
    font-size: 14px;
    font-weight: 500;
}

a.navbar-brand {
    padding: 0 70px;
}

.navbar-brand {
    margin: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-brand img {
    width: 66px;
    height: 73px;
}


/* Ù…ÙˆØ¨Ø§ÙŠÙ„ Ø§Ù„Ù‡ÙŠØ¯Ø± */

.mobile-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    padding: 10px 20px;
    position: absolute;
    z-index: 4;
    width: 100%;
}

.mobile-header::before {
    content: "";
    position: absolute;
    top: 0;
    pointer-events: none;
    left: 0;
    width: 100%;
    height: 390px;
    background: url(../assats/image/overCopy.webp);
    z-index: -1;
    background-repeat: no-repeat;
}

.mobile-header .mobile-logo img {
    width: 60px;
    height: auto;
}

.mobile-menu-btn {
    font-size: 24px;
    background: none;
    border: none;
    color: var(--color-nav);
    cursor: pointer;
}


/* Sidebar */

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    /* ÙŠØ¨Ø¯Ø£ Ø®Ø§Ø±Ø¬ Ø§Ù„Ø´Ø§Ø´Ø© */
    width: 250px;
    height: 100%;
    background-color: var(--main-color);
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.3);
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: right 0.4s ease;
    z-index: 9999;
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar .close-btn {
    align-self: flex-end;
    font-size: 24px;
    background: none;
    border: none;
    color: var(--color-nav);
    cursor: pointer;
    margin-bottom: 20px;
}

.mobile-sidebar .mobile-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.mobile-sidebar .mobile-nav a {
    text-decoration: none;
    color: var(--color-nav) !important;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s, transform 0.3s;
}

.mobile-sidebar .mobile-nav a:hover {
    color: #000;
    transform: translateX(-5px);
}

@media (max-width: 992px) {
    .mobile-header {
        display: flex;
    }

    .navbar-custom {
        display: none !important;
    }
}


/* HOME */


/* Video Section */

.video-section {
    width: 100%;
    /* height: 100vh; */
    min-height: 115vh;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 60px;
}

.video-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 290px;
    background: url(../assats/image/overCopy.webp);
    z-index: 2
}

img.Rectangle__dark {
    display: none;
}

.dark-mode img.Rectangle__dark {
    position: absolute;
    z-index: 0;
    display: block;
    bottom: -222px;
    left: 0;
    width: 100%;
    height: 521px;
    pointer-events: none;
}

.video-section .container {
    z-index: 2;
}

.video-section::after {
    content: "";
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 100%;
    height: 737px;
    pointer-events: none;
    overflow: hidden;
    background: url(../assats/image/Rectangle44.webp);
    z-index: -1
}

.dark-mode .video-section::after {
    background: url(../assats/image/Rectangle.webp);
}

.video-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.fa-lightbulb:before {
    content: "\f0eb" !important;
    font-size: 30px !important;
}

@media (max-width: 760px) {
    .video-section {
        min-height: 100vh;
        overflow: hidden;
    }

    .video-section video {
        z-index: -2;
        /* Ensure it stays behind everything */
    }

    .video-section::after {
        z-index: -1;
        /* Background decoration stays between video and content */
    }
}


/* Parallax Clouds */

.parallax-clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 2;
    pointer-events: none;
    overflow: visible;
}

.parallax-clouds .cloud {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    will-change: transform, opacity;
    position: relative;
    transform: translate3d(0, 0, 0);
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.parallax-clouds .long {
    width: 10em;
    height: 2.5em;
    background: #dcd8d0;
    border-radius: 50px;
    opacity: 1;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.6);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.parallax-clouds .shorts {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    transform: translateY(10px);
    gap: 12px;
}

/* Hero Paragraph Read More Styles */
.hero-paragraph {
    color: var(--color-hero-pragrap);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.read-more-dots {
    color: var(--color-read-more);
    cursor: pointer;
    font-weight: bold;
    display: inline;
    padding: 0 5px;
    letter-spacing: 2px;
    transition: opacity 0.3s;
}

.dark-mode .read-more-dots {
    color: white
}

.read-more-dots:hover {
    opacity: 0.7;
}

.read-more-content {
    display: none;
    transition: all 0.3s ease;
}

.read-more-content.active {
    display: inline;
}

.parallax-clouds .big {
    width: 4em;
    height: 4em;
    background: #dcd8d0;
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.6);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.parallax-clouds .small {
    width: 2.5em;
    height: 2.5em;
    background: #dcd8d0;
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.6);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}


/* Cloud 1 - Left side, moves right */

.parallax-clouds .cloud-1 {
    margin-right: auto;
    margin-left: 5%;
    top: -25%;
    animation: none !important;
    /* Ø¥Ù„ØºØ§Ø¡ animation Ø§Ù„Ù‚Ø¯ÙŠÙ… */
    animation-duration: 0 !important;
}


/* Cloud 2 - Center, moves left */

.parallax-clouds .cloud-2 {
    margin: 0 auto;
    top: 0%;
    animation: none !important;
    /* Ø¥Ù„ØºØ§Ø¡ animation Ø§Ù„Ù‚Ø¯ÙŠÙ… */
    animation-duration: 0 !important;
}


/* Cloud 3 - Right side, moves right */

.parallax-clouds .cloud-3 {
    margin-left: auto;
    margin-right: 5%;
    top: 30%;
    animation: none !important;
    /* Ø¥Ù„ØºØ§Ø¡ animation Ø§Ù„Ù‚Ø¯ÙŠÙ… */
    animation-duration: 0 !important;
}

@media (max-width: 768px) {
    .parallax-clouds {
        height: 40%;
    }

    .parallax-clouds .long {
        width: 7em;
        height: 2em;
    }

    .parallax-clouds .big {
        width: 3em;
        height: 3em;
    }

    .parallax-clouds .small {
        width: 2em;
        height: 2em;
    }

    .parallax-clouds .cloud-1 {
        margin-left: 2%;
        top: 10%;
    }

    .parallax-clouds .cloud-2 {
        top: 20%;
    }

    .parallax-clouds .cloud-3 {
        margin-right: 2%;
        top: 30%;
    }
}

.dark-mode .parallax-clouds .long,
.dark-mode .parallax-clouds .big,
.dark-mode .parallax-clouds .small {
    background: rgba(255, 255, 255, 0.4);
    opacity: 0.6;
    box-shadow: 0 2px 15px rgba(255, 255, 255, 0.2);
}


/* Video Controls */

.video-container iframe {
    width: 100%;
    height: 291px;
    border-radius: 10px;
}

.video-controls {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
    align-items: center;
}

.video-info {
    padding-top: 13px;
}

.hero-right {
    border-right: 4px solid #5b534616;
    padding-right: 50px !important;
}

@media (max-width: 768px) {
    .hero-right {
        border-right: none;
        padding-right: 0 !important;
    }

    .video-controls {
        top: 39%;
    }

    .toggle-container {
        inset-inline-start: 16px;
    }
}

.hero-pragrap {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-hero-pragrap);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .hero-pragrap {
        max-width: 100%;
        font-size: 14px;
        margin-left: 5px;
        margin-right: 10px;
    }
}

.btn-hero {
    color: #3F372B !important;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dark-mode .btn-hero {
    color: #DCD8D0 !important;
}

@media (max-width: 768px) {
    .btn-hero {
        justify-content: center;
        font-size: 13px;
    }

    .btn-hero i {
        width: 30px !important;
        height: 30px !important;
    }

    .video-section .container {
        top: 20px;
    }

    .video-section::before {
        top: -400px;
        height: 230px;
    }

    .video-section::after {
        bottom: 0px;
        height: 550px;
    }
}

.btn-hero i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-btn-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
}


/* Theme Toggle */

.theme-toggle {
    flex-direction: column;
}

.theme-toggle .moon-btn {
    display: none;
}


/* Dark Mode */

body.dark-mode .theme-toggle .sun-btn {
    display: none;
}

body.dark-mode .theme-toggle .moon-btn {
    display: flex;
}

/* Archive Styles from Widgets */
.nour-archive-wrapper,
.clinic-archive-wrapper,
.library-archive-wrapper,
.guide-archive-wrapper {
    position: relative;
    width: 100%;
}

.archive-header-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.page-header-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Dark Mode Toggle specialized for archive header */
.archive-header .toggle-container,
.nour-archive-wrapper .toggle-container,
.clinic-archive-wrapper .toggle-container,
.library-archive-wrapper .toggle-container {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.guide-archive-wrapper .toggle-container {
    position: absolute;
    top: 50px;
    right: 20px;
    z-index: 1000;
}



/* Volume Control */

@media (max-width: 768px) {
    .video-controls {
        right: 15px;
        gap: 15px;
    }

    .control-btn {
        width: 50px;
        height: 50px;
    }

    .control-btn svg {
        width: 20px;
        height: 20px;
    }
}


/*  */

.about {
    position: relative;
}

.over-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.over-copy {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    object-fit: cover;
    pointer-events: none;
    mix-blend-mode: multiply;
}

.about-content {
    margin-top: 100px;
}

.main-row {
    margin-bottom: 100px;
}

.image-about {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.image-about img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .image-about img {
        min-height: 300px;
    }
}

.image-about::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #93897C;
    mix-blend-mode: color;
    /* Ù†ÙØ³ Color Mode */
    opacity: 1;
    /* Ù„Ùˆ Ø­Ø§Ø¨Ø¨ ØªØ®ÙÙ Ø§Ù„ØªØ£Ø«ÙŠØ± Ù‚Ù„Ù„Ù‡Ø§ */
    pointer-events: none;
}

.maskgroup-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.maskgroup-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #93897C;
    mix-blend-mode: color;
    opacity: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.about-title {
    position: relative;
    font-size: 42px;
    font-weight: bold;
    color: #3F372B;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 28px;
    }
}

.img-headabout {
    position: absolute;
    top: -30px;
    width: 104px;
    height: 26px;
}

.about-pragrap {
    color: var(--color-about-pragrap);
    font-size: 18px;
    font-weight: 400;
    padding-bottom: 45px;
    border-bottom: 1px solid var(--color-about-border);
}

.about-contact {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.about-info {
    margin-top: 45px;
    margin-right: auto;
}

.text-infoo {
    color: var(--color-text-infoo);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
}

.about-info span {
    color: var(--color-text-infoo);
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 0;
    padding-top: 10px;
    display: block;
}

.line-height {
    line-height: 58.8px;
}

.about-pragrap2 {
    color: var(--color-about-pragrap);
    font-size: 18px;
    font-weight: 400;
}

.Maskgroup {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}


/* Library */

.library {
    overflow-x: hidden;
}

.img-lib {
    margin-bottom: 10px;
    display: block;
}

@media (max-width: 768px) {
    .img-lib {
        margin-top: 20px;
    }
}

.dark-mode .img-lib {
    filter: invert(596%) sepia(26%) saturate(51%) hue-rotate(1deg) brightness(90%) contrast(91%);
}

.header {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-header);
    text-align: center;
    margin-top: 100px;
    margin-bottom: 30px;
    position: relative;
}

.img-header {
    width: 124px;
    height: 26px;
    position: absolute;
    top: -21px;
    left: 43%;
}

/* Library Search */
.search-wrapper {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.search-input-container {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.search-input-container #librarySearch {
    width: 100%;
    padding: 15px 50px 15px 20px;
    background: #D8D3CA;
    border: 2px solid transparent;
    border-radius: 40px;
    color: #463C30;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.dark-mode .search-input-container #librarySearch {
    background: #8D817333;
    color: #F1EEE7;
}

.search-input-container #librarySearch:focus {
    outline: none;
    background: #F1EEE7;
    border-color: #463C30;
    box-shadow: 0 6px 20px rgba(70, 60, 48, 0.1);
}

.dark-mode .search-input-container #librarySearch:focus {
    background: #5A5145;
    border-color: #DCD8D0;
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #463C30;
    font-size: 18px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.dark-mode .search-icon {
    color: #DCD8D0;
}

.search-input-container #librarySearch:focus+.search-icon {
    color: #3F372B;
}

@media (max-width: 768px) {
    .search-input-container #librarySearch {
        padding: 12px 45px 12px 15px;
        font-size: 14px;
    }

    .search-icon {
        right: 15px;
        font-size: 16px;
    }
}

.cart {
    padding: 30px;
    background: #D8D3CA;
    border: 1px solid transparent;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    transition: all 0.5s;
}

.dark-mode .cart {
    background: #8D817333;
}

.cart:hover {
    border: 1px solid #463C30;
    background: #F1EEE7;
    box-shadow: 0px 0px 35px 0px var(--color-shadow);
}

.dark-mode .cart:hover {
    background: #8D817333;
}


/* Responsive cart */

.cart-button {
    background: var(--bg-cart-button);
    color: var(--color-cart-button);
    font-size: 14px;
    font-weight: 400;
    border-radius: 40px;
    padding: 8px 16px;
    border: none;
    margin-bottom: 27px;
}

.cart-date {
    color: var(--date-cart);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    opacity: 0.7;
}

.cart-text {
    color: var(--p-cart);
    font-size: 14px;
    font-weight: 700;
}


/* CLINIC */

.clinic {
    overflow-x: hidden;
}

.reo-clinic {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.clinic-img {
    width: 100%;
}

.content-clinic {
    position: absolute;
    inset: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    background: linear-gradient(180deg, rgba(70, 60, 48, 0) 0%, #463C30 100%);
}

img.Vector222 {
    width: 78px;
    height: auto;
    object-fit: contain;
}

.cart-button {
    width: fit-content;
    margin-left: auto;
    background: var(--color-btn-cart);
    color: #F1EEE7;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
}

.meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.clinic-date {
    padding-bottom: 12px !important;
    margin: 0px !important;
    color: #F1EEE7;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.7;
}

.meta .text {
    font-size: 14px;
    line-height: 100%;
    font-weight: 700;
    color: #F1EEE7;
    max-width: 90%;
    line-height: 20px;
}

.icon-clinic {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border: #F1EEE7 1px solid;
    color: #F1EEE7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.icon-clinic i {
    font-size: 16px;
    transform: rotate(130deg);
}


/* Laboratory */

.laboratory {
    overflow-x: hidden !important;
}

.contant-laboratory {
    background: var(--bg-laporatory);
    padding: 30px;
    border: 2px solid transparent;
    align-items: center;
    border-radius: 10px;
    display: block;
    transition: all 0.5s;
}

@media (max-width: 770px) {
    .contant-laboratory {
        margin-bottom: 15px !important;
        padding: 20px;
    }
}

.contant-laboratory:hover {
    border: 2px solid var(--border-laporatory-hover);
    background: var(--bg-laporatory-hover);
}

.img-laboratory {
    width: 100%;
    margin-bottom: 30px;
}

.info-laboratory .date-laboratory {
    margin-bottom: 10px;
    color: var(--color-date-laboratory);
    font-size: 14px;
    font-weight: 400;
}

.info-laboratory .pragrap-laboratory {
    color: var(--color-pragrap-laboratory);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 36px;
}

.icon-laboratory {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-icon-laboratory);
    border: 1px solid var(--color-icon-laboratory);
    font-size: 15px;
    color: var(--color-icon-laboratory);
    margin-right: auto;
}


/*  */

.options {
    margin-top: 100px;
}

@media (max-width: 770px) {
    .options {
        margin-top: 70px;
    }
}

.options .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.card {
    width: fit-content;
    background: var(--bg-card) !important;
    padding: 20px;
    cursor: pointer;
    border: 2px solid transparent !important;
    transition: all 0.5s ease;
    border-radius: 250px 250px 1px 1px !important;
    padding-bottom: 20px;
}


.card:hover .default-img {
    filter: invert(86%) sepia(35%) saturate(804%) hue-rotate(353deg) brightness(87%) contrast(86%);
}

.dark-mode .card:hover .default-img {
    opacity: 27%;
    filter: unset;
}

.card:hover {
    border: 2px solid var(--bg-card-hover) !important;
    box-shadow: 0px 0px 35px 0px #A39A8D12 !important;
}

.dark-mode .card:hover {
    background: var(--bg-card-hover) !important;
}

.image-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card img {
    position: absolute;
    top: -60px;
    left: 50%;
    object-fit: contain;
    transform: translateX(-50%);
    z-index: 1;
}

.dark-mode .card img {
    opacity: 7%;
}

.image-bg {
    width: 144px;
    height: 113px;
    background: var(--bg-image-section);
    border-radius: 250px 250px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #463C30;
}

i.fa-solid.fa-book {
    font-size: 30px;
}

.icon .options-imgs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--color-icon);
}

.dark-mode .options-imgs {
    filter: invert(52%) sepia(1%) saturate(2959%) hue-rotate(305deg) brightness(217%) contrast(77%);
}

.title {
    font-size: 14px;
    font-weight: bold;
    color: var(--color-title-card);
    text-align: center;
    line-height: 32px;
    margin-bottom: 0px;
}


/* Responsive for options */

@media (max-width: 1200px) {
    .options .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .card {
        flex: 0 0 calc(50% - 10px);
        min-width: 200px;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .options .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 0 15px;
    }

    .card {
        flex: 0 0 calc(50% - 7.5px);
        min-width: 150px;
        margin-bottom: 45px;
        padding: 15px;
    }

    .image-bg {
        width: 120px;
        height: 94px;
    }

    .card img {
        width: 50px;
        height: 50px;
        top: -52px;
    }

    .title {
        font-size: 12px;
        line-height: 1.4;
    }
}


/* Contact */

.contact .row {
    margin-top: 100px;
}


/* Left Side */

.main-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-contact-title);
    line-height: 1.4;
    letter-spacing: 1px;
    position: relative;
    margin-bottom: 20px;
}

.img-contact {
    width: 124px;
    height: 26px;
    position: absolute;
    top: -30px;
}

.description {
    font-size: 15px;
    color: var(--color-contact-desc);
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 20px;
    color: var(--color-contact-info);
}

.contact-item a {
    color: var(--color-contact-info);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--color-contact-info);
}

.copy-icon {
    width: 16px;
    height: 16px;
    background: #e0e0e0;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 10px;
    transition: 0.3s;
}

.copy-icon:hover {
    background: #d0d0d0;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    align-items: center;
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    color: #5E574D;
    border: 1px solid #5E574D;
}

.social-icon:hover {
    background: var(--bg-contact-social-hover);
    color: var(--main-color);
    transform: scale(1.1);
}


/* Right Side - Form */

.right-section {
    background: var(--bg-contact-form);
    padding: 50px 30px !important;
    box-shadow: 0px 0px 35px 0px var(--color-contact-shadow) !important;
    border-radius: 10px;
}

.form-subtitle {
    font-size: 20px;
    color: var(--color-contact-form-title);
    font-weight: 700;
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    font-size: 14px;
    color: var(--color-contact-label);
    font-weight: 500;
    margin-bottom: 15px;
}

.form-input {
    width: 100%;
    padding: 13px 20px;
    border-radius: 100px;
    font-size: 13px;
    border: 1px solid transparent;
    background: var(--bg-contact-input);
    color: var(--color-contact-input-text);
    transition: all 0.3s;
    resize: none;
    direction: rtl;
}

.form-textarea {
    width: 100%;
    border: 1px solid transparent;
    padding: 13px 20px;
    border-radius: 10px;
    font-size: 13px;
    background: var(--bg-contact-input);
    color: var(--color-contact-input-text);
    transition: all 0.3s;
    resize: none;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border: 1px solid #463C30;
    color: #737D7C;
    background-color: transparent;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-contact-placeholder);
    font-size: 14px;
    font-weight: 500;
}

.form-textarea {
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 14px 30px;
    background: #463C30;
    color: #ffffff;
    border: none;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0px 2px 2px 2px var(--color-shadow-submit);
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--bg-contact-btn-hover);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.submit-btn:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-subtitle {
        font-size: 18px;
    }

    .contact .row {
        margin-top: 50px;
    }

    .main-title {
        font-size: 28px;
    }

    .right-section {
        padding: 35px 25px;
    }
}

.nour {
    overflow-x: hidden !important;
}

.about {
    overflow-x: hidden !important;
}

.contact {
    overflow-x: hidden !important;
}


/* Main Footer */

.footer {
    background-color: #8D817333;
    padding: 230px 0px 30px;
    position: relative;
    margin-top: 226px;
}

.footer .row {
    padding-top: 100px;
}

.newsletter-section {
    margin-top: -382px;
    background-color: #908678;
    padding: 50px;
    border-radius: 20px;
    align-items: center;
    gap: 50px;
    display: grid;
    grid-template-columns: 50% 1fr;
}

.newsletter-section {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" result="noise"/></filter><rect width="100%" height="100%" fill="%23808080" filter="url(%23noise)" opacity="0.4"/></svg>');
    background-size: auto;
    background-position: 0 0, 15px 15px;
}

.newsletter-section h3 {
    color: #3F372B;
    font-size: 28px;
    font-weight: bold;
}

.newsletter-input-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.newsletter-label {
    color: #3F372B;
    font-size: 16px;
    font-weight: 500;
}

.newsletter-input-fields {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
}

.newsletter-input-wrapper {
    position: relative;
    flex: 1;
}

.newsletter-input-icon {
    position: absolute;
    top: 50%;
    inset-inline-start: 20px;
    transform: translateY(-50%);
    color: #5E574D;
    font-size: 18px;
    pointer-events: none;
}

.newsletter-input-fields input {
    padding: 20px 50px 20px 20px;
    border: none;
    background: #f1eee730;
    border-radius: 200px;
    font-size: 14px;
    width: 100%;
}

.newsletter-input-fields input::placeholder {
    color: #463C30;
}

.newsletter-input-fields button {
    background-color: #463C30;
    color: #ffffff;
    width: 64px;
    height: 64px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


.footer-content {
    margin-top: 100px;
}

.footer-text {
    font-size: 14px;
    font-weight: 400;
    color: #5E574D;
    line-height: 22.4px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.dark-mode .footer-text,
.dark-mode .footer-column ul li a {
    color: #A09A90 !important;
}

.dark-mode .footer-head {
    color: #DCD8D0;
}

.footer-head {
    font-size: 18px;
    font-weight: 500;
    color: #463C30;
    margin-bottom: 30px;
}

.img-footer {
    position: absolute;
    top: -80px;
    width: 104px;
    height: 26px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 20px;
}

.footer .col-md-3:nth-of-type(2) {
    padding-inline-start: 100px;
}

.footer .col-md-3:nth-of-type(3) {
    padding-inline-start: 60px;
}

.footer-column ul li a {
    color: #463C30 !important;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-column ul li a:hover {
    color: #000;
}

.footer-column p {
    color: #555;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 10px;
}


/* Logo Section */

.logo-section {
    text-align: center;
    margin-bottom: 30px;
}

.logo-section img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.logo-section p {
    color: #555;
    font-size: 13px;
    line-height: 1.8;
    max-width: 250px;
    margin: 0 auto;
}


/* Social Icons */

.social-icons {
    display: flex;
    justify-content: start;
    gap: 15px;
}

.social-icons a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-icon) !important;
    background: var(--bg-icon) !important;
    border-radius: 50%;
    border: var(--border-footer-icon) !important;
    transition: background-color 0.3s;
}

@media (max-width: 768px) {
    .social-icons {
        justify-content: start !important;
        margin-bottom: 20px;
    }

    footer .col-md-3:nth-of-type(2) {
        padding-inline-start: 0px;
    }

    footer .col-md-3:nth-of-type(3) {
        padding-inline-start: 0px;
    }
}

.social-icons a:hover {
    background-color: var(--bg-icon-hover) !important;
    border: var(--border-footer-icon-hover) !important;
    color: var(--color-icon-hover) !important;
}


/* Footer Bottom */

.footer-bottom {
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-text {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    color: #463C30;
}

.dark-mode .footer-bottom-text {
    color: #A09A90;
}

.company-name {
    font-weight: bold;
}


/* Responsive Footer */

@media (max-width: 1200px) {
    .newsletter-section h3 {
        font-size: 26px;
    }
}

@media (max-width: 992px) {
    footer {
        padding: 200px 20px 20px;
    }

    .newsletter-section {
        padding: 30px 20px;
        gap: 20px;
        grid-template-columns: unset;
    }

    .newsletter-section h3 {
        font-size: 24px !important;
    }

    .newsletter-input-group {
        align-items: center;
        width: 100%;
    }

    .newsletter-input-fields {
        justify-content: center;
    }

    .footer-content {
        margin-top: 50px;
    }

    .footer-head {
        font-size: 16px;
    }

    .footer-text {
        font-size: 13px;
    }
}

.footer-column ul {
    margin: 0;
}

.footer-bottom-right img {
    width: auto;
    height: auto;
    max-width: 88px;
    object-fit: contain;
}

@media (max-width: 768px) {
    footer {
        padding: 150px 15px 15px;
        margin-top: 100px;
    }

    .newsletter-input-group {
        width: 100%;
    }

    .newsletter-section {
        margin-top: -200px;
    }

    .footer-bottom-right img {
        max-width: 68px;
    }

    .newsletter-section h3 {
        font-size: 22px !important;
    }

    .newsletter-input-fields input {
        width: 100%;
        padding: 15px 45px 15px 45px;
    }

    .newsletter-section {
        align-items: flex-start;
    }

    .footer-bottom-text {
        font-size: 12px;
    }

    .newsletter-input-fields button {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    footer .col-md-3:nth-of-type(2),
    footer .col-md-3:nth-of-type(3) {
        width: 45%;
    }

    .header {
        font-size: 28px;
        margin-top: 60px;
        margin-bottom: 20px;
    }

    .footer-column {
        margin-bottom: 0px;
    }

    .row>* {
        margin: 0 !important;
    }

    .footer-head {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .footer-text {
        font-size: 12px;
        line-height: 20px;
    }

    .footer-column ul li {
        margin-bottom: 15px;
    }

    .footer-column ul li a {
        font-size: 13px;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        padding-top: 10px;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .newsletter-section h3 {
        font-size: 18px !important;
    }

    .newsletter-input-fields input {
        padding: 12px 45px 12px 40px;
    }

    .newsletter-input-fields button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .footer-text {
        font-size: 11px;
    }

    .footer-column ul li a {
        font-size: 12px;
    }
}


/* Swiper */

.head-swiper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 40px;
}

@media (max-width: 1000px) {
    .head-swiper {
        flex-direction: column;
        gap: 10px;
        padding-bottom: 20px;
        align-items: flex-start;
    }

    .top-swiper {
        margin-right: unset;
        margin-bottom: 5px;
    }
}

@media (max-width: 576px) {
    .icon-swiper {
        width: 30px !important;
        height: 30px !important;
        border-radius: 50% !important;
        margin-bottom: 5px !important;
    }

    .lib-title {
        font-size: 24px !important;
    }
}

.top-swiper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.top-swiper p {
    color: var(--color-top-swiper);
    font-size: 20px;
    font-weight: 500px;
    margin: 0 !important;
}

.icon-swiper {
    transform: rotate(45deg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-top-swiper);
    border: 1px solid var(--color-top-swiper);
    font-size: 15px;
    color: var(--color-top-swiper);
}

.swiper-title img {
    position: absolute;
    top: -30px;
    right: 0;
}

.swiper-title {
    position: relative;
    font-size: 52px;
    font-weight: bold;
    color: #3F372B;
}

@media (max-width: 768px) {
    .swiper-title {
        font-size: 32px;
    }

    .top-swiper p {
        font-size: 14px;
    }

    .swiper-title img {
        width: 60px;
        top: -15px;
    }
}

.swiper {
    position: relative;
    width: 100%;
    height: calc(50% * var(--swiper-image-ratio) / 100%);
    overflow: hidden;
}

.swiper-slide {
    position: relative;
    width: 50%;
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    border-radius: 0.4285rem;
}

.swiper-slide.swiper-slide-prev,
.swiper-slide.swiper-slide-next {
    opacity: 1;
}

.swiper-backface-hidden .swiper-slide {
    transform: scale(0.84) translateZ(0);
}

.swiper-slide.swiper-slide-active {
    transform: scale(1) !important;
    opacity: 1 !important;
}

.swiper-backface-hidden .swiper-slide.swiper-slide-active {
    transform: scale(1) translateZ(0) !important;
}

.swiper-image {
    position: relative;
    width: 100%;
    /* padding-top: var(--swiper-image-ratio); */
}

.swiper-image .image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #929ec9;
}

.swiper-button-next,
.swiper-button-prev {
    padding: 8px;
    width: 12px;
    height: 12px;
    margin-top: 0;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    color: #fff;
    font-size: 12px;
}

.swiper-button-next {
    transform: translate(50%, -50%);
    right: calc((100% - 50%) / 2);
}

.swiper-button-prev {
    transform: translate(-50%, -50%);
    left: calc((100% - 50%) / 2);
}

.swiper-youtupe .swiper-slide {
    max-width: 1137px;
}

.swiper-ser .swiper-slide {
    max-width: 555px;
}

.swiper-about .swiper-slide {
    max-width: 360px;
}

@media only screen and (max-width: 768px) {
    .swiper {
        height: calc(90% * var(--swiper-image-ratio) / 100%);
    }

    .swiper-slide {
        width: 90%;
        transform: scale(0.95);
    }

    .swiper-backface-hidden .swiper-slide.swiper-slide {
        transform: scale(0.95) translateZ(0);
    }

    .swiper-button-next {
        right: calc((100% - 90%) / 2);
    }

    .swiper-button-prev {
        left: calc((100% - 90%) / 2);
    }
}

section.guide-section {
    overflow: hidden;
    position: relative;
}

section.guide-section .container {
    padding: 100px 0;
}

.guide-subtitle {
    font-size: 20px;
    color: var(--color-text-lib);
    margin-top: 15px;
    margin-bottom: 50px;
}

.guide-categories {
    margin-top: 60px;
}

.guide-category {
    background: var(--bg-article);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.guide-category .options {
    margin-top: 30px;
}

.guide-card-link {
    text-decoration: none;
    color: inherit;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(91, 83, 70, 0.1);
}

.category-header i {
    font-size: 48px;
    color: var(--color-tab-active);
    margin-bottom: 20px;
    display: block;
}

.category-header h3 {
    font-size: 32px;
    font-weight: bold;
    color: var(--color-lib-title);
    margin-bottom: 10px;
}

.category-header p {
    font-size: 16px;
    color: var(--color-text-lib);
    max-width: 600px;
    margin: 0 auto;
}


/* YouTube Videos Grid */

.youtube-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.youtube-video-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.youtube-video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.youtube-video-wrapper {
    position: relative;
    width: 100%;
}

.youtube-video-info {
    padding: 20px;
}

.youtube-video-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-lib-title);
    margin-bottom: 10px;
    line-height: 1.4;
}

.youtube-video-info p {
    font-size: 14px;
    color: var(--color-text-lib);
    margin-bottom: 15px;
    line-height: 1.6;
}

.youtube-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #888;
}

.youtube-meta i {
    margin-left: 5px;
}


/* Books Grid */

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.book-item {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.book-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.book-cover {
    width: 150px;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-lib-title);
    margin-bottom: 10px;
}

.book-info p {
    font-size: 14px;
    color: var(--color-text-lib);
    margin-bottom: 15px;
    line-height: 1.6;
}

.book-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #888;
}

.book-meta i {
    margin-left: 5px;
    color: var(--color-tab-active);
}

.recommend-btn {
    display: inline-block;
    padding: 10px 25px;
    background: var(--color-tab-active);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.recommend-btn:hover {
    background: var(--color-header);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


/* Resources Grid */

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.resource-item {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.resource-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.resource-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-tab-active), var(--color-header));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.resource-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-lib-title);
    margin-bottom: 15px;
}

.resource-item p {
    font-size: 14px;
    color: var(--color-text-lib);
    margin-bottom: 20px;
    line-height: 1.6;
}

.resource-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.resource-links-list li {
    margin-bottom: 10px;
}

.resource-links-list a {
    color: var(--color-tab-active);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.resource-links-list a:hover {
    color: var(--color-header);
    transform: translateX(-5px);
}


/* Responsive */

@media (max-width: 768px) {
    section.guide-section {
        padding: 50px 0;
    }

    .guide-category {
        padding: 25px;
    }

    .category-header h3 {
        font-size: 24px;
    }

    .category-header p {
        font-size: 14px;
    }

    .youtube-videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .books-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .book-cover {
        width: 120px;
        height: 160px;
    }
}

.swiper-section {
    margin-top: 100px;
    overflow: hidden !important;
}

.swiper-section-clinic {
    background-color: #8D817333;
    padding: 100px 0;
    margin-top: 100px;
    overflow-x: hidden !important;
}

@media (max-width: 770px) {
    .swiper-section-clinic {
        padding: 50px 0 !important;
        margin-top: 10px !important;
    }
}

.lib {
    margin-top: 100px;
    overflow-x: hidden !important;
}

@media (max-width: 768px) {
    .lib {
        margin-top: 50px;
    }

    .lib-contant {
        padding-bottom: 0 !important;
    }
}

.lib-contant {
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: self-start;
    padding-bottom: 30px;
}

.cart-img img {
    width: 156px;
    height: 156px;
    border-radius: 5px;
    object-fit: cover;
}

.lib-title {
    font-size: 52px;
    font-weight: bold;
    color: var(--color-lib-title);
    margin-bottom: 2px;
    padding-bottom: 10px;
    line-height: 1.5;
}

.lib-con {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-lib-title);
    margin-bottom: 2px;
    padding-bottom: 10px;
    line-height: 1.5;
}

.newsletter-section .lib-title {
    display: contents;
}

@media (max-width: 768px) {
    .lib-title {
        font-size: 32px;
        line-height: 1.2;
        width: 100%;
    }
}

.text-lib {
    color: var(--color-text-lib);
    font-size: 18px;
    font-weight: 400;
    max-width: 70%;
}

.leftt-section {
    position: relative;
    z-index: 1;
}

.leftt-section::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 2px;
    height: 95%;
    z-index: 0;
    background: radial-gradient(var(--color-after), transparent);
}

@media (max-width: 1000px) {
    .leftt-section {
        margin-top: 50px;
    }
}

.lib-cart {
    padding: 30px;
    border-radius: 10px 0 0 10px;
    display: flex;
    justify-content: space-between;
    transition: all 0.5s;
    gap: 18px;
}

.lib-cart:hover {
    background: var(--hover-lib-cart);
}


/* .youtupe {
  margin-bottom: 100px;
}
@media (max-width: 770px) {
  .youtupe {
    margin-bottom: 30px;
  }
} */


/* ===== VIDEO SECTION ===== */

.youtupe-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    /* Ø§Ù„Ø­Ù„ Ø§Ù„Ø°Ù‡Ø¨ÙŠ */
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.youtupe-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.youtupe-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px
}

@media (max-width: 770px) {
    .youtupe-right {
        align-items: end;
        gap: 10px;
    }
}


/* ===== TEXT SECTION ===== */

.text-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #ddd;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.more-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8e3d8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid #ddd;
}

.more-icon:hover {
    background: #d8d3c8;
    border-color: #bbb;
}

.date-info {
    font-size: 13px;
    color: #999;
    font-weight: 500;
    margin-bottom: 15px;
}

.article-text {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    text-align: right;
    word-spacing: 0.5px;
}

.article-text p {
    margin-bottom: 10px;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .lib-cart {
        padding: 12px;
        gap: 10px;
    }

    .text-lib {
        font-size: 14px;
        max-width: unset;
    }

    .youtupe-title {
        font-size: 13px;
    }

    .section-title {
        font-size: 15px;
    }

    .article-text {
        font-size: 13px;
        line-height: 1.7;
    }

    .date-info {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .youtupe-title {
        font-size: 12px;
    }

    .section-title {
        font-size: 14px;
    }

    .article-text {
        font-size: 12px;
        line-height: 1.6;
    }

    .date-info {
        font-size: 11px;
    }

    .more-icon {
        width: 35px;
        height: 35px;
    }
}

.article-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--bg-article);
    overflow-x: hidden !important;
}

.article-content {
    padding: 60px;
    background: var(--bg-article);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    margin: 100px 0;
}


/* ===== HEADER ===== */

.article-header {
    text-align: center;
    margin-bottom: 30px;
}

.article-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-article-title);
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 14px;
    color: var(--color-article-text);
    flex-wrap: wrap;
    opacity: 0.8;
}

.article-meta i {
    color: var(--color-article-title);
    margin-left: 8px;
}


/* ===== BODY ===== */

.article-body h2 {
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--color-article-title);
    font-size: 28px;
    font-weight: 700;
}

.article-body p {
    line-height: 2;
    margin-bottom: 20px;
    font-size: 17px;
    color: var(--color-article-text);
}

.article-body ul {
    padding-right: 20px;
    margin-bottom: 20px;
}

.article-body ul li {
    margin-bottom: 12px;
    list-style: none;
    position: relative;
    padding-right: 25px;
    color: var(--color-article-text);
    font-size: 16px;
}

.article-body ul li::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    color: var(--color-article-title);
}


/* ===== QUOTE ===== */

.article-quote {
    background: var(--bg-quote);
    border-right: 6px solid var(--border-quote);
    padding: 35px;
    margin: 50px 0;
    border-radius: 16px;
    position: relative;
}

.article-quote::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 40px;
    color: var(--border-quote);
    opacity: 0.1;
}

.article-quote blockquote {
    margin: 0;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-article-title);
}

.article-quote cite {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-article-text);
}


/* ===== FOOTER ===== */

.article-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    padding-top: 20px;
}


/* TAGS */

.article-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.article-tags .tag {
    background: #93897C;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
}


/* SHARE */

.article-share {
    margin-top: 25px;
}

.article-share h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #93897C;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    background: #93897C;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.share-btn:hover {
    background: #2f2f2f;
}


/* ===== RELATED ARTICLES ===== */

.related-articles {
    margin: 100px auto 0;
    padding: 0 20px;
}

.related-articles h3 {
    margin-bottom: 30px;
    color: var(--color-article-title);
    font-weight: 700;
    font-size: 30px;
    text-align: center;
}

.related-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.related-item {
    background: var(--bg-related-item);
    padding: 20px;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.related-item img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 10px;
}

.related-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--color-article-title);
    font-weight: 700;
}

.related-item p {
    font-size: 14px;
    color: var(--color-article-text);
    line-height: 1.6;
}

.related-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-article-title);
}


/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
    .article-title {
        font-size: 36px;
    }

    .article-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .article-section {
        padding: 60px 0;
    }

    .article-content {
        padding: 40px;
        margin: 50px 0;
    }

    .article-content {
        padding: 30px;
        border-radius: 20px;
    }

    .article-title {
        font-size: 28px;
    }

    .article-meta {
        gap: 15px;
    }

    .article-body h2 {
        font-size: 24px;
        margin-top: 35px;
    }

    .article-body p {
        font-size: 16px;
    }

    .article-quote {
        padding: 25px;
        margin: 35px 0;
    }

    .article-quote blockquote {
        font-size: 18px;
    }

    .related-articles {
        margin-top: 60px;
    }

    .related-articles h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .article-section {
        padding: 40px 0;
    }

    .article-content {
        padding: 20px;
        border-radius: 16px;
    }

    .article-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        font-size: 12px;
    }

    .article-body h2 {
        font-size: 20px;
        margin-top: 25px;
    }

    .article-body p {
        font-size: 15px;
        line-height: 1.8;
    }

    .article-quote {
        padding: 20px;
        margin: 25px 0;
    }

    .article-quote blockquote {
        font-size: 16px;
    }

    .related-list {
        grid-template-columns: 1fr;
    }

    .related-item {
        padding: 15px;
    }

    .related-item h4 {
        font-size: 18px;
    }
}


/* ===== toggle switch ===== */

.toggle-container {
    position: absolute;
    width: 30px;
    height: 70px;
    background: #3F372B;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
    z-index: 1000;
    top: 20%;
    inset-inline-start: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.toggle-container.mainPage {
    top: -147%;
}


/* Sun Section */

.sun-section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(255, 200, 0, 0.3);
}

.sun-icon {
    width: 22px;
    height: 22px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    filter: drop-shadow(0 0 8px rgba(255, 200, 0, 0.4));
}

.sun-icon svg {
    width: 35px;
    height: 35px;
    stroke: white;
    stroke-width: 2;
    fill: none;
    filter: drop-shadow(0 0 4px rgba(255, 200, 0, 0.6));
    transition: all 0.3s ease;
}


/* Moon Section */

.moon-section {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(150, 150, 255, 0.2);
}

.moon-icon {
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    filter: drop-shadow(0 0 8px rgba(150, 150, 255, 0.3));
}

.moon-icon svg {
    width: 35px;
    height: 35px;
    stroke: white;
    stroke-width: 2;
    fill: none;
    filter: drop-shadow(0 0 4px rgba(150, 150, 255, 0.4));
    transition: all 0.3s ease;
}


/* Active States */

.sun-section.active,
.moon-section.active {
    background: #8D8173;
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(141, 129, 115, 0.4), inset 0 2px 8px rgba(255, 255, 255, 0.15);
}

.sun-section:not(.active),
.moon-section:not(.active) {
    opacity: 0.5;
    transform: scale(0.9);
    background: transparent;
    box-shadow: none;
}


/* Pulse Animation */

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 20px rgba(141, 129, 115, 0.2);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 30px rgba(141, 129, 115, 0.3);
        transform: scale(1.02);
    }
}

.toggle-container:hover {
    animation: pulse 2s infinite;
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.toggle-container:hover .sun-section {
    box-shadow: 0 6px 20px rgba(255, 200, 0, 0.5);
}

.toggle-container:hover .moon-section {
    box-shadow: 0 6px 20px rgba(150, 150, 255, 0.3);
}

.toggle-container:hover .sun-icon svg {
    filter: drop-shadow(0 0 8px rgba(255, 200, 0, 0.8));
    transform: rotate(15deg);
}

.toggle-container:hover .moon-icon svg {
    filter: drop-shadow(0 0 8px rgba(150, 150, 255, 0.6));
    transform: rotate(-15deg);
}


/* Ripple Effect */

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
}

@keyframes ripple-animation {
    to {
        transform: scale(3);
        opacity: 0;
    }
}


/* Info Text */

.info {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: #999;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}

.toggle-container:hover .info {
    opacity: 1;
}

.info.day {
    content: "Day Mode";
}

.info.night {
    content: "Night Mode";
}


/* Sound Button */

.sound-button {
    position: relative;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sound-button::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #463C30;
    z-index: -1;
}

@media (max-width: 770px) {
    .sound-button::after {
        width: 80%;
        height: 80%;
    }

    .toggle-container.mainPage {
        top: -645%;
    }

}


/* Inner Circle Border */

.inner-ring {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #463C30;
    border: 1px solid #F1EEE7;
}


/* Speaker Icon */

.speaker-icon {
    position: relative;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.speaker-icon i {
    font-size: 16px;
    color: white;
}

@media(max-width: 770px) {
    .speaker-icon i {
        font-size: 13px;
    }
}


/* Ripple Effect */

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}


/* Sound Waves Animation */

@keyframes soundWave {
    0% {
        opacity: 1;
        r: 0;
    }

    100% {
        opacity: 0;
        r: 25px;
    }
}

.wave {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    animation: soundWave 1.5s ease-out infinite;
}

.wave:nth-child(2) {
    animation-delay: 0.3s;
}

.wave:nth-child(3) {
    animation-delay: 0.6s;
}

.sound-button.playing .wave {
    display: block;
}


/* Responsive */

@media (max-width: 768px) {
    .sound-button {
        width: 62px;
        height: 62px;
        margin-top: -44px;
    }

    .outer-ring {
        width: 110px;
        height: 110px;
    }

    .inner-ring {
        width: 30px;
        height: 30px;
    }

    .sound-button:hover .outer-ring {
        width: 118px;
        height: 118px;
    }

    .sound-button:hover .inner-ring {
        width: 30px;
        height: 30px;
    }
}


/* =====================
   SWIPER PAGINATION
===================== */

.swiper-pagination {
    position: relative !important;
    margin-top: 20px !important;
    padding: 0 !important;
    inset: 0 !important;
}

.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: #E0DCD4 !important;
    border-radius: 50% !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.swiper-section {
    position: relative;
    padding-bottom: 30px;
}

@media (max-width: 770px) {
    .swiper-section {
        margin-top: 5px;
    }
}

.swiper-pagination {
    gap: 0 !important;
}

.swiper-pagination-bullet:hover {
    background: #D0CCC4 !important;
    transform: scale(1.1) !important;
}

.swiper-pagination-bullet-active {
    width: 40px !important;
    height: 10px !important;
    background: #3F372B !important;
    border-radius: 5px !important;
    opacity: 1 !important;
    transform: none !important;
}

.swiper-pagination-bullet-active:hover {
    background: #3F372B;
    transform: none;
}

.dark-mode .swiper-pagination-bullet {
    background: #ffffff45 !important;
}

.dark-mode .swiper-pagination-bullet-active {
    background: #DCD8D0 !important;
}


/* BOOTSTRAP */

.book-review-section {
    min-height: calc(100vh - 200px);
}


/* Book Header */

.book-header {
    margin-top: 100px;
    margin-bottom: 30px;
    padding: 40px;
    background: #DCD8D0;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(17, 27, 34, 0.08);
    transition: all 0.3s ease;
}

.book-header:hover {
    box-shadow: 0 8px 30px rgba(17, 27, 34, 0.12);
    transform: translateY(-2px);
}

.book-cover-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(17, 27, 34, 0.15);
    transition: all 0.3s ease;
}

.book-cover-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(17, 27, 34, 0.2);
}

.book-cover-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
    object-fit: cover;
}

.book-cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 27, 34, 0.7) 0%, rgba(125, 142, 149, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.book-cover-wrapper:hover .book-cover-overlay {
    opacity: 1;
}

.book-cover-overlay i {
    font-size: 48px;
    color: #DCD8D0;
}

.book-info {
    padding: 20px 0;
}

.book-category {
    display: inline-block;
    padding: 6px 16px;
    background: #3F372B;
    color: #F1EEE7;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.book-title {
    font-size: 36px;
    font-weight: 700;
    color: #3F372B;
    margin-bottom: 24px;
    line-height: 1.4;
}

.book-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 20px;
}

.book-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #5E574D;
}

.book-meta i {
    font-size: 16px;
}

.book-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.book-rating .stars {
    display: flex;
    gap: 4px;
}

.book-rating .stars i {
    color: #3F372B;
    font-size: 20px;
}

.rating-text {
    font-size: 16px;
    font-weight: 600;
    color: #3F372B;
}


/* Book Content */

.book-content-wrapper {
    margin-top: 40px;
}

.book-article {
    background: #DCD8D0;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(17, 27, 34, 0.08);
}

.article-intro .lead-text {
    font-size: 22px;
    line-height: 1.8;
    color: #3F372B;
    font-weight: 400;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #F2EEE7 0%, #DCD8D0 100%);
    border-right: 4px solid #3F372B;
    border-radius: 12px;
}

.article-image-block {
    margin: 40px 0;
    position: relative;
}

.article-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(17, 27, 34, 0.12);
    transition: all 0.3s ease;
    max-height: 500px;
}

@media (max-width: 768px) {
    .article-image {
        width: 100%;
        max-height: 400px;
    }
}

.article-image:hover {
    transform: scale(1.01);
    box-shadow: 0 12px 32px rgba(17, 27, 34, 0.18);
}

.image-caption {
    margin-top: 16px;
    font-size: 14px;
    color: #7D8E95;
    font-style: italic;
    text-align: center;
    padding: 0 20px;
}

.article-text {
    margin: 40px 0;
}

.article-text p {
    font-size: 18px;
    line-height: 1.9;
    color: #2D3748;
    margin-bottom: 24px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #3F372B;
    margin-bottom: 24px;
    padding-bottom: 16px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3F372B 0%, transparent 100%);
    border-radius: 2px;
}

.article-conclusion {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #F2EEE7 0%, #DCD8D0 100%);
    border-radius: 16px;
    border-right: 4px solid #3F372B;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #E5E7EB;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #F8FAFC;
    color: #55676F;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #7D8E95;
    color: #DCD8D0;
    transform: translateY(-2px);
}

.tag i {
    font-size: 12px;
}


/* Sidebar */

.book-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background: #DCD8D0;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(17, 27, 34, 0.08);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(17, 27, 34, 0.12);
}

.sidebar-title {
    font-size: 22px;
    font-weight: 700;
    color: #3F372B;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #E5E7EB;
}


/* Share Buttons */

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #DCD8D0;
}

.share-btn i {
    font-size: 18px;
}

.share-btn.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0D5FCC 100%);
}

.share-btn.facebook:hover {
    background: linear-gradient(135deg, #0D5FCC 0%, #1877F2 100%);
    transform: translateX(-4px);
}

.share-btn.twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0D8BD9 100%);
}

.share-btn.twitter:hover {
    background: linear-gradient(135deg, #0D8BD9 0%, #1DA1F2 100%);
    transform: translateX(-4px);
}

.share-btn.linkedin {
    background: linear-gradient(135deg, #0077B5 0%, #005885 100%);
}

.share-btn.linkedin:hover {
    background: linear-gradient(135deg, #005885 0%, #0077B5 100%);
    transform: translateX(-4px);
}

.share-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
}

.share-btn.whatsapp:hover {
    background: linear-gradient(135deg, #1DA851 0%, #25D366 100%);
    transform: translateX(-4px);
}


/* Related Books */

.related-books {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-book-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #F2EEE7 0%, #DCD8D0 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.related-book-item:hover {
    background: linear-gradient(135deg, #ebe5dc 0%, #d1cdc5 100%);
    transform: translateX(-4px);
}

.related-book-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(17, 27, 34, 0.1);
}

.related-book-info {
    flex: 1;
}

.related-book-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #3F372B;
    margin-bottom: 8px;
}

.related-book-info p {
    font-size: 14px;
    color: #7D8E95;
    margin: 0;
}

.author-info {
    text-align: center;
}

.author-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #E5E7EB;
    box-shadow: 0 4px 12px rgba(17, 27, 34, 0.1);
}

.author-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #3F372B;
    margin-bottom: 12px;
}

.author-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #7D8E95;
    margin: 0;
}


/* Responsive Design */

@media (max-width: 991px) {
    .book-header {
        padding: 30px;
        margin-top: 50px;
    }

    .book-title {
        font-size: 28px;
    }

    .book-article {
        padding: 40px 30px;
    }

    .article-intro .lead-text {
        font-size: 20px;
        padding: 24px;
    }

    .article-text p {
        font-size: 17px;
    }

    .section-title {
        font-size: 24px;
    }

    .book-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .book-review-section {
        padding: 60px 0;
    }

    .book-header {
        padding: 24px 15px;
        margin-bottom: 40px;
        margin-top: 30px;
    }

    .book-title {
        font-size: 24px;
    }

    .book-meta {
        flex-direction: column;
        gap: 12px;
    }

    .book-article {
        padding: 30px 20px;
    }

    .article-intro .lead-text {
        font-size: 18px;
        padding: 20px;
    }

    .article-text p {
        font-size: 16px;
    }

    .section-title {
        font-size: 22px;
    }

    .article-image-block {
        margin: 30px 0;
    }

    .sidebar-card {
        padding: 24px;
    }

    .related-book-item {
        flex-direction: column;
    }

    .related-book-img {
        width: 100%;
        height: 200px;
    }
}


/* Search Modal Styles */

.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-modal.active {
    display: block;
    opacity: 1;
}

.search-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 27, 34, 0.95);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.search-modal-content {
    position: relative;
    max-width: 900px;
    width: 90%;
    margin: 80px auto 0;
    background: #DCD8D0;
    border-radius: 24px;
    padding: 40px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* Dark Mode Overrides for Book Review Section */

.dark-mode .book-header,
.dark-mode .book-article,
.dark-mode .sidebar-card,
.dark-mode .related-book-item {
    background: #544B3F;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.dark-mode .section-title {
    color: #DCD8D0;
}

.dark-mode .book-title,
.dark-mode .article-intro .lead-text,
.dark-mode .article-text p,
.dark-mode .article-conclusion p,
.dark-mode .sidebar-title,
.dark-mode .related-book-info h4,
.dark-mode .author-info h4,
.dark-mode .rating-text {
    color: #aaa59d;
}

.dark-mode .book-meta span,
.dark-mode .image-caption,
.dark-mode .related-book-info p,
.dark-mode .author-info p,
.dark-mode .tag {
    color: #DCD8D0;
}

.dark-mode .article-intro .lead-text,
.dark-mode .article-conclusion {
    background: rgba(141, 129, 115, 0.1);
    border-right-color: #A09A90;
}

.dark-mode .tag {
    background: rgba(141, 129, 115, 0.2);
}

.dark-mode .tag:hover {
    background: #A09A90;
    color: #3F372B;
}

.dark-mode .related-book-item:hover {
    background: rgba(141, 129, 115, 0.3);
}

.dark-mode .sidebar-title {
    border-bottom-color: rgba(229, 231, 235, 0.1);
}

.dark-mode .search-modal-content {
    background: #463C30;
    color: #F8FAFC;
}

@media (max-width: 768px) {
    .cart {
        flex-direction: column;
        padding: 20px;
        margin-bottom: 15px;
    }

    .over-image {
        height: 350px;
    }

    .mobile-header::before {
        height: 268px;
        top: -174px;
    }

    .main-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .img-contact {
        width: 104px;
        height: 26px;
        position: absolute;
        top: -30px;
    }

    .description {
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 10px;
    }

    .cart-button {
        margin-bottom: 15px;
    }

    .contact-item {
        font-size: 14px;
    }

    .cart-date {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .cart {
        padding: 15px;
        margin-bottom: 15px;
    }

    .cart-button {
        font-size: 12px;
        padding: 6px 12px;
    }

    .cart-date {
        font-size: 12px;
    }

    .cart-text {
        font-size: 12px;
    }
}


/* Guide Page Specific Mobile Overrides */

@media (max-width: 768px) {

    /* Main Title 24px */
    .article-title,
    .related-articles h3 {
        font-size: 24px !important;
        margin-bottom: 12px !important;
        text-align: center !important;
    }

    /* Section Titles */
    .article-body h2 {
        font-size: 20px !important;
        margin-top: 25px !important;
        margin-bottom: 15px !important;
    }

    /* Description & Text 13-14px */
    .article-intro,
    .article-body p,
    .related-item p,
    .article-meta span {
        font-size: 13.5px !important;
        line-height: 1.7 !important;
        margin-bottom: 10px !important;
    }

    /* Spacing Reductions */
    .article-section {
        padding: 40px 0 !important;
    }

    .article-content {
        padding: 20px !important;
        margin: 20px 0 !important;
        border-radius: 20px !important;
    }

    .article-quote {
        padding: 20px !important;
        margin: 30px 0 !important;
    }

    .article-quote blockquote {
        font-size: 17px !important;
    }
}

.icon-home {
    font-size: 30px;
    color: #463C30;
}

.dark-mode .icon-home {
    color: #DBD7CF;
}

@media (min-width:2000px) {
    .container {
        max-width: 90%;
        width: 100%;
    }
}






.footer-logo-2 {
    margin-right: 52px !important;
}

@media (max-width: 768px) {

    .footer-logo-2 {
        margin-right: 35px !important;
    }
}

/* Wisdom Guide Video Grid Archive */
.video-grid-item {
    background: var(--bg-article, #D8D3CA);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dark-mode .video-grid-item {
    background: #8D817333;
}

.video-grid-item:hover {
    border-color: #463C30;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.video-info {
    padding: 25px;
}

.video-info .cart-button {
    margin-bottom: 15px;
    display: table;
}

.video-info .cart-date {
    font-size: 13px;
    color: var(--color-text-lib);
    margin-bottom: 15px !important;
    font-weight: 500;
}

.video-info .cart-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-header);
    font-weight: 700;
    margin: 0;
}

.wisdom-guide-archive .pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

/* Wisdom Library Archive */
.croots {
    margin-top: 50px;
}

.cart-contect {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
}

.cart-img {
    width: 156px;
    height: 156px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ensure cart is flex row for this widget */
.wisdom-library-archive .cart {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: transparent;
    border: 1px solid transparent;
    /* Default border */
}

.wisdom-library-archive .cart:hover {
    background: #F1EEE7;
    border: 1px solid #463C30;
    border-radius: 10px;
}
.dark-mode img.Rectangle__dark {
    bottom: -311px;
    height: 696px;
}
.dark-mode .card img {
    opacity: 15%;
}

.img-laboratory {
    height: 252px;
    object-fit: cover;
}
.dark-mode img.Vector222,.img-header{
filter: invert(596%) sepia(26%) saturate(51%) hue-rotate(1deg) brightness(90%) contrast(91%);
}

.dark-mode img.Vector222 {
  
    filter: invert(596%) sepia(26%) saturate(51%) hue-rotate(1deg) brightness(90%) contrast(91%);
}

.toggle-container {
    top: 39%;
    right: 3%;
}
background: #52483D !important;


.dark-mode input#librarySearch::placeholder {
    color: #bbb5af;
}

@media (max-width:1399px){
  a.navbar-brand {
    padding: 0 25px;
}
.navbar-nav {
    gap: 10px;
}
}
@media (max-width:1399px){
.navbar-nav a {
    font-size: 12px;
}
}
@media (max-width:991px){
.lib-title {
    font-size: 36px;
}
}
@media(max-width:768px){
.toggle-container {
    top: 26%;
}
}
